*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #F3F0FF;
    --white: #ffffff;
    --navy: #1a1a2e;
    --pink: #e91e8c;
    --purple: #7c3aed;
    --purple-light: #a855f7;
    --grad: linear-gradient(135deg, #a855f7, #e91e8c);
    --grad-soft: linear-gradient(135deg, #ede9fe, #fce7f3);
    --text: #374151;
    --muted: #6b7280;
    --radius: 18px;
    --radius-sm: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* NAV */
nav {
    background: var(--white);
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--navy);
    text-decoration: none;
}

.logo img {
    width: 46px;
    height: 46px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
}

.btn-primary {
    background: var(--grad);
    color: white;
    border: none;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* HERO */
.hero {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 20px;
}

.hero h1 .accent {
    color: var(--pink);
}

.hero>div>p {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.phone-pill {
    background: var(--grad-soft);
    border: 2px solid #e9d5ff;
    color: var(--purple);
    font-weight: 700;
    font-size: 1rem;
    padding: 11px 22px;
    border-radius: 50px;
}


/* HERO VISUAL */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-visual img{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 1.5rem;
}
.hero-card-wrap {
    position: absolute;
    width: 280px;
    bottom: -40px;
    right: -40px;
}

.voice-card {
    background: var(--grad);
    border-radius: var(--radius);
    padding: 24px;
    color: white;
    position: relative;
    box-shadow: 0 16px 40px rgba(168, 85, 247, 0.35);
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.online-label {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 48px;
    margin-bottom: 16px;
}

.waveform span {
    width: 4px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.waveform span:nth-child(1) {
    height: 18px;
    animation-delay: 0s;
}

.waveform span:nth-child(2) {
    height: 32px;
    animation-delay: 0.1s;
}

.waveform span:nth-child(3) {
    height: 40px;
    animation-delay: 0.2s;
}

.waveform span:nth-child(4) {
    height: 28px;
    animation-delay: 0.3s;
}

.waveform span:nth-child(5) {
    height: 36px;
    animation-delay: 0.4s;
}

.waveform span:nth-child(6) {
    height: 22px;
    animation-delay: 0.5s;
}

.waveform span:nth-child(7) {
    height: 30px;
    animation-delay: 0.6s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

.caller-name {
    font-weight: 700;
    font-size: 1rem;
}

.caller-sub {
    font-size: 0.78rem;
    opacity: 0.75;
}

.badge-floating {
    position: absolute;
    top: -14px;
    right: -28px;
    background: white;
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.badge-floating .check {
    width: 20px;
    height: 20px;
    background: #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.second-card {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 130px;
    background: var(--grad-soft);
    border-radius: var(--radius-sm);
    padding: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.second-card-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 28px;
    margin-bottom: 8px;
    justify-content: center;
}

.second-card-wave span {
    width: 3px;
    background: var(--pink);
    border-radius: 2px;
}

.second-card-wave span:nth-child(1) {
    height: 10px;
}

.second-card-wave span:nth-child(2) {
    height: 20px;
}

.second-card-wave span:nth-child(3) {
    height: 14px;
}

.second-card-wave span:nth-child(4) {
    height: 22px;
}

.second-card-wave span:nth-child(5) {
    height: 16px;
}

.second-card p {
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 500;
    text-align: center;
}

/* SECTIONS */
section {
    padding: 80px 40px;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
}

h2 .accent {
    color: var(--pink);
}

h2 .accent-purple {
    color: var(--purple-light);
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 48px;
    text-align: center;
}

.text-center {
    text-align: center;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-visual  img{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 1.5rem;
}

.av-card {
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.av-card.purple {
    background: var(--grad);
    width: 90px;
    height: 90px;
}

.av-card.pink {
    background: linear-gradient(135deg, #f472b6, #e91e8c);
    width: 80px;
    height: 80px;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 16px;
}

.about-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-text li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.about-text li::before {
    content: '';
    min-width: 8px;
    height: 8px;
    background: var(--grad);
    border-radius: 50%;
    margin-top: 7px;
}

/* STATS */
.stats-section {
    background: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 4px;
}

/* HOW IT WORKS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
}

.step-num {
    position: absolute;
    top: -12px;
    left: 28px;
    width: 26px;
    height: 26px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    background: #f3e8ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--purple);
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* AUDIENCE */
.audience-section {
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.audience-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px 36px;
}

.audience-card.pink-tint {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
}

.audience-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}

.audience-card h3 .accent {
    color: var(--pink);
}

.audience-card>p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.audience-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
}

.audience-card li {
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-dot {
    width: 20px;
    height: 20px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* WHY VOICE */
.why-section {
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-icon {
    width: 40px;
    height: 40px;
    background: #fce7f3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    flex-shrink: 0;
}

.why-point h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.why-point p {
    font-size: 0.88rem;
    color: var(--muted);
}

.why-visual img{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 1.5rem;
}

.wv-card {
    border-radius: var(--radius-sm);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wv-card.a {
    background: linear-gradient(135deg, #f472b6, #e91e8c);
}

.wv-card.b {
    background: var(--grad);
}

/* LOCATIONS */
.locs-section {
    background: var(--white);
    text-align: center;
}

.locs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    text-align: left;
}

.loc-card {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.loc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc-icon.a {
    background: var(--grad);
}

.loc-icon.b {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.loc-icon.c {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.loc-icon.d {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.loc-icon.e {
    background: linear-gradient(135deg, #f472b6, #e91e8c);
}

.loc-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.loc-card p {
    font-size: 0.82rem;
    color: var(--muted);
}

/* SAFETY */
.safety-section {
    background: var(--bg);
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.safety-tips {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tip-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.tip-num {
    width: 28px;
    height: 28px;
    background: var(--grad);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

.tip-item span {
    font-size: 0.88rem;
    color: var(--text);
}

/* FAQ */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 720px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
}

.faq-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.88rem;
    color: var(--muted);
}

/* FINAL CTA */
.cta-section {
    background: var(--grad);
    text-align: center;
    padding: 80px 40px;
}

.cta-section h2 {
    color: white;
    font-size: 2.4rem;
}

.cta-section h2 .accent {
    color: rgba(255, 255, 255, 0.75);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
    margin: 16px auto 36px;
}

.btn-white {
    background: white;
    color: var(--purple);
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* FOOTER */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.55);
    padding: 32px 40px;
}

.footer-bottom {
    max-width: 1160px;
    margin: 0 auto;
    font-size: 0.78rem;
    text-align: center;
    line-height: 1.7;
}

@media (max-width: 900px) {

    .hero,
    .about-grid,
    .why-grid,
    .safety-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .stats-grid,
    .locs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-visual {
        display: none;
    }

    section {
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    .steps-grid,
    .locs-grid {
        grid-template-columns: 1fr;
    }
}