*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #F7F5F2;
    --bg-card: #FFFFFF;
    --bg-warm: #F0EBE3;
    --bg-dark: #1B2E38;
    --bg-dark2: #243D49;
    --teal: #2E7A8F;
    --teal-light: #EBF5F7;
    --teal-mid: #C5E0E6;
    --amber: #E8734A;
    --amber-light: #FDF0EB;
    --text-head: #1B2E38;
    --text-body: #4A5568;
    --text-light: #8A96A0;
    --text-bone: #F7F5F2;
    --border: #E2DDD7;
    --border-dark: #2E4554;

    --font-head: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 50px;

    --shadow-sm: 0 1px 4px rgba(27, 46, 56, 0.07);
    --shadow-md: 0 4px 20px rgba(27, 46, 56, 0.10);
    --shadow-lg: 0 12px 40px rgba(27, 46, 56, 0.13);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Labels */
.label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.label-dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Section titles */
h2.stitle {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-head);
    line-height: 1.2;
    margin-bottom: 16px;
}

h2.stitle .a {
    color: var(--teal);
}

.slead {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 540px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--r-xl);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, opacity 0.15s;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--amber);
    color: #fff;
    box-shadow: 0 4px 18px rgba(232, 115, 74, 0.30);
}

.btn-primary:hover {
    box-shadow: 0 8px 28px rgba(232, 115, 74, 0.38);
}

.btn-teal {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 4px 18px rgba(46, 122, 143, 0.25);
}

.btn-ghost {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-head);
}

.btn-ghost:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.btn-ghost-light {
    background: transparent;
    border: 1.5px solid rgba(247, 245, 242, 0.35);
    color: var(--text-bone);
}

.btn-ghost-light:hover {
    background: rgba(247, 245, 242, 0.1);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: rgba(247, 245, 242, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    height: 66px;
    display: flex;
    align-items: center;
}

.nav-in {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-head);
}

.brand span {
    color: var(--teal);
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    transition: color 0.15s;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-head);
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-num svg {
    width: 14px;
    height: 14px;
    color: var(--teal);
}

.nav-cta {
    background: var(--amber);
    color: #fff;
    padding: 9px 20px;
    border-radius: var(--r-xl);
    font-weight: 700;
    font-size: 0.83rem;
    font-family: var(--font-body);
    box-shadow: 0 3px 12px rgba(232, 115, 74, 0.28);
    transition: transform 0.15s, box-shadow 0.15s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 115, 74, 0.36);
}

/* ── HERO ── */
.hero {
    padding: 108px 0 80px;
    background: var(--bg);
}

.hero-in {
    max-width: 1120px;
    padding: 0 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Left */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-light);
    border: 1px solid var(--teal-mid);
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--r-xl);
    margin-bottom: 20px;
}

.badge-pulse {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3)
    }
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    font-weight: 800;
    color: var(--text-head);
    line-height: 1.17;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.hero h1 .hi {
    color: var(--teal);
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 420px;
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 13px 18px;
    width: fit-content;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hp-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-light);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-icon svg {
    width: 18px;
    height: 18px;
}

.hp-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.hp-num {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-head);
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.hero-disc {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ── HERO RIGHT: CONVERSATION CARD STACK ── */
.hero-right {
    position: relative;
}

.vstack {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
}

/* Deco blob behind cards */
.vs-deco {
    position: absolute;
    width: 280px;
    height: 340px;
    background: var(--teal-light);
    border-radius: var(--r-lg);
    top: 16px;
    left: 16px;
    z-index: 0;
    transform: rotate(3deg);
}

.vs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.vs-title {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-head);
}

.vs-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #DCFCE7;
    color: #166534;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.vsp-dot {
    width: 5px;
    height: 5px;
    background: #16a34a;
    border-radius: 50%;
    animation: blink 1.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.25
    }
}

/* Voice message cards */
.vm-card {
    background: var(--bg-card);
    border-radius: var(--r-md);
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-md);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vm-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.vm-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 0 2px 2px 0;
}

.vc-1::before {
    background: var(--teal);
}

.vc-2::before {
    background: var(--amber);
}

.vc-3::before {
    background: #8B5CF6;
}

.vm-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.vm-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.av-t {
    background: var(--teal-light);
    color: var(--teal);
}

.av-a {
    background: var(--amber-light);
    color: var(--amber);
}

.av-p {
    background: #EDE9FE;
    color: #6D28D9;
}

.vm-meta {
    flex: 1;
}

.vm-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.84rem;
    color: var(--text-head);
}

.vm-loc {
    font-size: 0.7rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 1px;
}

.vm-dur {
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--bg);
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: 50px;
    flex-shrink: 0;
}

/* Waveform */
.vm-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 24px;
    margin-bottom: 8px;
}

.vw {
    border-radius: 1px;
    animation: vwa 1.4s ease-in-out infinite;
}

@keyframes vwa {

    0%,
    100% {
        transform: scaleY(1)
    }

    50% {
        transform: scaleY(0.3)
    }
}

.vc-1 .vw {
    background: var(--teal);
}

.vc-2 .vw {
    background: var(--amber);
}

.vc-3 .vw {
    background: #8B5CF6;
}

.vw:nth-child(1) {
    width: 2px;
    height: 7px;
    animation-delay: 0s
}

.vw:nth-child(2) {
    width: 2px;
    height: 15px;
    animation-delay: 0.07s
}

.vw:nth-child(3) {
    width: 2px;
    height: 10px;
    animation-delay: 0.14s
}

.vw:nth-child(4) {
    width: 2px;
    height: 20px;
    animation-delay: 0.21s
}

.vw:nth-child(5) {
    width: 2px;
    height: 13px;
    animation-delay: 0.28s
}

.vw:nth-child(6) {
    width: 2px;
    height: 23px;
    animation-delay: 0.20s
}

.vw:nth-child(7) {
    width: 2px;
    height: 9px;
    animation-delay: 0.13s
}

.vw:nth-child(8) {
    width: 2px;
    height: 17px;
    animation-delay: 0.26s
}

.vw:nth-child(9) {
    width: 2px;
    height: 7px;
    animation-delay: 0.05s
}

.vw:nth-child(10) {
    width: 2px;
    height: 19px;
    animation-delay: 0.32s
}

.vw:nth-child(11) {
    width: 2px;
    height: 11px;
    animation-delay: 0.19s
}

.vw:nth-child(12) {
    width: 2px;
    height: 21px;
    animation-delay: 0.11s
}

.vm-progress {
    height: 2px;
    background: var(--border);
    border-radius: 1px;
    margin-bottom: 8px;
}

.vmp-fill {
    height: 100%;
    border-radius: 1px;
    animation: progf 4s ease-in-out infinite alternate;
}

.vc-1 .vmp-fill {
    background: var(--teal);
}

.vc-2 .vmp-fill {
    background: var(--amber);
    animation-delay: 0.6s;
}

.vc-3 .vmp-fill {
    background: #8B5CF6;
    animation-delay: 1.2s;
}

@keyframes progf {
    from {
        width: 5%
    }

    to {
        width: 88%
    }
}

.vm-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vm-snippet {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
}

.vm-reply {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--teal);
    background: var(--teal-light);
    padding: 3px 10px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.15s;
}

.vm-reply:hover {
    background: var(--teal-mid);
}

.vm-reply svg {
    width: 10px;
    height: 10px;
}

/* Stack CTA */
.vs-cta {
    width: 100%;
    background: var(--amber);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: var(--r-md);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(232, 115, 74, 0.30);
    transition: transform 0.18s, box-shadow 0.18s;
    text-decoration: none;
    position: relative;
    z-index: 1;
    margin-top: 4px;
}

.vs-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 115, 74, 0.38);
}

.vs-cta svg {
    width: 16px;
    height: 16px;
}

/* Floating stat badges */
.vs-stat {
    position: absolute;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 9px 14px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.vss-num {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.vss-lbl {
    font-size: 0.68rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 2px;
}

.vs-stat-tr {
    top: -12px;
    right: -18px;
}

.vs-stat-bl {
    bottom: 52px;
    left: -18px;
}

/* ── SECTION STYLES ── */
section {
    padding: 88px 0;
}

/* ── SIGNAL BAR ── */
.signal {
    background: var(--bg-dark);
    padding: 18px 32px;
    overflow: hidden;
}

.signal-in {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    padding: 0 20px;
}

.sig-lbl {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(197, 224, 230, 0.7);
    white-space: nowrap;
    margin-right: 24px;
    flex-shrink: 0;
}

.sig-div {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.sig-hood {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(247, 245, 242, 0.65);
    white-space: nowrap;
    padding: 0 18px;
    transition: color 0.15s;
}

.sig-hood:hover {
    color: var(--text-bone);
}

/* ── MOOD SECTION ── */
.mood-sec {
    background: var(--bg-card);
}

.mood-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.mood-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 22px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.mood-card:hover {
    border-color: var(--teal-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.mood-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.mood-icon svg {
    width: 20px;
    height: 20px;
}

.mi-t {
    background: var(--teal-light);
}

.mi-a {
    background: var(--amber-light);
}

.mi-p {
    background: #EDE9FE;
}

.mi-g {
    background: #D1FAE5;
}

.mood-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-head);
    margin-bottom: 8px;
}

.mood-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ── BENEFITS ── */
.ben-sec {
    background: var(--bg);
}

.ben-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.ben-sticky {
    position: sticky;
    top: 86px;
}

.ben-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ben-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ben-card:hover {
    border-color: var(--teal-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.ben-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.ben-icon svg {
    width: 18px;
    height: 18px;
}

.bi-t {
    background: var(--teal-light);
}

.bi-a {
    background: var(--amber-light);
}

.bi-p {
    background: #EDE9FE;
}

.bi-g {
    background: #D1FAE5;
}

.bi-bl {
    background: #DBEAFE;
}

.bi-pk {
    background: #FCE7F3;
}

.ben-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-head);
    margin-bottom: 6px;
}

.ben-desc {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how-sec {
    background: var(--bg-dark);
}

.how-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.how-in .label {
    color: rgba(197, 224, 230, 0.8);
}

.how-in .label-dot {
    background: rgba(197, 224, 230, 0.8);
}

.how-in h2.stitle {
    color: var(--text-bone);
}

.how-in h2.stitle .a {
    color: var(--teal-mid);
}

.how-in .slead {
    color: rgba(247, 245, 242, 0.65);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-dark);
}

.step:first-child {
    padding-top: 0;
}

.step:last-child {
    border-bottom: none;
}

.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-num {
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(197, 224, 230, 0.3);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--teal-mid);
}

.step-line {
    width: 1px;
    flex: 1;
    background: var(--border-dark);
    margin: 6px auto 0;
}

.step:last-child .step-line {
    display: none;
}

.step-body {
    padding-top: 8px;
}

.step-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-bone);
    margin-bottom: 5px;
}

.step-desc {
    font-size: 0.86rem;
    color: rgba(247, 245, 242, 0.6);
    line-height: 1.65;
}

/* How visual */
.how-visual {
    background: var(--bg-dark2);
    border: 1px solid var(--border-dark);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.hv-top {
    border-bottom: 1px solid var(--border-dark);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hv-tlbl {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(247, 245, 242, 0.45);
}

.hv-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #4ADE80;
}

.hv-ld {
    width: 5px;
    height: 5px;
    background: #4ADE80;
    border-radius: 50%;
    animation: blink 1.8s infinite;
}

.hv-body {
    padding: 20px;
}

.hv-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.hv-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: var(--r-sm);
    border: 1px solid var(--border-dark);
}

.hv-step.done {
    border-color: rgba(46, 122, 143, 0.4);
    background: rgba(46, 122, 143, 0.1);
}

.hv-snum {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(247, 245, 242, 0.4);
    flex-shrink: 0;
}

.hv-step.done .hv-snum {
    border-color: var(--teal);
    color: var(--teal-mid);
    background: rgba(46, 122, 143, 0.15);
}

.hv-stxt {
    font-size: 0.83rem;
    color: rgba(247, 245, 242, 0.45);
    flex: 1;
}

.hv-step.done .hv-stxt {
    color: rgba(247, 245, 242, 0.85);
}

.hv-chk {
    flex-shrink: 0;
}

.hv-chk svg {
    width: 14px;
    height: 14px;
}

.hv-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 44px;
    padding: 0 2px;
    margin-bottom: 12px;
}

.hvb {
    border-radius: 1px;
    background: rgba(46, 122, 143, 0.5);
    animation: hvba 1.5s ease-in-out infinite;
}

.hvb:nth-child(even) {
    background: rgba(197, 224, 230, 0.3);
}

.hvb:nth-child(1) {
    width: 2px;
    height: 10px;
    animation-delay: 0s
}

.hvb:nth-child(2) {
    width: 3px;
    height: 22px;
    animation-delay: 0.08s
}

.hvb:nth-child(3) {
    width: 2px;
    height: 15px;
    animation-delay: 0.16s
}

.hvb:nth-child(4) {
    width: 3px;
    height: 34px;
    animation-delay: 0.24s
}

.hvb:nth-child(5) {
    width: 2px;
    height: 14px;
    animation-delay: 0.32s
}

.hvb:nth-child(6) {
    width: 3px;
    height: 40px;
    animation-delay: 0.22s
}

.hvb:nth-child(7) {
    width: 2px;
    height: 18px;
    animation-delay: 0.14s
}

.hvb:nth-child(8) {
    width: 3px;
    height: 30px;
    animation-delay: 0.28s
}

.hvb:nth-child(9) {
    width: 2px;
    height: 12px;
    animation-delay: 0.06s
}

.hvb:nth-child(10) {
    width: 3px;
    height: 36px;
    animation-delay: 0.34s
}

.hvb:nth-child(11) {
    width: 2px;
    height: 16px;
    animation-delay: 0.18s
}

.hvb:nth-child(12) {
    width: 3px;
    height: 28px;
    animation-delay: 0.10s
}

.hvb:nth-child(13) {
    width: 2px;
    height: 10px;
    animation-delay: 0.26s
}

.hvb:nth-child(14) {
    width: 3px;
    height: 22px;
    animation-delay: 0.08s
}

.hvb:nth-child(15) {
    width: 2px;
    height: 18px;
    animation-delay: 0.20s
}

.hvb:nth-child(16) {
    width: 3px;
    height: 32px;
    animation-delay: 0.36s
}

@keyframes hvba {

    0%,
    100% {
        transform: scaleY(1)
    }

    50% {
        transform: scaleY(0.28)
    }
}

.hv-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: rgba(247, 245, 242, 0.3);
    font-family: var(--font-head);
    margin-bottom: 16px;
}

.hv-btn {
    width: 100%;
    background: var(--teal);
    color: var(--text-bone);
    border: none;
    padding: 12px;
    border-radius: var(--r-sm);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: opacity 0.15s;
    text-decoration: none;
}

.hv-btn:hover {
    opacity: 0.88;
}

.hv-btn svg {
    width: 15px;
    height: 15px;
}

/* ── FREE TRIAL ── */
.trial-sec {
    background: var(--bg-card);
}

.trial-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.trial-vis {
    background: linear-gradient(145deg, var(--teal-light) 0%, #E8F4F7 100%);
    border: 1.5px solid var(--teal-mid);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trial-vis::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(46, 122, 143, 0.08);
    border-radius: 50%;
    top: -60px;
    right: -40px;
}

.tv-big {
    font-family: var(--font-head);
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 0.9;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.tv-sub {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.tv-list {
    list-style: none;
    text-align: left;
}

.tv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--text-body);
    padding: 8px 0;
    border-bottom: 1px solid rgba(46, 122, 143, 0.12);
}

.tv-list li:last-child {
    border-bottom: none;
}

.tv-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

.trial-in .slead {
    margin-bottom: 16px;
}

.trial-in p strong {
    color: var(--text-head);
}

/* ── COMPARE ── */
.compare-sec {
    background: var(--bg);
}

.cmp-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
}

.cmp-col {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1.5px solid var(--border);
}

.cmp-head {
    padding: 18px 28px;
    border-bottom: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cmp-head.app {
    background: var(--bg);
}

.cmp-head.voxmingle {
    background: var(--teal);
}

.ch-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
}

.ch-name.app {
    color: var(--text-body);
}

.ch-name.voxmingle {
    color: var(--text-bone);
}

.ch-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 50px;
}

.ch-tag.old {
    background: rgba(0, 0, 0, 0.07);
    color: var(--text-light);
}

.ch-tag.new {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(247, 245, 242, 0.9);
}

.cmp-items {
    list-style: none;
    background: var(--bg-card);
}

.cmp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 0.87rem;
}

.cmp-item:last-child {
    border-bottom: none;
}

.cmp-item.app {
    color: var(--text-body);
}

.cmp-item.voxmingle {
    color: var(--text-head);
}

.ci-ico {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-ico svg {
    width: 8px;
    height: 8px;
}

.ci-x {
    background: #FEE2E2;
}

.ci-ck {
    background: #D1FAE5;
}

/* ── CONFIDENCE ── */
.conf-sec {
    background: var(--bg-card);
}

.conf-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.conf-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.conf-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1.5px solid var(--border);
}

.conf-item:first-child {
    padding-top: 0;
}

.conf-item:last-child {
    border-bottom: none;
}

.ci-num {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal-mid);
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
    padding-top: 4px;
}

.ci-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-head);
    margin-bottom: 5px;
}

.ci-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* ── SAFETY ── */
.safety-sec {
    background: var(--bg);
}

.safety-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.age-card {
    background: #FFF7ED;
    border: 1.5px solid #FED7AA;
    border-radius: var(--r-md);
    padding: 20px 22px;
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.age-card svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.age-card p {
    font-size: 0.88rem;
    color: #92400E;
    font-weight: 600;
    line-height: 1.65;
}

.safety-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sc {
    display: flex;
    gap: 14px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 18px 20px;
    transition: border-color 0.2s;
}

.sc:hover {
    border-color: var(--teal-mid);
}

.sc-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-icon svg {
    width: 18px;
    height: 18px;
}

.sci-t {
    background: var(--teal-light);
}

.sci-a {
    background: var(--amber-light);
}

.sci-p {
    background: #EDE9FE;
}

.sc-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-head);
    margin-bottom: 4px;
}

.sc-desc {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ── FAQ ── */
.faq-sec {
    background: var(--bg-card);
}

.faq-in {
}

.faq-left {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    position: sticky;
    top: 86px;
}

.faq-left h2 {
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    margin-bottom: 12px;
}

.faq-left p {
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 24px;
    line-height: 1.7;
}

.faq-list {}

.faq-item {
    border-bottom: 1.5px solid var(--border);
    padding: 18px 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-q {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-head);
}

.faq-qicon {
    width: 24px;
    height: 24px;
    background: var(--teal-light);
    border: 1px solid var(--teal-mid);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
}

.faq-a {
    font-size: 0.87rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-top: 10px;
}

/* ── FINAL CTA ── */
.final-cta {
    background: var(--bg-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 50% at 50% 50%, rgba(46, 122, 143, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta .label {
    color: rgba(197, 224, 230, 0.7);
    justify-content: center;
}

.final-cta .label-dot {
    background: rgba(197, 224, 230, 0.7);
}

.final-h {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-bone);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.final-h .a {
    color: var(--teal-mid);
}

.final-sub {
    font-size: 1rem;
    color: rgba(247, 245, 242, 0.6);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.final-num {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: var(--text-bone);
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.final-numsub {
    font-size: 0.72rem;
    color: rgba(247, 245, 242, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.final-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.final-disc {
    font-size: 0.75rem;
    color: rgba(247, 245, 242, 0.35);
}

.trust-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.tr-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(247, 245, 242, 0.6);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

.tr-pill svg {
    width: 12px;
    height: 12px;
    color: var(--teal-mid);
}

/* ── STICKY BAR ── */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--bg-dark2);
    border-top: 1px solid var(--border-dark);
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-bar.show {
    transform: translateY(0);
}

.sb-left {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-bone);
}

.sb-left span {
    color: rgba(247, 245, 242, 0.5);
    font-weight: 400;
    font-size: 0.78rem;
    margin-left: 8px;
}

.sb-num {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-bone);
}

/* ── FOOTER ── */
footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    padding: 32px;
}

.foot-in {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.foot-logo {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-bone);
}

.foot-logo span {
    color: var(--teal-mid);
}

.foot-legal {
    font-size: 0.78rem;
    color: rgba(247, 245, 242, 0.4);
    line-height: 1.7;
}

.foot-legal strong {
    color: rgba(247, 245, 242, 0.65);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {

    .hero-in,
    .ben-in,
    .how-in,
    .trial-in,
    .conf-in,
    .safety-in,
    .faq-in {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ben-sticky {
        position: static;
    }

    .faq-left {
        position: static;
    }

    .mood-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cmp-in {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .nav-num {
        display: none;
    }
}

@media (max-width: 580px) {
    section {
        padding: 64px 0;
    }

    .container {
        padding: 0 24px;
    }

    nav {
        padding: 0;
    }

    .nav-in {
        padding: 0 20px;
    }

    .hero {
        padding: 90px 24px 60px;
    }

    .signal {
        padding: 16px 24px;
    }

    .mood-grid {
        grid-template-columns: 1fr;
    }

    .ben-grid {
        grid-template-columns: 1fr;
    }

    .foot-in {
        flex-direction: column;
        text-align: center;
    }

    .sticky-bar {
        padding: 12px 20px;
    }

    .vs-stat-tr,
    .vs-stat-bl {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
