/* ============================================
   SKYLOOM DESIGN SYSTEM v2.0
   Refined — Feb 2026
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
    --bg: #FAFAF9;
    --bg-alt: #F5F3EF;
    --white: #FFFFFF;
    --navy: #0B1120;
    --navy-mid: #131B2E;
    --navy-light: #1E293B;
    --cyan: #2CB5E8;
    --cyan-dark: #1A9DD4;
    --cyan-subtle: rgba(44, 181, 232, 0.07);
    --cyan-border: rgba(44, 181, 232, 0.18);
    --text: #111827;
    --text-2: #4B5563;
    --text-3: #9CA3AF;
    --text-inv: #E5E7EB;
    --text-inv-2: rgba(255,255,255,0.55);
    --border: #E5E7EB;
    --border-light: #F0EDE8;
    --red-soft: #FEE2E2;
    --red-text: #991B1B;
    --green-soft: #D1FAE5;
    --green-text: #065F46;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --r: 10px;
    --r-lg: 14px;
    --r-xl: 20px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--bg); }
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
::selection { background: var(--cyan); color: var(--white); }
p { max-width: 62ch; }

/* ========== LAYOUT ========== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section + .section { border-top: 1px solid var(--border); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--navy); color: var(--white); border-color: var(--navy-light); }
.section--dark + .section { border-top-color: var(--border); }
.section[id] { scroll-margin-top: 88px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 32px; }
.mt-xl { margin-top: 48px; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(36px, 5.5vw, 60px); letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 3.5vw, 42px); letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 600; }
.display { font-family: var(--font-display); font-weight: 400; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.sub { font-size: 17px; color: var(--text-2); line-height: 1.7; }
.muted { font-size: 14px; color: var(--text-3); }
.text-sm-muted { font-size: 14px; color: var(--text-3); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .sub { color: var(--text-inv-2); }
.section--dark .muted { color: rgba(255,255,255,0.35); }
.section-header { max-width: 620px; margin-bottom: 52px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.centered p { margin-left: auto; margin-right: auto; }
.section-header p { margin-top: 12px; }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.06s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.18s; }

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 26px; border-radius: 999px; font-size: 14px; font-weight: 600; font-family: var(--font-body); transition: all 0.25s var(--ease); white-space: nowrap; }
.btn-primary { background: var(--cyan); color: var(--white); box-shadow: 0 2px 12px rgba(44, 181, 232, 0.25); }
.btn-primary:hover { background: var(--cyan-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(44, 181, 232, 0.3); }
.btn-secondary { border: 1.5px solid var(--border); color: var(--text); background: var(--white); }
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.2); color: var(--white); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.05); }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn--active { box-shadow: 0 0 0 3px rgba(44, 181, 232, 0.22); }
.link-accent { color: var(--cyan); font-weight: 500; transition: opacity 0.2s; }
.link-accent:hover { opacity: 0.8; }

/* ========== ACCESSIBILITY ========== */
.skip-to-content { position: absolute; top: -100px; left: 0; background: var(--cyan); color: var(--white); padding: 12px 24px; font-weight: 600; border-radius: 0 0 8px 0; z-index: 10000; transition: top 0.3s; text-decoration: none; }
.skip-to-content:focus { top: 0; outline: 3px solid var(--cyan-dark); outline-offset: 2px; }

a:focus-visible, button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 2000; background: linear-gradient(90deg, var(--cyan), var(--cyan-dark)); transform-origin: left; }

/* ========== HEADER ========== */
.header { position: sticky; top: 0; z-index: 100; height: 68px; background: rgba(250,250,249,0.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.header.scrolled { border-bottom-color: var(--border); box-shadow: 0 1px 8px rgba(0,0,0,0.04); }
.header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--text); }
.logo-mark { color: var(--cyan); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 13px; font-weight: 500; color: var(--text-2); padding: 4px 0; position: relative; transition: color 0.2s; }
.nav-link:hover, .nav-link--active { color: var(--text); }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--cyan); border-radius: 2px; transition: width 0.25s var(--ease); }
.nav-link:hover::after, .nav-link--active::after { width: 100%; }
.mobile-menu-btn { display: none; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger-line { width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu-btn.is-open .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.is-open .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-btn.is-open .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.25); z-index: 98; opacity: 0; visibility: hidden; transition: all 0.3s; }
.nav-overlay.is-active { opacity: 1; visibility: visible; }

/* ========== CARDS ========== */
.card { background: var(--white); border-radius: var(--r-xl); padding: 32px; border: 1px solid var(--border); transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease); }
.card:hover { border-color: rgba(44,181,232,0.2); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.card--featured { border: 2px solid var(--cyan); position: relative; }
.card--featured::before { content: 'FOUNDING PRICE'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--cyan); color: var(--white); padding: 3px 14px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; }
.card--plain { border: 1px solid var(--border); box-shadow: none; }
.card--plain:hover { box-shadow: none; }
.card--bordered { border: 1px solid var(--border); box-shadow: none; }

/* ========== HERO ========== */
.hero { min-height: 88vh; display: flex; align-items: center; background: var(--navy); color: var(--white); position: relative; overflow: hidden; padding: 120px 0 100px; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(44,181,232,0.06) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 20px; animation: fadeUp 0.8s 0.1s var(--ease) both; }
.hero h1 em { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--cyan); }
.hero-sub { font-size: 18px; color: var(--text-inv-2); line-height: 1.7; max-width: 600px; margin: 0 auto 36px; animation: fadeUp 0.8s 0.25s var(--ease) both; }
.hero-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; animation: fadeUp 0.8s 0.35s var(--ease) both; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); }
.hero-badge-check { width: 16px; height: 16px; border-radius: 50%; background: rgba(44,181,232,0.15); border: 1px solid rgba(44,181,232,0.3); display: flex; align-items: center; justify-content: center; }
.hero-badge-check svg { width: 10px; height: 10px; color: var(--cyan); }
.hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; animation: fadeUp 0.8s 0.45s var(--ease) both; }
.hero-note { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 20px; animation: fadeUp 0.8s 0.55s var(--ease) both; }
.hero-inner p { margin-left: auto; margin-right: auto; }

/* ========== FEATURE LIST ========== */
.feature-list { list-style: none; }
.feature-list li { padding: 6px 0 6px 20px; position: relative; font-size: 15px; color: var(--text-2); }
.feature-list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); opacity: 0.5; }
.feature-list--sm li { font-size: 14px; color: var(--text-3); }
.feature-list--sm li::before { top: 12px; width: 5px; height: 5px; }
.feature-list--small li { font-size: 14px; color: var(--text-3); }
.feature-list--small li::before { top: 12px; width: 5px; height: 5px; }

/* ========== PROBLEM GRID ========== */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.problem-item { padding: 20px 24px; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--border); font-size: 15px; color: var(--text); font-weight: 500; }

/* ========== DELIVERABLES ========== */
.deliverable-card { padding: 28px; }
.deliverable-card h3 { margin-bottom: 16px; }

/* ========== PROCESS STEPS ========== */
.step-card { text-align: center; padding: 32px 24px; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--cyan-subtle); color: var(--cyan); font-family: var(--font-display); font-size: 18px; font-weight: 500; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-2); margin: 0 auto; max-width: 260px; }

/* ========== COMPARISON TABLE ========== */
.table-wrap { max-width: 860px; margin: 0 auto; overflow-x: auto; }
.comp-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.comp-table th, .comp-table td { padding: 14px 20px; font-size: 14px; text-align: left; border-bottom: 1px solid var(--border); }
.comp-table th { background: var(--bg-alt); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.comp-table th:not(:first-child), .comp-table td:not(:first-child) { text-align: center; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table .col-sky { background: var(--cyan-subtle); }
.comp-table .col-sky strong { color: var(--cyan-dark); }
.comp-table tbody tr:hover { background: rgba(44,181,232,0.03); }
.pill-yes { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; background: var(--green-soft); color: var(--green-text); }
.pill-no { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; background: var(--red-soft); color: var(--red-text); }
.pill-mid { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; background: #FEF3C7; color: #92400E; }

/* ========== PRICING ========== */
.pricing-grid .card { display: flex; flex-direction: column; }
.price-block { padding: 16px 0; margin: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; }
.price-label { font-size: 14px; color: var(--text-3); }
.price-val { font-weight: 700; font-size: 18px; color: var(--text); }
.price-row.highlight .price-val { color: var(--cyan); font-size: 20px; }
.price-row.highlight .price-label { color: var(--cyan-dark); font-weight: 500; }
.pricing-tagline { font-size: 15px; color: var(--text-2); line-height: 1.65; margin-bottom: 16px; }
.btn-demo { display: block; text-align: center; font-size: 13px; font-weight: 600; color: var(--cyan); border: 1px solid var(--cyan-border); border-radius: 999px; padding: 8px 16px; margin-top: auto; transition: all 0.2s; }
.btn-demo:hover { background: var(--cyan); color: var(--white); }
.badge-pill { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.badge-pill--cyan { background: var(--cyan); color: var(--white); }
.badge-pill--muted { background: var(--bg-alt); color: var(--text-3); }

/* ========== GUARANTEES ========== */
.guarantee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; margin: 0 auto; }
.guarantee-card { display: flex; gap: 16px; align-items: start; padding: 20px 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); }
.guarantee-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--cyan-subtle); border: 1px solid var(--cyan-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.guarantee-icon svg { width: 16px; height: 16px; color: var(--cyan); }
.guarantee-card strong { display: block; font-size: 15px; margin-bottom: 2px; }
.guarantee-card p { font-size: 13px; color: var(--text-3); margin: 0; }

/* ========== FOUNDER ========== */
.founder-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.founder-photo { width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--cyan-border); overflow: hidden; flex-shrink: 0; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transform: scale(1.5); }
.founder-meta { display: flex; align-items: center; gap: 16px; margin: 20px 0; }

/* ========== FAQ ========== */
.faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: 15px; font-weight: 600; color: var(--text); transition: color 0.2s; }
.faq-q:hover { color: var(--cyan); }
.faq-icon { font-size: 18px; color: var(--cyan); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p { padding-bottom: 18px; font-size: 14px; color: var(--text-2); line-height: 1.7; max-width: 56ch; }

/* ========== CTA BLOCK ========== */
.cta-block { background: var(--navy); border-radius: var(--r-xl); padding: 72px 48px; text-align: center; color: var(--white); max-width: 880px; margin: 0 auto; position: relative; overflow: hidden; }
.cta-block::before { content: ''; position: absolute; top: -100px; left: 50%; width: 500px; height: 500px; transform: translateX(-50%); background: radial-gradient(circle, rgba(44,181,232,0.08) 0%, transparent 60%); pointer-events: none; }
.cta-block h2 { color: var(--white); margin-bottom: 12px; position: relative; }
.cta-block p { color: var(--text-inv-2); font-size: 17px; max-width: 480px; margin: 0 auto 28px; position: relative; }

/* ========== FOOTER ========== */
.footer { background: var(--navy); color: var(--text-inv-2); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--white); display: block; margin-bottom: 8px; }
.footer-logo span { color: var(--cyan); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.4); max-width: 260px; }
.footer h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; font-size: 12px; color: rgba(255,255,255,0.25); }

/* ========== FOUNDING NOTE ========== */
.founding-note { text-align: center; padding: 20px 24px; border-radius: var(--r-lg); background: var(--cyan-subtle); border: 1px solid var(--cyan-border); }
.founding-note p { font-size: 14px; color: var(--text-2); margin: 0 auto; }

/* ============================================
   SERVICES PAGE
   ============================================ */

/* Value Stack Box */
.value-stack-box { background: linear-gradient(135deg, rgba(44,181,232,0.06) 0%, rgba(26,157,212,0.06) 100%); border: 1px solid var(--cyan-border); border-radius: var(--r-lg); padding: 24px; margin-bottom: 24px; }
.value-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cyan); font-weight: 700; margin-bottom: 12px; display: block; }
.value-breakdown { list-style: none; margin: 0; padding: 0; }
.value-breakdown li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-size: 14px; align-items: center; }
.value-breakdown li:last-child { border-bottom: none; }
.value-breakdown li::before { display: none; }
.value-item { color: var(--text); font-weight: 500; }
.value-amount { color: var(--text-3); font-weight: 700; font-size: 15px; }
.value-total { display: flex; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 2px solid var(--cyan); font-weight: 700; font-size: 16px; align-items: center; }
.value-total-amount { color: var(--cyan); font-size: 24px; font-weight: 800; }
.pricing-your-investment { text-align: center; margin-bottom: 12px; }
.pricing-label { font-size: 14px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin: 0; }

/* Not-for Card */
.not-for-card { max-width: 700px; margin: 0 auto; }
.not-for-card h3 { margin-bottom: 12px; }

/* Btn Demo Pill (services page) */
.btn-demo-pill { display: block; text-align: center; font-size: 13px; font-weight: 600; text-decoration: none; color: var(--cyan); background: transparent; border: 1px solid var(--cyan-border); border-radius: 999px; padding: 8px 16px; margin-top: auto; transition: all 0.2s; }
.btn-demo-pill:hover { background: var(--cyan); color: var(--white); }

/* Value Stack List */
.value-stack { list-style: none; margin-top: 12px; }
.value-stack li { padding: 6px 0 6px 20px; position: relative; color: var(--text-3); font-size: 14px; }
.value-stack li::before { content: ''; position: absolute; left: 0; top: 12px; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); opacity: 0.5; }

/* Section Subtitle (dark sections) */
.section-subtitle { color: var(--text-inv-2); margin-top: 8px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-value-prop { font-size: 17px; color: var(--text); margin-bottom: 32px; font-weight: 500; line-height: 1.65; }
.contact-result-box { background: var(--bg-alt); border-radius: var(--r-lg); padding: 24px; margin-top: 28px; border: 1px solid var(--border); }
.contact-result-label { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-results-list { list-style: none; margin: 0; padding: 0; }
.contact-results-list li { padding: 8px 0 8px 24px; position: relative; font-size: 15px; color: var(--text); }
.contact-results-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; font-size: 16px; }

.contact-sidebar { display: grid; gap: 20px; align-content: start; }
.calendly-card { min-height: 820px; display: flex; flex-direction: column; gap: 12px; }
.calendly-inline-widget { min-width: 280px; height: 700px; background: var(--white); border-radius: var(--r-lg); overflow: hidden; }

/* Urgency Box */
.urgency-box { background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%); border: 2px solid #F59E0B; border-radius: var(--r-lg); padding: 20px 24px; text-align: center; display: flex; align-items: center; gap: 20px; flex-direction: column; box-shadow: 0 4px 12px rgba(245,158,11,0.15); }
.urgency-icon { font-size: 32px; margin: 0; }
.urgency-content { flex: 1; }
.urgency-text { margin: 0; color: #78350F; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.urgency-subtext { margin: 0; color: #92400E; font-size: 13px; font-weight: 500; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-wrap { max-width: 860px; margin: 0 auto; }
.legal-wrap p, .legal-wrap li { line-height: 1.75; }
.legal-wrap h3 { margin-top: 32px; }

/* ============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .founder-layout { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; gap: 28px; }
    .value-breakdown li { font-size: 13px; }
    .value-amount { font-size: 14px; }
    .value-total-amount { font-size: 20px; }
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .nav { display: none; position: fixed; top: 68px; left: 50%; transform: translateX(-50%); width: min(360px, calc(100vw - 32px)); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; flex-direction: column; gap: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); z-index: 1001; }
    .nav--mobile-open { display: flex; }
    .nav-link { font-size: 16px; }
    .section { padding: 64px 0; }
    .hero { min-height: auto; padding: 100px 0 64px; }
    .hero-badges { gap: 16px; }
    .btn-group { flex-direction: column; width: 100%; }
    .btn-group .btn { width: 100%; text-align: center; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .guarantee-grid { grid-template-columns: 1fr; }
    .problem-grid { grid-template-columns: 1fr; }
    .calendly-inline-widget { height: 650px; }
    .calendly-card { min-height: auto; }
    .urgency-box { padding: 16px; }
    .urgency-text { font-size: 14px; }
    .urgency-subtext { font-size: 12px; }
    .cta-block { padding: 48px 24px; }
    .contact-result-box { padding: 16px; }
    .contact-results-list li { font-size: 14px; padding-left: 20px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }
    .hero { padding: 80px 0 48px; }
    h1 { font-size: 30px; }
    h2 { font-size: 26px; }
    h3 { font-size: 20px; }
    .hero-sub { font-size: 16px; }
    .hero-note { font-size: 12px; }
    .calendly-inline-widget { height: 600px; min-width: 280px; }
}

/* ============================================
   RESPONSIVE — LARGE MOBILE (max-width: 390px)
   ============================================ */
@media (max-width: 390px) {
    .container { padding: 0 14px; }
    .hero-badges { flex-direction: column; align-items: center; gap: 10px; }
    .hero-badge { font-size: 12px; }
    .guarantee-card { flex-direction: column; padding: 16px; }
    .btn-lg { padding: 12px 24px; font-size: 14px; }
}

/* ============================================
   ACCESSIBILITY: REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    .hero h1, .hero-sub, .hero-badges, .hero-cta, .hero-note { animation: none; }
}
