/* ==========================================
   VELVET ALLURE — Premium Landing
   Dark theme with blue accents
   ========================================== */

/* ==================== VARIABLES ==================== */
:root {
    --black:     #050507;
    --black-900: #0a0a0f;
    --black-800: #101018;
    --black-700: #16161f;
    --black-600: #1c1c28;

    --white:    #ffffff;
    --white-90: rgba(255,255,255,.9);
    --white-70: rgba(255,255,255,.7);
    --white-50: rgba(255,255,255,.5);
    --white-30: rgba(255,255,255,.3);
    --white-20: rgba(255,255,255,.2);
    --white-10: rgba(255,255,255,.1);
    --white-05: rgba(255,255,255,.05);

    --blue:         #2563eb;
    --blue-light:   #3b82f6;
    --blue-lighter: #60a5fa;
    --blue-glow:    rgba(59,130,246,.4);
    --blue-soft:    rgba(59,130,246,.1);

    --gray:      #6b7280;
    --gray-dark: #374151;

    --gradient-blue:   linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    --gradient-text:   linear-gradient(135deg, var(--white) 0%, var(--blue-lighter) 50%, var(--white) 100%);
    --gradient-card:   linear-gradient(180deg, var(--black-700) 0%, var(--black-800) 100%);

    --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    --section-padding: 120px;
    --container-width: 1200px;

    --ease:        cubic-bezier(.4,0,.2,1);
    --ease-bounce: cubic-bezier(.68,-.55,.265,1.55);
}

/* ==================== RESET ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global tap highlight removal */
a, button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

::selection {
    background: var(--blue);
    color: var(--white);
}

/* ==================== CURSOR GLOW ==================== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    opacity: .3;
    transform: translate(-50%,-50%);
    transition: opacity .3s;
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity .6s var(--ease), visibility .6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.preloader__icon {
    width: 48px;
    height: 48px;
    animation: pulse 2s ease-in-out infinite;
}

.preloader__text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.preloader__bar {
    width: 200px;
    height: 2px;
    background: var(--white-10);
    border-radius: 2px;
    overflow: hidden;
}

.preloader__progress {
    width: 0;
    height: 100%;
    background: var(--gradient-blue);
    animation: load 1.5s var(--ease) forwards;
}

@keyframes load    { to { width: 100%; } }
@keyframes pulse   { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: .8; } }

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all .3s var(--ease);
}

.nav.scrolled {
    background: rgba(5,5,7,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-05);
    padding: 12px 0;
}

.nav__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.nav__logo-icon {
    width: 28px;
    height: 28px;
}

.nav__logo-accent { color: var(--blue-lighter); }

.nav__menu {
    display: flex;
    gap: 40px;
}

.nav__link {
    font-size: .875rem;
    font-weight: 500;
    color: var(--white-70);
    transition: color .3s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--blue-light);
    transition: width .3s var(--ease);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 500;
    transition: all .3s var(--ease);
    min-height: 42px;
}

.nav__cta:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.nav__cta-icon { display: flex; flex-shrink: 0; }

/* Hamburger */
.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px 8px;
}

.nav__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s var(--ease);
}

.nav__burger.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:last-child  { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--ease);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transform: translateY(30px);
    transition: transform .4s var(--ease);
    padding: 20px;
    width: 100%;
    max-width: 320px;
}

.mobile-menu.active .mobile-menu__content { transform: translateY(0); }

.mobile-menu__link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white-70);
    transition: color .3s;
    padding: 8px 0;
}

.mobile-menu__link:hover { color: var(--white); }

.mobile-menu__btn {
    margin-top: 16px;
    width: 100%;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 40px 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero__gradient-orb--1 {
    width: 600px; height: 600px;
    background: var(--blue);
    top: -200px; left: 50%;
    transform: translateX(-50%);
    opacity: .15;
}

.hero__gradient-orb--2 {
    width: 400px; height: 400px;
    background: var(--blue-light);
    bottom: -100px; left: -100px;
    opacity: .1;
}

.hero__gradient-orb--3 {
    width: 300px; height: 300px;
    background: #818cf8;
    bottom: 20%; right: -50px;
    opacity: .1;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--white-05) 1px, transparent 1px),
        linear-gradient(90deg, var(--white-05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero__noise {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: .03;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-70);
    margin-bottom: 40px;
}

.hero__badge-dot {
    width: 8px; height: 8px;
    background: var(--blue-light);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero__title { margin-bottom: 30px; }

.hero__title-line {
    display: block;
    overflow: hidden;
}

.hero__title-word {
    display: inline-block;
    font-size: clamp(3.5rem, 10vw, 10rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.02em;
}

.hero__title-word--accent {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer { to { background-position: 200% center; } }

.hero__subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white-70);
    line-height: 1.8;
    margin-bottom: 50px;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 12px;
    overflow: hidden;
    min-height: 56px;
}

.btn-primary__bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-blue);
    transition: transform .3s var(--ease);
}

.btn-primary:hover .btn-primary__bg { transform: scale(1.05); }

.btn-primary__text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.btn-primary--large          { padding: 22px 48px; min-height: 64px; }
.btn-primary--large .btn-primary__text { font-size: 1.1rem; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    border: 1px solid var(--white-20);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white-90);
    transition: all .3s var(--ease);
    min-height: 56px;
    white-space: nowrap;
}

.btn-ghost:hover {
    border-color: var(--white-50);
    background: var(--white-05);
}

/* Hero Stats */
.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.hero__stat { text-align: center; }

.hero__stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.hero__stat-label {
    font-size: .875rem;
    font-weight: 500;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero__stat-divider {
    width: 1px;
    height: 50px;
    background: var(--white-10);
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white-30);
    font-size: .75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--white-30) 0%, transparent 100%);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%,100% { transform: scaleY(1); opacity: 1; }
    50%      { transform: scaleY(.5); opacity: .5; }
}

/* ==================== SECTION COMMON ==================== */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-lighter);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
}

.text-gradient {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== ABOUT ==================== */
.about {
    padding: var(--section-padding) 40px;
    background: var(--black-900);
}

.about__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.about__header { margin-bottom: 80px; }

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__lead {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--white-90);
    margin-bottom: 24px;
}

.about__description {
    font-size: 1.05rem;
    color: var(--white-50);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white-05);
    border: 1px solid var(--white-05);
    border-radius: 12px;
    font-weight: 500;
}

.about__highlight-icon {
    flex-shrink: 0;
    color: var(--blue-light);
}

.about__visual {
    display: flex;
    justify-content: center;
}

.about__card {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 60px 40px;
    background: var(--gradient-card);
    border: 1px solid var(--white-10);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
}

.about__card-glow {
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 200%; height: 200%;
    background: radial-gradient(circle, var(--blue-soft) 0%, transparent 50%);
    opacity: .5;
}

.about__card-content { position: relative; z-index: 1; }

.about__card-icon {
    width: 64px; height: 64px;
    margin: 0 auto 24px;
}

.about__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.about__card-text { color: var(--white-50); }

/* ==================== FEATURES ==================== */
.features {
    padding: var(--section-padding) 40px;
    background: var(--black);
}

.features__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.features__header {
    text-align: center;
    margin-bottom: 80px;
}

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

.feature {
    position: relative;
    padding: 40px 32px;
    background: var(--black-800);
    border: 1px solid var(--white-05);
    border-radius: 20px;
    transition: all .4s var(--ease);
    overflow: hidden;
}

.feature:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
}

.feature:hover .feature__line { transform: scaleX(1); }

.feature__number {
    position: absolute;
    top: 20px; right: 24px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--white-20);
    letter-spacing: 1px;
}

.feature__icon {
    width: 48px; height: 48px;
    margin-bottom: 24px;
}

.feature__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature__text {
    color: var(--white-50);
    font-size: .95rem;
    line-height: 1.7;
}

.feature__line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

/* ==================== HOW IT WORKS ==================== */
.how {
    padding: var(--section-padding) 40px;
    background: var(--black-900);
}

.how__container {
    max-width: 800px;
    margin: 0 auto;
}

.how__header {
    text-align: center;
    margin-bottom: 80px;
}

.how__steps { margin-bottom: 60px; }

.how__step {
    display: flex;
    gap: 40px;
    padding: 40px 0;
}

.how__step:not(:last-child) {
    border-bottom: 1px solid var(--white-05);
}

.how__step-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.how__step-number span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue-lighter);
}

.how__step-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue) 0%, transparent 100%);
    min-height: 40px;
}

.how__step-content {
    flex: 1;
    padding-top: 4px;
}

.how__step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.how__step-text {
    color: var(--white-50);
    line-height: 1.7;
}

.how__cta { text-align: center; }

/* ==================== FAQ ==================== */
.faq {
    padding: var(--section-padding) 40px;
    background: var(--black);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__header {
    text-align: center;
    margin-bottom: 60px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background: var(--black-800);
    border: 1px solid var(--white-05);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .3s;
}

.faq__item:hover,
.faq__item.active { border-color: var(--white-10); }

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    transition: color .3s;
    gap: 16px;
    min-height: 72px;
}

.faq__question:hover { color: var(--blue-lighter); }

.faq__question-icon {
    display: flex;
    flex-shrink: 0;
    transition: transform .3s var(--ease);
}

.faq__item.active .faq__question-icon { transform: rotate(45deg); }

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

.faq__item.active .faq__answer { max-height: 300px; }

.faq__answer p {
    padding: 0 28px 24px;
    color: var(--white-50);
    line-height: 1.8;
}

/* ==================== CTA ==================== */
.cta {
    padding: var(--section-padding) 40px;
    position: relative;
    overflow: hidden;
}

.cta__bg { position: absolute; inset: 0; }

.cta__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.cta__orb--1 {
    width: 500px; height: 500px;
    background: var(--blue);
    top: 50%; left: 20%;
    transform: translateY(-50%);
    opacity: .15;
}

.cta__orb--2 {
    width: 400px; height: 400px;
    background: #818cf8;
    top: 50%; right: 20%;
    transform: translateY(-50%);
    opacity: .1;
}

.cta__container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta__content {
    text-align: center;
    padding: 80px 60px;
    background: var(--gradient-card);
    border: 1px solid var(--white-10);
    border-radius: 32px;
}

.cta__title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta__text {
    color: var(--white-50);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta__note {
    margin-top: 20px;
    font-size: .875rem;
    color: var(--white-30);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 60px 40px 40px;
    background: var(--black-900);
    border-top: 1px solid var(--white-05);
    padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
}

.footer__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--white-05);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__logo-icon {
    width: 24px;
    height: 24px;
}

.footer__logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer__tagline {
    color: var(--white-50);
    font-size: .875rem;
    margin-top: 8px;
}

.footer__links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer__links a {
    color: var(--white-50);
    font-size: .875rem;
    transition: color .3s;
    padding: 4px 0;
}

.footer__links a:hover { color: var(--white); }

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

.footer__copy,
.footer__age { font-size: .875rem; }

.footer__copy { color: var(--white-30); }
.footer__age  { color: var(--white-50); }

/* ==================== ANIMATIONS ==================== */
[data-aos] {
    opacity: 0;
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-down"]  { transform: translateY(-40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="zoom-in"]    { transform: scale(.95); }

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ==================== UTILITIES ==================== */
.hide-mobile { display: inline; }

/* ==================== RESPONSIVE — 1024px ==================== */
@media (max-width: 1024px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }

    .about__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__visual { order: -1; }
}

/* ==================== RESPONSIVE — 768px ==================== */
@media (max-width: 768px) {
    :root { --section-padding: 80px; }

    .hide-mobile { display: none; }

    /* Nav */
    .nav__menu,
    .nav__cta   { display: none; }
    .nav__burger { display: flex; }

    .nav__container { padding: 0 20px; }

    /* Hero */
    .hero {
        padding: 100px 20px 60px;
        min-height: 100svh;
    }

    .hero__badge {
        font-size: .7rem;
        padding: 6px 16px;
        letter-spacing: 1px;
        margin-bottom: 28px;
    }

    .hero__title-word {
        font-size: clamp(2.8rem, 14vw, 5rem);
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 36px;
        padding: 0 8px;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 52px;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
        max-width: 360px;
    }

    .hero__stats {
        gap: 24px;
    }

    .hero__stat-value { font-size: 2rem; }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero__scroll { display: none; }

    /* Sections */
    .about,
    .features,
    .how,
    .faq,
    .cta,
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* About */
    .about__header { margin-bottom: 48px; }
    .about__lead   { font-size: 1.25rem; }
    .about__card   {
        max-width: 100%;
        padding: 40px 28px;
    }

    /* Features */
    .features__grid { grid-template-columns: 1fr; gap: 16px; }
    .features__header { margin-bottom: 48px; }

    .feature { padding: 28px 24px; }

    /* How */
    .how__step {
        flex-direction: column;
        gap: 16px;
        padding: 28px 0;
    }

    .how__step-number { flex-direction: row; }

    .how__step-line {
        height: 2px;
        width: 40px;
        min-height: auto;
        background: linear-gradient(to right, var(--blue) 0%, transparent 100%);
    }

    .how__step-title { font-size: 1.25rem; }
    .how__header { margin-bottom: 48px; }

    /* FAQ */
    .faq__question { padding: 20px 20px; font-size: 1rem; }
    .faq__answer p { padding: 0 20px 20px; }

    /* CTA */
    .cta__content { padding: 48px 28px; }

    /* Footer */
    .footer__top {
        flex-direction: column;
        gap: 28px;
        text-align: center;
        align-items: center;
    }

    .footer__links {
        justify-content: center;
        gap: 16px 24px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ==================== RESPONSIVE — 480px ==================== */
@media (max-width: 480px) {
    :root { --section-padding: 60px; }

    .hero { padding: 90px 16px 50px; }

    .hero__title-word {
        font-size: clamp(2.2rem, 16vw, 3.5rem);
    }

    .hero__subtitle { font-size: .95rem; }

    .hero__stats { gap: 16px; }
    .hero__stat-value { font-size: 1.75rem; }
    .hero__stat-label { font-size: .75rem; }

    .section-title { font-size: clamp(1.6rem, 7vw, 2.5rem); }

    .about__lead  { font-size: 1.1rem; }
    .about__card  { padding: 32px 20px; }
    .about__highlight { padding: 12px 14px; font-size: .9rem; }

    .feature { padding: 24px 18px; }
    .feature__title { font-size: 1.1rem; }

    .how__step-title { font-size: 1.1rem; }

    .faq__question {
        padding: 18px 16px;
        font-size: .95rem;
        min-height: 60px;
    }
    .faq__answer p { padding: 0 16px 18px; }

    .cta__content { padding: 40px 20px; border-radius: 20px; }
    .cta__title   { font-size: 1.5rem; }

    .btn-primary--large { padding: 18px 32px; min-height: 56px; }
    .btn-primary--large .btn-primary__text { font-size: 1rem; }

    .about,
    .features,
    .how,
    .faq,
    .cta,
    .footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer__logo-text { font-size: .9rem; letter-spacing: 1px; }
}

/* ==================== RESPONSIVE — 380px ==================== */
@media (max-width: 380px) {
    .hero__title-word { font-size: clamp(1.9rem, 17vw, 2.8rem); }
    .hero__badge { font-size: .65rem; padding: 5px 12px; }
    .section-title { font-size: 1.5rem; }
    .btn-primary__text { font-size: .9rem; }
    .btn-ghost span   { font-size: .9rem; }
    .nav__logo-text { font-size: .95rem; letter-spacing: 1px; }
}
