/* ============================================================
   MEGAHIVE WORDPRESS THEME — megahive.css
   ============================================================ */

/* ── Variables ── */
:root {
  --bg:       #FAF8F4;
  --bg2:      #F2EFE9;
  --panel:    #FFFFFF;
  --text:     #1A1A1A;
  --muted:    #6B6560;
  --border:   rgba(26,26,26,0.12);
  --border2:  rgba(26,26,26,0.22);
  --accent:   #C8102E;
  --accent2:  #A50D25;
  --surface:  rgba(26,26,26,0.04);
  --max-w:    1240px;
  --radius:   18px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Space Grotesk', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul { list-style: none; }

/* ── Fonts ── */
.font-archivo, h1, h2, h3, .section-h2, .hero-h1, .cta-h2, .benefit-h2 { font-family: 'Archivo', sans-serif; }

/* ── Reveal animation ── */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.75s cubic-bezier(.2,.7,.2,1), transform 0.75s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ── Keyframes ── */
@keyframes marqueeScroll { to { transform: translateX(-50%); } }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.section-pad { padding: 80px 0; }
.bg-alt { background: var(--bg2); }
.text-center { text-align: center; }

/* ── Typography ── */
.section-label { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; color: var(--muted); text-transform: uppercase; margin-bottom: 16px; }
.label-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.section-h2 { font-weight: 900; font-size: clamp(32px,4vw,56px); letter-spacing: -0.03em; margin-bottom: 20px; color: var(--text); }
.section-sub { font-size: 17px; color: var(--muted); max-width: 600px; margin-bottom: 48px; line-height: 1.7; }
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.accent { color: var(--accent); }
.accent-underline { position: relative; display: inline-block; }
.accent-underline::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 3px; background: var(--accent); border-radius: 2px; }

/* ── Buttons ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 999px; background: var(--accent); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.97); }
.btn-outline { display: inline-flex; align-items: center; padding: 13px 26px; border-radius: 999px; border: 2px solid var(--text); color: var(--text); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; background: transparent; transition: border-color 0.2s, background 0.2s; }
.btn-outline:hover { background: rgba(26,26,26,0.05); }
.btn-outline-sm { display: inline-flex; align-items: center; padding: 9px 18px; border-radius: 999px; border: 1px solid var(--border2); font-size: 13px; font-weight: 600; color: var(--text); transition: border-color 0.2s; }
.btn-outline-sm:hover { border-color: var(--accent); }
.btn-primary-white { display: inline-flex; align-items: center; padding: 15px 30px; border-radius: 999px; background: var(--accent); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; transition: background 0.2s; }
.btn-primary-white:hover { background: var(--accent2); }
.btn-outline-white { display: inline-flex; align-items: center; padding: 14px 28px; border-radius: 999px; border: 2px solid rgba(255,255,255,0.3); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; transition: border-color 0.2s; }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); }

/* ── NAV ── */
#mh-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; transition: all 0.4s cubic-bezier(.2,.7,.2,1); }
#mh-nav.scrolled { padding: 10px 0; background: rgba(250,248,244,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; display: flex; align-items: center; gap: 32px; }
.nav-logo img { height: 100px; }
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: 32px; }
.nav-links a { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border2); align-items: center; justify-content: center; }
.nav-burger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; }
.nav-mobile { display: none; flex-direction: column; background: var(--panel); border-top: 1px solid var(--border); max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.nav-mobile.is-open { max-height: 500px; display: flex; }
.nav-mobile a, .nav-mobile button { display: block; padding: 14px 48px; font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; text-align: left; }
.nav-mobile button { color: var(--accent); }

/* ── HERO ── */
#hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 0 0; position: relative; overflow: hidden; background: var(--bg); }
.hero-bg-accent { position: absolute; top: 0; right: 0; width: 45%; height: 100%; background: linear-gradient(135deg, transparent 40%, rgba(200,16,46,0.04) 100%); pointer-events: none; }
.hero-divider { position: absolute; left: 50%; top: 0; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--border) 20%, var(--border) 80%, transparent); pointer-events: none; }
.hero-grid { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; align-items: center; min-height: calc(100vh - 100px); }
.hero-left { padding-right: 64px; padding-bottom: 80px; }
.hero-eyebrow { margin-bottom: 32px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; border: 1px solid var(--border2); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.hero-h1 { font-weight: 900; font-size: clamp(56px,8.5vw,112px); letter-spacing: -0.04em; line-height: 0.9; margin-bottom: 32px; text-transform: uppercase; color: var(--text); }
.hero-sub { font-size: 17px; color: var(--muted); max-width: 400px; margin-bottom: 40px; line-height: 1.7; }
.hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats-mini { display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.stat-mini-num { display: block; font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 28px; letter-spacing: -0.03em; color: var(--accent); line-height: 1; }
.stat-mini-label { display: block; font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
.hero-right { position: relative; height: 100vh; }
.collage-card { position: absolute; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px -16px rgba(26,26,26,0.28); border: 3px solid #fff; }
.collage-card img { width: 100%; height: 100%; object-fit: cover; }
.card-1 { top: 8%; right: 4%; width: 72%; height: 58%; transform: rotate(2deg); }
.card-2 { top: 28%; left: 2%; width: 60%; height: 44%; transform: rotate(-3deg); z-index: 2; }
.card-3 { bottom: 8%; right: 8%; width: 52%; height: 36%; transform: rotate(1.5deg); z-index: 3; }
.hero-badge-studio { position: absolute; top: 18%; left: 8%; z-index: 4; background: var(--accent); color: #fff; border-radius: 999px; padding: 8px 16px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; box-shadow: 0 8px 24px -6px rgba(200,16,46,0.4); }
.hero-badge-year { position: absolute; bottom: 22%; left: 4%; z-index: 4; background: var(--text); color: #fff; border-radius: 12px; padding: 12px 18px; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; box-shadow: 0 8px 24px -6px rgba(26,26,26,0.3); }

/* ── MARQUEE ── */
.marquee-band { background: var(--accent); padding: 14px 0; overflow: hidden; }
.marquee-overflow { overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 40px; white-space: nowrap; animation: marqueeScroll 32s linear infinite; width: max-content; }
.marquee-track span { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; }
.marquee-track .sep { color: rgba(255,255,255,0.5); }

/* ── STATS ── */
.stats-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
.stat-item { padding: 40px 32px; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(40px,4vw,60px); letter-spacing: -0.03em; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-label-title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.stat-sub { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── SERVICES ── */
.svc-accordion { display: flex; gap: 14px; height: 620px; }
.svc-card { flex: 1; min-width: 0; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); position: relative; overflow: hidden; cursor: pointer; transition: flex 0.6s cubic-bezier(.2,.7,.2,1), border-color 0.3s, background 0.3s; }
.svc-card[data-active] { flex: 5.2; cursor: default; border-color: var(--accent); background: #fff; box-shadow: 0 8px 40px -8px rgba(200,16,46,0.15); }
.svc-header { display: flex; align-items: center; gap: 10px; padding: 18px 20px; position: relative; z-index: 2; }
.svc-label { font-weight: 700; font-size: 10px; letter-spacing: 0.22em; color: var(--muted); white-space: nowrap; text-transform: uppercase; }
.svc-line { flex: 1; height: 1px; background: var(--border); min-width: 8px; }
.svc-num { font-family: ui-monospace, monospace; font-size: 10px; color: var(--muted); white-space: nowrap; }
.svc-min-label { position: absolute; left: 0; right: 0; top: 58px; bottom: 24px; display: flex; align-items: flex-end; justify-content: center; writing-mode: vertical-rl; transform: rotate(180deg); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(16px,1.6vw,24px); letter-spacing: -0.01em; color: var(--text); opacity: 0.8; white-space: nowrap; pointer-events: none; transition: opacity 0.3s ease; }
.svc-card[data-active] .svc-min-label { opacity: 0; }
.svc-full { position: absolute; left: 0; top: 56px; width: min(580px,100%); padding: 0 22px 22px; opacity: 0; pointer-events: none; transition: opacity 0.45s ease 0.1s; }
.svc-card[data-active] .svc-full { opacity: 1; pointer-events: auto; }
.svc-img { height: 240px; border-radius: 12px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-full h3 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 28px; letter-spacing: -0.02em; margin: 20px 0 0; color: var(--text); }
.svc-full p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.svc-tags span { padding: 7px 14px; border-radius: 8px; border: 1px solid var(--border); font-size: 12px; font-weight: 600; color: var(--text); }
.svc-mobile { display: none; flex-direction: column; gap: 8px; }
.svc-mobile details { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; }
.svc-mobile summary { display: flex; align-items: center; gap: 12px; padding: 18px 20px; cursor: pointer; font-weight: 700; font-size: 15px; color: var(--text); list-style: none; }
.svc-mobile summary::-webkit-details-marker { display: none; }
.svc-num-sm { font-weight: 700; font-size: 10px; letter-spacing: 0.22em; color: var(--muted); text-transform: uppercase; }
.svc-mobile-body { padding: 0 20px 20px; }
.svc-mobile-body img { border-radius: 12px; margin-bottom: 14px; width: 100%; }
.svc-mobile-body p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.process-card { padding: 32px 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel); transition: border-color 0.25s, box-shadow 0.25s; }
.process-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px -8px rgba(200,16,46,0.12); }
.step-num { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.18em; color: var(--accent); margin-bottom: 16px; text-transform: uppercase; }
.process-card h3 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.01em; margin-bottom: 12px; color: var(--text); }
.process-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── TRUST ── */
.trust-header { display: flex; align-items: center; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.trust-header .section-h2 { flex: 1; margin-bottom: 0; }
.trust-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent); border-radius: 999px; padding: 6px 14px; white-space: nowrap; }
.logos-row { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.client-logo { height: 34px; width: auto; filter: grayscale(1); opacity: 0.45; transition: filter 0.3s, opacity 0.3s; }
.client-logo:hover { filter: none; opacity: 1; }

/* ── PAIN ── */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pain-col { padding: 36px 32px; border-radius: var(--radius); border: 1px solid var(--border); }
.pain-bad { background: var(--panel); }
.pain-good { background: rgba(200,16,46,0.04); border-color: rgba(200,16,46,0.25); }
.pain-col-title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 18px; margin-bottom: 20px; color: var(--text); }
.pain-col li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; margin-bottom: 14px; color: var(--muted); }
.pain-good li { color: var(--text); }
.x-icon { color: var(--muted); flex-shrink: 0; }
.check-icon { color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ── BENEFITS ── */
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.benefit-grid.reverse { direction: rtl; }
.benefit-grid.reverse > * { direction: ltr; }
.benefit-text .section-eyebrow { margin-bottom: 14px; }
.benefit-h2 { font-weight: 900; font-size: clamp(28px,3.5vw,46px); letter-spacing: -0.03em; margin-bottom: 18px; line-height: 1.05; color: var(--text); }
.benefit-text p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.benefit-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 32px 80px -20px rgba(26,26,26,0.2); }
.benefit-img-wrap img { width: 100%; display: block; }
.benefit-fig-label { position: absolute; bottom: 14px; left: 14px; font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); background: rgba(26,26,26,0.5); backdrop-filter: blur(8px); padding: 5px 10px; border-radius: 6px; }

/* ── COMPARE TABLE ── */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 18px 20px; text-align: center; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table th { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.col-mh { background: rgba(200,16,46,0.05); }
.compare-table th.col-mh { color: var(--accent); }
.check { color: var(--accent); font-size: 18px; font-weight: 700; }
.cross { color: var(--muted); font-size: 14px; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.testi-card { padding: 32px 28px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--panel); transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.testi-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 12px 40px -12px rgba(200,16,46,0.18); }
.testi-quote { font-size: 16px; line-height: 1.7; font-style: italic; margin-bottom: 24px; color: var(--text); }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 14px; margin-bottom: 2px; color: var(--text); }
.testi-role { font-size: 12px; color: var(--muted); }

/* ── FAQ ── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-weight: 600; font-size: 16px; color: var(--text); list-style: none; transition: color 0.2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--accent); }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-body { padding-bottom: 22px; font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band { padding: 100px 0; background: var(--text); }
.cta-h2 { font-weight: 900; font-size: clamp(32px,5vw,64px); letter-spacing: -0.03em; margin-bottom: 14px; color: #fff; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { padding: 60px 0 32px; border-top: 1px solid var(--border); background: var(--bg2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 280px; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; font-size: 12px; color: var(--muted); }

/* ── MODAL ── */
.mh-modal-overlay { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: rgba(26,26,26,0.7); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mh-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.mh-modal { background: var(--panel); border: 1px solid var(--border); border-radius: 20px; padding: 36px; max-width: 520px; width: 90%; position: relative; color: var(--text); box-shadow: 0 40px 100px -20px rgba(26,26,26,0.4); transform: scale(0.95); transition: transform 0.3s ease; }
.mh-modal-overlay.is-open .mh-modal { transform: scale(1); }
.modal-close { position: absolute; top: 18px; right: 18px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: border-color 0.2s; }
.modal-close:hover { border-color: var(--accent); }
.modal-step-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.modal-step-bar span { font-size: 12px; color: var(--muted); }
.step-segs { display: flex; gap: 6px; flex: 1; }
.seg { height: 3px; flex: 1; border-radius: 3px; }
.seg1 { background: var(--accent); }
.seg2 { background: var(--border); transition: background 0.3s; }
.seg2.active { background: var(--accent); }
.modal-stage { display: flex; flex-direction: column; gap: 16px; }
.modal-stage h3 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 24px; margin-bottom: 0; }
.modal-stage p { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.modal-stage label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted); }
.modal-stage input, .modal-stage select, .modal-stage textarea { padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-family: inherit; font-size: 15px; outline: none; transition: border-color 0.2s; }
.modal-stage input:focus, .modal-stage select:focus, .modal-stage textarea:focus { border-color: var(--accent); }
.modal-btns { display: flex; gap: 12px; margin-top: 8px; }
.modal-btns .btn-primary { flex: 2; justify-content: center; }
.modal-btns .btn-outline { flex: 1; justify-content: center; }
.form-error { color: #c8102e; font-size: 13px; padding: 10px 14px; border-radius: 8px; background: rgba(200,16,46,0.08); }
.modal-sent { text-align: center; padding: 24px 0; }
.sent-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 20px; }
.modal-sent h3 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 24px; margin-bottom: 8px; }
.modal-sent p { font-size: 15px; color: var(--muted); }

/* ── STICKY CTA ── */
.sticky-cta { position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 18px); z-index: 60; opacity: 0; pointer-events: none; display: none; align-items: center; gap: 6px; padding: 6px; border-radius: 999px; background: rgba(26,26,26,0.88); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 12px 40px -8px rgba(0,0,0,0.4); transition: opacity 0.35s ease, transform 0.35s ease; }
.sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.sticky-cta a, .sticky-cta button { display: inline-flex; align-items: center; padding: 12px 18px; border-radius: 999px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; }
.sticky-cta a { background: rgba(255,255,255,0.08); color: #fff; }
.sticky-cta button { background: var(--accent); color: #fff; border: none; cursor: pointer; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .hero-grid { gap: 40px; }
}
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding-right: 0; padding-bottom: 60px; }
  .nav-links, .nav-right .btn-primary { display: none; }
  .nav-burger { display: flex; }
  .svc-accordion { display: none; }
  .svc-mobile { display: flex; }
  .benefit-grid, .benefit-grid.reverse { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
  .pain-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .sticky-cta { display: flex; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 12px 10px; }
}
@media (max-width: 600px) {
  .hero-h1 { font-size: clamp(42px,12vw,72px); }
  .process-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 32px; }
  .logos-row { gap: 24px; }
  .client-logo { height: 28px; }
  .hero-stats-mini { gap: 24px; }
}
