:root {
    --color-bg: #FAF6EF;
    --color-surface: #FFFFFF;
    --color-ink: #1E2B2B;
    --color-ink-soft: #5C6B68;
    --color-teal: #1F5C5A;
    --color-teal-dark: #143E3D;
    --color-coral: #E8714A;
    --color-coral-dark: #C9582F;
    --color-sand: #F0E4D0;
    --color-border: #E7DDC9;
    --color-women-bg: #FBEEE5;
    --color-men-bg: #EAF1EE;
    --font-display: 'Fredoka', 'Baloo 2', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-pill: 999px;
    --shadow-soft: 0 4px 20px rgba(30, 43, 43, 0.07);
    --shadow-lift: 0 12px 30px rgba(232, 113, 74, 0.22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 88px 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2rem, 4.3vw, 3.2rem);
}

h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

h3 {
    font-size: 1.12rem;
    font-weight: 600;
}

p {
    color: var(--color-ink-soft);
}

.eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-coral-dark);
    margin-bottom: 14px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 30px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
    min-height: 44px;
    touch-action: manipulation;
}

.btn:focus-visible {
    outline: 3px solid var(--color-teal);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--color-coral);
    color: #fff;
    box-shadow: var(--shadow-lift);
}

.btn-primary:hover {
    background: var(--color-coral-dark);
    transform: translateY(-1px);
}

.btn-ghost {
    background: var(--color-surface);
    color: var(--color-teal);
    border: 1.5px solid var(--color-border);
}

.btn-ghost:hover {
    border-color: var(--color-teal);
    transform: translateY(-1px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 246, 239, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-teal-dark);
    gap: .5rem;
}

.logo img{
    display: block;
    width: 48px;
    height: auto;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--color-teal-dark);
    font-size: 1.05rem;
}

.nav-phone svg {
    width: 20px;
    height: 20px;
    color: var(--color-coral);
}

/* Hero */
.hero {
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -140px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 92, 90, 0.08), transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    position: relative;
}

.hero h1 {
    color: var(--color-ink);
    margin-bottom: 18px;
}

.hero h1 .accent {
    color: var(--color-coral);
}

.hero-sub {
    font-size: 1.12rem;
    max-width: 480px;
    margin-bottom: 30px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.hero-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-pill);
    padding: 12px 22px;
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--color-teal-dark);
}

.hero-phone-pill svg {
    width: 20px;
    height: 20px;
    color: var(--color-coral);
    flex-shrink: 0;
}

.hero-trust-row {
    display: flex;
    gap: 22px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.87rem;
    color: var(--color-ink-soft);
    font-weight: 500;
}

.hero-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-teal);
    flex-shrink: 0;
}

/* Hero visual — speech bubble cluster ("on air" feel) */
.hero-visual {
    position: relative;
    height: 420px;
}

.bubble {
    position: absolute;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bubble-1 {
    top: 0;
    left: 10%;
    width: 280px;
}

.bubble-2 {
    top: 140px;
    left: 0;
    width: 250px;
    background: var(--color-teal);
    color: #fff;
}

.bubble-3 {
    top: 250px;
    left: 28%;
    width: 270px;
}

.bubble-2 .b-status {
    color: #CFE6E4;
}

.bubble-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-display);
    flex-shrink: 0;
}

.bubble-1 .bubble-avatar {
    background: var(--color-coral);
}

.bubble-2 .bubble-avatar {
    background: rgba(255, 255, 255, 0.18);
}

.bubble-3 .bubble-avatar {
    background: var(--color-teal);
}

.b-name {
    font-weight: 700;
    font-size: 0.94rem;
    color: var(--color-ink);
}

.bubble-2 .b-name {
    color: #fff;
}

.b-status {
    font-size: 0.8rem;
    color: var(--color-ink-soft);
}

.b-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
    margin-left: auto;
}

.b-wave span {
    width: 3px;
    background: var(--color-coral);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.bubble-2 .b-wave span {
    background: #fff;
}

.b-wave span:nth-child(1) {
    height: 35%;
    animation-delay: 0s;
}

.b-wave span:nth-child(2) {
    height: 75%;
    animation-delay: 0.15s;
}

.b-wave span:nth-child(3) {
    height: 50%;
    animation-delay: 0.3s;
}

.b-wave span:nth-child(4) {
    height: 90%;
    animation-delay: 0.45s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(0.6);
    }

    50% {
        transform: scaleY(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .b-wave span {
        animation: none;
    }
}

/* About / stats */
.section-alt {
    background: var(--color-surface);
}

.about-text {
    max-width: 640px;
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-coral);
    display: block;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-ink-soft);
    font-weight: 500;
}

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step-card {
    position: relative;
    padding-left: 0;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--color-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--color-teal-dark);
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-card h3 {
    margin-bottom: 8px;
    color: var(--color-ink);
}

.step-card p {
    font-size: 0.93rem;
}

/* For women / for men */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.audience-card {
    border-radius: var(--radius-lg);
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.audience-card.women {
    background: var(--color-women-bg);
    border: 1px solid #F3D9C5;
}

.audience-card.men {
    background: var(--color-men-bg);
    border: 1px solid #D3E3DC;
}

.audience-icon {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 20px;
}

.audience-icon img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.audience-icon svg {
    width: 26px;
    height: 26px;
}

.audience-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--color-ink);
}

.audience-card>p {
    margin-bottom: 24px;
}

.audience-list {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-ink);
}

.audience-list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.audience-card.women .audience-list svg {
    color: var(--color-coral);
}

.audience-card.men .audience-list svg {
    color: var(--color-teal);
}

/* Why choose us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.why-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-sand);
    color: var(--color-teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.why-icon svg {
    width: 28px;
    height: 28px;
}

.why-card h3 {
    font-size: 1.03rem;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.9rem;
}

/* Privacy & safety */
.privacy-section {
    background: linear-gradient(160deg, var(--color-teal-dark) 0%, #1F5C5A 100%);
    border-radius: var(--radius-lg);
    padding: 56px;
    color: #fff;
}

.privacy-section h2 {
    color: #fff;
    margin-bottom: 12px;
}

.privacy-section>p {
    color: #CFE6E4;
    max-width: 560px;
    margin-bottom: 40px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.privacy-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.privacy-item .icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-item svg {
    width: 22px;
    height: 22px;
    color: var(--color-coral);
}

.privacy-item p {
    color: #CFE6E4;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--color-ink);
    min-height: 44px;
}

.faq-question:focus-visible {
    outline: 2px solid var(--color-teal);
    outline-offset: 4px;
    border-radius: 6px;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--color-coral);
    flex-shrink: 0;
    transition: transform 200ms ease;
}

.faq-item[open] .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 4px 22px;
}

.faq-answer p {
    font-size: 0.96rem;
    margin: 0;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    text-align: center;
    color: #fff;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 14px;
}

.final-cta p {
    color: #FCE2D6;
    max-width: 480px;
    margin: 0 auto 32px;
}

.final-cta .hero-phone-pill {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.final-cta .hero-phone-pill svg {
    color: #fff;
}

.final-cta .btn-primary {
    background: #fff;
    color: var(--color-coral-dark);
}

.final-cta .btn-primary:hover {
    background: #FFF3EC;
}

.final-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Footer */
footer {
    padding: 32px 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

footer p {
    font-size: 0.85rem;
    color: var(--color-ink-soft);
    margin: 4px 0;
}

/* Responsive */
@media (max-width: 900px) {
    section {
        padding: 64px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-visual {
        order: -1;
        height: 320px;
    }

    .bubble-1 {
        width: 220px;
        left: 4%;
    }

    .bubble-2 {
        width: 200px;
        top: 110px;
        left: -4%;
    }

    .bubble-3 {
        width: 220px;
        top: 200px;
        left: 24%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .privacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .privacy-section {
        padding: 40px 28px;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 18px;
    }

    .nav {
        padding: 14px 18px;
    }

    .nav-phone span.full-number {
        display: none;
    }

    .hero-visual {
        height: 280px;
    }

    .bubble-1 {
        width: 190px;
        padding: 14px 16px;
    }

    .bubble-2 {
        width: 170px;
        padding: 14px 16px;
        top: 95px;
    }

    .bubble-3 {
        width: 190px;
        padding: 14px 16px;
        top: 170px;
        left: 18%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-phone-pill {
        justify-content: center;
    }

    .final-cta-row {
        flex-direction: column;
        width: 100%;
    }

    .final-cta-row .btn,
    .final-cta-row .hero-phone-pill {
        width: 100%;
        justify-content: center;
    }
}