:root {
    --bg: #f6f7fb;
    --surface: #ffffff;
    --surface-hover: #f0f1f5;
    --border: rgba(15, 23, 42, 0.08);
    --border-highlight: rgba(15, 23, 42, 0.14);

    --text-main: #18181b;
    --text-muted: #52525b;

    --accent-1: #FF0F7B;
    --accent-2: #F89B29;
    --accent-3: #8B5CF6;
    --accent-success: #10b981;

    --header-bg: rgba(255, 255, 255, 0.82);
    --shadow-sm: 0 4px 24px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
    --toast-bg: rgba(255, 255, 255, 0.95);
    --dock-bg: rgba(255, 255, 255, 0.92);

    --font: 'Inter', sans-serif;
    --bezier: cubic-bezier(0.16, 1, 0.3, 1);
    --bezier-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    font-size: 16px;
    background-color: var(--bg);
}

body {
    font-family: var(--font);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Magic */
.mesh-bg {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.22;
    animation: float 20s infinite alternate;
    pointer-events: none;
}

.mesh-1 {
    width: 45vw;
    height: 45vw;
    background: var(--accent-1);
    top: -20%;
    left: -10%;
}

.mesh-2 {
    width: 35vw;
    height: 35vw;
    background: var(--accent-2);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.mesh-3 {
    width: 50vw;
    height: 50vw;
    background: var(--accent-3);
    top: 30%;
    left: 30%;
    animation-delay: -10s;
    opacity: 0.12;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(100px, 50px) rotate(20deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: clamp(2rem, 2.2vw + 1rem, 2.8rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 48px;
}

.text-center {
    text-align: center;
}

.justify-center {
    justify-content: center;
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--bezier);
}

.glass-header.scrolled {
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.language-modal.active {
    display: flex;
}

.language-modal__card {
    width: 100%;
    max-width: 460px;
    border-radius: 32px;
    padding: 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.language-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 15, 123, 0.08);
    color: var(--accent-1);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.language-modal__card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.language-modal__card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.language-modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.language-choice {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 16px 18px;
    background: var(--surface);
    color: var(--text-main);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
}

.language-choice:hover {
    border-color: rgba(255, 15, 123, 0.35);
    background: linear-gradient(135deg, rgba(255, 15, 123, 0.1), rgba(248, 155, 41, 0.12));
    color: var(--accent-1);
}

.language-switch {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    margin-right: 12px;
}

.language-switch__btn {
    border: 0;
    border-radius: 999px;
    padding: 7px 10px;
    background: transparent;
    color: var(--text-muted);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-switch__btn.active {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.logo i {
    color: var(--accent-1);
    font-size: 1.8rem;
}

.desktop-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--text-main);
}

.btn-outline {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border-highlight);
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--surface);
}

.btn-outline:hover {
    background: var(--surface);
    border-color: var(--border-highlight);
}

/* Burger Menu Button */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.burger-btn__line {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s var(--bezier);
}

.burger-btn.active .burger-btn__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.active .burger-btn__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.active .burger-btn__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2500;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.active {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-menu.active .mobile-menu__backdrop {
    opacity: 1;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 380px);
    height: 100%;
    background: var(--surface);
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    padding: 20px 24px 28px;
    transform: translateX(100%);
    transition: transform 0.4s var(--bezier);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mobile-menu.active .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-main);
}

.mobile-menu__brand i {
    color: var(--accent-1);
    font-size: 1.5rem;
}

.mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-hover);
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.mobile-menu__close:hover {
    border-color: var(--border-highlight);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link:active {
    background: rgba(255, 15, 123, 0.06);
    color: var(--accent-1);
}

.mobile-menu__form-wrap {
    margin-top: auto;
    padding: 24px 20px;
    border-radius: 20px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
}

.mobile-menu__form-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 18px;
    line-height: 1.4;
}

.mobile-menu__form-wrap .input-wrapper {
    margin-bottom: 16px;
}

.mobile-menu__form-wrap .input-wrapper input {
    background: var(--surface);
    border-radius: 12px;
    padding: 18px 14px 10px;
    border: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mobile-menu__form-wrap .input-wrapper label {
    left: 14px;
    top: 18px;
    font-size: 1rem;
}

.mobile-menu__form-wrap .input-wrapper input:focus,
.mobile-menu__form-wrap .input-wrapper input:not(:placeholder-shown) {
    border-color: var(--accent-1);
}

.mobile-menu__form-wrap .input-wrapper input:focus + label,
.mobile-menu__form-wrap .input-wrapper input:not(:placeholder-shown) + label {
    top: -9px;
    left: 10px;
    font-size: 0.75rem;
    background: var(--surface-hover);
    padding: 0 6px;
}

.mobile-menu__form-wrap .btn-block {
    padding: 18px;
    font-size: 1rem;
    border-radius: 100px;
}

body.menu-open,
body.lang-modal-open {
    overflow: hidden;
    touch-action: none;
}

body.menu-open .mobile-action-bar {
    display: none;
}

/* Mobile Action Bar */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: var(--surface);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
    gap: 12px;
}

.mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-action-btn i {
    font-size: 1.25rem;
}

.mobile-action-btn--call {
    background: var(--surface-hover);
    color: var(--text-main);
    border: 1px solid var(--border);
}

.mobile-action-btn--call:active {
    background: var(--border);
}

.mobile-action-btn--whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.mobile-action-btn--whatsapp:active {
    background: #1fb855;
}

/* Magical Buttons */
.btn-magic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px -10px rgba(255, 15, 123, 0.6);
    transition: all 0.4s var(--bezier-spring);
    position: relative;
    overflow: hidden;
}

.btn-magic:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(255, 15, 123, 0.8), 0 0 20px rgba(248, 155, 41, 0.4);
}

.btn-magic::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

.btn-magic.loading {
    pointer-events: none;
}

.btn-magic.loading .btn-text {
    opacity: 0;
}

.btn-magic.loading::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.btn-magic.success {
    background: var(--accent-success);
    box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.6);
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hero */
.hero {
    padding: 180px 0 100px;
    text-align: center;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    color: var(--text-muted);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-size: clamp(2.6rem, 4.2vw + 1rem, 4.4rem);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 80px;
}

.hero-bullets {
    list-style: none;
    display: grid;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto 28px;
    padding: 0;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 1.05rem;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
    text-wrap: balance;
}

.hero-bullets i {
    color: var(--accent-success);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-hero-secondary {
    margin-left: 12px;
    padding: 18px 26px;
    font-size: 1rem;
    vertical-align: middle;
}

/* Hero showcase image */
.hero-visual {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

/* Dashboard Showcase & Toasts (legacy — kept for reference) */
.hero-visual--mockup {
    perspective: 1000px;
}

.glass-mockup {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: rotateX(10deg);
    transition: transform 0.6s var(--bezier);
}

.glass-mockup:hover {
    transform: rotateX(0deg) translateY(-10px);
}

.mockup-header {
    display: flex;
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.mockup-header i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-highlight);
    display: block;
}

.mockup-body {
    display: flex;
    gap: 20px;
    height: 400px;
}

.ui-sidebar {
    width: 220px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.ui-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ui-nav {
    height: 50px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.ui-grid {
    display: flex;
    gap: 20px;
    height: 140px;
}

.ui-card {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 15, 123, 0.1), rgba(248, 155, 41, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(255, 15, 123, 0.2);
}

.ui-list {
    flex: 1;
    background: var(--surface);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--border);
}

.ui-item {
    height: 20px;
    background: var(--border-highlight);
    border-radius: 6px;
    width: 60%;
}

.ui-item:nth-child(2) {
    width: 80%;
}

.hero-toast {
    position: absolute;
    background: var(--toast-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 10;
    animation: float-toast 6s infinite alternate ease-in-out;
    white-space: nowrap;
    color: var(--text-main);
}

.toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.toast-success {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-success);
}

.toast-purple {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-3);
}

.toast-orange {
    background: rgba(248, 155, 41, 0.2);
    color: var(--accent-2);
}

.toast-1 {
    top: -20px;
    right: -40px;
    animation-delay: 0s;
}

.toast-2 {
    bottom: 60px;
    left: -60px;
    animation-delay: -2s;
}

.toast-3 {
    bottom: -20px;
    right: 20px;
    animation-delay: -4s;
}

@keyframes float-toast {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Pain — emotional hook */
.pain-section {
    padding: 80px 0 40px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pain-card {
    background: rgba(244, 63, 94, 0.04);
    border: 1px solid rgba(244, 63, 94, 0.15);
    border-radius: 24px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s var(--bezier);
    box-shadow: var(--shadow-sm);
}

.pain-card:hover {
    border-color: rgba(244, 63, 94, 0.3);
    transform: translateY(-4px);
}

.pain-card i {
    font-size: 2.5rem;
    color: #f43f5e;
    margin-bottom: 16px;
    display: block;
}

.pain-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Dream — aspirational outcome */
.dream-section {
    padding: 80px 0;
}

.dream-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dream-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    transition: all 0.5s var(--bezier);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.dream-card--photo {
    padding: 0;
}

.dream-card-image {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    border-bottom: 1px solid var(--border);
}

.dream-card-body {
    padding: 28px 28px 32px;
}

.dream-card--photo:not(.dream-card--highlight) .dream-card-body {
    padding: 24px 28px 32px;
}

.dream-card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.dream-card--highlight {
    background: linear-gradient(135deg, rgba(255, 15, 123, 0.08), rgba(248, 155, 41, 0.05));
    border-color: rgba(255, 15, 123, 0.25);
}

.dream-time {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-2);
    margin-bottom: 16px;
}

.dream-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.dream-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* Audience — who it's for */
.audience-section {
    padding: 76px 0 60px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.audience-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px 28px;
    transition: all 0.4s var(--bezier);
    box-shadow: var(--shadow-sm);
}

.audience-card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.audience-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.audience-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* Stats & Trust */
.stats-section {
    padding: 40px 0 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.6rem, 3.2vw + 1.2rem, 3.8rem);
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.05em;
}

.stat-number--word {
    letter-spacing: -0.03em;
    font-weight: 800;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* Features & Bento Grid */
.features {
    padding: 120px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--bezier);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    min-height: 300px;
}

.bento-card--photo {
    padding: 0;
}

.bento-card-image {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid var(--border);
}

.bento-card-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bento-card--photo .bento-icon {
    margin-bottom: 20px;
}

.bento-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-highlight);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.bento-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(255, 15, 123, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-2);
    margin-bottom: 24px;
    box-shadow: inset 0 0 20px rgba(255, 15, 123, 0.03);
    border: 1px solid var(--border);
}

.bento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.18;
}

.bento-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.bento-large {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
    min-height: 360px;
}

.bento-large .bento-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.bento-visual {
    flex: 1.05;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--surface-hover);
    border-left: 1px solid var(--border);
}

.bento-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    object-position: center;
}

.video-mockup {
    width: 100%;
    max-width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #1e1e2e, #2d2d44);
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.video-mockup i {
    font-size: 4rem;
    color: #fff;
    opacity: 0.8;
    transition: all 0.3s var(--bezier);
}

.video-mockup:hover i {
    transform: scale(1.1);
    opacity: 1;
    color: var(--accent-1);
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.progress-bar span {
    display: block;
    height: 100%;
    width: 45%;
    background: var(--accent-1);
    box-shadow: 0 0 10px var(--accent-1);
}

.bento-wide {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 0;
}

.bento-wide .bento-content {
    flex: 1;
    max-width: none;
    padding: 40px 0 40px 40px;
}

.bento-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 40px 40px 40px 0;
}

.bento-step {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.bento-step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ROI Section (Sales argument) */
.roi-section {
    padding: 80px 0 120px;
}

.roi-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 60px auto 0;
}

.price-card {
    max-width: 900px;
    margin: 32px auto 0;
    padding: 36px 40px;
    border-radius: 32px;
    border: 1px solid rgba(255, 15, 123, 0.18);
    background: linear-gradient(135deg, rgba(255, 15, 123, 0.06), rgba(248, 155, 41, 0.08));
    box-shadow: var(--shadow-md);
    text-align: center;
}

.price-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.price-value {
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--text-main);
    margin-bottom: 16px;
}

.price-card p {
    max-width: 560px;
    margin: 0 auto 24px;
    color: var(--text-muted);
    line-height: 1.65;
}

.price-includes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
    margin: 0 auto 28px;
    text-align: left;
}

.price-includes span {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.95rem;
}

.price-includes i {
    color: var(--accent-success);
    flex-shrink: 0;
}

.price-cta {
    padding: 16px 26px;
}

.roi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 40px;
    text-align: left;
    transition: all 0.5s var(--bezier);
    box-shadow: var(--shadow-sm);
}

.roi-card:hover {
    transform: translateY(-4px);
}

.old-way {
    opacity: 0.85;
    filter: grayscale(40%);
    background: var(--surface-hover);
}

.new-way {
    background: linear-gradient(135deg, rgba(255, 15, 123, 0.05), rgba(248, 155, 41, 0.05));
    border-color: rgba(255, 15, 123, 0.2);
    position: relative;
}

.new-way::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.roi-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 24px;
    background: var(--surface-hover);
    color: var(--text-muted);
}

.glow-badge {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 15, 123, 0.3);
}

.roi-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.roi-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.old-way .roi-list i {
    color: #f43f5e;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.new-way .roi-list li {
    color: var(--text-main);
}

.new-way .roi-list i {
    color: var(--accent-success);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.roi-closer {
    max-width: 640px;
    margin: 48px auto 0;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
}

/* FAQ */
.faq-section {
    padding: 80px 0 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Form Magic */
.contact-section {
    padding: 40px 0 100px;
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 15, 123, 0.1), transparent 50%);
    pointer-events: none;
}

.contact-content h2 {
    font-size: clamp(2.1rem, 2.6vw + 1rem, 3rem);
    margin-bottom: 24px;
}

.contact-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form-container {
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.input-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-highlight);
    padding: 16px 0;
    color: var(--text-main);
    font-size: 1.25rem;
    font-family: var(--font);
    transition: all 0.3s ease;
    outline: none;
    border-radius: 0;
}

.input-wrapper label {
    position: absolute;
    left: 0;
    top: 16px;
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: all 0.3s var(--bezier);
    pointer-events: none;
}

.input-wrapper input:focus,
.input-wrapper input:not(:placeholder-shown) {
    border-bottom-color: var(--accent-1);
}

.input-wrapper input:focus+label,
.input-wrapper input:not(:placeholder-shown)+label {
    top: -12px;
    font-size: 0.85rem;
    color: var(--accent-1);
    font-weight: 600;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.btn-block {
    width: 100%;
    padding: 24px;
    font-size: 1.25rem;
}

/* Animations classes */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--bezier);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 1s var(--bezier);
}

.reveal-up.active,
.reveal-scale.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Turnkey Section */
.turnkey-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, transparent, rgba(255, 15, 123, 0.03) 50%, rgba(139, 92, 246, 0.04));
}

.turnkey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.turnkey-card {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.turnkey-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.turnkey-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.turnkey-card p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.turnkey-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 15, 123, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.turnkey-card:hover::after {
    opacity: 1;
}

.turnkey-card:hover {
    background: var(--surface-hover) !important;
    border-color: var(--border-highlight) !important;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Launch Process */
.launch-section {
    padding: 96px 0 72px;
}

.launch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.launch-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--bezier);
}

.launch-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-md);
}

.launch-step {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 22px;
}

.launch-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.launch-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Payback Calculator */
.calculator-section {
    padding: 72px 0 96px;
}

.calculator-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 15, 123, 0.06), rgba(139, 92, 246, 0.06));
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 56px;
    box-shadow: var(--shadow-lg);
}

.calculator-content {
    text-align: left;
}

.calculator-content .section-title {
    margin-bottom: 18px;
}

.calculator-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.calculator-panel {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.calc-scenarios {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}

.calc-chip {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-main);
    border-radius: 14px;
    padding: 13px 10px;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
}

.calc-chip:hover,
.calc-chip.active {
    border-color: rgba(255, 15, 123, 0.35);
    background: linear-gradient(135deg, rgba(255, 15, 123, 0.1), rgba(248, 155, 41, 0.12));
    color: var(--accent-1);
}

.calc-main-result {
    background: var(--surface);
    border: 1px solid rgba(255, 15, 123, 0.16);
    border-radius: 24px;
    padding: 28px;
    text-align: center;
}

.calc-main-result span {
    display: block;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 10px;
}

.calc-main-result strong {
    display: block;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--text-main);
    margin-bottom: 10px;
}

.calc-main-result p {
    color: var(--text-muted);
    margin: 0;
}

.calc-main-result b {
    color: var(--text-main);
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.calc-result {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    text-align: left;
}

.calc-result span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.calc-result strong {
    display: block;
    color: var(--text-main);
    font-size: 1.35rem;
    line-height: 1.15;
}

.calc-result--highlight {
    border-color: rgba(16, 185, 129, 0.28);
    background: rgba(16, 185, 129, 0.08);
}

.calc-result--highlight strong {
    color: var(--accent-success);
}

.calc-note {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: 18px;
    text-align: left;
}

.glass-footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
    text-align: center;
    margin-bottom: 20px;
    background: var(--surface);
}

.footer-phone {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.25rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: var(--accent-1);
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
}

/* Responsive Mobile Magic */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-wide,
    .bento-large {
        grid-column: span 2;
        flex-direction: column;
        align-items: stretch;
    }

    .bento-large .bento-visual {
        border-left: none;
        border-top: 1px solid var(--border);
        padding: 16px;
    }

    .bento-wide .bento-content,
    .bento-large .bento-content {
        padding: 32px 24px;
    }

    .bento-steps {
        padding: 0 24px 32px;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw + 0.6rem, 3.6rem);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0;
    }

    .pain-grid,
    .dream-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .launch-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .calculator-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 32px;
    }

    .roi-cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .contact-content h2 {
        font-size: clamp(2rem, 4vw + 0.4rem, 2.5rem);
    }

    /* Show full photos on tablets — no cropping */
    .dream-card-image,
    .bento-card-image,
    .bento-image {
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    }

    .desktop-nav,
    .header-action .btn-outline {
        display: none;
    }

    .header-action {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-container {
        gap: 12px;
    }

    .logo {
        font-size: 1.15rem;
        flex-shrink: 1;
        min-width: 0;
    }

    .logo i {
        font-size: 1.4rem;
    }

    .glass-header {
        padding: 14px 0;
    }

    .burger-btn {
        display: flex;
    }

    .mobile-action-bar {
        display: flex;
    }

    .glass-footer {
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {

    .container {
        padding: 0 18px;
    }

    /* Tighter vertical rhythm on phones — less endless scrolling */
    .pain-section {
        padding: 56px 0 28px;
    }

    .dream-section {
        padding: 56px 0;
    }

    .audience-section {
        padding: 48px 0 36px;
    }

    .features {
        padding: 56px 0;
    }

    .turnkey-section {
        padding: 56px 0;
    }

    .launch-section {
        padding: 52px 0;
    }

    .calculator-section {
        padding: 44px 0 56px;
    }

    .roi-section {
        padding: 48px 0 64px;
    }

    .faq-section {
        padding: 48px 0 32px;
    }

    .stats-section {
        padding: 24px 0 48px;
    }

    .contact-section {
        padding: 24px 0 88px;
    }

    .dream-card-body {
        padding: 22px 20px 28px;
    }

    .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 36px !important;
    }

    .language-modal__card {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .language-modal__card h2 {
        font-size: 1.7rem;
    }

    .hero {
        padding: 120px 0 48px;
    }

    .hero-chip {
        margin-bottom: 24px;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: clamp(2.25rem, 6vw + 0.5rem, 3rem);
    }

    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 40px;
    }

    .hero-image {
        border-radius: 18px;
        width: 100%;
        height: auto;
    }

    .dream-card-image,
    .bento-card-image {
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
        background: var(--surface-hover);
    }

    .bento-image {
        max-width: 100%;
        width: 100%;
        object-fit: contain;
    }

    .bento-large .bento-visual {
        order: -1;
        border-top: none;
        border-bottom: 1px solid var(--border);
        padding: 12px;
        background: var(--surface-hover);
        min-height: auto;
        max-height: none;
        overflow: hidden;
    }

    .bento-large .bento-image {
        border-radius: 12px;
        box-shadow: none;
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        object-position: center;
    }

    .bento-large .bento-content {
        padding: 24px 22px 28px;
        justify-content: flex-start;
    }

    .btn-magic {
        width: 100%;
        padding: 18px 24px;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: clamp(1.9rem, 3.6vw + 0.9rem, 2.35rem);
    }

    .hero-bullets {
        font-size: 1rem;
        text-align: left;
        margin: 0 auto 22px;
    }

    .hero-bullets li {
        justify-content: flex-start;
    }

    .btn-hero-secondary {
        width: 100%;
        margin: 12px 0 0;
        text-align: center;
        padding: 16px 24px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bento-card {
        min-height: auto;
        border-radius: 24px;
        padding: 28px 24px;
    }

    .bento-card--photo {
        padding: 0;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .bento-wide,
    .bento-large {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
    }

    .bento-wide .bento-content {
        padding: 32px 24px 16px;
    }

    .bento-steps {
        padding: 0 24px 32px;
    }

    .bento-card-body {
        padding: 24px;
    }

    .bento-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 1.7rem;
        margin-bottom: 18px;
    }

    .bento-card h3 {
        font-size: 1.25rem;
    }

    .launch-card,
    .faq-item {
        padding: 24px;
        border-radius: 22px;
    }

    .calculator-card {
        padding: 28px 20px;
        border-radius: 28px;
    }

    .calculator-content {
        text-align: center;
    }

    .calculator-content p {
        font-size: 1rem;
    }

    .calculator-panel {
        padding: 20px;
        border-radius: 22px;
    }

    .calc-scenarios {
        grid-template-columns: repeat(2, 1fr);
    }

    .calc-chip {
        padding: 12px 8px;
        font-size: 0.95rem;
    }

    .calc-main-result {
        padding: 24px 18px;
    }

    .calc-results {
        grid-template-columns: 1fr;
    }

    .calc-note {
        text-align: center;
    }

    .price-card {
        margin-top: 24px;
        padding: 28px 22px;
        border-radius: 24px;
    }

    .price-includes {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .price-value {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .price-cta {
        width: 100%;
    }

    .contact-card {
        padding: 32px 24px;
        border-radius: 32px;
    }

    .contact-content h2 {
        font-size: 2.2rem;
    }

    .contact-form-container {
        padding: 24px;
        border-radius: 20px;
    }

    .input-wrapper input {
        font-size: 1.1rem;
    }
}