/*
Theme Name: GrowthMentis
Theme URI: https://growthmentis.com
Author: GrowthMentis
Description: AI-Powered SEO, AEO, GEO & Digital Marketing Agency
Version: 4.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: growthmentis
*/

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

:root {
  --bg:        #060810;
  --bg2:       #090c18;
  --card:      #0d1120;
  --card2:     #111828;
  --blue:      #2563eb;
  --blue-lt:   #3b82f6;
  --green:     #16a34a;
  --green-lt:  #22c55e;
  --accent:    #06b6d4;
  --muted:     #64748b;
  --muted2:    #94a3b8;
  --text:      #f1f5f9;
  --border:    rgba(255,255,255,0.06);
  --border2:   rgba(255,255,255,0.11);
  --fh: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--bg); color: var(--text); overflow-x: hidden; font-size: 16px; line-height: 1.6; }
h1,h2,h3,h4,h5 { font-family: var(--fh); line-height: 1.1; letter-spacing: -0.03em; color: var(--text); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
p { color: var(--muted2); line-height: 1.75; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fh); font-weight: 700; font-size: 14px;
  padding: 12px 26px; border-radius: 8px; border: none;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-lt); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,.35); color: #fff; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border2); }
.btn-ghost:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.04); color: var(--text); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-lt); transform: translateY(-1px); color: #fff; }

/* ═══════════════════════════════
   HEADER
═══════════════════════════════ */
#gm-header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(6,8,16,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; height: 68px; gap: 0; }

/* Logo */
.gm-logo { flex-shrink: 0; margin-right: 40px; }
.gm-logo a { display: flex; align-items: center; }
.gm-logo img,
.gm-logo .custom-logo { height: 38px; width: auto; }

/* Nav */
.gm-nav { flex: 1; }
#gm-menu { display: flex; align-items: center; gap: 1px; }
#gm-menu > li { position: relative; }
#gm-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  color: var(--muted2); font-size: 13.5px; font-weight: 500;
  padding: 7px 14px; border-radius: 7px; transition: all .18s;
}
#gm-menu > li > a:hover,
#gm-menu > li.current-menu-item > a,
#gm-menu > li.current-menu-ancestor > a { color: var(--text); background: rgba(255,255,255,.05); }
#gm-menu .menu-item-has-children > a::after { content: '▾'; font-size: 9px; opacity: .45; margin-left: 2px; }

/* Dropdown */
.gm-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #0d1220; border: 1px solid var(--border2);
  border-radius: 12px; padding: 6px; min-width: 248px;
  box-shadow: 0 20px 50px rgba(0,0,0,.7); z-index: 400;
}
#gm-menu li:hover > .gm-dropdown { display: block; }
.gm-dropdown li a {
  display: flex; align-items: center; gap: 11px;
  color: var(--muted2); font-size: 13px;
  padding: 10px 13px; border-radius: 8px; transition: all .18s;
}
.gm-dropdown li a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.gm-dropdown li a .di { font-size: 16px; width: 22px; flex-shrink: 0; }

/* Header CTA */
.header-cta { margin-left: auto; flex-shrink: 0; }

/* Hamburger */
.gm-ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: 12px; }
.gm-ham span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .28s; }
.gm-ham.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.gm-ham.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.gm-ham.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══════════════════════════════
   SECTION HELPERS
═══════════════════════════════ */
.section { padding: 96px 0; }
.section-alt { padding: 96px 0; background: var(--bg2); }
.sec-label { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--blue-lt); margin-bottom: 14px; }
.sec-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--blue-lt); border-radius: 2px; }
.sec-h2 { font-size: clamp(26px, 2.8vw, 42px); font-weight: 800; margin-bottom: 14px; }
.sec-p { color: var(--muted2); font-size: 15.5px; line-height: 1.78; max-width: 560px; }
.sec-head { margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-p { margin: 0 auto; }

/* ═══════════════════════════════
   HOMEPAGE HERO
═══════════════════════════════ */
.home-hero {
  padding: 110px 0 90px; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37,99,235,.14) 0%, transparent 70%);
}
.home-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.12); border: 1px solid rgba(37,99,235,.3);
  border-radius: 6px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: #93c5fd;
  margin-bottom: 26px; letter-spacing: .4px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-lt); animation: dot-pulse 2s ease infinite; }
@keyframes dot-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }

.hero-h1 { font-size: clamp(40px, 5vw, 68px); font-weight: 800; line-height: 1.04; letter-spacing: -0.04em; margin-bottom: 22px; }
.hero-h1 .grad { background: linear-gradient(135deg, var(--blue-lt) 0%, var(--accent) 50%, var(--green-lt) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 17px; color: var(--muted2); line-height: 1.78; margin-bottom: 36px; max-width: 490px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.htag { font-size: 12px; font-weight: 500; padding: 5px 13px; border-radius: 6px; border: 1px solid var(--border2); color: var(--muted2); }
.htag.active { border-color: rgba(37,99,235,.4); color: #93c5fd; background: rgba(37,99,235,.08); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-nums { display: flex; gap: 0; margin-top: 48px; border-top: 1px solid var(--border); padding-top: 40px; }
.hnum { flex: 1; padding-right: 28px; border-right: 1px solid var(--border); margin-right: 28px; }
.hnum:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hnum strong { display: block; font-family: var(--fh); font-size: 30px; font-weight: 800; color: var(--text); letter-spacing: -1px; margin-bottom: 4px; }
.hnum span { font-size: 12.5px; color: var(--muted); }

/* Hero right panel */
.hero-panel { display: flex; flex-direction: column; gap: 14px; }
.hp-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.hp-card-title { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.hp-metric { font-size: 32px; font-weight: 800; font-family: var(--fh); color: var(--text); margin-bottom: 6px; }
.hp-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 5px; margin-bottom: 14px; }
.hp-badge.up { background: rgba(22,163,74,.15); color: #4ade80; }
.hp-badge.new { background: rgba(37,99,235,.15); color: #93c5fd; }
.bars { display: flex; align-items: flex-end; gap: 5px; height: 50px; }
.bar-item { flex: 1; border-radius: 3px 3px 0 0; background: rgba(37,99,235,.2); }
.bar-item.hi { background: var(--blue); }
.ai-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.ai-tag { font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 5px; border: 1px solid rgba(6,182,212,.25); color: #67e8f9; background: rgba(6,182,212,.08); }
.rank-list { display: flex; flex-direction: column; gap: 10px; }
.rank-item { display: flex; align-items: center; gap: 10px; }
.rank-kw { flex: 1; font-size: 12.5px; color: var(--text); font-weight: 500; }
.rank-pos { font-size: 11.5px; font-weight: 700; color: var(--muted2); width: 20px; }
.rank-bar-wrap { width: 70px; height: 3px; background: rgba(255,255,255,.08); border-radius: 2px; }
.rank-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--accent)); }
.rank-delta { font-size: 11px; font-weight: 700; color: #4ade80; width: 24px; text-align: right; }

/* ═══════════════════════════════
   TRUST STRIP
═══════════════════════════════ */
.trust-strip { padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; white-space: nowrap; }
.trust-logos { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.trust-co { font-family: var(--fh); font-size: 15px; font-weight: 700; color: rgba(255,255,255,.13); }

/* ═══════════════════════════════
   SERVICE CARDS (homepage)
═══════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.svc { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 30px 26px; position: relative; overflow: hidden; transition: all .25s; display: flex; flex-direction: column; }
.svc::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--blue), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.svc:hover { border-color: rgba(37,99,235,.3); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.svc:hover::after { transform: scaleX(1); }
.svc-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.si-1{background:rgba(37,99,235,.15)} .si-2{background:rgba(22,163,74,.15)} .si-3{background:rgba(6,182,212,.15)}
.si-4{background:rgba(245,158,11,.15)} .si-5{background:rgba(168,85,247,.15)} .si-6{background:rgba(236,72,153,.15)}
.svc h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.svc p { font-size: 13.5px; line-height: 1.75; flex: 1; }
.svc-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.pill { font-size: 11px; font-weight: 600; color: var(--muted); border: 1px solid var(--border); border-radius: 5px; padding: 3px 9px; }
.svc-cta { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--blue-lt); margin-top: 18px; transition: gap .2s; }
.svc-cta:hover { gap: 9px; }

/* ═══════════════════════════════
   WHY SECTION
═══════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.why-points { display: flex; flex-direction: column; gap: 22px; margin: 28px 0 36px; }
.wp { display: flex; gap: 14px; }
.wp-dot { width: 22px; height: 22px; border-radius: 6px; background: rgba(37,99,235,.15); border: 1px solid rgba(37,99,235,.3); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--blue-lt); flex-shrink: 0; margin-top: 2px; font-weight: 700; }
.wp-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.wp-body p { font-size: 13.5px; }
.rankings-box { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.rb-title { font-size: 10.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.rb-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.rb-row:last-child { border: none; padding-bottom: 0; }
.rb-n { font-family: var(--fh); font-size: 11px; font-weight: 700; color: var(--muted); width: 18px; }
.rb-info { flex: 1; }
.rb-info h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.rb-info p { font-size: 11px; color: var(--muted); }
.rb-badge { font-size: 10.5px; font-weight: 700; padding: 2px 9px; border-radius: 5px; }
.badge-up { background: rgba(22,163,74,.15); color: #4ade80; }
.badge-new { background: rgba(37,99,235,.15); color: #93c5fd; }
.badge-hold { background: rgba(100,116,139,.15); color: #94a3b8; }

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tcard { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: transform .25s; }
.tcard:hover { transform: translateY(-3px); }
.tcard-stars { color: #fbbf24; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.tcard q { display: block; font-size: 14px; color: #cbd5e1; line-height: 1.8; margin-bottom: 20px; quotes: none; }
.tcard-who { display: flex; align-items: center; gap: 11px; }
.tav { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; font-family: var(--fh); flex-shrink: 0; }
.tav-1{background:linear-gradient(135deg,#1d4ed8,#3b82f6)}
.tav-2{background:linear-gradient(135deg,#15803d,#22c55e)}
.tav-3{background:linear-gradient(135deg,#6d28d9,#a78bfa)}
.tcard-who h5 { font-size: 13.5px; font-weight: 700; }
.tcard-who span { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════
   CTA BOX
═══════════════════════════════ */
.cta-wrap { padding: 96px 0; }
.cta-box {
  max-width: 840px; margin: 0 auto; text-align: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 72px 52px; position: relative; overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 500px; height: 350px; background: radial-gradient(ellipse, rgba(37,99,235,.12) 0%, transparent 65%); pointer-events: none; }
.cta-box h2 { font-size: clamp(24px, 2.8vw, 38px); font-weight: 800; margin-bottom: 16px; }
.cta-box p { font-size: 17px; max-width: 540px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: 12.5px; color: var(--muted); margin-top: 16px; }

/* ═══════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════ */
.page-banner {
  padding: 84px 0 68px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 60% 70% at 20% 50%, rgba(37,99,235,.09) 0%, transparent 65%);
}
.pb-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(37,99,235,.1); border: 1px solid rgba(37,99,235,.25); border-radius: 6px; padding: 5px 13px; font-size: 11.5px; font-weight: 600; color: #93c5fd; margin-bottom: 20px; }
.pb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-lt); animation: dot-pulse 2s ease infinite; }
.page-banner h1 { font-size: clamp(32px, 4vw, 56px); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 18px; max-width: 780px; }
.page-banner h1 .grad { background: linear-gradient(135deg, var(--blue-lt), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-banner .lead { font-size: 17px; color: var(--muted2); line-height: 1.78; max-width: 640px; margin-bottom: 30px; }
.page-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.ptag { font-size: 12px; font-weight: 500; padding: 5px 13px; border-radius: 6px; border: 1px solid var(--border2); color: var(--muted2); }
.ptag.hl { border-color: rgba(37,99,235,.35); color: #93c5fd; background: rgba(37,99,235,.08); }

/* ═══════════════════════════════
   OVERVIEW SPLIT
═══════════════════════════════ */
.overview-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.ov-copy p { font-size: 15.5px; margin-bottom: 16px; }
.ov-copy p:last-of-type { margin-bottom: 28px; }
.ov-panel { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.ov-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.ov-row:last-child { border: none; padding-bottom: 0; }
.ov-ico { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.oi-1{background:rgba(37,99,235,.15)} .oi-2{background:rgba(22,163,74,.15)}
.oi-3{background:rgba(6,182,212,.15)} .oi-4{background:rgba(245,158,11,.15)}
.ov-row h4 { font-size: 13.5px; font-weight: 700; margin-bottom: 3px; }
.ov-row p { font-size: 12.5px; }

/* ═══════════════════════════════
   INCLUDED GRID
═══════════════════════════════ */
.inc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.inc-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 26px; transition: all .25s; position: relative; overflow: hidden; }
.inc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--blue), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.inc-card:hover::before { transform: scaleX(1); }
.inc-card:hover { border-color: rgba(37,99,235,.25); transform: translateY(-3px); }
.inc-card .ico { font-size: 24px; margin-bottom: 14px; }
.inc-card h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 9px; }
.inc-card p { font-size: 13px; line-height: 1.72; }

/* ═══════════════════════════════
   PROCESS STEPS
═══════════════════════════════ */
.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps-row::before { content: ''; position: absolute; top: 20px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, var(--blue), var(--accent)); opacity: .2; }
.step { text-align: center; padding: 0 16px; }
.step-n { width: 42px; height: 42px; border-radius: 50%; background: var(--card); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-family: var(--fh); font-size: 14px; font-weight: 800; color: var(--blue-lt); position: relative; z-index: 1; }
.step h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted2); }

/* ═══════════════════════════════
   RESULTS ROW
═══════════════════════════════ */
.results-row { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.rstat { background: var(--card); padding: 36px 24px; text-align: center; border-right: 1px solid var(--border); }
.rstat:last-child { border-right: none; }
.rstat h3 { font-size: 36px; font-weight: 800; font-family: var(--fh); letter-spacing: -2px; background: linear-gradient(135deg, var(--blue-lt), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.rstat p { font-size: 13px; color: var(--muted2); margin-top: 8px; line-height: 1.5; }

/* ═══════════════════════════════
   FAQ ACCORDION
═══════════════════════════════ */
.faq-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; font-family: var(--fh); font-size: 14.5px; font-weight: 600; gap: 14px; }
.faq-q .faq-icon { width: 24px; height: 24px; border-radius: 6px; background: rgba(37,99,235,.12); display: flex; align-items: center; justify-content: center; color: var(--blue-lt); font-size: 16px; flex-shrink: 0; transition: transform .3s; line-height: 1; }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--muted2); line-height: 1.78; }
.faq-item.open .faq-a { display: block; }

/* ═══════════════════════════════
   CONTACT PAGE
═══════════════════════════════ */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.cf-box { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 36px; }
.cf-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 26px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted2); margin-bottom: 7px; letter-spacing: .3px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--border2);
  border-radius: 8px; padding: 11px 14px; font-size: 14px; color: var(--text);
  font-family: var(--fb); outline: none; transition: border-color .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: rgba(37,99,235,.5); }
.fg textarea { min-height: 110px; resize: vertical; }
.fg select option { background: #0d1120; }
.cf-submit { width: 100%; padding: 13px; font-size: 15px; }
.ci-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.ci-box > p { font-size: 15px; margin-bottom: 30px; }
.ci-row { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.ci-ico { width: 42px; height: 42px; border-radius: 9px; background: rgba(37,99,235,.12); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ci-row h4 { font-size: 13.5px; font-weight: 700; margin-bottom: 3px; }
.ci-row a, .ci-row p { font-size: 13.5px; color: var(--muted2); }
.ci-row a:hover { color: var(--text); }
.next-steps { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 22px; margin-top: 28px; }
.next-steps h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.ns-row { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.ns-row:last-child { margin-bottom: 0; }
.ns-num { width: 24px; height: 24px; border-radius: 6px; background: rgba(37,99,235,.15); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--blue-lt); flex-shrink: 0; }
.ns-row p { font-size: 13px; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
#gm-footer { padding: 64px 0 28px; border-top: 1px solid var(--border); background: #000; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.fg-brand img, .fg-brand .custom-logo { height: 36px; width: auto; margin-bottom: 16px; }
.fg-brand p { font-size: 13.5px; color: var(--muted2); line-height: 1.75; max-width: 250px; margin-bottom: 8px; }
.fg-brand em { font-size: 12px; color: var(--muted); font-style: italic; opacity: .7; }
.socials { display: flex; gap: 8px; margin-top: 20px; }
.soc-btn { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; font-weight: 700; transition: all .2s; }
.soc-btn:hover { border-color: rgba(37,99,235,.4); color: var(--blue-lt); }
.fg-col h4 { font-family: var(--fh); font-size: 11.5px; font-weight: 700; color: var(--text); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.fg-col li { margin-bottom: 10px; }
.fg-col a { font-size: 13.5px; color: var(--muted2); transition: color .18s; }
.fg-col a:hover { color: var(--text); }
.footer-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.footer-bar p, .footer-bar a { font-size: 12.5px; color: var(--muted); }
.footer-bar a:hover { color: var(--text); }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .inc-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .results-row { grid-template-columns: repeat(2,1fr); }
  .rstat { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .overview-split, .why-grid, .contact-split { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .inc-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-nums { flex-direction: column; gap: 16px; }
  .hnum { border-right: none; margin-right: 0; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
  .hnum:last-child { border-bottom: none; padding-bottom: 0; }
  .cta-box { padding: 40px 22px; }
  #gm-nav-wrap { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #060810; border-bottom: 1px solid var(--border); padding: 12px 20px; max-height: 80vh; overflow-y: auto; }
  #gm-nav-wrap.is-open { display: block; }
  #gm-menu { flex-direction: column; align-items: flex-start; gap: 2px; }
  #gm-menu > li { width: 100%; }
  #gm-menu > li > a { width: 100%; }
  .gm-dropdown { position: static; border: none; background: rgba(255,255,255,.03); box-shadow: none; border-radius: 8px; margin: 4px 0 4px 14px; }
  .gm-ham { display: flex; }
  .trust-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .steps-row { grid-template-columns: 1fr; }
  .results-row { grid-template-columns: 1fr; }
  .rstat { border-bottom: 1px solid var(--border); }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; width: 100%; }
  .cta-btns { flex-direction: column; }
}
