/* =========================================
   DraftCore — Dark Editorial Theme
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --bg:       #08080f;
  --bg2:      #0d0d16;
  --bg3:      #111120;
  --text:     #f0ede8;
  --muted:    rgba(240,237,232,0.52);
  --muted2:   rgba(240,237,232,0.28);
  --gold:     #c9a227;
  --gold-dim: rgba(201,162,39,0.18);
  --gold-glow:rgba(201,162,39,0.08);
  --border:   rgba(240,237,232,0.09);
  --border2:  rgba(201,162,39,0.22);
  --max:      1160px;
  --ease:     cubic-bezier(.16,1,.3,1);
  --ease2:    cubic-bezier(.2,.8,.2,1);
  --nav-h:    72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: 'Syne', sans-serif; overflow-x: hidden; cursor: none; }
body.loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* CURSOR */
#cursor { position: fixed; top: 0; left: 0; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: width .2s var(--ease2), height .2s var(--ease2), background .2s, opacity .2s; mix-blend-mode: screen; }
#cursor.hover { width: 40px; height: 40px; background: rgba(201,162,39,0.3); }
#cursor.hidden { opacity: 0; }

/* LOADER */
#loader { position: fixed; inset: 0; background: var(--bg); z-index: 9000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transition: transform 1s var(--ease); }
#loader.exit { transform: translateY(-100%); }
.loader-letters { display: flex; gap: 0; overflow: hidden; }
.loader-letter { font-family: 'Cormorant Garamond', serif; font-size: clamp(56px, 10vw, 120px); font-weight: 300; letter-spacing: 0.25em; color: var(--text); opacity: 0; transform: translateY(40px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.loader-letter.visible { opacity: 1; transform: translateY(0); }
.loader-line { width: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transition: width 1s var(--ease); }
.loader-line.expand { width: 200px; }
.loader-sub { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); opacity: 0; transition: opacity .5s ease .8s; }
.loader-sub.visible { opacity: 1; }

/* NAV */
#nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 100; transition: background .3s, border-color .3s; border-bottom: 1px solid transparent; }
#nav.scrolled { background: rgba(8,8,15,0.92); backdrop-filter: blur(20px); border-color: var(--border); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo { width: 36px; height: 36px; border-radius: 10px; background: var(--bg3); border: 1px solid var(--border2); display: grid; place-items: center; position: relative; overflow: hidden; }
.nav-logo::before { content: ''; position: absolute; inset: -50%; background: radial-gradient(circle at 30% 30%, rgba(201,162,39,0.7), transparent 50%); }
.nav-logo svg { position: relative; z-index: 1; }
.nav-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; letter-spacing: 0.05em; }
.nav-sub { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); padding: 8px 14px; border-radius: 999px; border: 1px solid transparent; transition: color .2s, border-color .2s, background .2s; display: flex; align-items: center; gap: 6px; }
.nav-links a .nav-num { font-size: 9px; color: var(--muted2); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); border-color: var(--border); background: rgba(240,237,232,0.04); }
.nav-links a[aria-current="page"] { border-color: var(--border2); background: var(--gold-dim); color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; width: 40px; height: 40px; align-items: center; justify-content: center; cursor: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { display: block; width: 100%; height: 1px; background: var(--text); transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-drawer { position: fixed; inset: 0; background: var(--bg); z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; transform: translateY(-100%); transition: transform .6s var(--ease); }
.nav-drawer.open { transform: translateY(0); }
.nav-drawer a { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; letter-spacing: 0.05em; color: var(--muted); transition: color .2s; display: flex; align-items: center; gap: 16px; }
.nav-drawer a .num { font-family: 'Syne', sans-serif; font-size: 12px; letter-spacing: 0.2em; color: var(--muted2); }
.nav-drawer a:hover { color: var(--text); }
.nav-drawer-footer { position: absolute; bottom: 40px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted2); }

/* PAGE */
.page { padding-top: var(--nav-h); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* HERO */
.hero { min-height: calc(100vh - var(--nav-h)); display: flex; flex-direction: column; justify-content: center; padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.12; }
.hero-bg-glow.g1 { width: 800px; height: 600px; top: -200px; left: -200px; background: var(--gold); }
.hero-bg-glow.g2 { width: 600px; height: 500px; bottom: -100px; right: -100px; background: #3a2a8f; opacity: 0.08; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease) .2s, transform .7s var(--ease) .2s; }
.hero-eyebrow.in { opacity: 1; transform: none; }
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 6px var(--gold); } 50% { box-shadow: 0 0 20px var(--gold), 0 0 40px rgba(201,162,39,0.4); } }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(60px, 9vw, 130px); font-weight: 300; line-height: 0.95; letter-spacing: -0.01em; max-width: 900px; margin-bottom: 36px; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-title-line { display: block; overflow: hidden; }
.hero-title-inner { display: block; opacity: 0; transform: translateY(100%); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.hero-title-inner.in { opacity: 1; transform: none; }
.hero-body { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.hero-lead { font-size: 16px; line-height: 1.8; color: var(--muted); max-width: 52ch; opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease) .5s, transform .7s var(--ease) .5s; }
.hero-lead.in { opacity: 1; transform: none; }
.hero-lead strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease) .7s, transform .7s var(--ease) .7s; }
.hero-actions.in { opacity: 1; transform: none; }
.hero-pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.pill { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; background: rgba(240,237,232,0.03); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 999px; font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; transition: transform .2s var(--ease2), box-shadow .2s var(--ease2), background .2s, border-color .2s; position: relative; overflow: hidden; cursor: none; }
.btn-primary { background: var(--gold); color: var(--bg); border: 1px solid var(--gold); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(201,162,39,0.3); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { transform: translateY(-2px); border-color: rgba(240,237,232,0.3); background: rgba(240,237,232,0.04); }
.btn svg { width: 14px; height: 14px; }

/* DIVIDER / LABELS */
.divider { width: 100%; height: 1px; background: var(--border); margin: 80px 0; }
.section-label { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--muted2); margin-bottom: 48px; display: flex; align-items: center; gap: 16px; }
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 6vw, 80px); font-weight: 300; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 24px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-lead { font-size: 16px; line-height: 1.8; color: var(--muted); max-width: 60ch; margin-bottom: 64px; }

/* SERVICES */
.services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--border); border-radius: 24px; overflow: hidden; background: var(--border); }
.service-card { background: var(--bg); padding: 40px 36px; transition: background .3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, var(--gold-glow), transparent 60%); opacity: 0; transition: opacity .4s; }
.service-card:hover { background: var(--bg2); }
.service-card:hover::before { opacity: 1; }
.service-num { font-size: 11px; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 40px; font-weight: 600; }
.service-icon { width: 44px; height: 44px; border: 1px solid var(--border2); border-radius: 12px; display: grid; place-items: center; margin-bottom: 20px; position: relative; overflow: hidden; }
.service-icon::before { content: ''; position: absolute; inset: -60%; background: radial-gradient(circle at 30% 30%, rgba(201,162,39,0.6), transparent 45%); }
.service-icon svg { position: relative; z-index: 1; }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; margin-bottom: 14px; line-height: 1.1; }
.service-body { font-size: 14px; line-height: 1.75; color: var(--muted); }

/* STATS */
.stats { padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: 16px; overflow: hidden; }
.stat-item { background: var(--bg); padding: 40px 32px; }
.stat-value { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* PROCESS */
.process-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 20px; overflow: hidden; }
.process-step { background: var(--bg); padding: 40px 48px; display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: start; transition: background .3s; }
.process-step:hover { background: var(--bg2); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--gold); line-height: 1; opacity: 0.4; }
.step-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; margin-bottom: 10px; }
.step-content p { font-size: 14.5px; line-height: 1.75; color: var(--muted); max-width: 65ch; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tcard { border: 1px solid var(--border); border-radius: 20px; padding: 32px; background: var(--bg2); transition: border-color .3s, transform .3s var(--ease2); }
.tcard:hover { border-color: var(--border2); transform: translateY(-4px); }
.tcard-quote { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; font-style: italic; line-height: 1.6; color: var(--text); margin-bottom: 24px; }
.tcard-quote::before { content: '\201C'; font-size: 48px; color: var(--gold); line-height: 0; vertical-align: -0.4em; margin-right: 4px; opacity: 0.6; }
.tcard-meta { display: flex; align-items: center; justify-content: space-between; }
.tcard-author { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.tcard-rating { font-size: 11px; letter-spacing: 0.15em; color: var(--gold); border: 1px solid var(--border2); border-radius: 999px; padding: 5px 10px; font-weight: 700; }

/* PRICING */
.pricing-tabs { display: flex; gap: 4px; border: 1px solid var(--border); border-radius: 999px; padding: 4px; width: fit-content; margin-bottom: 48px; }
.ptab { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; padding: 10px 20px; border-radius: 999px; cursor: none; color: var(--muted); transition: color .2s, background .2s; font-weight: 600; background: transparent; border: none; }
.ptab.active { background: var(--gold); color: var(--bg); }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }
.price-table { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 20px; overflow: hidden; margin-bottom: 32px; }
.price-row { background: var(--bg2); padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: background .2s; }
.price-row:hover { background: var(--bg3); }
.price-name { font-size: 15px; color: var(--text); line-height: 1.5; }
.price-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.price-val { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--gold); white-space: nowrap; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 20px; overflow: hidden; }
.faq-item { background: var(--bg2); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; color: var(--text); text-align: left; padding: 28px 32px; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600; cursor: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: background .2s; }
.faq-q:hover { background: rgba(240,237,232,0.03); }
.faq-q-icon { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; transition: transform .3s var(--ease), border-color .3s, background .3s; font-size: 18px; line-height: 1; color: var(--muted); }
.faq-item.open .faq-q-icon { transform: rotate(45deg); border-color: var(--border2); background: var(--gold-dim); color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 32px 28px; font-size: 14.5px; line-height: 1.8; color: var(--muted); }
.faq-a-inner a { color: var(--gold); border-bottom: 1px solid rgba(201,162,39,0.3); padding-bottom: 1px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-item { display: flex; flex-direction: column; gap: 6px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.contact-info-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted2); }
.contact-info-value { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--text); transition: color .2s; }
.contact-info-value:hover { color: var(--gold); }
.contact-note { border: 1px solid var(--border); border-radius: 16px; padding: 28px; background: var(--bg2); }
.contact-note-title { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.contact-note p { font-size: 14px; line-height: 1.8; color: var(--muted); }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-block { border: 1px solid var(--border); border-radius: 16px; padding: 28px; background: var(--bg2); }
.info-block h3 { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.info-block ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.info-block li { font-size: 14px; line-height: 1.6; color: var(--muted); padding-left: 16px; position: relative; }
.info-block li::before { content: '⮡'; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 3px; }
.info-block li strong { color: var(--text); font-weight: 600; }

/* CTA SECTION */
.cta-section { padding: 100px 0; text-align: center; border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; width: 600px; height: 400px; top: 50%; left: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(201,162,39,0.06), transparent 70%); pointer-events: none; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 7vw, 96px); font-weight: 300; line-height: 1; margin-bottom: 24px; }
.cta-title em { font-style: italic; color: var(--gold); }
.cta-lead { font-size: 16px; color: var(--muted); max-width: 50ch; margin: 0 auto 40px; line-height: 1.7; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 60px 0; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; margin-bottom: 12px; }
.footer-brand-desc { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 32ch; }
.footer-links h4 { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted2); margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 13.5px; color: var(--muted); transition: color .2s; }
.footer-links li a:hover { color: var(--text); }
.footer-legal { font-size: 11.5px; color: var(--muted2); line-height: 1.75; }
.footer-bottom { max-width: var(--max); margin: 40px auto 0; padding: 20px 32px 0; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--muted2); letter-spacing: 0.15em; }

/* INNER PAGE HERO */
.page-hero { padding: 80px 0 60px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 500px; height: 400px; top: -200px; left: -100px; background: radial-gradient(circle, rgba(201,162,39,0.05), transparent 70%); pointer-events: none; }
.page-hero-label { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.page-hero-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 8vw, 110px); font-weight: 300; line-height: 0.95; letter-spacing: -0.01em; }
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-lead { font-size: 16px; line-height: 1.75; color: var(--muted); max-width: 60ch; margin-top: 28px; }

/* PROSE */
.prose { max-width: 72ch; }
.prose h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 400; margin: 48px 0 16px; color: var(--text); }
.prose h3 { font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 32px 0 12px; }
.prose p { font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 16px; }
.prose ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.prose li { font-size: 14.5px; line-height: 1.7; color: var(--muted); padding-left: 20px; position: relative; }
.prose li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.prose a { color: var(--gold); border-bottom: 1px solid rgba(201,162,39,0.3); }
.prose strong { color: var(--text); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; } .reveal-d4 { transition-delay: .4s; }

/* UTILS */
.fine { font-size: 12px; line-height: 1.7; color: var(--muted2); margin-top: 24px; }
.mt-8{margin-top:8px}.mt-12{margin-top:12px}.mt-16{margin-top:16px}.mt-20{margin-top:20px}.mt-32{margin-top:32px}.mt-48{margin-top:48px}.mt-64{margin-top:64px}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .wrap { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-body { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { align-items: flex-start; }
  .hero-pills { justify-content: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .process-step { grid-template-columns: 50px 1fr; padding: 28px 24px; gap: 16px; }
  .step-num { font-size: 36px; }
  .pricing-tabs { flex-wrap: wrap; border-radius: 16px; }
  .nav-inner { padding: 0 20px; }
  .hero { padding: 60px 0 40px; }
}
@media (max-width: 520px) {
  .hero-title { font-size: 52px; }
  .cta-title { font-size: 42px; }
  .stat-value { font-size: 42px; }
}
