:root {
    --blush: #F9EEF0;
    --blush-deep: #F0DDE1;
    --plum: #3D1A47;
    --plum-light: #5C2D6E;
    --mauve: #C2788A;
    --mauve-light: #E8B4BF;
    --ivory: #FDFAF8;
    --ivory-warm: #F5F0EB;
    --stone: #8A7E85;
    --ink: #1E1218;
    --white: #FFFFFF;

    --shadow-sm: 0 2px 12px rgba(61, 26, 71, 0.07);
    --shadow-md: 0 6px 32px rgba(61, 26, 71, 0.10);
    --shadow-lg: 0 16px 56px rgba(61, 26, 71, 0.13);

    --radius: 16px;
    --radius-lg: 28px;
    --radius-pill: 100px;

    --transition: 0.24s cubic-bezier(.4, 0, .2, 1);
    --max-w: 1080px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--ivory);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

h1,
h2,
h3 {
    font-family: 'DM Serif Display', serif;
    line-height: 1.15;
    color: var(--plum);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
    color: var(--stone);
    line-height: 1.75;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mauve);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--mauve);
    border-radius: 2px;
    flex-shrink: 0;
}

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-center .eyebrow {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(61, 26, 71, 0.25);
}

.btn-primary:hover {
    background: var(--plum-light);
    box-shadow: 0 8px 32px rgba(61, 26, 71, 0.32);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--plum);
    border: 2px solid var(--blush-deep);
}

.btn-secondary:hover {
    border-color: var(--mauve-light);
    background: var(--blush);
}

.btn-mauve {
    background: var(--mauve);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(194, 120, 138, 0.3);
}

.btn-mauve:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(194, 120, 138, 0.4);
}

/* Phone pill */
.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 2px solid var(--blush-deep);
    border-radius: var(--radius-pill);
    padding: 13px 28px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--plum);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.phone-pill:hover {
    border-color: var(--mauve);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.phone-pill svg {
    width: 18px;
    height: 18px;
    stroke: var(--mauve);
    flex-shrink: 0;
}

.disclaimer {
    font-size: 0.78rem;
    color: var(--stone);
    margin-top: 14px;
    opacity: 0.7;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 250, 248, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--blush-deep);
}

.navbar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0 28px;
}

.brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--plum);
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand .dot {
    color: var(--mauve);
}
.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--stone);
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--plum);
}

.nav-cta {
    padding: 10px 22px;
    font-size: 0.88rem;
}

.hero {
    padding: 140px 0 90px;
    background: var(--blush);
    position: relative;
    overflow: hidden;
}

/* Soft decorative arcs */
.hero::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--blush-deep) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194, 120, 138, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--blush-deep);
    border-radius: var(--radius-pill);
    padding: 6px 16px 6px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title em {
    font-style: italic;
    color: var(--mauve);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--stone);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

/* Hero card */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-card  img {
    aspect-ratio: 2/3;
    object-fit: cover;
}

.mini-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mini-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.mini-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blush);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 0.95rem;
    color: var(--plum);
}

.mini-step-text {
    padding-top: 4px;
}

.mini-step-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 2px;
}

.mini-step-text span {
    font-size: 0.82rem;
    color: var(--stone);
}

.about-section {
    background: var(--ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--blush);
    border: 1.5px solid var(--blush-deep);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--mauve-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--stone);
}

.hiw-section {
    background: var(--blush);
}

.hiw-sub {
    max-width: 540px;
    margin: 12px auto 56px;
    font-size: 1rem;
    text-align: center;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    position: relative;
}

/* Connecting line behind steps */
.steps-row::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--mauve-light), var(--blush-deep), var(--mauve-light));
    z-index: 0;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 24px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-bubble {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blush);
    border: 2px solid var(--blush-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: var(--plum);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-card:hover .step-bubble {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

.step-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.87rem;
}

.hiw-bottom {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 52px;
}

.testimonials-section {
    background: var(--ivory);
}

.testi-sub {
    max-width: 500px;
    margin: 10px auto 56px;
    font-size: 0.97rem;
    text-align: center;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 36px 36px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--blush-deep);
    transition: var(--transition);
}

.testi-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--mauve-light);
    transform: translateY(-4px);
}


.testi-headline {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: var(--plum);
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.testi-body {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blush);
    border: 2px solid var(--blush-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    color: var(--plum);
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--plum);
    display: block;
    line-height: 1.2;
}

.testi-location {
    font-size: 0.78rem;
    color: var(--stone);
    display: block;
}

.why-section {
    background: var(--blush);
}

.why-sub {
    max-width: 520px;
    margin: 10px auto 56px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 36px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--blush-deep);
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--mauve-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--blush);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--plum);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-text h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.why-text p {
    font-size: 0.9rem;
}

.safety-section {
    background: var(--plum);
}

.safety-section .eyebrow {
    color: var(--mauve-light);
}

.safety-section h2 {
    color: var(--white);
}

.safety-section .section-sub {
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 10px auto 52px;
    text-align: center;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.safety-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
}

.safety-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}

.safety-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.safety-card-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--mauve-light);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.safety-card h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1rem;
}

.safety-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

.faq-section {
    background: var(--ivory);
}

.faq-sub {
    max-width: 480px;
    margin: 10px auto 48px;
    text-align: center;
}

.faq-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1.5px solid var(--blush-deep);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 10px;
    background: var(--white);
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: var(--mauve-light);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--plum);
    transition: color var(--transition);
}

.faq-q:hover {
    color: var(--mauve);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blush);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    font-size: 1.1rem;
    font-weight: 400;
    transition: transform var(--transition), background var(--transition);
    line-height: 1;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--mauve);
    color: var(--white);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    transition: max-height 0.38s ease, padding 0.26s ease;
}

.faq-item.open .faq-body {
    max-height: 200px;
    padding: 0 28px 22px;
}

.faq-body p {
    font-size: 0.92rem;
    color: var(--stone);
}

.cta-section {
    background: var(--blush);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, var(--blush-deep) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    margin-bottom: 14px;
}

.cta-inner .cta-sub {
    font-size: 1.02rem;
    color: var(--stone);
    max-width: 500px;
    margin: 0 auto 36px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 14px;
}

footer {
    background: var(--plum);
    padding: 28px;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-logo .dot {
    color: var(--mauve-light);
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

.d4 {
    transition-delay: 0.4s;
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card img{
        aspect-ratio: 4/2;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .steps-row {
        grid-template-columns: 1fr 1fr;
    }

    .steps-row::before {
        display: none;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    section {
        padding: 72px 0;
    }

    .steps-row {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copy {
        text-align: left;
    }

    .hero {
        padding: 120px 0 72px;
    }

    .nav-link {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    .live-dot {
        animation: none !important;
        transition: none !important;
    }
}
