/* ══════════════════════════════════════════════
   BondBack Hero — Shared Styles
   ══════════════════════════════════════════════ */

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

:root {
    --bg-deep: #0A0F1E;
    --bg-surface: #111827;
    --bg-card: #1A2235;
    --amber: #E8A838;
    --amber-hover: #f0b84d;
    --amber-glow: rgba(232, 168, 56, 0.15);
    --amber-glow-strong: rgba(232, 168, 56, 0.25);
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --text-dim: #4B5563;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --green: #10B981;
    --radius: 12px;
    --radius-lg: 16px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-secondary);
    background: var(--bg-deep);
    line-height: 1.7;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* amber top accent line */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), #f0b84d, var(--amber));
    z-index: 10001;
}

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

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.875rem 2rem; border-radius: 8px;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem;
    border: none; cursor: pointer; text-align: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.01em;
    min-height: 48px;
    touch-action: manipulation;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(1); }

.btn-amber {
    background: var(--amber); color: var(--bg-deep); font-weight: 700;
    box-shadow: 0 4px 24px rgba(232, 168, 56, 0.3);
}
.btn-amber:hover { background: var(--amber-hover); box-shadow: 0 8px 32px rgba(232, 168, 56, 0.4); }

.btn-ghost {
    background: transparent; color: var(--text-primary);
    border: 1px solid var(--border-light);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }

.btn-amber-outline {
    background: transparent; color: var(--amber);
    border: 1.5px solid var(--amber);
}
.btn-amber-outline:hover { background: var(--amber); color: var(--bg-deep); font-weight: 700; }

.btn-navy {
    background: var(--bg-deep); color: var(--text-primary); font-weight: 700;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.btn-navy:hover { background: #0d1424; }

.btn-outline-white {
    background: transparent; color: var(--text-primary);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); }

/* ── Animations ── */
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(0.9); }
    66% { transform: translate(25px, -25px) scale(1.05); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes checkPop { 0% { transform: scale(0); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }
@keyframes progressFill { from { width: 0; } to { width: 100%; } }

.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ── Navbar ── */
.navbar {
    position: fixed; top: 3px; left: 0; right: 0; z-index: 10000;
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
    background: rgba(10, 15, 30, 0.82);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}
.navbar .container {
    display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo {
    font-size: 1.3rem; font-weight: 700; color: var(--text-primary);
    letter-spacing: -0.02em;
}
.nav-logo span { color: var(--amber); }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
    color: var(--text-secondary); font-size: 0.82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
    position: relative; transition: color 0.25s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
    background: var(--text-primary); transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active-link { color: var(--amber); }
.nav-links a.active-link::after { width: 100%; background: var(--amber); }

.nav-cta .btn { padding: 0.55rem 1.25rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
    min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.hamburger span {
    display: block; width: 22px; height: 1.5px; background: var(--text-primary);
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── Hero ── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: var(--bg-deep); position: relative; overflow: hidden;
    padding: 6rem 0 4rem;
}
.hero::before {
    content: ''; position: absolute; top: -20%; left: -10%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.07) 0%, transparent 70%);
    pointer-events: none;
}
.hero-orb {
    position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px);
}
.hero-orb--amber {
    width: 300px; height: 300px; top: 15%; left: 5%;
    background: rgba(232, 168, 56, 0.06);
    animation: orbFloat1 10s ease-in-out infinite;
}
.hero-orb--navy {
    width: 400px; height: 400px; bottom: 10%; right: 10%;
    background: rgba(27, 42, 74, 0.15);
    animation: orbFloat2 8s ease-in-out infinite;
}

.hero .container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 1;
}
.hero-text { max-width: 560px; }
.hero h1 {
    font-size: clamp(40px, 5.5vw, 72px); font-weight: 800; line-height: 1.08;
    color: var(--text-primary); letter-spacing: -2px; margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--amber); }
.hero-sub {
    font-size: clamp(16px, 1.5vw, 20px); color: var(--text-secondary);
    max-width: 480px; margin-bottom: 2.5rem; line-height: 1.7; font-weight: 400;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-buttons .btn { padding: 1rem 2rem; }

.hero-social-proof { display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem; }
.avatar-stack { display: flex; }
.avatar-circle {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-card); border: 2px solid var(--bg-deep);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 700; color: var(--amber);
    margin-left: -8px;
}
.avatar-circle:first-child { margin-left: 0; }
.hero-social-proof p { font-size: 0.85rem; color: var(--text-dim); }
.hero-social-proof p strong { color: var(--text-secondary); font-weight: 600; }

.hero-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; border-radius: 100px;
    background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border);
    font-size: 0.78rem; color: var(--text-secondary); font-weight: 500;
}
.hero-badge i { color: var(--amber); font-size: 0.75rem; }

/* ── Hero Mockup Card ── */
.hero-mockup {
    position: relative; display: flex; justify-content: center; align-items: center;
}
.mockup-card {
    width: 100%; max-width: 400px;
    background: rgba(26, 34, 53, 0.7); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-light); border-radius: var(--radius-lg);
    padding: 2rem; position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 60px var(--amber-glow);
}
.mockup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.mockup-dots { display: flex; gap: 6px; }
.mockup-dot { width: 8px; height: 8px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #10b981; }
.mockup-label { font-size: 0.7rem; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.mockup-status { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.mockup-check {
    width: 32px; height: 32px; border-radius: 50%; background: rgba(16, 185, 129, 0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--green); font-size: 0.85rem;
}
.mockup-status-text h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.1rem; }
.mockup-status-text p { font-size: 0.75rem; color: var(--green); font-weight: 600; }

.mockup-amount { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); letter-spacing: -1px; margin-bottom: 0.25rem; }
.mockup-amount-label { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 1.25rem; font-weight: 500; }

.mockup-progress { margin-bottom: 1.5rem; }
.mockup-progress-bar {
    height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.06); overflow: hidden;
}
.mockup-progress-fill {
    height: 100%; border-radius: 3px;
    background: linear-gradient(90deg, var(--amber), var(--green));
    width: 100%;
}
.mockup-progress-labels { display: flex; justify-content: space-between; margin-top: 0.5rem; }
.mockup-progress-labels span { font-size: 0.7rem; color: var(--text-dim); font-weight: 500; }

.mockup-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.75rem 0; border-top: 1px solid var(--border);
}
.mockup-row-label { font-size: 0.8rem; color: var(--text-secondary); }
.mockup-row-value { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); }
.mockup-row-value.green { color: var(--green); }

/* ── Problem ── */
.problem { background: var(--bg-surface); padding: 7rem 0; }
.problem-header { max-width: 600px; margin-bottom: 3.5rem; }
.problem-header h2 {
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; color: var(--text-primary);
    line-height: 1.15; letter-spacing: -1px; margin-bottom: 1rem;
}
.problem-header h2 .accent { color: var(--amber); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.problem-card {
    background: var(--bg-card); border-radius: var(--radius-lg); padding: 2rem;
    border: 1px solid var(--border); border-left: 3px solid var(--amber);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--amber-glow);
}
.problem-icon {
    width: 48px; height: 48px; margin-bottom: 1.25rem;
    display: flex; align-items: center; justify-content: center;
}
.problem-icon svg { width: 32px; height: 32px; }
.problem-card h3 {
    font-size: 1.05rem; font-weight: 700; color: var(--text-primary);
    margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.problem-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ── How It Works ── */
.how-it-works { background: var(--bg-deep); padding: 7rem 0; }
.how-header { text-align: left; max-width: 600px; margin-bottom: 4rem; }
.how-header h2 {
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; color: var(--text-primary);
    line-height: 1.15; letter-spacing: -1px;
}

.steps-container { position: relative; }
.steps-line {
    position: absolute; top: 28px; left: 28px; right: 28px; height: 2px;
    border-top: 2px dashed rgba(232, 168, 56, 0.25);
}
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }

.step { position: relative; padding-top: 0; }
.step-top { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.step-number-circle {
    width: 56px; height: 56px; min-width: 56px; border-radius: 50%;
    background: var(--amber); color: var(--bg-deep);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800; position: relative; z-index: 2;
}
.step-big-num {
    position: absolute; top: -20px; left: 0;
    font-size: 120px; font-weight: 800; color: rgba(255, 255, 255, 0.03);
    line-height: 1; letter-spacing: -4px; pointer-events: none; z-index: 0;
}
.step h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; padding-top: 0.9rem; }
.step p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-left: 72px; }

.how-cta { margin-top: 3.5rem; }

/* ── Testimonials ── */
.testimonials { background: var(--bg-deep); padding: 7rem 0; }
.test-header { max-width: 500px; margin-bottom: 3.5rem; }
.test-header h2 {
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; color: var(--text-primary);
    line-height: 1.15; letter-spacing: -1px;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testimonial-card {
    background: rgba(26, 34, 53, 0.5); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25); }

.test-quote-mark { font-size: 4rem; line-height: 1; color: var(--amber); font-family: Georgia, serif; margin-bottom: 0.5rem; opacity: 0.6; }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.test-author { display: flex; align-items: center; gap: 0.75rem; }
.test-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--bg-card);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; color: var(--amber);
}
.test-author-info strong { display: block; font-size: 0.85rem; color: var(--text-primary); font-weight: 600; }
.test-location {
    display: inline-flex; align-items: center;
    padding: 0.2rem 0.6rem; border-radius: 100px;
    background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border);
    font-size: 0.7rem; color: var(--text-dim); font-weight: 500; margin-top: 0.25rem;
}

/* ── Stats ── */
.stats { background: var(--bg-deep); padding: 5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-number {
    font-size: clamp(36px, 4vw, 56px); font-weight: 800; color: var(--amber);
    letter-spacing: -2px; line-height: 1; margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

@media (max-width: 768px) {
    .stats { padding: 3rem 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-item { padding: 1.5rem 0.5rem; }
}

/* ── Pricing ── */
.pricing { background: var(--bg-surface); padding: 7rem 0; }
.pricing-header { max-width: 500px; margin-bottom: 3.5rem; }
.pricing-header h2 {
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; color: var(--text-primary);
    line-height: 1.15; letter-spacing: -1px; margin-bottom: 1rem;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }

.pricing-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2.5rem 2rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
    position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3); }

.pricing-card.popular {
    transform: scale(1.05); z-index: 2;
    background: var(--bg-card);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 0 2px var(--amber), 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 40px var(--amber-glow);
}
.pricing-card.popular:hover { transform: scale(1.05) translateY(-4px); }

.popular-badge {
    position: absolute; top: 1.25rem; right: 1.25rem;
    background: var(--amber); color: var(--bg-deep);
    font-size: 0.65rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 100px;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.pricing-card .price-desc { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1.5rem; }
.pricing-card .price {
    font-size: clamp(48px, 4vw, 64px); font-weight: 800; color: var(--text-primary);
    letter-spacing: -2px; margin-bottom: 0.25rem; line-height: 1;
}
.pricing-card .price-sub { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 2rem; }

.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
    display: flex; align-items: flex-start; gap: 0.6rem;
    padding: 0.45rem 0; font-size: 0.88rem; color: var(--text-secondary);
}
.pricing-features li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn { width: 100%; }

/* ── FAQ ── */
.faq { background: var(--bg-deep); padding: 7rem 0; }
.faq-header { max-width: 500px; margin-bottom: 3.5rem; }
.faq-header h2 {
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; color: var(--text-primary);
    line-height: 1.15; letter-spacing: -1px;
}
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 0; background: none; border: none; cursor: pointer;
    font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
    color: var(--text-primary); text-align: left; gap: 1.5rem;
    transition: color 0.25s;
    min-height: 48px;
}
.faq-question:hover { color: var(--amber); }
.faq-chevron {
    width: 20px; height: 20px; flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer p { padding: 0 0 1.5rem; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ── Final CTA ── */
.final-cta {
    background: linear-gradient(135deg, var(--amber), #f0b84d);
    padding: 6rem 0; text-align: left;
}
.final-cta .container { max-width: 700px; margin-left: 2rem; }
.final-cta h2 {
    font-size: clamp(36px, 4vw, 56px); font-weight: 800; color: var(--bg-deep);
    line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 1rem;
}
.final-cta p { font-size: 1.1rem; color: rgba(10, 15, 30, 0.65); margin-bottom: 2.5rem; max-width: 480px; }

/* ── Footer ── */
.site-footer {
    background: var(--bg-deep); color: var(--text-dim);
    padding: 4rem 0 2rem; border-top: 1px solid var(--amber);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.85rem; margin-top: 0.75rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
    font-size: 0.75rem; font-weight: 700; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem;
}
.footer-col a {
    display: block; font-size: 0.85rem; color: var(--text-dim);
    padding: 0.3rem 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-col p { font-size: 0.85rem; color: var(--text-dim); padding: 0.3rem 0; margin: 0; }
.footer-bottom {
    border-top: 1px solid var(--border); padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-disclaimer { font-size: 0.72rem; line-height: 1.6; color: var(--text-dim); max-width: 700px; }
.footer-copyright { font-size: 0.75rem; color: var(--text-dim); }

/* ── Modal ── */
.modal-overlay {
    position: fixed; inset: 0; z-index: 20000;
    background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center; padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal {
    width: 100%; max-width: 520px;
    background: var(--bg-surface); border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); padding: 2.5rem;
    position: relative; animation: modalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none; cursor: pointer;
    color: var(--text-dim); font-size: 1.25rem; padding: 0.25rem;
    transition: color 0.2s;
    min-width: 44px; min-height: 44px;
    display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--text-primary); }
.modal h2 { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.modal .modal-sub { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 2rem; }

.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.4rem;
}
.form-group label .optional { font-weight: 400; color: var(--text-dim); font-size: 0.75rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 0.75rem 1rem;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 8px; color: var(--text-primary);
    font-family: 'Inter', sans-serif; font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none; appearance: none;
    min-height: 48px;
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239CA3AF' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
    padding-right: 2.5rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--amber);
    box-shadow: 0 0 0 3px var(--amber-glow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-error {
    display: block; font-size: 0.75rem; color: #ef4444; margin-top: 0.3rem; font-weight: 500;
}
.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"] {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-submit { width: 100%; margin-top: 0.5rem; padding: 0.875rem; }
.form-privacy { font-size: 0.75rem; color: var(--text-dim); margin-top: 1rem; text-align: center; }
.form-privacy i { color: var(--amber); margin-right: 0.25rem; }

.modal-success { display: none; text-align: center; padding: 1.5rem 0; }
.modal-success .check-icon {
    width: 64px; height: 64px; margin: 0 auto 1.25rem;
    border-radius: 50%; background: rgba(16, 185, 129, 0.12);
    display: flex; align-items: center; justify-content: center;
    animation: checkPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.modal-success .check-icon svg { width: 32px; height: 32px; }
.modal-success h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.modal-success p { font-size: 0.9rem; color: var(--text-secondary); }

/* ── Services Grid (Cleaning Services Page) ── */
.services-section { background: var(--bg-surface); padding: 7rem 0; }
.services-section .section-header { max-width: 640px; margin-bottom: 3.5rem; }
.services-section .section-header h2 {
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; color: var(--text-primary);
    line-height: 1.15; letter-spacing: -1px; margin-bottom: 1rem;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
    background: var(--bg-card); border-radius: var(--radius-lg); padding: 2rem;
    border: 1px solid var(--border);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--amber-glow);
}
.service-card .service-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: var(--amber-glow); display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.service-card .service-icon i { color: var(--amber); font-size: 1.4rem; }
.service-card h3 {
    font-size: 1.1rem; font-weight: 700; color: var(--text-primary);
    margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.service-card .service-price {
    margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border);
    font-size: 0.85rem; color: var(--amber); font-weight: 600;
}

/* ── Why Choose Us ── */
.why-us { background: var(--bg-deep); padding: 7rem 0; }
.why-us-header { max-width: 600px; margin-bottom: 3.5rem; }
.why-us-header h2 {
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; color: var(--text-primary);
    line-height: 1.15; letter-spacing: -1px; margin-bottom: 1rem;
}
.why-us-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.why-us-card {
    display: flex; gap: 1rem; align-items: flex-start;
    background: rgba(26, 34, 53, 0.5); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.5rem;
}
.why-us-card .why-icon {
    width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
    background: var(--amber-glow); display: flex; align-items: center; justify-content: center;
}
.why-us-card .why-icon i { color: var(--amber); font-size: 1rem; }
.why-us-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.35rem; }
.why-us-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Legal Pages ── */
.legal-page { background: var(--bg-deep); padding: 8rem 0 5rem; min-height: 100vh; }
.legal-page .container { max-width: 800px; }
.legal-page h1 {
    font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--text-primary);
    letter-spacing: -1.5px; margin-bottom: 0.5rem; line-height: 1.15;
}
.legal-page .legal-updated {
    font-size: 0.85rem; color: var(--text-dim); margin-bottom: 3rem;
    padding-bottom: 2rem; border-bottom: 1px solid var(--border);
}
.legal-page h2 {
    font-size: 1.35rem; font-weight: 700; color: var(--text-primary);
    margin: 2.5rem 0 1rem; letter-spacing: -0.02em;
}
.legal-page h3 {
    font-size: 1.1rem; font-weight: 600; color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}
.legal-page p {
    font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8;
    margin-bottom: 1rem;
}
.legal-page ul, .legal-page ol {
    list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem;
}
.legal-page ol { list-style: decimal; }
.legal-page li {
    font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8;
    margin-bottom: 0.5rem;
}
.legal-page a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }
.legal-page a:hover { color: var(--amber-hover); }
.legal-back {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-bottom: 2rem; font-size: 0.85rem; color: var(--amber);
    font-weight: 600; transition: gap 0.2s;
}
.legal-back:hover { gap: 0.75rem; text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-mockup { justify-content: flex-start; }
    .mockup-card { max-width: 360px; }
    .problem-grid, .testimonials-grid, .pricing-grid, .services-grid { grid-template-columns: 1fr; max-width: 440px; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-4px); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    .container { padding: 0 1.25rem; }

    .navbar .container {
        flex-wrap: wrap;
        height: auto;
        min-height: 72px;
    }
    .navbar:has(.hamburger.active) {
        background: rgba(10, 15, 30, 0.98);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; order: 2; }
    .nav-links.active {
        display: flex; flex-direction: column;
        width: 100%; order: 3;
        padding: 1rem 0 0.5rem; gap: 0.75rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active a {
        padding: 0.75rem 0;
        font-size: 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .nav-cta.active {
        display: block;
        width: 100%; order: 4;
        padding: 0.5rem 0 1.25rem;
    }

    .hero { padding: 7rem 0 4rem; min-height: auto; }
    .hero h1 { letter-spacing: -1px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-badges { flex-direction: column; }
    .hero-mockup { justify-content: center; }
    .mockup-card { max-width: 100%; }

    .problem, .how-it-works, .testimonials, .pricing, .faq,
    .services-section, .why-us { padding: 4rem 0; }

    .steps-line { display: none; }
    .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .step-big-num { font-size: 80px; }
    .step p { margin-left: 0; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .final-cta { padding: 4rem 0; }
    .final-cta .container { margin-left: auto; margin-right: auto; }

    .form-row { grid-template-columns: 1fr; }

    .modal { padding: 1.75rem; max-width: 100%; margin: 0 0.5rem; }
    .modal h2 { font-size: 1.3rem; }

    .legal-page { padding: 6rem 0 3rem; }
    .legal-page h1 { font-size: clamp(28px, 5vw, 40px); }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero { padding: 6rem 0 3rem; }
    .hero h1 { font-size: clamp(32px, 8vw, 40px); }
    .modal { padding: 1.5rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-orb { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .modal { animation: none; }
    .mockup-progress-fill { animation: none; }
}
