@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ====================================================
   SHOOTUP MEDIA — style.css  (FINAL)
   Logo: Orange #F05A28 + Navy #1E3D7A
   Dark default + Light mode toggle
   ==================================================== */

/* ---------- TOKENS ---------- */
:root {
  /* Brand */
  --orange:     #F05A28;
  --orange-d:   #D14B1E;
  --orange-l:   #F5784A;
  --navy:       #1E3D7A;
  --navy-l:     #2D56A8;
  --navy-ll:    #5080CC;

  /* Dark theme (default) */
  --bg:         #0D1520;
  --bg-2:       #111E2D;
  --bg-3:       #162030;
  --card:       #14203A;
  --card-2:     #1A2A46;
  --heading:    #EFF6FF;
  --body:       #94A8C4;
  --muted:      #546880;
  --border:     rgba(240,90,40,.15);
  --border-2:   rgba(255,255,255,.08);
  --border-3:   rgba(255,255,255,.04);

  /* Gradients */
  --grad:       linear-gradient(135deg, #F05A28 0%, #F5784A 100%);
  --grad-navy:  linear-gradient(135deg, #1E3D7A 0%, #2D56A8 100%);
  --grad-mix:   linear-gradient(135deg, #F05A28 0%, #1E3D7A 100%);
  --grad-text:  linear-gradient(135deg, #F5784A, #FFAA80);

  /* Effects */
  --glow:       0 0 50px rgba(240,90,40,.28);
  --glow-sm:    0 0 26px rgba(240,90,40,.2);
  --shadow:     0 4px 32px rgba(0,0,0,.45);
  --shadow-lg:  0 20px 80px rgba(0,0,0,.6);

  /* Geometry */
  --radius:     18px;
  --radius-sm:  10px;
  --radius-xs:  6px;
  --hh:         70px;
  --max:        1220px;
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --spring:     cubic-bezier(.34,1.56,.64,1);
}

/* ---------- LIGHT THEME ---------- */
[data-theme="light"] {
  --bg:       #F6F8FC;
  --bg-2:     #FFFFFF;
  --bg-3:     #EBF0F8;
  --card:     #FFFFFF;
  --card-2:   #EFF4FF;
  --heading:  #0D1520;
  --body:     #3A4D66;
  --muted:    #6A80A0;
  --border:   rgba(240,90,40,.14);
  --border-2: rgba(30,61,122,.12);
  --border-3: rgba(30,61,122,.06);
  --shadow:   0 4px 32px rgba(0,0,0,.1);
  --shadow-lg:0 20px 80px rgba(0,0,0,.15);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .3s, color .3s;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px;
  background: var(--grad); border-radius: 2px; flex-shrink: 0;
}
.eyebrow-center { justify-content: center; }
.title { font-size: clamp(26px, 4vw, 46px); margin-bottom: 16px; }
.title .gt {
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subtitle { font-size: 16px; color: var(--body); line-height: 1.78; max-width: 600px; }
.centered { text-align: center; }
.centered .subtitle { margin: 0 auto; }
.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: all .22s var(--ease);
  white-space: nowrap; text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 4px 20px rgba(240,90,40,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 34px rgba(240,90,40,.5); }
.btn-primary:active { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--heading); border: 1.5px solid var(--border-2); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-ghost { background: rgba(240,90,40,.1); color: var(--orange); border: 1px solid rgba(240,90,40,.25); }
.btn-ghost:hover { background: rgba(240,90,40,.18); }
.btn-navy { background: var(--grad-navy); color: #fff; box-shadow: 0 4px 18px rgba(30,61,122,.35); }
.btn-navy:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(30,61,122,.5); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 4px 18px rgba(37,211,102,.35); }
.btn-wa:hover { background: #20B858; transform: translateY(-2px); }
.btn-wa img { width: 16px; height: 16px; object-fit: contain; border-radius: 3px; }
.tag {
  display: inline-block; padding: 4px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  background: rgba(240,90,40,.1); color: var(--orange);
  border: 1px solid rgba(240,90,40,.22);
}

/* ---------- REVEAL ANIMATION ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].on { opacity: 1; transform: none; }

/* ============================================================
   HEADER — fixed, with scroll progress bar
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  height: var(--hh); z-index: 900;
  background: rgba(13,21,32,.93);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--border-3);
  transition: background .3s, box-shadow .3s;
}
[data-theme="light"] .site-header { background: rgba(255,255,255,.94); }
.site-header.scrolled { box-shadow: 0 2px 48px rgba(0,0,0,.45); }
[data-theme="light"] .site-header.scrolled { box-shadow: 0 2px 40px rgba(0,0,0,.1); }
/* scroll progress */
.site-header::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 2px; background: var(--grad);
  width: var(--scroll, 0%); transition: width .1s linear;
}
.nav-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
}
.nav-logo  { display: flex; align-items: center; flex-shrink: 0; order: 1; }
.nav-actions { order: 3; }          /* desktop: right side */
.nav-inner > nav { order: 2; flex: 1; display: flex; justify-content: center; } /* desktop: middle */
.nav-logo img { height: 44px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > a, .nav-item > a {
  font-size: 14px; font-weight: 500; color: var(--body);
  padding: 8px 12px; border-radius: var(--radius-xs);
  transition: color .18s, background .18s; display: block; white-space: nowrap;
}
.nav-links > a:hover, .nav-item > a:hover, .nav-links > a.active { color: var(--heading); }
.nav-links > a { position: relative; }
.nav-links > a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 4px;
  border-radius: 50%; background: var(--orange);
}
/* desktop dropdown */
.nav-item { position: relative; }
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 228px;
  background: var(--card-2); border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 6px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .22s var(--ease); z-index: 100;
}
.nav-drop a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 13px; border-radius: var(--radius-xs);
  font-size: 13px; color: var(--body); transition: all .15s; white-space: nowrap;
}
.nav-drop a:hover { background: rgba(240,90,40,.1); color: var(--heading); }
.nav-drop-icon { font-size: 15px; width: 22px; text-align: center; flex-shrink: 0; }
.nav-actions { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
/* WhatsApp btn */
.nav-wa-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px; border-radius: var(--radius-sm);
  background: #25D366; color: #fff;
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600;
  transition: all .2s; white-space: nowrap;
}
.nav-wa-btn img { width: 15px; height: 15px; object-fit: contain; border-radius: 3px; }
.nav-wa-btn:hover { background: #20B858; transform: translateY(-1px); }
/* theme toggle */
.theme-toggle {
  width: 36px; height: 36px; border-radius: var(--radius-xs);
  background: transparent; border: 1.5px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; color: var(--body); flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--orange); color: var(--orange); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
/* hamburger — hidden on desktop */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; padding: 8px;
  background: transparent; border: 1.5px solid var(--border-2);
  border-radius: var(--radius-xs); cursor: pointer; flex-shrink: 0;
}
.hamburger span {
  width: 100%; height: 2px; background: var(--heading);
  border-radius: 2px; transition: all .3s var(--ease); display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
@media (max-width: 1080px) {
  /*
    Mobile header: Logo(left) | Theme Toggle(center) | Hamburger(right)
    DOM order: Logo | nav-actions | nav(hamburger)
  */
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
  }
  /* Logo pinned LEFT */
  .nav-logo { flex-shrink: 0; }
  /* Hide entire nav-actions (toggle, WA, Free Audit) on mobile */
  .nav-actions { display: none !important; }
  /* Override desktop flex:1 / justify-content:center — pin hamburger to right */
  .nav-inner > nav {
    flex: 0 0 auto;
    justify-content: flex-end;
    margin-left: auto;
  }
  /* Show hamburger */
  .hamburger { display: flex; }

  /* ── Nav panel — position:fixed, sits just below header, auto height to show all items without scroll ── */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--hh);
    left: 0;
    right: 0;
    /* Use auto height so all menu items are visible without scrolling */
    height: auto;
    max-height: calc(100vh - var(--hh));
    /* flex column so all items stack */
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-2);
    border-top: 2px solid var(--orange);
    padding: 0;
    z-index: 850;
    /* No overflow scroll — all items must be visible */
    overflow: visible;
    /* Subtle shadow to separate from content */
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
  }
  /* .open added by JS to show the panel */
  .nav-links.open { display: flex; }

  /* ── Every direct <a> inside nav panel ── */
  .nav-links > a {
    display: block;
    width: 100%;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
    border-bottom: 1px solid var(--border-3);
    box-sizing: border-box;
  }
  .nav-links > a:hover,
  .nav-links > a:active { color: var(--orange); background: rgba(240,90,40,.06); }

  /* ── Services .nav-item wrapper div ── */
  .nav-item {
    display: block;
    width: 100%;
    position: static !important;
  }
  .nav-item > a {
    display: block;
    width: 100%;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
    border-bottom: 1px solid var(--border-3);
    box-sizing: border-box;
  }
  .nav-item > a:hover { color: var(--orange); }

  /* ── Sub-menu: ALL items visible immediately, no hover ── */
  .nav-drop {
    /* force block — override every desktop rule */
    display: block    !important;
    position: static  !important;
    opacity: 1        !important;
    visibility: visible !important;
    transform: none   !important;
    /* no floating, no shadow */
    box-shadow: none  !important;
    /* indented with left accent */
    width: 100%;
    background: rgba(240,90,40,.04);
    border: none;
    border-left: 3px solid rgba(240,90,40,.3);
    padding: 0;
    margin: 0;
    border-radius: 0;
    min-width: 0;
  }
  .nav-drop a {
    display: flex !important;
    width: 100%;
    padding: 10px 18px 10px 22px;
    font-size: 13px;
    color: var(--body);
    border-bottom: 1px solid var(--border-3);
    background: none;
    box-sizing: border-box;
  }
  .nav-drop a:hover,
  .nav-drop a:active { color: var(--orange); background: rgba(240,90,40,.07); }
}

@media (max-width: 480px) {
  .theme-toggle { width: 34px; height: 34px; }
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 28px rgba(37,211,102,.45);
  transition: transform .22s var(--spring), box-shadow .22s;
}
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 8px 40px rgba(37,211,102,.6); }
.wa-fab img { width: 30px; height: 30px; object-fit: contain; border-radius: 6px; }
.back-top {
  position: fixed; right: 20px; bottom: 84px; z-index: 998;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--card); border: 1.5px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s; opacity: 0; visibility: hidden;
  transform: translateY(10px); box-shadow: var(--shadow); color: var(--body);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-3px); }
.back-top svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.float-audit {
  position: fixed; left: 20px; bottom: 20px; z-index: 998;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--grad); color: #fff;
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600;
  box-shadow: 0 6px 28px rgba(240,90,40,.4);
  transition: all .25s var(--ease); white-space: nowrap;
}
.float-audit:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(240,90,40,.55); }
.float-audit .fa-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.9); flex-shrink: 0; animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
@media (max-width: 600px) {
  .float-audit { display: none !important; }
}

/* cookie */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--card-2); border-top: 1px solid var(--border-2);
  padding: 14px 20px; display: flex; align-items: center;
  justify-content: space-between; gap: 14px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform .4s var(--ease);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: 13px; color: var(--body); max-width: 680px; line-height: 1.55; }
.cookie-bar a { color: var(--orange); }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cook-ok {
  padding: 8px 20px; border-radius: var(--radius-xs);
  background: var(--orange); color: #fff;
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600;
  border: none; cursor: pointer; transition: background .2s;
}
.cook-ok:hover { background: var(--orange-d); }
.cook-no {
  padding: 8px 16px; border-radius: var(--radius-xs);
  background: transparent; color: var(--muted);
  font-family: 'Poppins', sans-serif; font-size: 13px;
  border: 1.5px solid var(--border-2); cursor: pointer; transition: all .2s;
}
.cook-no:hover { border-color: var(--muted); color: var(--body); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--hh); overflow: hidden; background: var(--bg);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(240,90,40,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,90,40,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 24s linear infinite;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 25%, transparent 78%);
}
@keyframes gridMove { from { background-position: 0 0; } to { background-position: 60px 60px; } }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(88px); pointer-events: none; animation: orbMove 10s ease-in-out infinite alternate; }
.orb1 { width: 580px; height: 580px; right: -10%; top: -16%; background: radial-gradient(circle, rgba(240,90,40,.2), transparent 65%); }
.orb2 { width: 420px; height: 420px; left: -8%; bottom: -8%; background: radial-gradient(circle, rgba(30,61,122,.22), transparent 65%); animation-delay: -5s; }
.orb3 { width: 260px; height: 260px; left: 38%; top: 30%; background: radial-gradient(circle, rgba(240,90,40,.09), transparent 65%); animation-delay: -8s; }
@keyframes orbMove { from { transform: translate(0,0) scale(1); } to { transform: translate(22px,-14px) scale(1.06); } }
.hero-content { position: relative; z-index: 2; padding: 72px 0 96px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,90,40,.12); border: 1px solid rgba(240,90,40,.3);
  border-radius: 999px; padding: 6px 16px; margin-bottom: 26px;
  font-size: 13px; font-weight: 500; color: var(--orange-l);
  animation: fadeUp .8s var(--ease) both;
}
.hero-badge .live { width: 6px; height: 6px; border-radius: 50%; background: #22C55E; animation: blink 1.5s infinite; }
.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 6vw, 74px); font-weight: 900;
  line-height: 1.07; letter-spacing: -.035em; color: var(--heading);
  margin-bottom: 22px; animation: fadeUp .8s .14s var(--ease) both;
}
.hero-sub { font-size: 17px; color: var(--body); line-height: 1.8; max-width: 520px; margin-bottom: 38px; animation: fadeUp .8s .24s var(--ease) both; text-align: center; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; animation: fadeUp .8s .34s var(--ease) both; justify-content: center; }
.hero-stats {
  display: flex; align-items: stretch;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); width: fit-content; overflow: hidden;
  animation: fadeUp .8s .44s var(--ease) both;
}
.hs { padding: 18px 26px; display: flex; flex-direction: column; }
.hs:not(:last-child) { border-right: 1px solid var(--border-2); }
.hs-n { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 800; color: var(--heading); line-height: 1; display: flex; align-items: baseline; gap: 1px; }
.hs-n em { color: var(--orange); font-style: normal; font-size: 20px; }
.hs-l { font-size: 11px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@media (max-width: 680px) {
  .hero-stats { flex-wrap: wrap; max-width: 280px; }
  .hs { padding: 14px 18px; flex: 0 0 calc(50% - 1px); }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(34px, 9vw, 50px); }
  .hero-btns { flex-direction: row; align-items: center; justify-content: center; }
  .hero-btns .btn-outline { display: none; }
  .hero-sub { text-align: center; }
  /* Reduce side padding in hero on small mobile */
  .hero .wrap { padding: 0 14px; }
  .hero-content { padding: 56px 0 72px; }
}

/* page hero */
.page-hero {
  padding: calc(var(--hh) + 68px) 0 68px;
  background: var(--bg-2); border-bottom: 1px solid var(--border-2);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(240,90,40,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(240,90,40,.04) 1px,transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 80%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(26px, 5vw, 52px); margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: var(--body); max-width: 560px; margin: 0 auto 24px; line-height: 1.75; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: var(--body); transition: color .18s; }
.breadcrumb a:hover { color: var(--orange); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-2); border: 1px solid var(--border-2); border-radius: var(--radius); overflow: hidden; margin-top: 46px; }
.service-card { background: var(--card); padding: 34px 28px; transition: background .25s; position: relative; cursor: default; }
.service-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.service-card:hover { background: var(--card-2); }
.service-card:hover::after { transform: scaleX(1); }
.sc-icon { font-size: 34px; margin-bottom: 14px; display: block; }
.sc-num { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: .12em; margin-bottom: 10px; }
.sc-title { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: 9px; line-height: 1.25; }
.sc-desc { font-size: 14px; color: var(--body); line-height: 1.74; }
.sc-list { margin-top: 13px; display: flex; flex-direction: column; gap: 7px; }
.sc-list li { font-size: 13px; color: var(--body); display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
.sc-list li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.sc-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--orange); margin-top: 16px; transition: gap .2s; }
.sc-link:hover { gap: 10px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 42px; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all .3s var(--ease); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top:-40px; right:-40px; width:100px; height:100px; background: radial-gradient(circle,rgba(240,90,40,.12),transparent 70%); opacity:0; transition:opacity .3s; }
.why-card:hover::before { opacity: 1; }
.why-card:hover { border-color: rgba(240,90,40,.32); transform: translateY(-4px); box-shadow: var(--glow-sm); }
.why-icon { width: 46px; height: 46px; border-radius: var(--radius-xs); background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; box-shadow: 0 4px 16px rgba(240,90,40,.3); }
.why-card h3 { font-size: 16px; color: var(--heading); margin-bottom: 7px; }
.why-card p { font-size: 14px; color: var(--body); line-height: 1.7; }
@media (max-width: 680px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.portfolio-card { background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius); overflow: hidden; transition: all .3s var(--ease); }
.portfolio-card:hover { border-color: rgba(240,90,40,.3); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pc-thumb { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--bg-3); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border-2); }
.pc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.portfolio-card:hover .pc-thumb img { transform: scale(1.06); }
.pc-thumb-svg { font-size: 52px; opacity: .65; }
.pc-body { padding: 20px; }
.pc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 9px; }
.pc-title { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--heading); margin-bottom: 7px; line-height: 1.25; }
.pc-desc { font-size: 13px; color: var(--body); line-height: 1.65; margin-bottom: 13px; }
.pc-result { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #22C55E; font-weight: 600; }
.pc-result::before { content: '↑'; }
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-wrap { overflow: hidden; position: relative; }
.testi-wrap::before, .testi-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 4; pointer-events: none; }
.testi-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.testi-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.testi-track { display: flex; gap: 16px; padding: 10px 0; will-change: transform; }
.testi-card { flex: 0 0 290px; background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 24px; transition: all .3s; box-shadow: var(--shadow); }
.testi-card:hover { border-color: rgba(240,90,40,.3); transform: translateY(-4px); }
.testi-stars { color: #F59E0B; font-size: 13px; letter-spacing: 2px; margin-bottom: 11px; }
.testi-text { font-size: 14px; color: var(--body); line-height: 1.74; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; gap: 10px; align-items: center; }
.testi-av-init { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-family: 'Poppins', sans-serif; font-weight: 700; color: #fff; font-size: 14px; flex-shrink: 0; }
.testi-name { font-weight: 600; color: var(--heading); font-size: 14px; }
.testi-role { font-size: 12px; color: var(--muted); }
/* grid version (testimonials page) */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .testi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TEAM
   ============================================================ */
.team-section-heading { font-family: 'Poppins', sans-serif; font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: var(--heading); margin-bottom: 8px; text-align: center; }
.team-section-sub { font-size: 15px; color: var(--muted); text-align: center; margin-bottom: 44px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.team-card { background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius); overflow: hidden; transition: all .3s; text-align: center; }
.team-card:hover { border-color: rgba(240,90,40,.3); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-img { aspect-ratio: 1; overflow: hidden; background: var(--bg-3); }
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s var(--ease); display: block; }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-body { padding: 18px 16px; }
.team-name { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--orange); }
.team-socials { display: flex; justify-content: center; gap: 7px; margin-top: 12px; }
.team-socials a { width: 30px; height: 30px; border-radius: 7px; background: var(--bg-3); border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.team-socials a:hover { background: var(--orange); border-color: var(--orange); }
.team-socials a img { width: 14px; height: 14px; object-fit: contain; border-radius: 3px; }
.team-photo-full { margin-top: 36px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-2); }
.team-photo-full img { width: 100%; object-fit: cover; display: block; max-height: 420px; object-position: center 20%; }
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #192A50, #0E1E38);
  border: 1px solid rgba(240,90,40,.22); border-radius: var(--radius);
  padding: 52px 48px; display: flex; justify-content: space-between;
  align-items: center; gap: 24px; position: relative; overflow: hidden;
}
[data-theme="light"] .cta-band { background: linear-gradient(135deg, #1E3D7A, #2D56A8); }
.cta-band::before { content: ''; position: absolute; right: -50px; top: -50px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle,rgba(240,90,40,.16),transparent 65%); pointer-events: none; }
.cta-band h2 { font-size: clamp(20px, 3vw, 32px); color: #fff; margin-bottom: 8px; position: relative; z-index: 1; }
.cta-band p { font-size: 15px; color: rgba(255,255,255,.7); max-width: 460px; position: relative; z-index: 1; line-height: 1.7; }
.cta-band-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; position: relative; z-index: 1; }
@media (max-width: 860px) { .cta-band { flex-direction: column; padding: 36px 28px; text-align: center; } .cta-band-btns { justify-content: center; } }
@media (max-width: 480px) { .cta-band { padding: 28px 20px; } }

/* ============================================================
   AUDIT SECTION
   ============================================================ */
.audit-section { background: var(--bg-2); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.audit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.audit-steps { display: flex; flex-direction: column; gap: 13px; margin-top: 26px; }
.audit-step { display: flex; gap: 13px; align-items: flex-start; background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius-sm); padding: 18px; transition: border-color .25s; }
.audit-step:hover { border-color: rgba(240,90,40,.3); }
.audit-num { width: 34px; height: 34px; min-width: 34px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-family: 'Poppins', sans-serif; font-weight: 800; color: #fff; font-size: 13px; }
.audit-step h4 { font-size: 14px; color: var(--heading); margin-bottom: 3px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.audit-step p { font-size: 13px; color: var(--body); line-height: 1.6; }
.audit-form-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-lg); }
.audit-form-box h3 { font-size: 22px; color: var(--heading); margin-bottom: 7px; }
.audit-form-box > p { font-size: 14px; color: var(--body); margin-bottom: 22px; line-height: 1.7; }
@media (max-width: 860px) { .audit-inner { grid-template-columns: 1fr; } .audit-form-box { padding: 24px 18px; } }

/* ============================================================
   FORMS
   ============================================================ */
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 13px; }
.fg label { font-size: 13px; font-weight: 500; color: var(--body); }
.fg input, .fg textarea, .fg select {
  padding: 11px 14px; border-radius: var(--radius-xs);
  border: 1.5px solid var(--border-2); background: var(--bg-3);
  color: var(--heading); font-family: 'DM Sans', sans-serif; font-size: 14px;
  outline: none; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.fg input:focus, .fg textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240,90,40,.1); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted); }
.fg textarea { min-height: 118px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 10px; display: flex; align-items: center; gap: 5px; }
.form-msg { font-size: 13px; margin-top: 8px; min-height: 18px; }
@media (max-width: 560px) { .form-row-2 { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(240,90,40,.35); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: var(--heading); transition: color .2s; user-select: none; }
.faq-q:hover { color: var(--orange-l); }
.faq-arr { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; background: rgba(240,90,40,.1); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 13px; transition: transform .3s var(--ease), background .2s; flex-shrink: 0; }
.faq-item.open .faq-arr { transform: rotate(180deg); background: var(--orange); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-in { padding: 0 20px 20px; font-size: 14px; color: var(--body); line-height: 1.8; }
.faq-a-in a { color: var(--orange); text-decoration: underline; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.about-img-box { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-lg); }
.about-img-box img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about-badge { position: absolute; bottom: 16px; left: 16px; background: rgba(13,21,32,.9); color: var(--heading); font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border-2); backdrop-filter: blur(10px); }
[data-theme="light"] .about-badge { background: rgba(255,255,255,.94); color: #0D1520; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .about-img-box { aspect-ratio: 4/3; order: -1; } }

/* ============================================================
   BLOG
   ============================================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; }
.blog-featured { background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: border-color .3s; }
.blog-featured:hover { border-color: rgba(240,90,40,.3); }
.blog-feat-img { width: 100%; height: 300px; object-fit: cover; object-position: center; border-bottom: 1px solid var(--border-2); display: block; }
.blog-body { padding: 28px; }
.blog-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 11px; flex-wrap: wrap; }
.blog-date { font-size: 12px; color: var(--muted); }
.blog-title { font-family: 'Poppins', sans-serif; font-size: clamp(18px, 3vw, 25px); color: var(--heading); margin-bottom: 11px; line-height: 1.25; }
.blog-excerpt { font-size: 15px; color: var(--body); line-height: 1.77; margin-bottom: 24px; }
.blog-content h3 { font-family: 'Poppins', sans-serif; font-size: 17px; color: var(--heading); margin: 22px 0 9px; }
.blog-content p { font-size: 15px; color: var(--body); line-height: 1.82; margin-bottom: 12px; }
.blog-content ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.blog-content ul li { font-size: 14px; color: var(--body); padding-left: 17px; position: relative; line-height: 1.65; }
.blog-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.sidebar-card { background: var(--card); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 22px; margin-bottom: 16px; }
.sidebar-card h4 { font-size: 15px; color: var(--heading); margin-bottom: 12px; font-family: 'Poppins', sans-serif; font-weight: 700; }
.sidebar-card ul li { font-size: 14px; color: var(--body); padding-left: 13px; position: relative; line-height: 1.65; margin-bottom: 8px; }
.sidebar-card ul li::before { content: '·'; position: absolute; left: 2px; color: var(--orange); font-size: 18px; line-height: .9; }
@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .blog-feat-img { height: 200px; } .blog-body { padding: 20px 16px; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 360px 1fr; gap: 20px; }
.contact-info-box { background: var(--card-2); border: 1px solid rgba(240,90,40,.2); border-radius: var(--radius); padding: 38px; position: sticky; top: calc(var(--hh) + 16px); }
.contact-info-box h2 { font-size: 24px; margin-bottom: 10px; }
.contact-info-box > p { font-size: 14px; color: var(--body); line-height: 1.77; margin-bottom: 26px; }
.ci-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 17px; }
.ci-icon { width: 38px; height: 38px; min-width: 38px; border-radius: var(--radius-xs); background: rgba(240,90,40,.1); border: 1px solid rgba(240,90,40,.2); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 2px; }
.ci-val { font-size: 14px; color: var(--body); }
.ci-val a { color: var(--orange); transition: color .2s; }
.ci-val a:hover { color: var(--orange-l); }
.contact-socials { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.contact-socials a { width: 36px; height: 36px; border-radius: var(--radius-xs); background: var(--card); border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.contact-socials a:hover { background: var(--orange); border-color: var(--orange); }
.contact-socials a img { width: 17px; height: 17px; object-fit: contain; border-radius: 3px; }
.contact-form-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); }
.contact-form-box h2 { font-size: 24px; margin-bottom: 7px; }
.contact-form-box > p { font-size: 14px; color: var(--body); margin-bottom: 26px; line-height: 1.7; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .contact-info-box { position: static; } .contact-form-box { padding: 24px 18px; } }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pkg-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px; transition: all .3s; position: relative; }
.pkg-card.featured { background: linear-gradient(145deg, #1A2E55, #0E1E38); border-color: rgba(240,90,40,.42); box-shadow: var(--glow); }
[data-theme="light"] .pkg-card.featured { background: linear-gradient(145deg, #1E3D7A, #2D56A8); }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; padding: 4px 16px; border-radius: 999px; white-space: nowrap; }
.pkg-name { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: var(--heading); margin-bottom: 5px; }
.pkg-price { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 900; color: var(--heading); margin: 13px 0 4px; line-height: 1; }
.pkg-price span { font-size: 13px; font-weight: 400; color: var(--muted); }
.pkg-desc { font-size: 13px; color: var(--body); margin-bottom: 18px; line-height: 1.65; }
.pkg-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.pkg-features li { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--body); line-height: 1.5; }
.pkg-features li::before { content: '✓'; color: #22C55E; font-weight: 800; flex-shrink: 0; }
.pkg-features li.no { color: var(--muted); }
.pkg-features li.no::before { content: '✕'; color: var(--muted); }
@media (max-width: 860px) { .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-wrap { max-width: 820px; margin: 0 auto; padding: 72px 24px 90px; }
.policy-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 46px 42px; box-shadow: var(--shadow-lg); }
.policy-updated { display: inline-block; font-size: 12px; color: var(--muted); background: var(--bg-3); border: 1px solid var(--border-2); border-radius: 999px; padding: 4px 13px; margin-bottom: 20px; }
.policy-intro { font-size: 15px; color: var(--body); line-height: 1.82; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--border-2); }
.policy-section { margin-bottom: 26px; }
.policy-section h2 { font-size: 16px; color: var(--heading); margin-bottom: 8px; padding-left: 12px; border-left: 3px solid var(--orange); font-family: 'Poppins', sans-serif; font-weight: 700; }
.policy-section p { font-size: 14px; color: var(--body); line-height: 1.82; }
.policy-section a { color: var(--orange); }
.policy-section ul { display: flex; flex-direction: column; gap: 7px; margin-top: 8px; }
.policy-section ul li { font-size: 14px; color: var(--body); padding-left: 14px; position: relative; line-height: 1.65; }
.policy-section ul li::before { content: '–'; position: absolute; left: 0; color: var(--orange); }
@media (max-width: 600px) { .policy-card { padding: 26px 18px; } .policy-wrap { padding: 52px 16px 70px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #07101C; padding: 68px 0 0; border-top: 1px solid var(--border-2); }
[data-theme="light"] .site-footer { background: #0D1520; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-logo-img { height: 42px; width: auto; object-fit: contain; margin-bottom: 15px; display: block; }
.footer-bio { font-size: 14px; color: rgba(255,255,255,.38); line-height: 1.77; max-width: 290px; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-socials a { width: 34px; height: 34px; border-radius: var(--radius-xs); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); }
.footer-socials a img { width: 17px; height: 17px; object-fit: contain; border-radius: 3px; }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; color: #fff; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 15px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.42); transition: color .2s; line-height: 1.4; }
.footer-col ul a:hover { color: #fff; }
.footer-contact-list { display: flex; flex-direction: column; gap: 9px; margin-top: 13px; }
.footer-contact-list a { font-size: 13px; color: rgba(255,255,255,.38); transition: color .2s; display: flex; align-items: center; gap: 7px; line-height: 1.4; }
.footer-contact-list a:hover { color: #fff; }
.footer-contact-list img { width: 15px; height: 15px; object-fit: contain; border-radius: 3px; flex-shrink: 0; }
.footer-nl { display: flex; gap: 7px; margin-top: 14px; }
.footer-nl input { flex: 1; min-width: 0; padding: 10px 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 13px; transition: border-color .2s; outline: none; }
.footer-nl input:focus { border-color: var(--orange); }
.footer-nl input::placeholder { color: rgba(255,255,255,.22); }
.footer-nl button { padding: 10px 14px; border-radius: 8px; border: none; background: var(--orange); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; white-space: nowrap; transition: background .2s; }
.footer-nl button:hover { background: var(--orange-d); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; font-size: 12px; color: rgba(255,255,255,.24); flex-wrap: wrap; gap: 8px; max-width: var(--max); margin: 0 auto; }
.footer-bottom a { color: rgba(255,255,255,.32); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } .footer-nl { flex-direction: column; } }

/* ============================================================
   UTILITIES
   ============================================================ */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 9px; align-items: flex-start; font-size: 15px; color: var(--body); line-height: 1.6; }
.check-list li::before { content: '✔'; color: #22C55E; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.stats-row { display: flex; gap: 28px; flex-wrap: wrap; }
.stat-n { font-family: 'Poppins', sans-serif; font-size: 34px; font-weight: 900; color: var(--heading); line-height: 1; }
.stat-n em { color: var(--orange); font-style: normal; }
.stat-l { font-size: 12px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }
.feat-list { display: flex; flex-direction: column; gap: 15px; }
.feat-item { display: flex; gap: 13px; align-items: flex-start; }
.feat-icon { width: 40px; height: 40px; min-width: 40px; border-radius: var(--radius-xs); background: rgba(240,90,40,.1); border: 1px solid rgba(240,90,40,.2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.feat-text h4 { font-size: 14px; font-weight: 600; color: var(--heading); margin-bottom: 3px; font-family: 'Poppins', sans-serif; }
.feat-text p { font-size: 13px; color: var(--body); line-height: 1.6; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
*:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.mt-4{margin-top:16px} .mt-6{margin-top:24px} .mt-8{margin-top:32px} .mb-6{margin-bottom:24px} .mb-8{margin-bottom:32px}
