/* ===================================
   CLIKSPARK — style.css
   Brand: Black / #FFC107 (amber) / White
   =================================== */

:root {
  --yellow: #FFC107;
  --yellow-dark: #e6ac00;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --icon-size: 28px;         /* ← single source of truth for all icons */
  --icon-gap: 14px;          /* spacing between icon and title */
  --nav-height: 80px;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

/* ===== GLOBAL ICON RULE ===== */
/* Every Phosphor icon on the page inherits these defaults */
[class^="ph-"], [class*=" ph-"] {
  font-size: var(--icon-size);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.accent { color: var(--yellow); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 13px 28px;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

/* ===== SECTION LABELS & HEADERS ===== */
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,193,7,0.08);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* --- LOGO: dominant & premium --- */
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;           /* ↑ increased from typical ~24px */
  letter-spacing: 0.04em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }

.logo-clik  { color: var(--white); }
.logo-spark { color: var(--yellow); }
.logo-bolt  {
  font-size: 28px;
  color: var(--yellow);
  line-height: 1;
  margin-left: 2px;
  /* override the global icon rule — bolt is text emoji, not ph icon */
  font-family: sans-serif;
}

/* --- Nav links --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;           /* push to right side */
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--yellow); }

/* --- CTA button --- */
.btn-quote {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 22px;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.btn-quote:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================================
   HERO — Premium Cinematic
   =================================== */

/* Page-load fade-up keyframes */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* More generous breathing room */
  padding: calc(var(--nav-height) + 80px) 48px 100px;
  overflow: hidden;
}

/* ── Background base ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #05050a;
  overflow: hidden;
}

/* ── Layer 1: cinematic glow stack ── */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Soft warm white key light — behind left headline area */
    radial-gradient(ellipse 50% 55% at 22% 42%, rgba(255,248,220,0.045) 0%, transparent 68%),
    /* Warm amber halo — anchored top-left, headline glow source */
    radial-gradient(ellipse 38% 38% at 8% 20%, rgba(255,193,7,0.10) 0%, transparent 58%),
    /* Tight amber spark — upper right accent */
    radial-gradient(ellipse 24% 22% at 82% 10%, rgba(255,193,7,0.12) 0%, transparent 50%),
    /* Wide diffused bloom — centre right depth */
    radial-gradient(ellipse 50% 38% at 72% 55%, rgba(255,193,7,0.05) 0%, transparent 62%),
    /* Luxury directional base */
    linear-gradient(148deg, #0e0e12 0%, #05050a 50%, #020204 100%);
  pointer-events: none;
}

/* ── Layer 2: subtle grid + film grain ── */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 64px 64px, 64px 64px, 320px 320px;
  /* Visible top, fade to invisible at 65% */
  -webkit-mask-image: linear-gradient(180deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.18) 65%,
    rgba(0,0,0,0)    100%);
  mask-image: linear-gradient(180deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.18) 65%,
    rgba(0,0,0,0)    100%);
  pointer-events: none;
}

/* ── Layer 3: particles canvas ── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* ── Mouse-follow glow orb ── */
#hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,193,7,0.07) 0%,
    rgba(255,220,100,0.03) 40%,
    transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.9s cubic-bezier(0.25,0.46,0.45,0.94),
              top  0.9s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: 0;
  filter: blur(8px);
}

/* ── Hero content ── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  /* Constrain text to left ~55% — luxurious negative space on right */
  max-width: 700px;
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,193,7,0.08);
  border: 1px solid rgba(255,193,7,0.22);
  color: rgba(255,193,7,0.9);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 36px;
  /* Fade-up: first element */
  animation: heroFadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero-badge [class^="ph-"] { font-size: 13px; }

/* ── Headline ── */
.hero-headline {
  font-size: clamp(64px, 9.5vw, 122px);
  /* Pure crisp white — no gradient on main lines */
  color: #ffffff;
  line-height: 0.93;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
  /* Fade-up: second element */
  animation: heroFadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.22s both;
}

/* ── UNFORGETTABLE gradient ── */
.hero-accent {
  display: block;
  background: linear-gradient(
    90deg,
    #f5c400 0%,
    #ffd500 55%,
    #fff4c7 78%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Soft contained glow — no bleed */
  filter: drop-shadow(0 0 16px rgba(255,210,0,0.22))
          drop-shadow(0 0 48px rgba(255,200,0,0.08));
}

/* ── Subheading ── */
.hero-sub {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(204,204,204,0.72);
  max-width: 440px;
  margin-bottom: 52px;
  /* Fade-up: third element */
  animation: heroFadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.38s both;
}

/* ── Action buttons ── */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  /* Fade-up: fourth element */
  animation: heroFadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.52s both;
}

/* Hero primary — rich yellow with glow on hover */
.hero-actions .btn-primary {
  background: #FFC107;
  color: #000;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 15px 32px;
  border-radius: 3px;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.25s ease;
  box-shadow: 0 0 0 rgba(255,193,7,0);
}
.hero-actions .btn-primary:hover {
  background: #FFD54F;
  transform: translateY(-3px);
  box-shadow:
    0 6px 24px rgba(255,193,7,0.30),
    0 0 48px rgba(255,193,7,0.12);
}

/* Hero secondary — glassmorphism */
.hero-actions .btn-secondary {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 15px 32px;
  border-radius: 3px;
  transition: background 0.35s ease, border-color 0.35s ease,
              color 0.35s ease, transform 0.25s ease, box-shadow 0.35s ease;
}
.hero-actions .btn-secondary:hover {
  background: rgba(255,193,7,0.08);
  border-color: rgba(255,193,7,0.45);
  color: #FFC107;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(255,193,7,0.10);
}

/* ===================================
   TICKER
   =================================== */
.ticker-wrap {
  background: var(--yellow);
  overflow: hidden;
  padding: 14px 0;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  will-change: transform;
}

.ticker-track span {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--black);
  text-transform: uppercase;
}

.ticker-track [class^="ph-"] {
  font-size: 10px;
  color: rgba(0,0,0,0.5);
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================================
   STATS
   =================================== */
.stats {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 56px 32px;
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ===================================
   SERVICES
   =================================== */
.services {
  padding: 100px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--dark2);
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.04);
}

.service-card:hover { background: var(--dark3); }

.service-card.featured {
  background: rgba(255,193,7,0.06);
  border: 1px solid rgba(255,193,7,0.18);
}

.service-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

/* Service icon — enforces 28px + yellow color + gap */
.service-icon {
  display: flex;
  align-items: center;
  margin-bottom: var(--icon-gap);
}

.service-icon [class^="ph-"],
.service-icon [class*=" ph-"] {
  font-size: var(--icon-size);  /* 28px */
  color: var(--yellow);
  width: var(--icon-size);
  height: var(--icon-size);
}

.service-card h3 {
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.service-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--gray);
}

.card-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow);
  transition: letter-spacing 0.2s;
}
.card-link:hover { letter-spacing: 0.18em; }

/* ===================================
   WHY US
   =================================== */
.why-us {
  background: var(--dark2);
  padding: 100px 32px;
  display: flex;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

.why-left { flex: 1; }

.why-left h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  color: var(--white);
  margin-bottom: 44px;
  margin-top: 12px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: var(--icon-gap);        /* consistent 14px gap */
}

/* Why point icons — 28px amber */
.why-point > [class^="ph-"],
.why-point > [class*=" ph-"] {
  font-size: var(--icon-size);  /* 28px */
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;              /* optical alignment with text */
  width: var(--icon-size);
  height: var(--icon-size);
}

.why-point strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.why-point p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--gray);
}

.why-right {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.why-badge {
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 8px 16px;
  align-self: flex-end;
}

.why-logo-box {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(255,193,7,0.06);
  border: 1px solid rgba(255,193,7,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-logo-box span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(255,193,7,0.25);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.06em;
}

/* ===================================
   PROCESS
   =================================== */
.process {
  padding: 100px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 180px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--yellow);
  line-height: 1;
}

/* Process step icons — 28px white */
.step > [class^="ph-"],
.step > [class*=" ph-"] {
  font-size: var(--icon-size);  /* 28px */
  color: var(--white);
  width: var(--icon-size);
  height: var(--icon-size);
}

.step h3 {
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--white);
}

.step p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray);
}

.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  align-self: center;
  color: var(--yellow);
}
.step-arrow [class^="ph-"] { font-size: 22px; }

/* ===================================
   CTA
   =================================== */
.cta {
  background: var(--dark2);
  border-top: 1px solid rgba(255,193,7,0.1);
  padding: 100px 32px;
  text-align: center;
}

.cta-content {
  max-width: 680px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(44px, 7vw, 80px);
  color: var(--white);
  margin-bottom: 20px;
}

.cta p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 44px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* CTA button icons at 20px (slightly smaller than section icons) */
.cta-actions .btn-primary [class^="ph-"],
.cta-actions .btn-secondary [class^="ph-"] {
  font-size: 20px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 2px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.footer-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--yellow); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  width: 100%;
  text-align: center;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item     { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }

  .why-us { flex-direction: column; gap: 48px; }
  .why-right { flex: none; width: 100%; max-width: 320px; align-self: center; }

  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: flex-start; margin: -8px 0 -8px 24px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  /* Nav mobile */
  .nav-links,
  .btn-quote { display: none; }

  .hamburger { display: flex; }

  .logo { font-size: 28px; }

  /* Mobile menu open state */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 32px;
    gap: 28px;
    z-index: 999;
    border-bottom: 1px solid rgba(255,193,7,0.1);
  }
  .nav-links.open a {
    font-size: 16px;
  }
  .btn-quote.open {
    display: block;
    width: 100%;
    text-align: center;
    position: fixed;
    top: calc(var(--nav-height) + 232px);
    left: 0; right: 0;
    z-index: 999;
    border-radius: 0;
    padding: 18px;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid rgba(255,193,7,0.1);
  }

  /* Hero */
  .hero { padding: calc(var(--nav-height) + 48px) 24px 72px; }
  .hero-headline { font-size: clamp(52px, 14vw, 80px); }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }

  /* Sections */
  .services { padding: 70px 20px; }
  .services-grid { grid-template-columns: 1fr; }

  .why-us { padding: 70px 20px; }
  .why-left h2 { font-size: 36px; }

  .process { padding: 70px 20px; }
  .step-arrow { display: none; }

  .cta { padding: 70px 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions a { width: 100%; justify-content: center; }

  .stats { padding: 44px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }
  .stat-num { font-size: 44px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { margin-left: 0; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .logo { font-size: 26px; }
  .hero-headline { font-size: clamp(44px, 13vw, 64px); }
  .section-header h2 { font-size: 36px; }
  .service-card { padding: 28px 20px; }
  .why-logo-box { max-width: 260px; margin: 0 auto; }
}
