
:root {
    --bg: #F5F2EC;
    --surface: #FBF9F4;
    --cream: #EDE6D3;
    --ink: #1A1D1A;
    --ink-2: #44483F;
    --muted: #8A8578;
    --line: #E4DDCD;
    --line-2: #D2C9B4;
    --navy: #1E3A6F;
    --navy-2: #4A6FA5;
    --navy-deep: #122548;
    --gold: #B8924F;
    --gold-deep: #8c6a25;
    --rose: #B85048;
    --sage: #5d7a58;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geist',sans-serif;
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

::selection {
    background: var(--gold);
    color: white;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.serif {
    font-family: 'Fraunces',serif;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(245,242,236,0.85);
    border-bottom: 1px solid transparent;
    transition: all .3s;
}

    nav.scrolled {
        border-color: var(--line);
        background: rgba(245,242,236,0.95);
    }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Fraunces',serif;
    font-size: 18px;
    font-weight: 600;
}

.logo-text {
    font-family: 'Fraunces',serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

    .logo-text span {
        color: var(--gold);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .nav-links a {
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        color: var(--ink-2);
        transition: color .15s;
    }

        .nav-links a:hover {
            color: var(--navy);
        }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    font-family: 'Geist',sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
    padding: 10px 18px;
    border: none;
    transition: all .18s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line-2);
}

    .btn-ghost:hover {
        border-color: var(--navy);
        color: var(--navy);
    }

.btn-primary {
    background: var(--navy);
    color: white;
}

    .btn-primary:hover {
        background: var(--navy-deep);
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(30,58,111,.25);
    }

.btn-gold {
    background: var(--gold);
    color: white;
}

    .btn-gold:hover {
        background: var(--gold-deep);
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(184,146,79,.3);
    }

.btn-lg {
    padding: 13px 24px;
    font-size: 15px;
}

/* HERO */
.hero {
    padding: 140px 0 80px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold-deep);
    padding: 6px 12px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: var(--surface);
    margin-bottom: 24px;
}

    .eyebrow .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--sage);
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

h1.hero-title {
    font-family: 'Fraunces',serif;
    font-size: 56px;
    line-height: 1.06;
    letter-spacing: -.025em;
    font-weight: 400;
    max-width: 820px;
}

    h1.hero-title em {
        font-style: italic;
        color: var(--navy);
    }

.hero-sub {
    font-size: 17.5px;
    color: var(--ink-2);
    line-height: 1.65;
    margin: 22px 0 32px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 16px;
}

/* HERO CARD VISUAL */
.hero-visual {
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid-hero {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    box-shadow: 0 8px 30px rgba(26,29,26,0.06);
}

    .feature-grid-hero .ft {
        background: white;
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 18px;
    }

        .feature-grid-hero .ft .ico {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .feature-grid-hero .ft .lb {
            font-family: 'Fraunces',serif;
            font-size: 15.5px;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .feature-grid-hero .ft .sb {
            font-size: 11.5px;
            color: var(--muted);
            margin-top: 3px;
        }

/* SECTIONS */
section {
    padding: 90px 0;
    position: relative;
}

.section-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-deep);
    margin-bottom: 14px;
}

h2.section-title {
    font-family: 'Fraunces',serif;
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: -.022em;
    font-weight: 400;
    max-width: 680px;
}

    h2.section-title em {
        font-style: italic;
        color: var(--navy);
    }

.section-sub {
    font-size: 16.5px;
    color: var(--ink-2);
    line-height: 1.65;
    margin-top: 18px;
    max-width: 660px;
}

/* FEATURES SECTION */
.features {
    background: var(--surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 54px;
}

.feature-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 22px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    position: relative;
}

    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 32px rgba(26,29,26,0.08);
        border-color: var(--line-2);
    }

    .feature-card .ico {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .feature-card h3 {
        font-family: 'Fraunces',serif;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: -0.01em;
        margin-bottom: 6px;
    }

    .feature-card p {
        font-size: 13.5px;
        color: var(--ink-2);
        line-height: 1.55;
    }

    .feature-card .new-badge {
        position: absolute;
        top: 14px;
        right: 14px;
        font-size: 9.5px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        background: var(--gold);
        color: white;
        padding: 3px 8px;
        border-radius: 10px;
    }

/* JOBS SECTION */
.jobs {
    background: var(--bg);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin-top: 40px;
}

.job-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

    .job-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(26,29,26,0.08);
        border-color: var(--line-2);
    }

    .job-card .job-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 14px;
        flex-wrap: wrap;
    }

    .job-card h3 {
        font-family: 'Fraunces',serif;
        font-size: 18.5px;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    .job-card .job-employer {
        font-size: 12.5px;
        color: var(--navy);
        font-weight: 600;
        margin-top: 3px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .job-card .job-tag {
        font-size: 10.5px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        padding: 3px 9px;
        border-radius: 10px;
    }

.job-tag.ft {
    background: rgba(93,122,88,0.12);
    color: var(--sage);
}

.job-tag.pt {
    background: rgba(184,146,79,0.12);
    color: var(--gold-deep);
}

.job-tag.bank {
    background: rgba(30,58,111,0.08);
    color: var(--navy);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12.5px;
    color: var(--ink-2);
}

    .job-meta span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

.job-desc {
    font-size: 13.5px;
    color: var(--ink-2);
    line-height: 1.55;
}

.job-actions {
    margin-top: auto;
    padding-top: 6px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.job-pay {
    font-family: 'Fraunces',serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-deep);
}

.job-pay-unit {
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 400;
}

.job-apply-btn {
    margin-left: auto;
}

/* APPS SECTION */
.apps-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.apps-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.13;
    z-index: 1;
}

.apps-bg-blob-1 {
    width: 380px;
    height: 380px;
    background: var(--navy);
    top: -100px;
    left: -80px;
}

.apps-bg-blob-2 {
    width: 340px;
    height: 340px;
    background: var(--gold);
    bottom: -80px;
    right: -60px;
}

.apps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.app-card {
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(26,29,26,0.08);
    position: relative;
    transition: transform .3s, box-shadow .3s;
}

    .app-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 60px rgba(26,29,26,0.12);
    }

.app-card-staff {
    background: linear-gradient(150deg,#1E3A6F 0%, #122548 50%, #0A1530 100%);
    color: white;
}

.app-card-family {
    background: linear-gradient(150deg, #F8EFD9 0%, #EDE6D3 50%, #E4D9BF 100%);
    color: var(--ink);
}

.app-card-inner {
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

.app-label {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    background: rgba(184,146,79,0.12);
    padding: 5px 11px;
    border-radius: 14px;
    align-self: flex-start;
    border: 1px solid rgba(184,146,79,0.3);
}

.app-label-warm {
    color: var(--navy);
    background: rgba(30,58,111,0.08);
    border-color: rgba(30,58,111,0.25);
}

.app-card-title {
    font-family: 'Fraunces',serif;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
}

    .app-card-title span {
        color: var(--gold);
    }

.app-card-title-warm span {
    color: var(--navy);
}

.app-tagline {
    font-size: 14.5px;
    opacity: 0.85;
    font-style: italic;
    font-family: 'Fraunces',serif;
    margin-bottom: 8px;
}

/* PHONE MOCKUP */
.phone-wrap {
    display: flex;
    justify-content: center;
    padding: 14px 0;
    perspective: 800px;
}

.phone-tilt-left {
    transform: rotate(-3deg);
}

.phone-tilt-right {
    transform: rotate(3deg);
}

.phone-frame {
    position: relative;
    width: 230px;
    height: 430px;
    background: linear-gradient(150deg,#1a1a1a 0%, #2a2a2a 100%);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35), inset 0 0 0 2px rgba(255,255,255,0.06);
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #0a0a0a;
    border-radius: 0 0 14px 14px;
    z-index: 5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 23px;
    overflow: hidden;
    padding: 24px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 11px;
    color: #1A1D1A;
    position: relative;
}

.phone-screen-warm {
    background: linear-gradient(180deg, #FBF6E8 0%, #FBF9F4 100%);
}

.phone-status {
    display: flex;
    justify-content: space-between;
    font-size: 9.5px;
    font-weight: 600;
    padding: 0 4px 4px;
    opacity: 0.7;
}

.phone-status-time {
    font-family: 'Geist Mono',monospace;
}

.phone-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 4px 8px;
    border-bottom: 1px solid #E4DDCD;
    margin-bottom: 3px;
}

.phone-greeting {
    font-size: 9px;
    color: #8A8578;
}

.phone-name {
    font-family: 'Fraunces',serif;
    font-size: 14px;
    font-weight: 600;
    color: #1E3A6F;
    line-height: 1.1;
}

.phone-name-warm {
    color: #1E3A6F;
}

.phone-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1E3A6F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.phone-avatar-warm {
    background: var(--gold);
}

.phone-card {
    background: #F5F2EC;
    border-radius: 7px;
    padding: 9px 10px;
    margin-top: 2px;
}

.phone-card-warm {
    background: rgba(184,146,79,0.1);
    border: 1px solid rgba(184,146,79,0.25);
}

.phone-card-shift {
    background: linear-gradient(135deg,rgba(30,58,111,0.06), rgba(184,146,79,0.06));
    border: 1px solid #E4DDCD;
}

.phone-card-label {
    font-size: 8.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8A8578;
    font-weight: 700;
    margin-bottom: 2px;
}

.phone-card-val {
    font-size: 10.5px;
    font-weight: 600;
    color: #1A1D1A;
    margin-bottom: 7px;
}

.phone-btn {
    background: #1E3A6F;
    color: white;
    border: 0;
    font-size: 9.5px;
    padding: 6px 10px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.phone-list-head {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8A8578;
    font-weight: 700;
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .phone-list-head span {
        background: #1E3A6F;
        color: white;
        padding: 1px 6px;
        border-radius: 8px;
        font-size: 8.5px;
    }

.phone-task {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 6px;
    background: #FBF9F4;
    border-radius: 5px;
    font-size: 10px;
}

.phone-task-check {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #5d7a58;
    color: white;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-task-check-pending {
    background: transparent;
    color: #8A8578;
    border: 1.5px solid #C9C2B0;
    font-size: 0;
}

.phone-task-pending .phone-task-text {
    color: #44483F;
}

.phone-task-text {
    font-size: 10px;
}

.phone-photo {
    width: 100%;
    height: 70px;
    background: linear-gradient(135deg,#8FA68A 0%, #6F8C6A 50%, #5d7a58 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 5px;
}

.phone-photo-cap {
    font-size: 9.5px;
    color: #44483F;
    font-style: italic;
}

.phone-update {
    padding: 7px 9px;
    background: rgba(255,255,255,0.6);
    border-radius: 6px;
    margin-top: 3px;
    border-left: 2px solid var(--gold);
}

.phone-update-time {
    font-size: 8.5px;
    color: #8A8578;
    font-weight: 600;
    margin-bottom: 2px;
}

.phone-update-text {
    font-size: 10px;
    color: #1A1D1A;
    line-height: 1.4;
    font-style: italic;
}

/* FLOATING NOTIFICATIONS NEXT TO PHONE */
.phone-float {
    position: absolute;
    background: white;
    color: #1A1D1A;
    font-size: 11px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
    white-space: nowrap;
    z-index: 10;
    animation: floatPulse 3s ease-in-out infinite;
}

.phone-float-warm {
    background: #FBF9F4;
    color: #1A1D1A;
    border: 1px solid var(--line);
}

.phone-float-1 {
    top: 60px;
    right: -40px;
    animation-delay: 0s;
}

.phone-float-2 {
    bottom: 80px;
    left: -40px;
    animation-delay: 1.5s;
}

.phone-float-3 {
    top: 50px;
    left: -50px;
    animation-delay: 0.4s;
}

.phone-float-4 {
    bottom: 60px;
    right: -30px;
    animation-delay: 1.9s;
}

@keyframes floatPulse {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* APP FEATURES LIST */
.app-features {
    list-style: none;
    margin-top: 8px;
}

    .app-features li {
        font-size: 13px;
        padding: 6px 0;
        opacity: 0.92;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

.app-features-warm li {
    color: #1A1D1A;
}

/* DOWNLOAD BUTTONS */
.app-downloads {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #0a0a0a;
    color: white;
    border: 0;
    padding: 10px 18px;
    border-radius: 9px;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    font-family: inherit;
    min-width: 160px;
}

    .store-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    }

.app-card-family .store-btn {
    background: #1A1D1A;
}

.store-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.54 4.09l.01-.01zM12 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.store-icon-google {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3.609 1.814L13.792 12 3.61 22.186a.996.996 0 01-.61-.92V2.734a1 1 0 01.609-.92zm10.89 10.893l2.302 2.302-10.937 6.333 8.635-8.635zm3.31-3.001l2.808 1.628a1 1 0 010 1.732l-2.808 1.628L15.197 12l2.612-2.294zM5.864 2.658L16.802 8.99l-2.302 2.302L5.864 2.658z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
}

.store-top {
    font-size: 9.5px;
    opacity: 0.85;
}

.store-bottom {
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.pricing {
    background: var(--bg);
}

/* TRUST STRIP — between hero and first content section */
.trust-strip {
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 38px;
    justify-content: center;
    align-items: center;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12.5px;
    color: var(--ink-2);
    font-weight: 500;
}

    .trust-item .ti-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--surface);
        border: 1px solid var(--line-2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }

/* FAQ SECTION */
.faq-section {
    background: var(--surface);
}

.faq-list {
    max-width: 760px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .faq-item[open] {
        border-color: var(--line-2);
        box-shadow: 0 6px 18px rgba(26,29,26,0.05);
    }

    .faq-item summary {
        cursor: pointer;
        padding: 18px 22px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 14px;
        list-style: none;
        font-family: 'Fraunces',serif;
        font-size: 16.5px;
        font-weight: 600;
        letter-spacing: -0.005em;
        color: var(--ink);
    }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary:hover {
            color: var(--navy);
        }

    .faq-item .faq-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--surface);
        border: 1px solid var(--line-2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
        transition: transform 0.2s;
        color: var(--navy);
    }

    .faq-item[open] .faq-icon {
        transform: rotate(45deg);
        background: var(--navy);
        color: white;
        border-color: var(--navy);
    }

    .faq-item .faq-answer {
        padding: 0 22px 20px;
        font-size: 14px;
        color: var(--ink-2);
        line-height: 1.65;
    }

/* COMPETITIVE / DIFFERENTIATORS STRIP */
.why-section {
    background: var(--bg);
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    margin-top: 48px;
}

.why-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px 22px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .why-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 32px rgba(26,29,26,0.08);
    }

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 14px;
}

.why-card.gold .why-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.why-card.sage .why-icon {
    background: linear-gradient(135deg, var(--sage), #3d5a3b);
}

.why-card.rose .why-icon {
    background: linear-gradient(135deg, var(--rose), #8d3a32);
}

.why-card h3 {
    font-family: 'Fraunces',serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.why-card p {
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.55;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;
    max-width: 720px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--line-2);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.18);
    padding: 18px 22px;
    z-index: 1500;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

    .cookie-banner.show {
        transform: translateY(0);
        opacity: 1;
    }

.cookie-banner-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

    .cookie-banner-head h4 {
        font-family: 'Fraunces',serif;
        font-size: 16px;
        font-weight: 600;
    }

.cookie-banner p {
    font-size: 12.5px;
    color: var(--ink-2);
    line-height: 1.55;
    margin-bottom: 14px;
}

    .cookie-banner p a {
        color: var(--navy);
        font-weight: 600;
    }

.cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

    .cookie-banner-actions .btn {
        padding: 8px 14px;
        font-size: 12.5px;
    }

/* COOKIE PREFERENCES MODAL */
.cookie-pref-row {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.cookie-pref-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 6px;
}

.cookie-pref-name {
    font-family: 'Fraunces',serif;
    font-size: 15px;
    font-weight: 600;
}

.cookie-pref-desc {
    font-size: 12.5px;
    color: var(--ink-2);
    line-height: 1.55;
}

.cookie-pref-required {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border: 1px solid var(--sage);
    border-radius: 10px;
}

.cookie-toggle {
    position: relative;
    width: 42px;
    height: 22px;
    background: var(--line-2);
    border-radius: 11px;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    border: 0;
    padding: 0;
}

    .cookie-toggle:before {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 18px;
        height: 18px;
        background: white;
        border-radius: 50%;
        transition: transform 0.2s;
        box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    }

    .cookie-toggle.on {
        background: var(--navy);
    }

        .cookie-toggle.on:before {
            transform: translateX(20px);
        }

    .cookie-toggle.locked {
        background: var(--sage);
        cursor: not-allowed;
    }

        .cookie-toggle.locked:before {
            transform: translateX(20px);
        }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 54px;
}

.price-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 30px 26px;
    position: relative;
    transition: transform .2s, box-shadow .2s;
}

    .price-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 32px rgba(26,29,26,0.08);
    }

    .price-card.popular {
        border: 2px solid var(--navy);
        transform: scale(1.02);
    }

        .price-card.popular:hover {
            transform: scale(1.02) translateY(-3px);
        }

    .price-card .tier-label {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--gold-deep);
    }

    .price-card h3 {
        font-family: 'Fraunces',serif;
        font-size: 24px;
        font-weight: 600;
        margin: 4px 0 6px;
    }

    .price-card .price {
        font-family: 'Fraunces',serif;
        font-size: 38px;
        font-weight: 600;
        color: var(--navy-deep);
        letter-spacing: -0.02em;
    }

    .price-card .price-unit {
        font-size: 14.5px;
        color: var(--muted);
        font-weight: 400;
    }

    .price-card .target {
        font-size: 12.5px;
        color: var(--ink-2);
        margin-top: 6px;
        padding-bottom: 18px;
        border-bottom: 1px solid var(--line);
        margin-bottom: 18px;
    }

    .price-card ul {
        list-style: none;
    }

    .price-card li {
        font-size: 13.5px;
        padding: 6px 0;
        display: flex;
        align-items: flex-start;
        gap: 9px;
        color: var(--ink-2);
    }

        .price-card li:before {
            content: '✓';
            color: var(--sage);
            font-weight: 700;
            font-size: 13px;
            flex-shrink: 0;
            margin-top: 1px;
        }

    .price-card .cta {
        margin-top: 22px;
        display: block;
        width: 100%;
        text-align: center;
    }

.popular-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: white;
    font-size: 10.5px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ABOUT */
.about {
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: center;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-top: 24px;
}

.about-point {
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
}

    .about-point .icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .about-point .title {
        font-family: 'Fraunces',serif;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 3px;
    }

    .about-point .sub {
        font-size: 11.5px;
        color: var(--muted);
        line-height: 1.45;
    }

.about-visual {
    background: linear-gradient(135deg,var(--navy-deep),var(--navy));
    border-radius: 14px;
    padding: 36px 30px;
    color: white;
    box-shadow: 0 14px 36px rgba(30,58,111,0.18);
}

    .about-visual h3 {
        font-family: 'Fraunces',serif;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
    }

    .about-visual p {
        font-size: 14px;
        opacity: 0.85;
        line-height: 1.65;
    }

    .about-visual .quote-mark {
        font-family: 'Fraunces',serif;
        font-size: 60px;
        line-height: 0.5;
        color: var(--gold);
    }

/* DEMO CTA */
.demo-cta {
    background: var(--navy-deep);
    color: white;
    padding: 80px 0;
}

    .demo-cta h2 {
        font-family: 'Fraunces',serif;
        font-size: 38px;
        letter-spacing: -0.02em;
        font-weight: 400;
        max-width: 680px;
    }

        .demo-cta h2 em {
            font-style: italic;
            color: var(--gold);
        }

    .demo-cta .demo-grid {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 30px;
        align-items: center;
    }

    .demo-cta p {
        font-size: 16px;
        opacity: 0.85;
        line-height: 1.6;
        margin-top: 14px;
        max-width: 580px;
    }

    .demo-cta .btn-gold {
        padding: 15px 30px;
        font-size: 15px;
    }

    .demo-cta .demo-note {
        font-size: 12px;
        opacity: 0.6;
        margin-top: 10px;
    }

/* FOOTER */
footer {
    background: var(--bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

    .footer-brand p {
        font-size: 13px;
        color: var(--ink-2);
        line-height: 1.6;
        margin-top: 14px;
    }

.footer-col h4 {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 9px;
}

.footer-col a {
    font-size: 13px;
    color: var(--ink-2);
    text-decoration: none;
    transition: color .15s;
}

    .footer-col a:hover {
        color: var(--navy);
    }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: var(--muted);
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,12,10,0.55);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.18s;
}

    .modal-overlay.open {
        display: flex;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal {
    background: white;
    border-radius: 14px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    animation: slideIn 0.25s;
}

    .modal.lg {
        max-width: 680px;
    }

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-head {
    padding: 26px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

    .modal-head h3 {
        font-family: 'Fraunces',serif;
        font-size: 23px;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    .modal-head .sub {
        font-size: 13px;
        color: var(--muted);
        margin-top: 4px;
    }

.modal-close {
    background: transparent;
    border: 0;
    font-size: 22px;
    color: var(--muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

    .modal-close:hover {
        color: var(--ink);
    }

.modal-body {
    padding: 20px 30px 30px;
}

.modal-foot {
    padding: 18px 30px 28px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-2);
    margin-bottom: 5px;
}

.input {
    width: 100%;
    padding: 10px 12px;
    font-family: 'Geist',sans-serif;
    font-size: 14px;
    border: 1px solid var(--line-2);
    border-radius: 7px;
    background: white;
    color: var(--ink);
    transition: border-color 0.15s;
}

    .input:focus {
        outline: 0;
        border-color: var(--navy);
    }

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12.5px;
    color: var(--ink-2);
    margin-top: 10px;
}

    .checkbox-row input {
        margin-top: 3px;
        cursor: pointer;
    }

    .checkbox-row a {
        color: var(--navy);
        text-decoration: underline;
    }

.auth-switch {
    text-align: center;
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 14px;
}

    .auth-switch a {
        color: var(--navy);
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
    }

.demo-banner {
    background: rgba(184,146,79,0.08);
    border: 1px solid rgba(184,146,79,0.25);
    color: var(--gold-deep);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 11.5px;
    margin-bottom: 18px;
    line-height: 1.55;
}

/* SUBSCRIBE TIERS IN MODAL */
.tier-card {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .tier-card:hover {
        border-color: var(--navy);
        background: var(--surface);
    }

    .tier-card.selected {
        border: 2px solid var(--navy);
        background: rgba(30,58,111,0.04);
        padding: 15px 17px;
    }

    .tier-card .tier-info {
        flex: 1;
    }

    .tier-card .tier-name {
        font-family: 'Fraunces',serif;
        font-size: 16px;
        font-weight: 600;
    }

    .tier-card .tier-desc {
        font-size: 11.5px;
        color: var(--muted);
        margin-top: 2px;
    }

    .tier-card .tier-price {
        font-family: 'Fraunces',serif;
        font-size: 18px;
        font-weight: 600;
        color: var(--navy);
        white-space: nowrap;
    }

    .tier-card .tier-price-unit {
        font-size: 11px;
        color: var(--muted);
        font-weight: 400;
    }

.tier-radio {
    width: 18px;
    height: 18px;
    border: 2px solid var(--line-2);
    border-radius: 50%;
    flex-shrink: 0;
}

.tier-card.selected .tier-radio {
    border-color: var(--navy);
    background: radial-gradient(circle, var(--navy) 35%, white 38%);
}

/* TOAST */
.toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: white;
    color: var(--ink);
    padding: 14px 22px;
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.18);
    border: 1px solid var(--line);
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s;
    font-size: 13.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .toast.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    .toast.success {
        border-left: 3px solid var(--sage);
    }

    .toast.error {
        border-left: 3px solid var(--rose);
    }

    .toast.info {
        border-left: 3px solid var(--navy);
    }

/* RESPONSIVE */
@media (max-width:980px) {
    .wrap {
        padding: 0 22px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 110px 0 60px;
    }

    h1.hero-title {
        font-size: 38px;
    }

    .hero-sub {
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    h2.section-title {
        font-size: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .app-card-inner {
        padding: 30px 24px 26px;
    }

    .app-card-title {
        font-size: 28px;
    }

    .phone-float {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-row {
        gap: 18px 24px;
    }

    .cookie-banner {
        left: 8px;
        right: 8px;
        bottom: 8px;
        padding: 14px 16px;
    }

    .cookie-banner-actions .btn {
        padding: 7px 11px;
        font-size: 11.5px;
    }

    .faq-item summary {
        font-size: 14.5px;
        padding: 14px 16px;
    }

    .faq-item .faq-answer {
        padding: 0 16px 16px;
        font-size: 13px;
    }

    .feature-grid-hero {
        grid-template-columns: 1fr 1fr;
        padding: 18px;
        gap: 10px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.popular {
        transform: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .demo-cta .demo-grid {
        grid-template-columns: 1fr;
    }

    .demo-cta h2 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-head, .modal-body, .modal-foot {
        padding-left: 22px;
        padding-right: 22px;
    }
}

/* Large phones / small tablet portrait (e.g. iPhone Pro Max, iPad Mini portrait) */
@media (max-width:640px) {
    .wrap {
        padding: 0 18px;
    }

    .nav-inner {
        height: 62px;
    }

    .nav-cta .btn {
        padding: 8px 13px;
        font-size: 13px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 17px;
    }

    .hero {
        padding: 96px 0 50px;
    }

    h1.hero-title {
        font-size: 32px;
        line-height: 1.1;
    }

    .hero-sub {
        font-size: 15px;
        margin: 18px 0 26px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-actions .btn {
            justify-content: center;
            width: 100%;
        }

    .hero-note {
        text-align: center;
        font-size: 12px;
    }

    section {
        padding: 50px 0;
    }

    h2.section-title {
        font-size: 26px;
        line-height: 1.15;
    }

    .section-sub {
        font-size: 15px;
    }

    .feature-grid-hero {
        grid-template-columns: 1fr 1fr;
        padding: 14px;
        gap: 8px;
    }

        .feature-grid-hero .ft {
            padding: 14px;
        }

            .feature-grid-hero .ft .lb {
                font-size: 14px;
            }

            .feature-grid-hero .ft .sb {
                font-size: 10.5px;
            }

    .trust-row {
        gap: 14px 18px;
    }

    .trust-item {
        font-size: 11.5px;
    }

        .trust-item .ti-icon {
            width: 28px;
            height: 28px;
            font-size: 13px;
        }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-card {
        padding: 20px 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .price-card {
        padding: 24px 22px;
    }

        .price-card .price {
            font-size: 32px;
        }

    .demo-cta {
        padding: 60px 0;
    }

        .demo-cta h2 {
            font-size: 24px;
        }

    .about-visual {
        padding: 26px 22px;
    }

        .about-visual h3 {
            font-size: 20px;
        }

    .feature-card {
        padding: 20px 18px;
    }

        .feature-card h3 {
            font-size: 16.5px;
        }

        .feature-card p {
            font-size: 13px;
        }

    .job-card {
        padding: 18px 18px;
    }

        .job-card .job-actions {
            flex-wrap: wrap;
            gap: 8px;
        }

            .job-card .job-actions > div {
                margin-left: 0;
                width: 100%;
            }

            .job-card .job-actions .btn {
                flex: 1;
                justify-content: center;
            }

    .modal-head h3 {
        font-size: 20px;
    }

    .modal-foot {
        flex-direction: column-reverse;
    }

        .modal-foot .btn {
            width: 100%;
            justify-content: center;
        }

    .cookie-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .cookie-banner-actions .btn {
            width: 100%;
            justify-content: center;
        }
}

/* Small phones (e.g. iPhone SE, smaller Androids) */
@media (max-width:420px) {
    .wrap {
        padding: 0 14px;
    }

    .nav-cta {
        gap: 6px;
    }

        .nav-cta .btn {
            padding: 7px 10px;
            font-size: 12px;
        }

        .nav-cta .btn-ghost {
            display: none;
        }
    /* hide Login on tightest screens; Register stays */
    .hero {
        padding: 88px 0 42px;
    }

    h1.hero-title {
        font-size: 26px;
        letter-spacing: -0.02em;
    }

    .hero-sub {
        font-size: 14.5px;
        line-height: 1.6;
    }

    .eyebrow {
        font-size: 10.5px;
        padding: 5px 10px;
        margin-bottom: 18px;
    }

    section {
        padding: 42px 0;
    }

    h2.section-title {
        font-size: 22px;
    }

    .section-sub {
        font-size: 14px;
    }

    .section-eyebrow {
        font-size: 10.5px;
    }

    .feature-grid-hero {
        grid-template-columns: 1fr;
        padding: 12px;
        gap: 8px;
    }

    .trust-strip {
        padding: 18px 0;
    }

    .trust-row {
        gap: 10px 14px;
        justify-content: flex-start;
    }

    .trust-item {
        font-size: 11px;
        gap: 6px;
    }

        .trust-item .ti-icon {
            width: 24px;
            height: 24px;
            font-size: 12px;
        }

    .feature-card {
        padding: 18px 16px;
    }

        .feature-card .ico {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .feature-card h3 {
            font-size: 15.5px;
        }

    .why-card {
        padding: 18px 16px;
    }

    .why-icon {
        width: 46px;
        height: 46px;
        font-size: 19px;
        margin-bottom: 10px;
    }

    .why-card h3 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 12.5px;
    }

    .job-card h3 {
        font-size: 16.5px;
    }

    .job-card .job-employer {
        font-size: 12px;
    }

    .job-card .job-desc {
        font-size: 12.5px;
    }

    .job-card .job-pay {
        font-size: 15px;
    }

    .price-card h3 {
        font-size: 21px;
    }

    .price-card .price {
        font-size: 28px;
    }

    .price-card li {
        font-size: 12.5px;
        padding: 5px 0;
    }

    .app-card-inner {
        padding: 24px 18px 22px;
    }

    .app-card-title {
        font-size: 24px;
    }

    .app-tagline {
        font-size: 13px;
    }

    .app-features li {
        font-size: 12.5px;
        padding: 5px 0;
    }

    .store-btn {
        min-width: 140px;
        padding: 9px 14px;
    }

    .store-bottom {
        font-size: 13px;
    }

    .store-top {
        font-size: 9px;
    }

    .phone-frame {
        width: 200px;
        height: 380px;
    }

    .demo-cta h2 {
        font-size: 20px;
    }

    .demo-cta p {
        font-size: 14px;
    }

    .demo-cta .btn-gold {
        width: 100%;
        justify-content: center;
    }

    .faq-item summary {
        font-size: 13.5px;
        padding: 13px 14px;
    }

        .faq-item summary .faq-icon {
            width: 22px;
            height: 22px;
            font-size: 13px;
        }

    .faq-item .faq-answer {
        padding: 0 14px 14px;
        font-size: 12.5px;
    }

    .cookie-banner {
        padding: 12px 14px;
    }

    .cookie-banner-head h4 {
        font-size: 14.5px;
    }

    .cookie-banner p {
        font-size: 12px;
    }

    .modal-head {
        padding: 20px 18px 0;
    }

    .modal-body {
        padding: 14px 18px 22px;
    }

    .modal-foot {
        padding: 14px 18px 22px;
    }

    .modal-head h3 {
        font-size: 18px;
    }

    .form-group label {
        font-size: 10.5px;
    }

    .input {
        font-size: 13.5px;
        padding: 9px 11px;
    }

    .toast {
        left: 14px;
        right: 14px;
        max-width: none;
        transform: translateY(-100px);
        font-size: 13px;
        padding: 12px 16px;
    }

        .toast.show {
            transform: translateY(0);
        }

    .footer-col h4 {
        font-size: 11px;
    }

    .footer-col a {
        font-size: 12.5px;
    }

    .footer-bottom {
        font-size: 11px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .popular-tag {
        font-size: 9.5px;
        padding: 4px 11px;
    }
}


