/* ==========================================================================
   GROW DIGITAL — Design System
   Ideas That Move Numbers
   ========================================================================== */

:root {
  /* Brand core (from logo) */
  --gd-navy: #051D47;
  --gd-navy-dark: #031739;
  --gd-navy-soft: #0A2A5E;

  --gd-blue: #175ADD;
  --gd-blue-deep: #0F419E;

  --gd-green: #0C8350;
  --gd-green-dark: #077647;
  --gd-green-light: #1EB575;
  --gd-green-bright: #23BB7F;

  --gd-white: #FFFFFF;
  --gd-bg: #F7FAFC;
  --gd-bg-tint: #F3F7FB;
  --gd-surface: #FFFFFF;

  --gd-text: #071B3A;
  --gd-muted: #5B6B85;
  --gd-muted-light: #8695AD;

  --gd-border: #E5EAF0;
  --gd-border-soft: #EEF2F6;

  --gd-gradient: linear-gradient(135deg, #1caf71 0%, #087949 100%);
  --gd-gradient-deep: linear-gradient(135deg, #0F419E 0%, #077647 100%);
  --gd-gradient-navy: linear-gradient(160deg, #051D47 0%, #0A2A5E 60%, #0F419E 130%);

  --gd-shadow-sm: 0 2px 10px rgba(5, 29, 71, 0.06);
  --gd-shadow-md: 0 10px 30px rgba(5, 29, 71, 0.08);
  --gd-shadow-lg: 0 25px 60px rgba(5, 29, 71, 0.14);

  --gd-radius-sm: 10px;
  --gd-radius-md: 16px;
  --gd-radius-lg: 22px;

  --gd-ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container-max: 1272px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--gd-text);
  background: var(--gd-bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--gd-navy);
  margin: 0;
  letter-spacing: -0.02em;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; transition: color .25s var(--gd-ease); }
img { max-width: 100%; display: block; }

.container-gd { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
section { position: relative; }
::selection { background: var(--gd-green-light); color: #fff; }
:focus-visible { outline: 2px solid var(--gd-blue); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* TYPE SCALE */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gd-blue-deep);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gd-gradient); border-radius: 2px; }
.eyebrow.on-dark { color: #8FD9B8; }
.eyebrow.on-dark::before { background: linear-gradient(90deg, #4E8CFF, #23BB7F); }

.section-title { font-size: clamp(2rem, 3.4vw, 3.15rem); font-weight: 700; line-height: 1.14; color: var(--gd-navy); }
.section-title .grad { background: var(--gd-gradient-deep); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-lede { color: var(--gd-muted); font-size: 1.05rem; line-height: 1.75; max-width: 620px; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }
.section-pad { padding: 118px 0; }
.section-pad-sm { padding: 80px 0; }
@media (max-width: 767px) {
  .section-pad { padding: 76px 0; }
  .section-pad-sm { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }
}

/* BUTTONS */
.btn-gd {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 15px 28px; border-radius: 100px; border: none; cursor: pointer; white-space: nowrap;
  transition: transform .35s var(--gd-ease), box-shadow .35s var(--gd-ease), background .35s var(--gd-ease);
}
.btn-gd i, .btn-gd svg { transition: transform .35s var(--gd-ease); }
.btn-gd:hover i, .btn-gd:hover svg { transform: translateX(4px); }
.btn-gd-primary {
  background: var(--gd-gradient); color: #fff; background-size: 160% 160%; background-position: 0% 50%;
  box-shadow: 0 8px 24px rgba(23, 90, 221, 0.28);
}
.btn-gd-primary:hover { background-position: 100% 50%; box-shadow: 0 12px 32px rgba(23, 90, 221, 0.36); color: #fff; transform: translateY(-2px); }
.btn-gd-outline { background: transparent; color: var(--gd-navy); border: 1.5px solid var(--gd-border); }
.btn-gd-outline:hover { border-color: var(--gd-blue); color: var(--gd-blue-deep); transform: translateY(-2px); }
.btn-gd-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.28); }
.btn-gd-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; transform: translateY(-2px); }
.btn-gd-white { background: #fff; color: var(--gd-navy-dark); }
.btn-gd-white:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.22); color: var(--gd-navy-dark); }
.btn-gd-sm { padding: 11px 20px; font-size: 0.85rem; }

/* HEADER */
.gd-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 26px 0;
  transition: padding .4s var(--gd-ease), background .4s var(--gd-ease), box-shadow .4s var(--gd-ease), border-color .4s var(--gd-ease);
  border-bottom: 1px solid transparent;
}
.gd-header.is-scrolled {
  padding: 14px 0; background: rgba(255,255,255,0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(5,29,71,0.06); border-bottom: 1px solid var(--gd-border-soft);
}
.gd-header .container-gd { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.gd-logo { display: flex; align-items: center; }
.gd-logo img { height: 52px; width: auto; transition: transform .3s var(--gd-ease), height .4s var(--gd-ease); }
.gd-header.is-scrolled .gd-logo img { height: 28px; }
.gd-logo:hover img { transform: scale(1.02); }

.gd-nav { display: flex; align-items: center; gap: 40px; }
.gd-nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.gd-nav-links > li { position: relative; }
.gd-nav-links a.nav-link { font-family: 'Poppins', sans-serif; font-size: 0.92rem; font-weight: 500; color: var(--gd-navy); padding: 6px 0; position: relative; display: inline-block; }
.gd-nav-links a.nav-link::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gd-gradient); border-radius: 2px; transition: width .3s var(--gd-ease); }
.gd-nav-links a.nav-link:hover::after, .gd-nav-links li.has-dropdown:hover a.nav-link::after { width: 100%; }
.gd-nav-links a.nav-link:hover { color: var(--gd-blue-deep); }
.has-dropdown { display: flex; align-items: center; }
.has-dropdown .chev { font-size: 10px; margin-left: 5px; opacity: .6; transition: transform .3s var(--gd-ease); }
.has-dropdown:hover .chev { transform: rotate(180deg); }

.gd-dropdown {
  position: absolute; top: calc(100% + 20px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 560px; background: #fff; border-radius: var(--gd-radius-md); box-shadow: var(--gd-shadow-lg);
  border: 1px solid var(--gd-border-soft); padding: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--gd-ease), transform .3s var(--gd-ease), visibility .3s;
}
.has-dropdown:hover .gd-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown:focus-within .gd-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.gd-dropdown::before { content: ''; position: absolute; height: 22px; top: -22px; left: 0; right: 0; }
.gd-dropdown a { display: flex; align-items: flex-start; gap: 12px; padding: 11px 12px; border-radius: 10px; font-family: 'Poppins', sans-serif; }
.gd-dropdown a:hover { background: var(--gd-bg-tint); }
.gd-dropdown a i {
  width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(23,90,221,0.1), rgba(30,181,117,0.12)); color: var(--gd-blue-deep); font-size: 13px; flex-shrink: 0;
}
.gd-dropdown a .dd-label { font-size: 0.87rem; font-weight: 600; color: var(--gd-navy); display: block; }
.gd-dropdown a .dd-sub { font-size: 0.76rem; color: var(--gd-muted); font-family: 'Inter', sans-serif; font-weight: 400; }

.gd-header-actions { display: flex; align-items: center; gap: 18px; }
.gd-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px;
  border: 1px solid var(--gd-border); border-radius: 10px; background: #fff; cursor: pointer;
}
.gd-burger span { width: 18px; height: 2px; background: var(--gd-navy); margin: 0 auto; border-radius: 2px; transition: transform .3s var(--gd-ease), opacity .3s var(--gd-ease); }
.gd-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gd-burger.is-active span:nth-child(2) { opacity: 0; }
.gd-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 991px) {
  .gd-nav-links, .gd-header-actions .btn-gd { display: none; }
  .gd-burger { display: flex; }
}

.gd-mobile-menu {
  position: fixed; top: 0; right: -100%; width: min(380px, 88vw); height: 100vh; background: var(--gd-navy);
  z-index: 1100; padding: 100px 32px 40px; transition: right .45s var(--gd-ease); overflow-y: auto;
}
.gd-mobile-menu.is-open { right: 0; }
.gd-mobile-menu ul { list-style: none; padding: 0; margin: 0 0 32px; }
.gd-mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.gd-mobile-menu a { display: block; padding: 16px 2px; color: #fff; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 1.02rem; }
.gd-mobile-backdrop { position: fixed; inset: 0; background: rgba(3,23,57,0.5); z-index: 1050; opacity: 0; visibility: hidden; transition: opacity .4s var(--gd-ease), visibility .4s; }
.gd-mobile-backdrop.is-open { opacity: 1; visibility: visible; }
.gd-mobile-close { position: absolute; top: 28px; right: 28px; width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: #fff; font-size: 18px; }

/* HERO */
.gd-hero {
  position: relative; padding: 200px 0 130px; overflow: hidden;
  background: radial-gradient(680px 460px at 14% 8%, rgba(23,90,221,0.07), transparent 60%), radial-gradient(620px 460px at 88% 30%, rgba(30,181,117,0.09), transparent 60%), var(--gd-bg);
}
.gd-hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(5,29,71,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(5,29,71,0.035) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black 0%, transparent 75%); pointer-events: none;
}
.gd-hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; opacity: 0.55; }
.gd-hero-orb--1 { width: 460px; height: 460px; top: -160px; right: -80px; background: radial-gradient(circle, rgba(23,90,221,0.30), transparent 70%); animation: gd-float-slow 14s ease-in-out infinite; }
.gd-hero-orb--2 { width: 360px; height: 360px; bottom: -140px; left: -60px; background: radial-gradient(circle, rgba(30,181,117,0.26), transparent 70%); animation: gd-float-slow 18s ease-in-out infinite reverse; }
@keyframes gd-float-slow { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-24px, 26px); } }

.gd-hero-row { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }
@media (max-width: 1100px) { .gd-hero-row { grid-template-columns: 1fr; } }
.gd-hero-title { font-size: clamp(2.5rem, 5vw, 4.35rem); font-weight: 700; line-height: 1.08; color: var(--gd-navy); margin-bottom: 26px; }
.gd-hero-title .grad-word { background: var(--gd-gradient); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gd-hero-copy { font-size: 1.14rem; line-height: 1.75; color: var(--gd-muted); max-width: 560px; margin-bottom: 38px; }
.gd-hero-ctas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; }
.gd-hero-trustline { display: flex; align-items: center; gap: 12px; font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; color: var(--gd-muted-light); text-transform: uppercase; }
.gd-hero-trustline .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gd-muted-light); }

.gd-hero-visual { position: relative; height: 520px; }
.gd-dash { position: absolute; top: 10%; left: 6%; width: 88%; background: #fff; border-radius: var(--gd-radius-lg); box-shadow: var(--gd-shadow-lg); border: 1px solid var(--gd-border-soft); padding: 26px; z-index: 2; }
.gd-dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.gd-dash-head .gd-dash-label { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.82rem; color: var(--gd-navy); }
.gd-dash-head .gd-dash-tag { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gd-blue-deep); background: rgba(23,90,221,0.08); padding: 5px 10px; border-radius: 100px; }
.gd-dash-graph { width: 100%; height: 130px; display: block; }
.gd-dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.gd-dash-stat { background: var(--gd-bg-tint); border-radius: 12px; padding: 12px; }
.gd-dash-stat .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--gd-navy); }
.gd-dash-stat .num.up { color: var(--gd-green-dark); }
.gd-dash-stat .lbl { font-size: 0.68rem; color: var(--gd-muted); font-weight: 500; margin-top: 2px; }

.gd-float-card { position: absolute; background: #fff; border-radius: 14px; box-shadow: var(--gd-shadow-md); border: 1px solid var(--gd-border-soft); padding: 14px 16px; display: flex; align-items: center; gap: 12px; z-index: 3; animation: gd-float 6s ease-in-out infinite; }
.gd-float-card .fc-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: #fff; flex-shrink: 0; }
.gd-float-card .fc-num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.98rem; color: var(--gd-navy); line-height: 1.1; }
.gd-float-card .fc-lbl { font-size: 0.68rem; color: var(--gd-muted); font-weight: 500; }
.gd-float-card--1 { top: 2%; right: -4%; animation-delay: 0s; }
.gd-float-card--1 .fc-icon { background: var(--gd-gradient); }
.gd-float-card--2 { bottom: 8%; left: -6%; animation-delay: 1.4s; }
.gd-float-card--2 .fc-icon { background: linear-gradient(135deg, #0F419E, #175ADD); }
.gd-float-card--3 { bottom: -4%; right: 10%; animation-delay: 2.6s; }
.gd-float-card--3 .fc-icon { background: linear-gradient(135deg, #077647, #23BB7F); }
@keyframes gd-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.gd-hero-note { text-align: right; font-size: 0.66rem; color: var(--gd-muted-light); margin-top: 10px; font-style: italic; }

@media (max-width: 1100px) {
  .gd-hero-visual { height: 440px; margin-top: 20px; }
}
@media (max-width: 560px) {
  .gd-hero { padding: 150px 0 90px; }
  .gd-hero-visual { height: 400px; }
  .gd-float-card { padding: 10px 12px; }
  .gd-float-card--1, .gd-float-card--2, .gd-float-card--3 { right: 0; left: auto; }
}

/* TRUST STRIP */
.gd-trust { padding: 46px 0; border-top: 1px solid var(--gd-border-soft); border-bottom: 1px solid var(--gd-border-soft); background: #fff; }
.gd-trust-head { text-align: center; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.92rem; color: var(--gd-navy); margin-bottom: 30px; }
.gd-trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }
.gd-trust-chip { display: flex; align-items: center; gap: 9px; padding: 10px 18px; border-radius: 100px; border: 1px solid var(--gd-border); font-family: 'Poppins', sans-serif; font-size: 0.83rem; font-weight: 500; color: var(--gd-navy); transition: border-color .3s var(--gd-ease), transform .3s var(--gd-ease), box-shadow .3s var(--gd-ease); }
.gd-trust-chip:hover { border-color: transparent; transform: translateY(-3px); box-shadow: var(--gd-shadow-sm); }
.gd-trust-chip i { font-size: 0.85rem; background: var(--gd-gradient-deep); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ABOUT */
.gd-about-row { display: grid; grid-template-columns: 1fr 0.86fr; gap: 70px; align-items: center; }
@media (max-width: 991px) { .gd-about-row { grid-template-columns: 1fr; gap: 48px; } }
.gd-about-copy { color: var(--gd-muted); font-size: 1.03rem; line-height: 1.8; margin: 26px 0 30px; }
.gd-about-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.gd-about-list li { display: flex; align-items: flex-start; gap: 14px; font-family: 'Poppins', sans-serif; font-size: 0.94rem; font-weight: 500; color: var(--gd-navy); }
.gd-about-list li .chk { width: 24px; height: 24px; border-radius: 7px; background: rgba(30,181,117,0.12); color: var(--gd-green-dark); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.gd-about-panel { background: #fff; border-radius: var(--gd-radius-lg); border: 1px solid var(--gd-border-soft); box-shadow: var(--gd-shadow-md); padding: 34px 30px; position: relative; overflow: hidden; }
.gd-about-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gd-gradient); }
.gd-about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.gd-about-stat { padding: 18px 0; border-bottom: 1px solid var(--gd-border-soft); }
.gd-about-stat:nth-last-child(-n+2) { border-bottom: none; }
.gd-about-stat .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 2.1rem; color: var(--gd-navy); line-height: 1; }
.gd-about-stat .num .grad { background: var(--gd-gradient-deep); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gd-about-stat .lbl { font-size: 0.78rem; color: var(--gd-muted); margin-top: 8px; font-weight: 500; }

/* SERVICES */
.gd-services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.gd-svc-card { position: relative; background: #fff; border: 1px solid var(--gd-border-soft); border-radius: var(--gd-radius-md); padding: 30px 26px; overflow: hidden; transition: transform .4s var(--gd-ease), box-shadow .4s var(--gd-ease), border-color .4s var(--gd-ease); grid-column: span 4; display: flex; flex-direction: column; }
.gd-svc-card.is-featured { padding: 38px 34px; }
@media (max-width: 991px) { .gd-svc-card, .gd-svc-card.is-featured { grid-column: span 6; } }
@media (max-width: 640px) { .gd-svc-card, .gd-svc-card.is-featured { grid-column: span 12; } }
.gd-svc-card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: var(--gd-gradient); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s var(--gd-ease); pointer-events: none; }
.gd-svc-card:hover { transform: translateY(-6px); box-shadow: var(--gd-shadow-lg); }
.gd-svc-card:hover::after { opacity: 1; }
.gd-svc-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(23,90,221,0.09), rgba(30,181,117,0.11)); display: flex; align-items: center; justify-content: center; color: var(--gd-blue-deep); font-size: 20px; margin-bottom: 22px; transition: transform .4s var(--gd-ease); }
.gd-svc-card:hover .gd-svc-icon { transform: scale(1.08) rotate(-4deg); }
.gd-svc-card h3 { font-size: 1.14rem; font-weight: 600; margin-bottom: 10px; }
.gd-svc-card.is-featured h3 { font-size: 1.5rem; }
.gd-svc-card p { color: var(--gd-muted); font-size: 0.92rem; line-height: 1.68; flex-grow: 1; }
.gd-svc-link { display: inline-flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.86rem; color: var(--gd-navy); margin-top: 20px; }
.gd-svc-link i { font-size: 12px; transition: transform .3s var(--gd-ease); }
.gd-svc-card:hover .gd-svc-link i { transform: translateX(6px); }
.gd-svc-card:hover .gd-svc-link { color: var(--gd-blue-deep); }

/* WHY / PILLARS */
.gd-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gd-border-soft); border: 1px solid var(--gd-border-soft); border-radius: var(--gd-radius-md); overflow: hidden; }
@media (max-width: 900px) { .gd-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gd-pillars { grid-template-columns: 1fr; } }
.gd-pillar { background: #fff; padding: 40px 32px; transition: background .35s var(--gd-ease); }
.gd-pillar:hover { background: var(--gd-bg-tint); }
.gd-pillar .idx { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.78rem; color: var(--gd-muted-light); letter-spacing: 0.06em; margin-bottom: 22px; display: block; }
.gd-pillar h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 10px; }
.gd-pillar p { color: var(--gd-muted); font-size: 0.9rem; line-height: 1.65; }

/* PROCESS TIMELINE */
.gd-process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 900px) { .gd-process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gd-process { grid-template-columns: 1fr; } }
.gd-process-step { padding: 30px 26px 30px 0; border-top: 2px solid var(--gd-border); position: relative; transition: border-color .4s var(--gd-ease); }
.gd-process-step.is-active, .gd-process-step:hover { border-top-color: var(--gd-green-light); }
.gd-process-step .step-num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.78rem; color: var(--gd-blue-deep); margin-bottom: 16px; display: block; }
.gd-process-step h4 { font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; }
.gd-process-step p { color: var(--gd-muted); font-size: 0.86rem; line-height: 1.6; }

/* SPOTLIGHT (SEO / GOOGLE ADS) */
.gd-spotlight { background: #fff; border-radius: var(--gd-radius-lg); border: 1px solid var(--gd-border-soft); box-shadow: var(--gd-shadow-md); padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 991px) { .gd-spotlight { grid-template-columns: 1fr; padding: 34px; gap: 36px; } }
.gd-spotlight.reverse .gd-spotlight-visual { order: -1; }
@media (max-width: 991px) { .gd-spotlight.reverse .gd-spotlight-visual { order: 0; } }
.gd-spotlight-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.gd-spotlight-tags span { font-size: 0.78rem; font-weight: 500; font-family: 'Poppins', sans-serif; color: var(--gd-navy); background: var(--gd-bg-tint); border: 1px solid var(--gd-border-soft); padding: 7px 14px; border-radius: 100px; }
.gd-spotlight-visual { background: var(--gd-bg-tint); border-radius: var(--gd-radius-md); padding: 24px; border: 1px solid var(--gd-border-soft); }
.gd-mini-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: #fff; border-radius: 10px; margin-bottom: 10px; box-shadow: var(--gd-shadow-sm); }
.gd-mini-row:last-child { margin-bottom: 0; }
.gd-mini-row .mr-label { font-size: 0.8rem; font-weight: 500; color: var(--gd-navy); display: flex; align-items: center; gap: 10px; }
.gd-mini-row .mr-label i { color: var(--gd-blue-deep); font-size: 0.8rem; }
.gd-mini-row .mr-val { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.86rem; color: var(--gd-green-dark); }

/* FUNNEL */
.gd-funnel { display: flex; align-items: stretch; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.gd-funnel-stage { flex: 1 1 0; min-width: 150px; text-align: center; padding: 28px 16px; background: #fff; border: 1px solid var(--gd-border-soft); border-radius: var(--gd-radius-md); position: relative; }
.gd-funnel-stage .fs-icon { width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--gd-gradient); color: #fff; font-size: 17px; }
.gd-funnel-stage h4 { font-size: 0.94rem; font-weight: 600; margin-bottom: 6px; }
.gd-funnel-stage p { font-size: 0.78rem; color: var(--gd-muted); }
.gd-funnel-arrow { display: flex; align-items: center; color: var(--gd-border); font-size: 18px; }
@media (max-width: 767px) { .gd-funnel-arrow { display: none; } }

/* ANALYTICS DASHBOARD */
.gd-analytics-panel { background: var(--gd-navy); border-radius: var(--gd-radius-lg); padding: 48px; position: relative; overflow: hidden; }
.gd-analytics-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(500px 300px at 90% 0%, rgba(30,181,117,0.18), transparent 60%); }
.gd-analytics-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .gd-analytics-grid { grid-template-columns: repeat(2, 1fr); } }
.gd-analytics-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; padding: 22px; }
.gd-analytics-card .a-lbl { font-size: 0.76rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-bottom: 10px; }
.gd-analytics-card .a-num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.7rem; color: #fff; }
.gd-analytics-card .a-delta { font-size: 0.76rem; font-weight: 600; margin-top: 8px; }
.gd-analytics-card .a-delta.up { color: #4ADE94; }
.gd-analytics-note { position: relative; text-align: center; margin-top: 26px; font-size: 0.74rem; color: rgba(255,255,255,0.4); font-style: italic; }

/* INDUSTRIES */
.gd-industries { display: grid; grid-template-columns: 300px 1fr; gap: 0; background: #fff; border: 1px solid var(--gd-border-soft); border-radius: var(--gd-radius-lg); overflow: hidden; box-shadow: var(--gd-shadow-md); }
@media (max-width: 900px) { .gd-industries { grid-template-columns: 1fr; } }
.gd-ind-list { border-right: 1px solid var(--gd-border-soft); }
@media (max-width: 900px) { .gd-ind-list { border-right: none; border-bottom: 1px solid var(--gd-border-soft); display: flex; overflow-x: auto; } }
.gd-ind-item { appearance: none; width: 100%; display: flex; align-items: center; gap: 12px; padding: 17px 26px; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 500; line-height: 1.5; text-align: left; color: var(--gd-muted); background: transparent; border: 0; border-left: 3px solid transparent; transition: background .3s var(--gd-ease), color .3s var(--gd-ease); white-space: nowrap; }
.gd-ind-item i { font-size: 0.85rem; width: 18px; }
.gd-ind-item:hover { background: var(--gd-bg-tint); color: var(--gd-navy); }
.gd-ind-item.is-active { color: var(--gd-navy); background: var(--gd-bg-tint); border-left-color: var(--gd-blue); font-weight: 600; }
.gd-ind-panel { padding: 46px; align-self: center; min-width: 0; }
.gd-ind-item:focus-visible { outline-offset: -4px; }
@media (max-width: 900px) {
  .gd-ind-list { padding: 12px; gap: 8px; scrollbar-width: thin; }
  .gd-ind-item { width: auto; flex: 0 0 auto; padding: 12px 16px; border-left: 0; border-bottom: 3px solid transparent; border-radius: 8px; }
  .gd-ind-item.is-active { border-bottom-color: var(--gd-blue); }
  .gd-ind-panel { padding: 30px 24px; }
}
.gd-ind-panel .ind-icon { width: 56px; height: 56px; border-radius: 15px; background: var(--gd-gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 22px; }
.gd-ind-panel h3 { font-size: 1.5rem; margin-bottom: 14px; }
.gd-ind-panel p.ind-desc { color: var(--gd-muted); font-size: 0.96rem; line-height: 1.75; margin-bottom: 24px; max-width: 560px; }
.gd-ind-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.gd-ind-tags span { font-size: 0.78rem; font-weight: 500; font-family: 'Poppins', sans-serif; padding: 8px 14px; border-radius: 100px; background: var(--gd-bg-tint); color: var(--gd-navy); border: 1px solid var(--gd-border-soft); }

/* CASE STUDIES */
.gd-case-card { background: #fff; border: 1px solid var(--gd-border-soft); border-radius: var(--gd-radius-lg); overflow: hidden; height: 100%; transition: transform .4s var(--gd-ease), box-shadow .4s var(--gd-ease); }
.gd-case-card:hover { transform: translateY(-6px); box-shadow: var(--gd-shadow-lg); }
.gd-case-top { padding: 32px 30px 26px; background: var(--gd-gradient-navy); color: #fff; position: relative; }
.gd-case-badge { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; background: rgba(255,255,255,0.14); padding: 6px 12px; border-radius: 100px; margin-bottom: 16px; }
.gd-case-top h3 { color: #fff; font-size: 1.2rem; margin-bottom: 6px; }
.gd-case-top .gd-case-industry { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.gd-case-body { padding: 26px 30px 30px; }
.gd-case-row { margin-bottom: 16px; }
.gd-case-row .cr-lbl { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gd-muted-light); margin-bottom: 5px; }
.gd-case-row .cr-val { font-size: 0.88rem; color: var(--gd-text); line-height: 1.55; }
.gd-case-metrics { display: flex; gap: 18px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gd-border-soft); }
.gd-case-metrics .cm { flex: 1; }
.gd-case-metrics .cm .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--gd-green-dark); }
.gd-case-metrics .cm .lbl { font-size: 0.7rem; color: var(--gd-muted); }
.gd-case-cta { margin-top: 22px; }

/* poULTS / COUNTERS */
.gd-results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gd-border-soft); border: 1px solid var(--gd-border-soft); border-radius: var(--gd-radius-md); overflow: hidden; }
@media (max-width: 900px) { .gd-results-grid { grid-template-columns: repeat(2, 1fr); } }
.gd-result { background: #fff; padding: 40px 28px; text-align: center; }
.gd-result .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 2.4rem; line-height: 1; }
.gd-result .num .grad { background: var(--gd-gradient-deep); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gd-result .lbl { font-size: 0.8rem; color: var(--gd-muted); margin-top: 10px; font-weight: 500; }

/* TESTIMONIALS */
.gd-testi-card { background: #fff; border: 1px solid var(--gd-border-soft); border-radius: var(--gd-radius-lg); padding: 36px; height: 100%; box-shadow: var(--gd-shadow-sm); }
.gd-testi-quote-icon { color: var(--gd-blue); opacity: .18; font-size: 2.2rem; margin-bottom: 8px; }
.gd-testi-text { font-size: 1rem; line-height: 1.75; color: var(--gd-text); margin-bottom: 24px; }
.gd-testi-person { display: flex; align-items: center; gap: 14px; }
.gd-testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gd-gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem; }
.gd-testi-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--gd-navy); }
.gd-testi-role { font-size: 0.78rem; color: var(--gd-muted); }
.gd-testi-flag { font-size: 0.68rem; color: var(--gd-muted-light); font-style: italic; margin-top: 18px; display: block; }
.gd-swiper-nav { display: flex; gap: 12px; margin-top: 36px; justify-content: center; }
.gd-swiper-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gd-border); background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--gd-navy); transition: all .3s var(--gd-ease); }
.gd-swiper-btn:hover { background: var(--gd-navy); color: #fff; border-color: var(--gd-navy); }

/* FAQ */
.gd-faq-item { border-bottom: 1px solid var(--gd-border-soft); }
.gd-faq-item:first-child { border-top: 1px solid var(--gd-border-soft); }
.gd-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; cursor: pointer; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; color: var(--gd-navy); }
.gd-faq-q .plus { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gd-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .35s var(--gd-ease), background .35s var(--gd-ease), border-color .35s var(--gd-ease); font-size: 12px; color: var(--gd-navy); }
.gd-faq-item.is-open .gd-faq-q .plus { transform: rotate(135deg); background: var(--gd-gradient); border-color: transparent; color: #fff; }
.gd-faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--gd-ease); }
.gd-faq-a-inner { padding: 0 4px 24px; color: var(--gd-muted); font-size: 0.92rem; line-height: 1.75; max-width: 760px; }

/* CTA SECTION */
.gd-cta { background: var(--gd-gradient-navy); border-radius: var(--gd-radius-lg); padding: 84px 60px; position: relative; overflow: hidden; text-align: center; }
@media (max-width: 767px) { .gd-cta { padding: 56px 26px; } }
.gd-cta-lines { position: absolute; inset: 0; opacity: 0.5; }
.gd-cta h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem); max-width: 780px; margin: 0 auto 20px; position: relative; }
.gd-cta p { color: rgba(255,255,255,0.68); max-width: 620px; margin: 0 auto 40px; font-size: 1.02rem; line-height: 1.75; position: relative; }
.gd-cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* CONTACT */
.gd-contact-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
@media (max-width: 991px) { .gd-contact-row { grid-template-columns: 1fr; gap: 40px; } }
.gd-contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.gd-contact-info-item .ci-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gd-bg-tint); color: var(--gd-blue-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.gd-contact-info-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.gd-contact-info-item p, .gd-contact-info-item a { color: var(--gd-muted); font-size: 0.9rem; }
.gd-contact-form { background: #fff; border: 1px solid var(--gd-border-soft); border-radius: var(--gd-radius-lg); box-shadow: var(--gd-shadow-md); padding: 42px; }
@media (max-width: 560px) { .gd-contact-form { padding: 26px; } }
.gd-field { position: relative; margin-bottom: 22px; }
.gd-field label { position: absolute; left: 17px; top: 15px; font-size: 0.92rem; color: var(--gd-muted-light); pointer-events: none; transition: all .25s var(--gd-ease); background: #fff; padding: 0 4px; }
.gd-field input, .gd-field select, .gd-field textarea { width: 100%; padding: 15px 17px; border: 1.5px solid var(--gd-border); border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 0.94rem; color: var(--gd-text); background: transparent; transition: border-color .3s var(--gd-ease); }
.gd-field textarea { resize: vertical; min-height: 110px; }
.gd-field input:focus, .gd-field select:focus, .gd-field textarea:focus { outline: none; border-color: var(--gd-blue); }
.gd-field input:focus + label, .gd-field input:not(:placeholder-shown) + label, .gd-field textarea:focus + label, .gd-field textarea:not(:placeholder-shown) + label, .gd-field.has-value label { top: -9px; font-size: 0.72rem; color: var(--gd-blue-deep); font-weight: 600; }
.gd-field select { color: var(--gd-muted); cursor: pointer; }
.gd-field select.has-selection { color: var(--gd-text); }
.gd-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .gd-field-row { grid-template-columns: 1fr; } }
.gd-field .field-error { display: none; font-size: 0.76rem; color: #D64545; margin-top: 6px; padding-left: 4px; }
.gd-field.is-invalid input, .gd-field.is-invalid select, .gd-field.is-invalid textarea { border-color: #D64545; }
.gd-field.is-invalid .field-error { display: block; }
.gd-form-success { display: none; text-align: center; padding: 40px 10px; }
.gd-form-success.is-visible { display: block; }
.gd-form-success .ok-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(30,181,117,0.12); color: var(--gd-green-dark); display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 20px; }
.gd-form-success h3 { font-size: 1.2rem; margin-bottom: 10px; }
.gd-form-success p { color: var(--gd-muted); font-size: 0.92rem; }

/* FOOTER */
.gd-footer { background: var(--gd-navy-dark); color: rgba(255,255,255,0.62); padding: 90px 0 0; }
.gd-footer-top { display: grid; grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(0, 1fr)) minmax(190px, 1.1fr); gap: 32px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 991px) { .gd-footer-top { grid-template-columns: 1fr 1fr; row-gap: 44px; } }
@media (max-width: 560px) { .gd-footer-top { grid-template-columns: 1fr; } }
.gd-footer-brand img { display: block; width: 240px; max-width: 100%; height: auto; margin-bottom: 24px; }
.gd-footer-col { min-width: 0; }
.gd-footer-col a { overflow-wrap: anywhere; }
.gd-footer-tagline { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem; background: linear-gradient(90deg, #4E8CFF, #23BB7F); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 16px; }
.gd-footer-desc { font-size: 0.87rem; line-height: 1.75; max-width: 300px; margin-bottom: 24px; }
.gd-footer-social { display: flex; gap: 10px; }
.gd-footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; transition: all .3s var(--gd-ease); }
.gd-footer-social a:hover { background: var(--gd-gradient); border-color: transparent; transform: translateY(-3px); }
.gd-footer-col h5 { font-family: 'Poppins', sans-serif; font-size: 0.86rem; font-weight: 600; color: #fff; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 22px; }
.gd-footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.gd-footer-col a { font-size: 0.88rem; transition: color .25s var(--gd-ease), padding-left .25s var(--gd-ease); }
.gd-footer-col a:hover { color: #fff; padding-left: 4px; }
.gd-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 28px 0; font-size: 0.8rem; }
.gd-footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.gd-footer-legal a:hover { color: #fff; }

/* MISC / UTIL */
.gd-back-to-top { position: fixed; right: 26px; bottom: 26px; width: 48px; height: 48px; border-radius: 50%; background: var(--gd-navy); color: #fff; display: flex; align-items: center; justify-content: center; z-index: 900; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .35s var(--gd-ease); box-shadow: var(--gd-shadow-md); border: none; cursor: pointer; }
.gd-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.gd-back-to-top:hover { background: var(--gd-gradient); }
.gd-scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--gd-gradient); z-index: 1200; transition: width .1s linear; }
[data-aos] { transition-timing-function: var(--gd-ease) !important; }
.text-grad { background: var(--gd-gradient-deep); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ==========================================================================
   INNER PAGE ADDITIONS
   ========================================================================== */

/* Breadcrumb */
.gd-breadcrumb {
  padding: 150px 0 0;
}
.gd-breadcrumb .container-gd {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 500; color: var(--gd-muted);
}
.gd-breadcrumb a:hover { color: var(--gd-blue-deep); }
.gd-breadcrumb .sep { color: var(--gd-muted-light); font-size: 0.7rem; }
.gd-breadcrumb .current { color: var(--gd-navy); font-weight: 600; }

/* Compact inner hero (service / industry / about pages) */
.gd-inner-hero {
  position: relative; padding: 40px 0 90px; overflow: hidden;
  background: radial-gradient(560px 380px at 90% 0%, rgba(23,90,221,0.07), transparent 60%), var(--gd-bg);
}
.gd-inner-hero-row { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 991px) { .gd-inner-hero-row { grid-template-columns: 1fr; } }
.gd-inner-hero h1 { font-size: clamp(2.1rem, 4vw, 3.3rem); font-weight: 700; line-height: 1.12; margin-bottom: 22px; }
.gd-inner-hero .lede { font-size: 1.05rem; color: var(--gd-muted); line-height: 1.75; max-width: 560px; margin-bottom: 32px; }
.gd-inner-hero-stat-strip { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 8px; }
.gd-inner-hero-stat-strip .stat .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--gd-navy); }
.gd-inner-hero-stat-strip .stat .lbl { font-size: 0.75rem; color: var(--gd-muted); margin-top: 2px; }

.gd-inner-hero-visual {
  background: #fff; border-radius: var(--gd-radius-lg); border: 1px solid var(--gd-border-soft);
  box-shadow: var(--gd-shadow-lg); padding: 30px;
}

/* Simple page hero for hub/legal/contact/blog pages (centered, shorter) */
.gd-page-hero {
  position: relative; padding: 160px 0 80px; text-align: center; overflow: hidden;
  background: radial-gradient(600px 400px at 50% 0%, rgba(23,90,221,0.06), transparent 65%), var(--gd-bg);
}
.gd-page-hero .eyebrow { justify-content: center; }
.gd-page-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); font-weight: 700; line-height: 1.12; max-width: 820px; margin: 0 auto 20px; }
.gd-page-hero .lede { font-size: 1.08rem; color: var(--gd-muted); max-width: 620px; margin: 0 auto; line-height: 1.75; }

/* Feature checklist grid (What's Included) */
.gd-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 640px) { .gd-feature-grid { grid-template-columns: 1fr; } }
.gd-feature-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px;
  background: #fff; border: 1px solid var(--gd-border-soft); border-radius: 14px;
  transition: border-color .3s var(--gd-ease), transform .3s var(--gd-ease);
}
.gd-feature-item:hover { border-color: var(--gd-blue); transform: translateY(-3px); }
.gd-feature-item .fi-icon {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  background: rgba(23,90,221,0.09); color: var(--gd-blue-deep);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.gd-feature-item h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 4px; }
.gd-feature-item p { font-size: 0.83rem; color: var(--gd-muted); line-height: 1.55; }

/* Who it's for tags */
.gd-audience-row { display: flex; flex-wrap: wrap; gap: 12px; }
.gd-audience-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 14px; background: #fff;
  border: 1px solid var(--gd-border-soft); font-family: 'Poppins', sans-serif;
  font-size: 0.88rem; font-weight: 500; color: var(--gd-navy);
}
.gd-audience-chip i { color: var(--gd-green-dark); }

/* Related services */
.gd-related-card {
  display: block; padding: 26px 24px; background: #fff; border: 1px solid var(--gd-border-soft);
  border-radius: var(--gd-radius-md); height: 100%; transition: all .35s var(--gd-ease);
}
.gd-related-card:hover { transform: translateY(-5px); box-shadow: var(--gd-shadow-md); border-color: transparent; }
.gd-related-card .rc-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(23,90,221,0.09), rgba(30,181,117,0.11));
  color: var(--gd-blue-deep); display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.gd-related-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--gd-navy); }
.gd-related-card p { font-size: 0.85rem; color: var(--gd-muted); line-height: 1.6; }
.gd-related-card .rc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.8rem; font-weight: 600; font-family: 'Poppins', sans-serif; color: var(--gd-navy); }
.gd-related-card:hover .rc-link { color: var(--gd-blue-deep); }

/* Strategy / numbered approach list (vertical) */
.gd-approach-list { display: grid; gap: 0; }
.gd-approach-item { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--gd-border-soft); }
.gd-approach-item:first-child { border-top: 1px solid var(--gd-border-soft); }
.gd-approach-num {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.6rem;
  background: var(--gd-gradient-deep); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  flex-shrink: 0; width: 56px;
}
.gd-approach-item h4 { font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; }
.gd-approach-item p { font-size: 0.9rem; color: var(--gd-muted); line-height: 1.7; max-width: 640px; }

/* Legal page layout */
.gd-legal-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: flex-start; }
@media (max-width: 900px) { .gd-legal-wrap { grid-template-columns: 1fr; } }
.gd-legal-toc {
  position: sticky; top: 120px; background: #fff; border: 1px solid var(--gd-border-soft);
  border-radius: var(--gd-radius-md); padding: 24px;
}
.gd-legal-toc h5 { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gd-muted-light); margin-bottom: 16px; }
.gd-legal-toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.gd-legal-toc a { font-size: 0.85rem; color: var(--gd-muted); }
.gd-legal-toc a:hover { color: var(--gd-blue-deep); }
.gd-legal-body h2 { font-size: 1.4rem; margin: 44px 0 16px; }
.gd-legal-body h2:first-child { margin-top: 0; }
.gd-legal-body p { color: var(--gd-muted); font-size: 0.95rem; line-height: 1.85; margin-bottom: 16px; }
.gd-legal-body ul { color: var(--gd-muted); font-size: 0.95rem; line-height: 1.85; margin-bottom: 16px; padding-left: 22px; }
.gd-legal-updated { font-size: 0.82rem; color: var(--gd-muted-light); margin-bottom: 40px; }

/* Blog / resources cards */
.gd-blog-card { background: #fff; border: 1px solid var(--gd-border-soft); border-radius: var(--gd-radius-md); overflow: hidden; height: 100%; transition: all .35s var(--gd-ease); }
.gd-blog-card:hover { transform: translateY(-5px); box-shadow: var(--gd-shadow-md); }
.gd-blog-thumb { height: 170px; background: var(--gd-gradient-navy); position: relative; display: flex; align-items: center; justify-content: center; }
.gd-blog-thumb i { font-size: 2rem; color: rgba(255,255,255,0.35); }
.gd-blog-cat { position: absolute; top: 14px; left: 14px; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; background: rgba(255,255,255,0.14); color: #fff; padding: 5px 11px; border-radius: 100px; }
.gd-blog-body { padding: 22px 22px 26px; }
.gd-blog-meta { font-size: 0.75rem; color: var(--gd-muted-light); margin-bottom: 10px; }
.gd-blog-body h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.gd-blog-body p { font-size: 0.87rem; color: var(--gd-muted); line-height: 1.65; }

/* Team / value cards (About) */
.gd-value-card { padding: 30px 26px; background: #fff; border: 1px solid var(--gd-border-soft); border-radius: var(--gd-radius-md); height: 100%; }
.gd-value-card .vc-icon { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg, rgba(23,90,221,0.09), rgba(30,181,117,0.11)); color: var(--gd-blue-deep); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 18px; }
.gd-value-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.gd-value-card p { font-size: 0.88rem; color: var(--gd-muted); line-height: 1.65; }

/* Contact page tweaks (map placeholder) */
.gd-map-note { padding: 60px 30px; text-align: center; background: var(--gd-bg-tint); border: 1px dashed var(--gd-border); border-radius: var(--gd-radius-md); color: var(--gd-muted); font-size: 0.85rem; }

/* Filter tabs (services hub / case studies / blog) */
.gd-filter-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.gd-filter-btn {
  font-family: 'Poppins', sans-serif; font-size: 0.84rem; font-weight: 500;
  padding: 10px 20px; border-radius: 100px; border: 1px solid var(--gd-border);
  background: #fff; color: var(--gd-muted); cursor: pointer; transition: all .3s var(--gd-ease);
}
.gd-filter-btn:hover { border-color: var(--gd-blue); color: var(--gd-blue-deep); }
.gd-filter-btn.is-active { background: var(--gd-gradient); color: #fff; border-color: transparent; }

/* sitemap / resources hub */
/* SITEMAP PAGE */
.gd-sitemap-col h5 {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-size: 0.86rem; font-weight: 600;
  color: var(--gd-navy); letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--gd-border-soft);
}
.gd-sitemap-col h5 i { color: var(--gd-blue-deep); font-size: 0.8rem; }
.gd-sitemap-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.gd-sitemap-col a { font-size: 0.92rem; color: var(--gd-muted); transition: color .25s var(--gd-ease), padding-left .25s var(--gd-ease); }
.gd-sitemap-col a:hover { color: var(--gd-blue-deep); padding-left: 4px; }
/* Accessible controls and resilient content */
.gd-faq-q { width:100%; border:0; background:transparent; text-align:left; }
.gd-skip-link { position:fixed; left:16px; top:-100px; z-index:2000; padding:12px 20px; background:#fff; color:#103b75; }
.gd-skip-link:focus { top:16px; }
:focus-visible { outline:3px solid #175add; outline-offset:4px; }
.gd-honeypot { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.gd-form-error { padding:14px; border:1px solid #a32626; background:#fff4f4; color:#8d2020; border-radius:8px; }
.gd-form-privacy { font-size:.85rem; color:var(--gd-muted); }
.gd-form-privacy a { text-decoration:underline; }
.gd-contact-form [disabled] { opacity:.65; cursor:wait; }
.gd-hero-note { position:relative; z-index:2; }
.gd-hero-visual > .gd-hero-note { position:absolute; top:100%; right:0; max-width:100%; margin-top:40px; }
.gd-blog-body details { margin-top:16px; }
.gd-blog-body summary { cursor:pointer; font-weight:600; color:var(--gd-blue-deep); }
.gd-blog-body details p { margin-top:12px; }
@media (prefers-reduced-motion:reduce) { *, *::before, *::after { animation:none!important; transition:none!important; scroll-behavior:auto!important; } }
