/* ================================================================
   Skip Office - DEFRA waste reporting (standalone entry)
   Palette:
     Skip Office orange (primary)   #f36d1a
     Deep orange (hover / accent)   #cf5c14
     Pale orange (bg wash)          #fef4e8
     Soft border tint               #f5c892
     Ink                            #1F2933
     Muted                          #6B7280
     Neutral border                 #E5E7EB
   ================================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #1F2933;
    line-height: 1.55;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
a { color: #f36d1a; text-decoration: none; }
a:hover { color: #cf5c14; }
img, svg { display: block; max-width: 100%; }

.wl-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* -------- NAV -------- */
.wl-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.wl-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.wl-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity .15s ease;
}
.wl-brand:hover { opacity: .85; }
.wl-brand-logo {
    height: 40px;
    width: auto;
    display: block;
}
.wl-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.wl-nav-links > a:not(.wl-btn) {
    color: #1F2933;
    font-weight: 500;
    font-size: 14.5px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background .15s ease, color .15s ease;
}
.wl-nav-links > a:not(.wl-btn):hover {
    color: #cf5c14;
    background: #fdf7f0;
}
.wl-nav-links > .wl-btn { margin-left: 6px; }

/* -------- BUTTONS -------- */
.wl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: transform .12s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1;
}
.wl-btn-lg { padding: 14px 24px; font-size: 15px; border-radius: 10px; }
.wl-btn-primary {
    background: #f36d1a;
    color: #fff;
    box-shadow: 0 1px 2px rgba(207,92,20,.15);
}
.wl-btn-primary:hover { background: #cf5c14; color: #fff; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(207,92,20,.28); }
.wl-btn-ghost {
    background: transparent;
    color: #1F2933;
    border-color: #D0D5DA;
}
.wl-btn-ghost:hover { background: #fdf7f0; color: #cf5c14; border-color: #f5c892; }
.wl-btn-white {
    background: #fff;
    color: #cf5c14;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.wl-btn-white:hover { background: #fef4e8; color: #cf5c14; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }

/* -------- HERO -------- */
.wl-hero {
    padding: 88px 0 104px;
    background:
        radial-gradient(ellipse 800px 500px at top right, rgba(243,109,26,.14), transparent 60%),
        radial-gradient(ellipse 700px 400px at bottom left, rgba(207,92,20,.06), transparent 55%),
        linear-gradient(180deg, #fdf7f0 0%, #FFFFFF 100%);
    border-bottom: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}
.wl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(207,92,20,.06) 1px, transparent 0);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    pointer-events: none;
}
.wl-hero-inner { position: relative; z-index: 1; }
.wl-hero-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: center;
}
.wl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef4e8;
    color: #b8590d;
    border: 1px solid #f5c892;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.wl-hero-title {
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #1F2933;
    margin: 0 0 18px;
    font-weight: 700;
}
.wl-hero-title span { color: #f36d1a; }
.wl-hero-sub {
    font-size: 18px;
    color: #4B5563;
    margin: 0 0 28px;
    max-width: 560px;
}
.wl-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}
.wl-hero-note {
    color: #6B7280;
    font-size: 13px;
    margin: 0;
}

/* -------- HERO VISUAL (mock card) -------- */
.wl-hero-visual {
    display: flex;
    justify-content: center;
}
.wl-mock-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 24px 48px -18px rgba(207,92,20,.28), 0 2px 6px rgba(0,0,0,.05);
    position: relative;
    transform: rotate(-1.5deg);
}
.wl-mock-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #E5E7EB;
}
.wl-mock-title {
    font-weight: 700;
    color: #1F2933;
    font-size: 15px;
}
.wl-mock-status {
    background: #E6F4EA;
    color: #137333;
    font-weight: 600;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
}
.wl-mock-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px dashed #F0F1F3;
}
.wl-mock-row span { color: #6B7280; }
.wl-mock-row strong { color: #1F2933; font-weight: 600; text-align: right; max-width: 60%; }
.wl-mock-row:last-of-type { border-bottom: 0; }
.wl-mock-tick {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #137333;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
    background: #E6F4EA;
    border-radius: 8px;
}

/* -------- SECTION -------- */
.wl-section {
    padding: 96px 0;
}
.wl-section-alt {
    background:
        radial-gradient(ellipse at top, rgba(243,109,26,.06), transparent 60%),
        #fdf7f0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}
.wl-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.wl-eyebrow {
    display: inline-block;
    color: #f36d1a;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.wl-section-head h2 {
    font-size: 36px;
    color: #1F2933;
    margin: 0 0 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.wl-section-head p {
    font-size: 17.5px;
    color: #4B5563;
    margin: 0;
    line-height: 1.6;
}

/* -------- FEATURES (accent top-bar cards) -------- */
.wl-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.wl-feature {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.wl-feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f36d1a, #cf5c14);
    opacity: 0;
    transition: opacity .2s ease;
}
.wl-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -18px rgba(207,92,20,.22);
    border-color: #f5c892;
}
.wl-feature:hover::before { opacity: 1; }
.wl-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fef4e8 0%, #fbe0c3 100%);
    color: #f36d1a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: inset 0 -2px 0 rgba(243,109,26,.08);
}
.wl-feature-icon svg { width: 28px; height: 28px; }
.wl-feature h3 {
    font-size: 19px;
    margin: 0 0 10px;
    color: #1F2933;
    font-weight: 700;
    letter-spacing: -0.005em;
}
.wl-feature p {
    color: #4B5563;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* -------- STATS BAR -------- */
.wl-stats {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #E5E7EB;
}
.wl-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.wl-stat {
    padding: 12px 8px;
    border-right: 1px solid #E5E7EB;
}
.wl-stat:last-child { border-right: 0; }
.wl-stat-num {
    font-size: 30px;
    font-weight: 700;
    color: #1F2933;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 4px;
}
.wl-stat-label {
    color: #6B7280;
    font-size: 13px;
    font-weight: 500;
}
@media (max-width: 720px) {
    .wl-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .wl-stat:nth-child(2) { border-right: 0; }
}

/* -------- COMPARE -------- */
.wl-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.wl-compare-col {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 28px;
}
.wl-compare-head {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E7EB;
}
.wl-compare-col ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column;
    gap: 12px;
}
.wl-compare-col li {
    position: relative;
    padding-left: 30px;
    color: #4B5563;
    font-size: 14.5px;
    line-height: 1.55;
}
.wl-compare-old .wl-compare-head { color: #9CA3AF; }
.wl-compare-old li::before {
    content: '\2715';
    position: absolute; left: 6px; top: 0;
    color: #B8C0CC; font-weight: 700;
}
.wl-compare-new {
    border-color: #f5c892;
    background: linear-gradient(180deg, #fdf7f0 0%, #fff 100%);
    box-shadow: 0 16px 40px -22px rgba(207,92,20,.25);
}
.wl-compare-new .wl-compare-head { color: #1F2933; }
.wl-compare-new li::before {
    content: '\2713';
    position: absolute; left: 4px; top: 0;
    color: #f36d1a; font-weight: 700; font-size: 16px;
}
@media (max-width: 720px) {
    .wl-compare { grid-template-columns: 1fr; }
}

/* -------- STRIP (compliance callout) -------- */
.wl-strip {
    background: #cf5c14;
    color: #fff;
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.wl-strip::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(243,109,26,.5) 0%, transparent 65%);
    pointer-events: none;
}
.wl-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.wl-strip h3 {
    font-size: 26px;
    margin: 0 0 6px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.wl-strip p {
    margin: 0;
    color: rgba(255,255,255,.85);
    font-size: 15px;
    max-width: 620px;
}
.wl-strip .wl-btn-white:hover { background: #fff; }

/* -------- STEPS (connected timeline) -------- */
.wl-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    counter-reset: step;
    position: relative;
}
.wl-steps::before {
    content: '';
    position: absolute;
    top: 46px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #f5c892 0 8px, transparent 8px 16px);
    z-index: 0;
}
.wl-step {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    z-index: 1;
    transition: transform .2s ease, box-shadow .2s ease;
}
.wl-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -18px rgba(207,92,20,.2);
}
.wl-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cf5c14 0%, #f36d1a 100%);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 14px -4px rgba(207,92,20,.35), 0 0 0 6px #fff;
}
.wl-step h4 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #1F2933;
    font-weight: 700;
}
.wl-step p {
    margin: 0;
    color: #4B5563;
    font-size: 14.5px;
    line-height: 1.6;
}

/* -------- AUDIENCE -------- */
.wl-audience {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.wl-aud-item {
    background: #fff;
    border: 1px solid #E5E7EB;
    color: #1F2933;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: all .15s ease;
}
.wl-aud-item:hover {
    border-color: #f36d1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px -6px rgba(207,92,20,.2);
}

/* -------- FAQ -------- */
.wl-faq-wrap { max-width: 820px; }
.wl-faq { display: flex; flex-direction: column; gap: 10px; }
.wl-faq details {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 14px 20px;
    transition: border-color .15s ease;
}
.wl-faq details[open] {
    border-color: #f5c892;
    background: #fdf7f0;
}
.wl-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: #1F2933;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}
.wl-faq summary::-webkit-details-marker { display: none; }
.wl-faq summary::after {
    content: '+';
    color: #f36d1a;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
}
.wl-faq details[open] summary::after { content: '\2212'; }
.wl-faq p {
    color: #4B5563;
    margin: 12px 0 4px;
    font-size: 14.5px;
}

/* -------- FINAL CTA -------- */
.wl-final-cta {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(243,109,26,.35), transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(207,92,20,.6), transparent 60%),
        linear-gradient(135deg, #cf5c14 0%, #f36d1a 100%);
    color: #fff;
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.wl-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}
.wl-final-inner { position: relative; z-index: 1; }
.wl-final-cta h2 {
    font-size: 36px;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -0.015em;
}
.wl-final-cta p {
    color: #fbe0c3;
    font-size: 17px;
    margin: 0 0 28px;
}

/* -------- FOOTER (centered, minimal, social + legal) -------- */
.wl-footer {
    background: #fff;
    color: #4B5563;
    padding: 40px 0 32px;
    font-size: 14px;
    border-top: 1px solid #fef4e8;
    box-shadow: inset 0 3px 0 rgba(243,109,26,.06);
}
.wl-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}
.wl-social { display: flex; align-items: center; gap: 12px; }
.wl-social-btn {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fef4e8;
    color: #f36d1a;
    border: 1px solid #f5c892;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.wl-social-btn:hover {
    background: #f36d1a;
    color: #fff;
    border-color: #f36d1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(207,92,20,.35);
}
.wl-footer-links {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #4B5563;
    font-size: 14px;
}
.wl-footer-links a { color: #cf5c14; font-weight: 500; }
.wl-footer-links a:hover { color: #f36d1a; }
.wl-footer-sep { color: #B8C0CC; }
.wl-footer-legal { color: #6B7280; font-size: 13px; }
.wl-footer-legal strong { color: #cf5c14; font-weight: 700; }

/* -------- AUTH (signup / welcome) -------- */
.wl-auth {
    padding: 64px 0 96px;
    background:
        radial-gradient(ellipse 900px 500px at top, rgba(243,109,26,.10), transparent 60%),
        linear-gradient(180deg, #fdf7f0 0%, #FFFFFF 100%);
    min-height: 70vh;
}
.wl-auth-inner {
    display: flex;
    justify-content: center;
}
.wl-auth-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 24px 48px -24px rgba(207,92,20,.18);
}
.wl-auth-card-wide { max-width: 620px; }
.wl-auth-card-center { text-align: center; }
.wl-auth-head { margin-bottom: 28px; }
.wl-auth-head h1 {
    font-size: 26px;
    color: #1F2933;
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.wl-auth-head p {
    color: #4B5563;
    margin: 0;
    font-size: 15px;
}
.wl-auth-lead { color: #4B5563; font-size: 15px; margin: 12px 0 22px; }

.wl-form { display: flex; flex-direction: column; gap: 16px; }
.wl-field { display: flex; flex-direction: column; gap: 6px; }
.wl-field label {
    font-size: 13.5px;
    font-weight: 600;
    color: #1F2933;
}
.wl-req { color: #D93025; font-weight: 700; }
.wl-field input[type=text],
.wl-field input[type=email],
.wl-field input[type=password] {
    width: 100%;
    height: 44px;
    padding: 10px 14px;
    border: 1px solid #D0D5DA;
    border-radius: 8px;
    font-size: 14.5px;
    color: #1F2933;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
    font-family: inherit;
}
.wl-field-row .wl-field { min-width: 0; }

/* Password field with eye toggle */
.wl-input-wrap { position: relative; }
.wl-input-wrap input { padding-right: 44px !important; }
.wl-eye-btn {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 34px; height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: #6B7280;
    cursor: pointer;
    transition: color .15s ease, background .15s ease;
}
.wl-eye-btn:hover { color: #f36d1a; background: #fdf7f0; }
.wl-eye-btn svg { width: 18px; height: 18px; }
.wl-eye-btn .wl-eye-off { display: none; }
.wl-eye-btn.is-shown .wl-eye-on { display: none; }
.wl-eye-btn.is-shown .wl-eye-off { display: block; }

/* Loading state on submit button */
.wl-btn[disabled],
.wl-btn.is-loading {
    opacity: .75;
    cursor: not-allowed;
    pointer-events: none;
}
.wl-spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.45);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: wl-spin .7s linear infinite;
    margin-right: 8px;
    vertical-align: -3px;
}
@keyframes wl-spin { to { transform: rotate(360deg); } }
.wl-field input:focus {
    outline: none;
    border-color: #f36d1a;
    box-shadow: 0 0 0 3px rgba(243,109,26,.15);
}
.wl-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.wl-check label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4B5563;
    font-weight: 500;
    cursor: pointer;
    font-size: 13.5px;
}
.wl-check input[type=checkbox] {
    margin-top: 3px;
    width: 16px; height: 16px;
    accent-color: #f36d1a;
}
.wl-hint {
    color: #6B7280;
    font-size: 12.5px;
    line-height: 1.5;
}
.wl-hint a { color: #f36d1a; font-weight: 600; }

.wl-btn-block { width: 100%; margin-top: 8px; }
.wl-form-foot {
    text-align: center;
    color: #6B7280;
    font-size: 13.5px;
    margin: 18px 0 0;
}
.wl-form-foot a { color: #f36d1a; font-weight: 600; }

.wl-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 18px;
    border: 1px solid transparent;
}
.wl-alert-error { background: #FEECEC; border-color: #F5C2C2; color: #A11313; }
.wl-alert-success { background: #E6F4EA; border-color: #B4E0BE; color: #137333; }

.wl-check-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef4e8 0%, #fbe0c3 100%);
    color: #f36d1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.wl-check-icon svg { width: 30px; height: 30px; }

@media (max-width: 560px) {
    .wl-auth-card { padding: 28px 22px; }
    .wl-field-row { grid-template-columns: 1fr; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet + below */
@media (max-width: 1024px) {
    .wl-container { padding: 0 20px; }
    .wl-hero-title { font-size: 44px; }
    .wl-section-head h2 { font-size: 30px; }
}

/* Mobile / small tablet */
@media (max-width: 900px) {
    .wl-hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .wl-hero-title { font-size: 38px; }
    .wl-hero-sub { font-size: 16px; }
    .wl-features, .wl-steps { grid-template-columns: 1fr; }
    .wl-steps::before { display: none; }
    .wl-footer-inner { flex-direction: column; text-align: center; gap: 16px; }
    .wl-nav-links a:not(.wl-btn) { display: none; }
    .wl-section { padding: 56px 0; }
    .wl-hero { padding: 52px 0 60px; }
    .wl-strip-inner { flex-direction: column; text-align: center; align-items: center; }
    .wl-strip p { margin: 0 auto; }
    .wl-strip .wl-btn { width: 100%; max-width: 320px; }
    .wl-mock-card { transform: none; margin: 0 auto; }
    .wl-hero-ctas .wl-btn { flex: 1 1 45%; }
}

/* Phone */
@media (max-width: 640px) {
    .wl-container { padding: 0 16px; }
    .wl-nav-inner { height: 60px; }
    .wl-brand-logo { height: 32px; }
    .wl-nav-links { gap: 6px; }
    .wl-btn { padding: 8px 14px; font-size: 13px; }
    .wl-btn-lg { padding: 12px 18px; font-size: 14px; }
    .wl-hero { padding: 40px 0 48px; }
    .wl-hero-title { font-size: 32px; line-height: 1.15; }
    .wl-hero-sub { font-size: 15px; }
    .wl-hero-badge { font-size: 11.5px; padding: 5px 10px; }
    .wl-hero-ctas { flex-direction: column; }
    .wl-hero-ctas .wl-btn { width: 100%; flex: none; }
    .wl-section { padding: 44px 0; }
    .wl-section-head { margin: 0 auto 32px; }
    .wl-section-head h2 { font-size: 24px; }
    .wl-section-head p { font-size: 15px; }
    .wl-eyebrow { font-size: 11px; margin-bottom: 10px; }
    .wl-feature, .wl-step { padding: 22px 20px; }
    .wl-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .wl-stat { border-right: 0 !important; padding: 8px 4px; }
    .wl-stat-num { font-size: 24px; }
    .wl-stat-label { font-size: 12px; }
    .wl-strip { padding: 40px 0; }
    .wl-strip h3 { font-size: 22px; }
    .wl-strip p { font-size: 14px; }
    .wl-final-cta { padding: 56px 0; }
    .wl-final-cta h2 { font-size: 24px; }
    .wl-final-cta p { font-size: 15px; }
    .wl-audience { gap: 8px; }
    .wl-aud-item { padding: 8px 14px; font-size: 13px; }
    .wl-compare-col { padding: 22px 20px; }
    .wl-faq details { padding: 12px 16px; }
    .wl-faq summary { font-size: 14.5px; }
    .wl-mock-card { max-width: 100%; padding: 18px; }
    .wl-mock-title { font-size: 14px; }
    .wl-mock-row { font-size: 12.5px; }
    .wl-footer { padding: 28px 0 20px; }
}

/* Very small phone */
@media (max-width: 380px) {
    .wl-hero-title { font-size: 28px; }
    .wl-brand-logo { height: 28px; }
    .wl-nav-links .wl-btn { padding: 7px 10px; font-size: 12px; }
}
