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

:root {
    --bg-primary: #FAFAF9;
    --bg-secondary: #FFFFFF;
    --bg-dark: #1C1917;
    --text-primary: #1C1917;
    --text-secondary: #78716C;
    --text-light: #A8A29E;
    --border: #E7E5E4;
    --stone-50: #FAFAF9;
    --stone-100: #F5F5F4;
    --stone-200: #E7E5E4;
    --stone-300: #D6D3D1;
    --stone-800: #292524;
    --stone-900: #1C1917;
    --accent-warm: #C2956A;
    --accent-gold: #D4A574;
    --accent-rose: #B8807A;
    --gutter: 6rem;
    --max-width: 1400px;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* ─── LAYOUT CONTAINER ───────────────────────────────────────────────────── */
.container,
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(231, 229, 228, 0.5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--text-primary);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-warm);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--stone-900);
    color: white !important;
}

.btn-primary:hover {
    background: var(--stone-800);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 52px;
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-rose), var(--accent-gold));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    filter: blur(8px);
}

.btn-glow:hover::after {
    opacity: 0.5;
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--stone-100);
    border-color: var(--stone-300);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 2rem var(--gutter);
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAF9 40%, #F5F0EB 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(194, 149, 106, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(194, 149, 106, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(194, 149, 106, 0.08);
    color: var(--accent-warm);
    border-radius: 50px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    border: 1px solid rgba(194, 149, 106, 0.2);
    font-weight: 600;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-warm);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

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

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

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 .italic {
    font-style: italic;
    color: var(--text-secondary);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.user-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatars {
    display: flex;
    margin-right: 0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2.5px solid white;
    margin-left: -12px;
    object-fit: cover;
    transition: transform 0.3s;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 2;
}

.stats-text strong {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.stats-text span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Hero visual — phone mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--stone-900);
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: var(--stone-900);
    border-radius: 0 0 20px 20px;
    z-index: 3;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    border: 1px solid rgba(245, 245, 244, 0.8);
    animation: float 4s ease-in-out infinite;
}

.floating-card-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    left: -15%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-card-icon {
    font-size: 1.5rem;
}

.floating-card-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.floating-card-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ─── SECTION LABEL & HEADINGS ───────────────────────────────────────────── */
.section-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-warm);
    margin-bottom: 1rem;
    font-weight: 700;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

h2 .italic {
    font-style: italic;
    color: var(--text-secondary);
}

/* ─── PROBLEM TEASER ─────────────────────────────────────────────────────── */
.problem-teaser {
    padding: 7rem 0;
    background: var(--stone-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.problem-teaser::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194, 149, 106, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.problem-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.problem-stat {
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-percent {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 400;
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: white;
}

.problem-headline strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.problem-subtext {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
}

/* ─── PHILOSOPHY ─────────────────────────────────────────────────────────── */
.philosophy {
    padding: 8rem 0;
    background: white;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.philosophy-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 480px;
    font-weight: 300;
}

.philosophy-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.philosophy-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.4s;
}

.philosophy-step:first-child {
    padding-top: 0;
}

.philosophy-step:last-child {
    border-bottom: none;
}

.philosophy-step:hover {
    padding-left: 1rem;
}

.philosophy-step-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent-warm);
    font-weight: 600;
    flex-shrink: 0;
    padding-top: 0.2rem;
}

.philosophy-step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.philosophy-step-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.philosophy-tagline {
    margin-top: 5rem;
    text-align: center;
}

.philosophy-tagline p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--text-primary);
}

.philosophy-tagline .italic {
    font-style: italic;
    color: var(--accent-warm);
}

/* ─── VISION BANNER ──────────────────────────────────────────────────────── */
.vision-banner {
    position: relative;
}

.vision-parallax {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        url('photo-1490481651871-ab68de25d43d.jpg') center / cover no-repeat;
    background-attachment: fixed;
}

.vision-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.85), rgba(41, 37, 36, 0.75));
}

.vision-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 6rem var(--gutter);
    color: white;
}

.vision-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.vision-content .italic {
    color: var(--accent-gold);
}

.vision-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────────────────── */
.how-it-works {
    padding: 8rem 0;
    background: var(--stone-100);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 4rem;
}

.step-card {
    text-align: center;
    flex: 1;
    max-width: 320px;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--stone-200);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-warm);
}

.step-visual {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.step-icon-ring {
    width: 80px;
    height: 80px;
    border: 2px solid var(--stone-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    background: white;
}

.step-card:hover .step-icon-ring {
    background: var(--stone-900);
    border-color: var(--stone-900);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.step-card:hover .step-icon-ring svg {
    stroke: white;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -30px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-warm);
    background: rgba(194, 149, 106, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Step connectors */
.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    width: 60px;
    flex-shrink: 0;
}

.connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--stone-200), var(--accent-warm), var(--stone-200));
    position: relative;
}

.connector-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-warm);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* ─── SNAP / MAP / DAZZLE ────────────────────────────────────────────────── */
.snap-map-dazzle {
    padding: 8rem 0;
    background: white;
}

.smd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.smd-card {
    padding: 3rem 2.5rem;
    border-radius: 24px;
    background: var(--stone-50);
    border: 1px solid var(--stone-200);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.smd-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-warm);
}

.smd-icon-wrapper {
    margin-bottom: 2rem;
}

.smd-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(194, 149, 106, 0.1), rgba(212, 165, 116, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.smd-card:hover .smd-icon {
    background: var(--stone-900);
    transform: scale(1.1);
}

.smd-card:hover .smd-icon svg {
    stroke: white;
}

.smd-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.smd-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.smd-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-warm), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.5s;
    transform-origin: left;
}

.smd-card:hover .smd-accent {
    transform: scaleX(1);
}

.smd-tagline {
    text-align: center;
    margin-top: 4rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--text-secondary);
}

.smd-tagline .italic {
    font-style: italic;
    color: var(--accent-warm);
}

/* ─── FEATURES ───────────────────────────────────────────────────────────── */
.features {
    padding: 8rem 0;
    background: var(--stone-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--stone-200);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-card.span-8 {
    grid-column: span 8;
}

.feature-card.span-4 {
    grid-column: span 4;
}

.feature-card.dark {
    background: var(--stone-900);
    color: white;
}

.feature-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card.with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.feature-card.span-4.with-image {
    grid-template-columns: 1fr;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(194, 149, 106, 0.1), rgba(212, 165, 116, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card.dark .feature-icon {
    background: rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.feature-card.dark p {
    color: rgba(255, 255, 255, 0.7);
}

.feature-bars {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    align-items: flex-end;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, rgba(194, 149, 106, 0.3), rgba(194, 149, 106, 0.1));
    border-radius: 8px;
    transition: height 0.6s ease;
}

.feature-card.dark:hover .bar {
    background: linear-gradient(to top, var(--accent-warm), rgba(194, 149, 106, 0.3));
}

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonials {
    padding: 8rem 0;
    background: white;
    overflow: hidden;
}

.testimonials-header {
    max-width: var(--max-width);
    margin: 0 auto 4rem;
    padding: 0 var(--gutter);
}

.ticker-wrapper {
    position: relative;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.ticker {
    display: flex;
    gap: 1.5rem;
    animation: scroll 35s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 380px;
    background: var(--stone-50);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--stone-200);
    transition: all 0.5s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.stars {
    color: var(--accent-warm);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.85rem;
}

.author-info strong {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq {
    padding: 8rem 0;
    background: var(--stone-100);
}

.faq-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-primary);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-warm);
}

.faq-icon {
    font-size: 2rem;
    transition: transform 0.3s;
    color: var(--accent-warm);
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding-top 0.4s ease;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 1rem;
}

/* ─── DOWNLOAD CTA ───────────────────────────────────────────────────────── */
.download-cta {
    padding: 8rem 0;
    background: white;
}

.cta-card {
    max-width: var(--max-width);
    margin: 0 auto;
    margin-left: max(var(--gutter), calc((100vw - var(--max-width)) / 2));
    margin-right: max(var(--gutter), calc((100vw - var(--max-width)) / 2));
    background: var(--stone-900);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 6rem 3rem;
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.25;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 2.5rem;
}

.btn-white {
    background: white;
    color: var(--stone-900);
}

.btn-white:hover {
    background: var(--stone-100);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    opacity: 0.8;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
    background: var(--stone-900);
    color: white;
    padding: 5rem 0 3rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-column h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-link.twitter svg {
    fill: #1DA1F2;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem var(--gutter) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ─── ABOUT US ───────────────────────────────────────────────────────────── */
.about-us {
    padding: 8rem 0;
    background: var(--stone-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194, 149, 106, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-us::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-since {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.since-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-warm), transparent);
}

.since-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.about-us h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.about-us h2 .italic {
    color: var(--accent-gold);
}

.about-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 750px;
    margin: 0 auto;
    font-weight: 300;
}

.about-intro strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(194, 149, 106, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-service-icon-wrap {
    margin-bottom: 1.5rem;
}

.about-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(194, 149, 106, 0.15), rgba(212, 165, 116, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    color: var(--accent-warm);
}

.about-service-card:hover .about-service-icon {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold));
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 25px rgba(194, 149, 106, 0.3);
}

.about-service-card:hover .about-service-icon svg {
    stroke: white;
}

.about-service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.about-service-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.about-service-card p em {
    color: var(--accent-gold);
    font-style: italic;
}

.about-service-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-warm), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.5s;
    transform-origin: left;
}

.about-service-card:hover .about-service-accent {
    transform: scaleX(1);
}

/* TopGear special variant */
.topgear-card:hover {
    border-color: rgba(220, 38, 38, 0.3);
}

.topgear-icon {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(239, 68, 68, 0.1)) !important;
    color: #ef4444 !important;
}

.about-service-card:hover .topgear-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

.topgear-accent {
    background: linear-gradient(90deg, #dc2626, #ef4444) !important;
}

.about-closing {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-closing-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-closing-text strong {
    color: white;
    font-weight: 600;
}

.about-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.about-tagline .italic {
    font-style: italic;
    color: var(--accent-gold);
}

.about-tagline strong {
    color: white;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation */
.fade-in:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-in:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-in:nth-child(4) {
    transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

    .floating-card-1 {
        right: 0;
    }

    .floating-card-2 {
        left: 0;
    }

    .problem-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .problem-subtext {
        margin: 0 auto;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .philosophy-body {
        margin: 0 auto;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: auto;
        padding-top: 0;
        padding: 0.5rem 0;
    }

    .connector-line {
        width: 2px;
        height: 30px;
        background: linear-gradient(to bottom, var(--stone-200), var(--accent-warm), var(--stone-200));
    }

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

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

    .feature-card.span-8,
    .feature-card.span-4 {
        grid-column: span 1;
    }

    .feature-card.with-image {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: span 2;
    }

    .vision-parallax {
        background-attachment: scroll;
    }

    .about-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --gutter: 1.5rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .phone-frame {
        width: 220px;
        height: 440px;
    }

    .floating-card {
        display: none;
    }

    .stat-number {
        font-size: 5rem;
    }

    .stat-percent {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cta-card {
        margin-left: var(--gutter);
        margin-right: var(--gutter);
        border-radius: 20px;
        padding: 4rem 2rem;
    }

    .smd-card {
        padding: 2rem 1.5rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .about-service-card {
        padding: 2rem 1.5rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .about-since {
        gap: 1rem;
    }

    .since-line {
        width: 40px;
    }
}