*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #fdf6ee;
    --cream-dark: #faeedd;
    --cream-mid: #f5e6d0;
    --orange: #f07820;
    --orange-dark: #d96510;
    --orange-light: #fde8d0;
    --brown: #1a0f00;
    --text-dark: #1c1208;
    --text-mid: #5a4a35;
    --text-light: #9c8470;
    --white: #ffffff;
    --border: #eddfc8;
    --border-light: #f5ebe0;

    --font-head: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;

    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 40px;

    --shadow-sm: 0 2px 12px rgba(240, 120, 32, 0.08);
    --shadow-md: 0 8px 32px rgba(240, 120, 32, 0.12);
    --shadow-lg: 0 20px 60px rgba(240, 120, 32, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-mid);
    background: var(--cream);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* ── UTILS ── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

h2.sec-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

h2.sec-title .o {
    color: var(--orange);
}

.sec-lead {
    font-size: 1.02rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 580px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--r-xl);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, opacity 0.15s;
    border: none;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 6px 24px rgba(240, 120, 32, 0.35);
}

.btn-orange:hover {
    box-shadow: 0 10px 32px rgba(240, 120, 32, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
}

.btn-outline:hover {
    background: var(--orange);
    color: #fff;
}

.btn-dark {
    background: var(--text-dark);
    color: #fff;
    box-shadow: 0 6px 24px rgba(26, 15, 0, 0.2);
}

/* Decorative orange underline for section headings */
.underline-orange {
    display: inline-block;
    position: relative;
}

.underline-orange::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: rgba(253, 246, 238, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    height: 68px;
    display: flex;
    align-items: center;
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -0.5px;
}

.brand span {
    color: var(--text-dark);
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-mid);
    transition: color 0.15s;
    font-family: var(--font-body);
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-family: var(--font-body);
}

.nav-phone svg {
    color: var(--orange);
}

.nav-cta {
    background: var(--orange);
    color: #fff;
    padding: 9px 22px;
    border-radius: var(--r-xl);
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-body);
    box-shadow: 0 4px 14px rgba(240, 120, 32, 0.3);
    transition: transform 0.15s, box-shadow 0.15s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(240, 120, 32, 0.4);
}

/* ── HERO ── */
.hero {
    padding: 110px 32px 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Decorative hand-drawn style arc — top right */
.hero-deco-arc {
    position: absolute;
    top: 80px;
    right: 12%;
    width: 120px;
    height: 90px;
    pointer-events: none;
    opacity: 0.55;
}

/* Decorative dots pattern */
.hero-deco-dots {
    position: absolute;
    bottom: 60px;
    left: 3%;
    pointer-events: none;
    opacity: 0.35;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--r-xl);
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.hero h1 .h-orange {
    color: var(--orange);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 460px;
}

.hero-disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 14px;
}

.hero-number-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 14px 20px;
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

.hnr-icon {
    width: 42px;
    height: 42px;
    background: var(--orange);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hnr-icon svg {
    width: 20px;
    height: 20px;
}

.hnr-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.hnr-num {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero visual — right side card */
/* ── HERO VISUAL: CONVERSATION CARD STACK ── */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Deco blob behind stack */
.card-deco {
    position: absolute;
    background: var(--orange-light);
    border-radius: var(--r-lg);
    z-index: 0;
}

.cd-1 {
    width: 300px;
    height: 420px;
    top: 10px;
    left: 30px;
    transform: rotate(4deg);
}

.vstack-wrap {
    position: relative;
    width: 340px;
    z-index: 1;
}

/* Header above cards */
.vstack-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.vstack-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-dark);
}

.vstack-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #15803d;
    background: #dcfce7;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: var(--font-body);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.live-dot-g {
    width: 6px;
    height: 6px;
    background: #16a34a;
    border-radius: 50%;
    animation: blink 1.6s infinite;
}

/* Individual voice message cards */
.vm-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 16px 18px;
    border: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-md);
    margin-bottom: 10px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vm-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Subtle left accent bar per card */
.vm-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 0 2px 2px 0;
}

.vm-card.vc-orange::before {
    background: var(--orange);
}

.vm-card.vc-green::before {
    background: #10b981;
}

.vm-card.vc-blue::before {
    background: #3b82f6;
}

.vm-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.vm-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.vm-av-a {
    background: #fde8d0;
    color: var(--orange-dark);
}

.vm-av-b {
    background: #d1fae5;
    color: #065f46;
}

.vm-av-c {
    background: #dbeafe;
    color: #1d4ed8;
}

.vm-meta {
    flex: 1;
}

.vm-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.vm-loc {
    font-size: 0.72rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 1px;
}

.vm-duration {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-light);
    background: var(--cream);
    padding: 3px 9px;
    border-radius: 50px;
    flex-shrink: 0;
}

/* Inline waveform per card */
.vm-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 28px;
    margin-bottom: 10px;
}

.vw {
    border-radius: 2px;
    flex-shrink: 0;
    animation: wv 1.3s ease-in-out infinite;
}

@keyframes wv {

    0%,
    100% {
        transform: scaleY(1)
    }

    50% {
        transform: scaleY(0.35)
    }
}

/* Orange waveform for card 1 */
.vc-orange .vw {
    background: var(--orange);
}

/* Green waveform for card 2 */
.vc-green .vw {
    background: #10b981;
}

/* Blue waveform for card 3 */
.vc-blue .vw {
    background: #3b82f6;
}

.vw:nth-child(1) {
    width: 3px;
    height: 8px;
    animation-delay: 0s
}

.vw:nth-child(2) {
    width: 3px;
    height: 16px;
    animation-delay: 0.08s
}

.vw:nth-child(3) {
    width: 3px;
    height: 11px;
    animation-delay: 0.16s
}

.vw:nth-child(4) {
    width: 3px;
    height: 22px;
    animation-delay: 0.24s
}

.vw:nth-child(5) {
    width: 3px;
    height: 14px;
    animation-delay: 0.32s
}

.vw:nth-child(6) {
    width: 3px;
    height: 26px;
    animation-delay: 0.20s
}

.vw:nth-child(7) {
    width: 3px;
    height: 10px;
    animation-delay: 0.12s
}

.vw:nth-child(8) {
    width: 3px;
    height: 19px;
    animation-delay: 0.28s
}

.vw:nth-child(9) {
    width: 3px;
    height: 7px;
    animation-delay: 0.04s
}

.vw:nth-child(10) {
    width: 3px;
    height: 21px;
    animation-delay: 0.36s
}

.vw:nth-child(11) {
    width: 3px;
    height: 13px;
    animation-delay: 0.18s
}

.vw:nth-child(12) {
    width: 3px;
    height: 24px;
    animation-delay: 0.30s
}

.vw:nth-child(13) {
    width: 3px;
    height: 9px;
    animation-delay: 0.06s
}

.vw:nth-child(14) {
    width: 3px;
    height: 17px;
    animation-delay: 0.22s
}

.vw:nth-child(15) {
    width: 3px;
    height: 12px;
    animation-delay: 0.14s
}

/* Progress bar under waveform */
.vm-progress {
    height: 3px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
}

.vm-progress-fill {
    height: 100%;
    border-radius: 2px;
    animation: prog 4s ease-in-out infinite alternate;
}

.vc-orange .vm-progress-fill {
    background: var(--orange);
    width: 60%;
}

.vc-green .vm-progress-fill {
    background: #10b981;
    width: 35%;
    animation-delay: 0.5s;
}

.vc-blue .vm-progress-fill {
    background: #3b82f6;
    width: 15%;
    animation-delay: 1s;
}

@keyframes prog {
    0% {
        width: 5%;
    }

    100% {
        width: 90%;
    }
}

/* Reply button inside card */
.vm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.vm-snippet {
    font-size: 0.78rem;
    color: var(--text-light);
    font-style: italic;
}

.vm-reply {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    font-family: var(--font-body);
    background: var(--orange-light);
    padding: 4px 12px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: background 0.15s;
}

.vm-reply:hover {
    background: #fdd5a8;
}

.vm-reply svg {
    width: 11px;
    height: 11px;
}

/* Main CTA button below stack */
.vstack-cta {
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: var(--r-md);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 6px 24px rgba(240, 120, 32, 0.35);
    transition: transform 0.18s, box-shadow 0.18s;
    margin-top: 4px;
    text-decoration: none;
}

.vstack-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(240, 120, 32, 0.45);
}

.vstack-cta svg {
    width: 18px;
    height: 18px;
}

/* Floating badges */
.float-stat {
    position: absolute;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 10px 16px;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.fs-num {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.fs-lbl {
    font-size: 0.71rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 2px;
}

.fs-top {
    top: -8px;
    right: -22px;
}

.fs-bot {
    bottom: 60px;
    left: -22px;
}

/* ── SECTION WRAP ── */
section {
    padding: 96px 0;
}

/* ── MIAMI VOICES ── */
.miami-voices {
    background: var(--white);
}

.mv-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.mv-visual {
    position: relative;
}

.mv-big-card {
    background: var(--cream);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    border: 1.5px solid var(--border);
}

.mv-stat-row {
    display: flex;
    gap: 0;
}

.mv-stat {
    flex: 1;
    text-align: center;
    padding: 0 12px;
}

.mv-stat+.mv-stat {
    border-left: 1px solid var(--border);
}

.mv-stat-n {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}

.mv-stat-l {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
}

.mv-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

.neighborhood-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nb-tag {
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text-mid);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.nb-tag:hover,
.nb-tag.active {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-light);
}

.mv-content p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 0.97rem;
}

.mv-content p strong {
    color: var(--text-dark);
}

/* ── ABOUT ── */
.about-sec {
    background: var(--cream);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.feature-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 28px;
}

.feat-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
}

.feat-item:last-child {
    border-bottom: none;
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feat-icon svg {
    width: 20px;
    height: 20px;
}

.fi-o {
    background: var(--orange-light);
}

.fi-g {
    background: #d1fae5;
}

.fi-b {
    background: #dbeafe;
}

.fi-p {
    background: #ede9fe;
}

.feat-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feat-desc {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.about-checklist {
    list-style: none;
    margin-bottom: 20px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text-mid);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.about-checklist li:last-child {
    border-bottom: none;
}

.chk-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chk-circle svg {
    width: 10px;
    height: 10px;
}

/* ── WHY VOICE ── */
.why-voice {
    background: var(--white);
}

.wv-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.wv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.wv-card {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 24px 20px;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.wv-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--orange);
}

.wvc-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.wvc-icon svg {
    width: 20px;
    height: 20px;
}

.wvc-o {
    background: var(--orange-light);
}

.wvc-g {
    background: #d1fae5;
}

.wvc-b {
    background: #dbeafe;
}

.wvc-p {
    background: #ede9fe;
}

.wvc-y {
    background: #fef9c3;
}

.wvc-r {
    background: #fee2e2;
}

.wvc-t {
    background: #ccfbf1;
}

.wvc-br {
    background: #fef3c7;
}

.wv-card-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.wv-card p {
    font-size: 0.83rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.wv-content h2 {
    margin-bottom: 16px;
}

.wv-content p {
    color: var(--text-mid);
    margin-bottom: 14px;
    font-size: 0.97rem;
}

.wv-content p strong {
    color: var(--text-dark);
}

/* ── HOW IT WORKS ── */
.how-sec {
    background: var(--cream);
}

.steps-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    position: relative;
}

.step-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 16px rgba(240, 120, 32, 0.35);
    flex-shrink: 0;
}

.step-line {
    width: 2px;
    flex: 1;
    background: var(--border);
    margin: 6px auto 0;
    min-height: 24px;
}

.step-item:last-child .step-line {
    display: none;
}

.step-body {
    padding-top: 8px;
}

.step-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.steps-visual {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border-light);
}

.sv-head {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sv-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.sv-row:last-of-type {
    border-bottom: none;
    margin-bottom: 18px;
}

.sv-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sv-icon svg {
    width: 18px;
    height: 18px;
}

.sv-text {
    font-size: 0.88rem;
    color: var(--text-mid);
    flex: 1;
}

.sv-text strong {
    color: var(--text-dark);
    display: block;
    font-size: 0.85rem;
}

.sv-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #d1fae5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sv-check svg {
    width: 10px;
    height: 10px;
}

/* ── FREE TRIAL ── */
.trial-sec {
    background: var(--white);
}

.trial-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.trial-visual {
    background: linear-gradient(145deg, var(--orange-light) 0%, var(--cream-dark) 100%);
    border-radius: var(--r-lg);
    padding: 44px 36px;
    border: 1.5px solid var(--border);
    position: relative;
    overflow: hidden;
}

.trial-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(240, 120, 32, 0.08);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

.tv-big {
    font-family: var(--font-head);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 6px;
}

.tv-sub {
    font-size: 1rem;
    color: var(--text-mid);
    font-weight: 600;
    margin-bottom: 24px;
}

.tv-list {
    list-style: none;
    text-align: left;
}

.tv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-mid);
    padding: 8px 0;
    border-bottom: 1px solid rgba(240, 120, 32, 0.15);
}

.tv-list li:last-child {
    border-bottom: none;
}

.tv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

/* ── PRIVATE CHAT ── */
.private-sec {
    background: var(--cream);
}

.private-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.private-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pg-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 22px 18px;
    border: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pg-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pg-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.pg-icon svg {
    width: 18px;
    height: 18px;
}

.pgi-o {
    background: var(--orange-light);
}

.pgi-g {
    background: #d1fae5;
}

.pgi-b {
    background: #dbeafe;
}

.pgi-p {
    background: #ede9fe;
}

.pgi-y {
    background: #fef9c3;
}

.pgi-t {
    background: #ccfbf1;
}

.pgi-r {
    background: #fee2e2;
}

.pg-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.pg-desc {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.5;
}

/* ── MIAMI NIGHTS ── */
.nights-sec {
    background: var(--white);
}

.nights-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.nights-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ng-card {
    display: flex;
    gap: 16px;
    background: var(--cream);
    border-radius: var(--r-md);
    padding: .75rem 1rem;
    border: 1.5px solid var(--border-light);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ng-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-sm);
}

.ng-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ng-icon svg {
    width: 20px;
    height: 20px;
}

.ngi-o {
    background: var(--orange-light);
}

.ngi-g {
    background: #d1fae5;
}

.ngi-b {
    background: #dbeafe;
}

.ngi-p {
    background: #ede9fe;
}

.ngi-y {
    background: #fef9c3;
}

.ngi-t {
    background: #ccfbf1;
}

.ngi-r {
    background: #fee2e2;
}

.ng-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.ng-desc {
    font-size: 0.83rem;
    color: var(--text-mid);
    line-height: 1.55;
}

/* ── WHY CHOOSE ── */
.why-sec {
    background: var(--cream);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.why-left p {
    color: var(--text-mid);
    margin-bottom: 28px;
    font-size: 0.97rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.wy-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 28px 22px;
    border: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.wy-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--orange);
}

.wy-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.wy-icon svg {
    width: 22px;
    height: 22px;
}

.wyi-o {
    background: var(--orange-light);
}

.wyi-g {
    background: #d1fae5;
}

.wyi-b {
    background: #dbeafe;
}

.wyi-p {
    background: #ede9fe;
}

.wyi-y {
    background: #fef9c3;
}

.wyi-t {
    background: #ccfbf1;
}

.wyi-r {
    background: #fee2e2;
}

.wy-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.wy-card p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ── SAFETY ── */
.safety-sec {
    background: var(--white);
}

.safety-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.safety-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sc-card {
    display: flex;
    gap: 16px;
    background: var(--cream);
    border-radius: var(--r-md);
    padding: 20px 22px;
    border: 1.5px solid var(--border-light);
}

.sc-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-icon svg {
    width: 20px;
    height: 20px;
}

.sci-r {
    background: #fee2e2;
}

.sci-o {
    background: var(--orange-light);
}

.sci-t {
    background: #ccfbf1;
}

.sc-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.93rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.sc-desc {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.age-banner {
    background: #fff7ed;
    border: 1.5px solid #fed7aa;
    border-radius: var(--r-md);
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 20px;
}

.age-banner svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.age-banner p {
    font-size: 0.9rem;
    color: #92400e;
    font-weight: 600;
    font-family: var(--font-body);
}

.safety-content p {
    color: var(--text-mid);
    margin-bottom: 14px;
    font-size: 0.97rem;
}

/* ── FAQ ── */
.faq-sec {
    background: var(--cream);
}

.faq-inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 72px;
    align-items: start;
}

.faq-left {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 44px 36px;
    border: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 88px;
}

.faq-left h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.faq-left h2 .o {
    color: var(--orange);
}

.faq-left p {
    font-size: 0.93rem;
    color: var(--text-mid);
    margin-bottom: 24px;
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1.5px solid var(--border-light);
    padding: 20px 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--text-dark);
    cursor: pointer;
}

.faq-q-icon {
    width: 28px;
    height: 28px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
}

.faq-a {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-top: 12px;
}

/* ── FINAL CTA ── */
.final-cta {
    padding: 120px 32px;
    background: var(--text-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 120, 32, 0.15) 0%, transparent 70%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta .eyebrow {
    justify-content: center;
    color: var(--orange);
}

.final-cta .eyebrow::before {
    background: var(--orange);
}

.final-cta h2 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.final-cta h2 .o {
    color: var(--orange);
}

.final-cta .sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.final-num {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.final-num-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.final-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 20px;
}

.final-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-row {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

.tr-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.tr-pill svg {
    width: 12px;
    height: 12px;
    color: var(--orange);
    flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
    background: #120c02;
    padding: 44px 32px;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--orange);
}

.footer-logo span {
    color: #fff;
}

.footer-legal {
    font-size: 0.82rem;
    color: #5a4a35;
    line-height: 1.75;
}

.footer-legal strong {
    color: var(--orange);
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {

    .hero-inner,
    .mv-inner,
    .about-inner,
    .wv-inner,
    .steps-inner,
    .trial-inner,
    .private-inner,
    .nights-inner,
    .why-inner,
    .safety-inner,
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .nav-right .nav-phone {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .steps-list{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .wv-grid,
    .private-grid,
    .why-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    nav {
        padding: 0;
    }

    .card-deco {
        display: none;
    }

    .fs-top,
    .fs-bot {
        display: none;
    }
     .steps-list{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
