/* ==========================================================================
   Storm Marketing — Agency landing page
   ========================================================================== */
:root {
  --navy: #0e2c4a;
  --navy-dark: #0a1f36;
  --navy-deep: #071529;
  --teal: #14a3a3;
  --teal-dark: #0f8787;
  --orange: #ff7a18;
  --orange-dark: #e66a0b;
  --slate: #4a5568;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --border: #e5e9f0;
  --success: #16a34a;
  --shadow-sm: 0 1px 2px rgba(13,28,49,.05);
  --shadow-md: 0 8px 24px rgba(13,28,49,.08);
  --shadow-lg: 0 20px 50px rgba(13,28,49,.14);
  --shadow-xl: 0 28px 70px rgba(13,28,49,.22);
  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 18px;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; overscroll-behavior-x: none; touch-action: pan-y pinch-zoom; }
body { font-family: var(--font); color: #14202f; background: var(--bg); line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { -webkit-user-drag: none; user-drag: none; max-width: 100%; height: auto; }
a { color: inherit; }

/* ============ Top utility bar ============ */
.utility-bar { background: var(--navy-deep); color: #bcd4e6; font-size: 13px; padding: 7px 20px; }
.utility-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.utility-lang { color: #bcd4e6; text-decoration: none; font-weight: 700; font-size: 11px; padding: 3px 9px; border-radius: 4px; border: 1px solid rgba(188,212,230,.28); letter-spacing: .08em; transition: all .15s; }
.utility-lang:hover { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }

/* ============ Nav ============ */
.topnav { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--border); }
.topnav-inner { max-width: 1200px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 8px; }
.brand-mark { width: 28px; height: 28px; background: linear-gradient(135deg, var(--teal), var(--navy)); border-radius: 8px; position: relative; flex-shrink: 0; }
.brand-mark::after { content: '⚡'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; font-weight: 900; }
.brand-name { font-weight: 900; font-size: 19px; color: var(--navy); letter-spacing: -0.02em; }
.topnav-cta { background: var(--orange); color: #fff; padding: 11px 22px; border-radius: 999px; font-weight: 800; font-size: 14px; text-decoration: none; box-shadow: 0 6px 14px rgba(255,122,24,.3); transition: all .15s; display: inline-flex; align-items: center; gap: 6px; }
.topnav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ============ Hero ============ */
.hero { padding: 64px 24px 80px; background: radial-gradient(circle at 80% 20%, rgba(20,163,163,.08), transparent 55%), radial-gradient(circle at 15% 85%, rgba(255,122,24,.06), transparent 55%), #fff; }
.hero-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.hero-eyebrow { display: inline-block; background: rgba(20,163,163,.12); color: var(--teal-dark); padding: 7px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hero h1 { font-size: clamp(36px, 5.5vw, 64px); line-height: 1.04; color: var(--navy); letter-spacing: -0.025em; margin: 18px 0 18px; font-weight: 900; }
.hero h1 .accent { color: var(--orange); }
.hero h1 u { text-decoration: none; border-bottom: 4px solid var(--teal); padding-bottom: 2px; }
.hero p.lead { font-size: 19px; color: var(--slate); max-width: 540px; margin-bottom: 28px; line-height: 1.5; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: #fff; padding: 17px 30px; border-radius: 999px; font-weight: 800; font-size: 16px; text-decoration: none; box-shadow: 0 12px 28px rgba(255,122,24,.35); transition: all .2s; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); padding: 17px 26px; border-radius: 999px; font-weight: 700; font-size: 15px; text-decoration: none; border: 2px solid var(--border); transition: all .15s; }
.btn-secondary:hover { border-color: var(--navy); }
.hero-trust { display: flex; gap: 14px; align-items: center; font-size: 14px; color: var(--muted); flex-wrap: wrap; }
.hero-trust strong { color: var(--navy); font-weight: 800; }
.hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 16/10; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ Stats band ============ */
.stats { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; padding: 48px 24px; }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat strong { display: block; font-size: clamp(36px, 4.5vw, 56px); color: var(--teal); font-weight: 900; letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
.stat span { font-size: 13px; color: #bcd4e6; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* ============ Services ============ */
.services { background: var(--bg-soft); padding: 96px 24px; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { display: inline-block; color: var(--teal-dark); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.section-head { text-align: center; margin-bottom: 48px; }
h2 { font-size: clamp(28px, 3.6vw, 44px); color: var(--navy); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 17px; max-width: 640px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); transition: all .25s; border: 1px solid var(--border); }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-img { aspect-ratio: 16/10; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.svc-card:hover .svc-img img { transform: scale(1.04); }
.svc-card h3 { font-size: 19px; color: var(--navy); font-weight: 800; padding: 22px 24px 6px; letter-spacing: -0.01em; }
.svc-card p { font-size: 14.5px; color: var(--slate); padding: 0 24px 24px; line-height: 1.55; }

/* ============ Process ============ */
.process { background: #fff; padding: 96px 24px; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.step { background: var(--bg-soft); padding: 28px 22px; border-radius: var(--radius-md); border: 1px solid var(--border); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 900; font-size: 16px; margin-bottom: 14px; }
.step h3 { font-size: 17px; color: var(--navy); font-weight: 800; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--slate); line-height: 1.55; }

/* ============ Big CTA ============ */
.big-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); padding: 96px 24px; text-align: center; color: #fff; }
.big-cta-inner { max-width: 780px; margin: 0 auto; }
.big-cta h2 { color: #fff; margin-bottom: 14px; }
.big-cta p { color: #bcd4e6; font-size: 18px; margin-bottom: 32px; }
.big-cta .micro { font-size: 13.5px; color: #8fa3c0; margin-top: 18px; }
.big-cta .micro strong { color: #fff; }

/* ============ Footer ============ */
.footer { background: var(--navy-deep); color: #8fa3c0; padding: 56px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; }
.footer-brand { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 24px; height: 24px; }
.footer-brand .brand-mark::after { font-size: 14px; }
.footer-brand-name { font-weight: 900; font-size: 17px; color: #fff; letter-spacing: -0.01em; }
.footer-about { font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { font-size: 14px; padding: 4px 0; }
.footer-col a { color: inherit; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-legal { font-size: 12px; color: #6b7d99; line-height: 1.6; }
.footer-legal p { margin-bottom: 6px; }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .hero { padding: 48px 20px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .services, .process, .big-cta { padding: 72px 18px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 36px; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .topnav-cta { padding: 9px 14px; font-size: 13px; }
  .brand-name { font-size: 16px; }
  .utility-inner { font-size: 11.5px; }
  .stats { padding: 36px 18px; }
  .services, .process, .big-cta { padding: 56px 18px; }
}
