/* ==========================================
   RLTR Sync — Premium SaaS Design v4
   ========================================== */

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

:root {
    --navy: #0A1628;
    --navy-mid: #111D35;
    --navy-light: #1B2B4B;
    --green: #61CE70;
    --green-dark: #4CAF5C;
    --green-glow: rgba(97, 206, 112, 0.12);
    --accent: #4A7BF7;
    --accent-glow: rgba(74, 123, 247, 0.08);
    --text: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-50: #F1F5F9;
    --gray-100: #E2E8F0;
    --gray-200: #CBD5E1;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-secondary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul { list-style: none; }

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

h1, h2, h3, h4 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.75rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.9375rem;
    padding: 13px 28px; border-radius: 10px; border: none;
    cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
    text-decoration: none; letter-spacing: -0.01em;
}
.btn-dark { background: var(--text); color: var(--white); }
.btn-dark:hover { background: #1E293B; box-shadow: var(--shadow-lg); }
.btn-white { background: var(--white); color: var(--text); font-weight: 600; }
.btn-white:hover { background: var(--off-white); box-shadow: var(--shadow-xl); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--text-secondary); background: var(--off-white); }
.btn-ghost { background: none; border: none; color: var(--text-secondary); padding: 13px 16px; }
.btn-ghost:hover { color: var(--text); }
.btn-green { background: var(--green); color: var(--white); font-weight: 600; }
.btn-green:hover { background: var(--green-dark); box-shadow: 0 8px 24px rgba(97,206,112,0.25); }

.btn-link {
    background: none; border: none; padding: 0; font-weight: 600; font-size: 0.9375rem;
    color: var(--text); display: inline-flex; align-items: center; gap: 6px;
    cursor: pointer; transition: all 0.2s ease;
}
.btn-link:hover { gap: 10px; color: var(--green-dark); }
.btn-link svg { transition: all 0.2s ease; }

/* ============ SECTION LABEL ============ */
.section-label {
    display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; color: var(--green); margin-bottom: 16px;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 0; transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.92); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05); padding: 10px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links > li > a {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 16px; font-size: 0.875rem; font-weight: 500;
    color: rgba(255,255,255,0.65); border-radius: 6px; transition: all 0.2s ease;
}
.nav-links > li > a:hover { color: #fff; }
.navbar.scrolled .nav-links > li > a { color: var(--text-secondary); }
.navbar.scrolled .nav-links > li > a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-actions .btn-ghost { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.nav-actions .btn-ghost:hover { color: #fff; }
.navbar.scrolled .nav-actions .btn-ghost { color: var(--text-secondary); }
.navbar.scrolled .nav-actions .btn-ghost:hover { color: var(--text); }
.nav-actions .btn-dark { font-size: 0.875rem; padding: 9px 20px; border-radius: 8px; }
.navbar:not(.scrolled) .nav-actions .btn-dark { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.navbar:not(.scrolled) .nav-actions .btn-dark:hover { background: rgba(255,255,255,0.18); }
.navbar.scrolled .nav-actions .btn-dark { background: var(--text); color: #fff; }

.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(4px);
    min-width: 200px; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-2xl); padding: 6px;
    opacity: 0; visibility: hidden; transition: all 0.2s ease;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: block; padding: 10px 14px; font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); border-radius: 8px; }
.dropdown-menu a:hover { background: var(--gray-50); color: var(--text); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 10; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.25s ease; }
.navbar.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ HERO ============ */
.hero {
    position: relative; display: flex; flex-direction: column;
    align-items: center; text-align: center;
    background: var(--text);
    padding: 160px 40px 0; overflow: hidden;
}
/* Gradient orbs for depth */
.hero::before {
    content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(97,206,112,0.08) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; bottom: -300px; left: -200px; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(74,123,247,0.06) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.hero h1 { color: #fff; margin-bottom: 20px; line-height: 1.1; font-weight: 700; }
.hero-subtitle {
    font-size: 1.125rem; color: rgba(255,255,255,0.45); max-width: 560px;
    margin: 0 auto 36px; line-height: 1.7; font-weight: 400;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; }
.hero-cta .btn-outline {
    background: transparent; color: rgba(255,255,255,0.65); border: 1.5px solid rgba(255,255,255,0.15);
}
.hero-cta .btn-outline:hover { color: #fff; border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.04); }

/* Hero product image */
.hero-product-image {
    position: relative; z-index: 2; width: 100%; max-width: 1060px;
    margin: 64px auto -100px; padding: 0 20px;
}
.hero-product-image img {
    width: 100%; height: auto; display: block;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 80px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
}

/* ============ TRUST BAR ============ */
.trust-bar { padding: 140px 0 60px; background: var(--white); }
.trust-bar-label {
    text-align: center; font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: 2px; color: var(--text-muted); margin-bottom: 32px;
}
.trust-logos {
    display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
    opacity: 0.4;
}
.trust-logos img { height: 28px; width: auto; filter: grayscale(100%); }
.trust-logos span {
    font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700;
    color: var(--text); letter-spacing: -0.01em; white-space: nowrap;
}

/* ============ RESULTS / STATS ============ */
.results-section { padding: 80px 0 100px; background: var(--white); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
.result-card {
    text-align: center; padding: 40px 24px;
    background: var(--off-white); border-radius: var(--radius-xl); border: 1px solid var(--border);
}
.result-number {
    font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 700;
    color: var(--text); line-height: 1; margin-bottom: 4px; letter-spacing: -0.04em;
}
.result-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ============ PRODUCTS OVERVIEW ============ */
.products-overview { padding: 120px 0 140px; background: var(--white); position: relative; }
.products-header { text-align: center; margin-bottom: 80px; }
.products-header h2 { margin-bottom: 12px; }
.products-header > p { font-size: 1.05rem; color: var(--text-secondary); max-width: 480px; margin: 0 auto; line-height: 1.7; }

.product-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    padding: 80px 0; border-top: 1px solid var(--border);
}
.product-card:last-child { padding-bottom: 0; }
.product-card.reversed { direction: rtl; }
.product-card.reversed > * { direction: ltr; }

.product-card-visual {
    position: relative; border-radius: var(--radius-xl); overflow: hidden;
    background: var(--off-white); border: 1px solid var(--border);
    aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}
.product-card-visual img { width: 100%; height: 100%; object-fit: cover; }

.product-card-content { max-width: 480px; }
.product-card-content .section-label { margin-bottom: 12px; }
.product-card-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; margin-bottom: 16px;
    line-height: 1.2; letter-spacing: -0.025em; color: var(--text);
}
.product-card-content p {
    font-size: 0.95rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 24px;
}
.product-card-features {
    list-style: none; margin-bottom: 28px;
}
.product-card-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 10px; line-height: 1.5;
}
.product-card-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }

/* ============ WHY SECTION ============ */
.why-section { padding: 120px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { padding: 32px 24px; }
.why-icon {
    width: 44px; height: 44px; margin-bottom: 20px; background: var(--white);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--text); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.why-card h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { padding: 120px 0; background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-wrapper { max-width: 640px; margin: 0 auto; position: relative; min-height: 200px; }
.testimonial-slide {
    position: absolute; top: 0; left: 0; right: 0;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center; padding: 0 20px; pointer-events: none;
}
.testimonial-slide.active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.testimonial-quote {
    font-size: 1.15rem; line-height: 1.85; color: var(--text); font-weight: 400;
    margin-bottom: 28px;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after { content: '\201D'; }
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.testimonial-author strong { font-size: 0.9rem; color: var(--text); font-weight: 600; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

.testimonial-nav { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 40px; }
.testimonial-arrow {
    width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border);
    background: var(--white); display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s ease; color: var(--text-muted);
}
.testimonial-arrow:hover { border-color: var(--text); color: var(--text); }
.testimonial-dots { display: flex; gap: 6px; }
.testimonial-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--gray-200);
    cursor: pointer; transition: all 0.2s ease;
}
.testimonial-dot.active { background: var(--text); }

/* ============ CTA ============ */
.cta-section {
    padding: 120px 0; text-align: center;
    background: var(--text); position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: -200px; right: -100px; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(97,206,112,0.06) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none;
}
.cta-section h2 { max-width: 560px; margin: 0 auto 14px; color: #fff; }
.cta-section > .container > p { font-size: 1rem; color: rgba(255,255,255,0.4); max-width: 420px; margin: 0 auto 32px; }
.cta-section .btn-white:hover { transform: translateY(-1px); }

/* ============ FOOTER ============ */
.footer { background: var(--text); padding: 72px 0 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { height: 28px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.8rem; line-height: 1.7; color: rgba(255,255,255,0.3); max-width: 240px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 34px; height: 34px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center; transition: all 0.2s ease;
}
.footer-social a:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }
.footer-links h4 {
    font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: rgba(255,255,255,0.25); margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.4); font-weight: 400; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p, .footer-bottom a { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 24px; }

/* ============ PAGE HEADER (inner pages) ============ */
.page-header {
    background: var(--text); padding: 160px 0 80px; text-align: center;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: -200px; right: -100px; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(97,206,112,0.05) 0%, transparent 70%); border-radius: 50%;
}
.page-header h1 { color: #fff; margin-bottom: 14px; font-size: clamp(2.25rem, 4vw, 3rem); }
.page-header p { color: rgba(255,255,255,0.4); font-size: 1.05rem; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.breadcrumb a { color: rgba(255,255,255,0.25); }
.breadcrumb a:hover { color: rgba(255,255,255,0.5); }

/* ============ FEATURE SECTIONS (product pages) ============ */
.feature-section { padding: 120px 0; }
.feature-section.alt { background: var(--off-white); }

.feature-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.feature-layout.reversed { direction: rtl; }
.feature-layout.reversed > * { direction: ltr; }

.feature-text h2 { margin-bottom: 20px; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.feature-text p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; color: var(--text-secondary); }
.feature-text p:last-of-type { margin-bottom: 24px; }

.feature-visual { position: relative; }
.feature-mockup {
    background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-xl); border: 1px solid var(--border);
}
.feature-mockup img { width: 100%; height: 360px; object-fit: cover; display: block; }

/* ============ FEATURES GRID (product pages) ============ */
.section { padding: 120px 0; }
.section.alt { background: var(--off-white); }
.stats-header { text-align: center; margin-bottom: 48px; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-grid-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px 24px; transition: all 0.2s ease;
}
.feature-grid-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-icon {
    width: 40px; height: 40px; background: var(--off-white); border: 1px solid var(--border);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--text); margin-bottom: 16px;
}
.feature-grid-card h3 { margin-bottom: 8px; font-size: 1rem; }
.feature-grid-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ============ PRICING ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.pricing-card {
    background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-xl);
    padding: 40px 32px; position: relative; transition: all 0.2s ease;
}
.pricing-card.featured { border-color: var(--text); }
.pricing-card.featured::before {
    content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--text); color: #fff; font-size: 0.7rem; font-weight: 600;
    padding: 4px 14px; border-radius: 50px; letter-spacing: 0.3px;
}
.pricing-card:hover { box-shadow: var(--shadow-xl); }
.pricing-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.pricing-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.price { font-family: 'Montserrat', sans-serif; font-size: 2.75rem; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 4px; letter-spacing: -0.03em; }
.price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.price-period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { margin-bottom: 24px; }
.pricing-features li { position: relative; padding-left: 24px; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 8px; line-height: 1.5; }
.pricing-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 0.85rem; }

/* ============ COMPARE TABLE ============ */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.compare-table thead tr { border-bottom: 2px solid var(--border); }
.compare-table th { padding: 12px 16px; font-weight: 600; color: var(--text); }
.compare-table th:first-child { text-align: left; color: var(--text-muted); font-weight: 500; }
.compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.compare-table td:first-child { color: var(--text-secondary); }
.compare-table td:not(:first-child) { text-align: center; }
.check { color: var(--green); font-weight: 700; }
.dash { color: var(--gray-200); }

/* ============ SHOP ============ */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.shop-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; transition: all 0.2s ease;
}
.shop-card:hover { box-shadow: var(--shadow-lg); }
.shop-card-image { height: 200px; background: var(--off-white); display: flex; align-items: center; justify-content: center; padding: 24px; }
.shop-card-content { padding: 20px; }
.shop-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.shop-price { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }

/* ============ FAQ ============ */
.faq-section { max-width: 640px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0; background: none; border: none; cursor: pointer;
    font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600;
    color: var(--text); text-align: left; transition: all 0.2s ease;
}
.faq-question:hover { color: var(--green-dark); }
.faq-question svg { flex-shrink: 0; color: var(--text-muted); transition: transform 0.3s ease; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 18px; color: var(--text-secondary); font-size: 0.875rem; line-height: 1.7; }

/* ============ STEPS ============ */
.steps-grid { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.step-card { flex: 1; max-width: 280px; text-align: center; padding: 24px 20px; }
.step-number {
    width: 44px; height: 44px; margin: 0 auto 16px; background: var(--text); color: #fff;
    font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.step-card h3 { margin-bottom: 8px; font-size: 1rem; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); }
.step-connector { width: 48px; height: 1px; background: var(--border); margin-top: 46px; flex-shrink: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .feature-layout { grid-template-columns: 1fr; gap: 48px; }
    .feature-layout.reversed { direction: ltr; }
    .hero-product-image { margin: 48px auto -60px; }
    .product-card { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
    .product-card.reversed { direction: ltr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: repeat(3, 1fr); }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .trust-logos { gap: 32px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 80px 0; }
    .feature-section { padding: 80px 0; }
    .testimonials-section { padding: 80px 0; }
    .cta-section { padding: 80px 0; }
    .products-overview { padding: 80px 0 100px; }
    .why-section { padding: 80px 0; }
    .results-section { padding: 60px 0 80px; }

    .nav-toggle { display: flex; }
    .nav-links, .nav-actions {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
    }
    .nav-links.active, .nav-actions.active { display: flex; flex-direction: column; padding: 16px 20px; }
    .nav-links > li > a, .navbar:not(.scrolled) .nav-links > li > a { color: var(--text-secondary); padding: 12px 0; }
    .nav-actions .btn-ghost, .navbar:not(.scrolled) .nav-actions .btn-ghost { color: var(--text-secondary); }
    .navbar:not(.scrolled) .nav-actions .btn-dark { background: var(--text); color: #fff; border: none; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 12px; }

    .hero { padding: 130px 20px 0; }
    .hero-product-image { margin: 40px auto -40px; }
    .hero-product-image img { border-radius: 10px 10px 0 0; }

    .trust-bar { padding: 100px 0 40px; }
    .trust-logos { gap: 24px; }
    .trust-logos span { font-size: 0.75rem; }

    .results-grid { grid-template-columns: 1fr; gap: 12px; max-width: 320px; }
    .result-card { padding: 28px 20px; }
    .result-number { font-size: 2.25rem; }

    .products-header { margin-bottom: 48px; }
    .product-card { gap: 32px; padding: 48px 0; }

    .features-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
    .shop-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }

    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { width: 1px; height: 28px; margin: 0; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal { justify-content: center; }

    .page-header { padding: 130px 0 56px; }
}
