/*
Theme Name: Godigiler
Theme URI: https://godigilerwebsolutions.com
Author: Godigiler India Web Solutions Pvt Ltd
Author URI: https://godigilerwebsolutions.com
Description: Custom performance marketing agency theme for Godigiler. Designed to compete with NP Digital. Supports Elementor, WooCommerce and all major plugins. Built for US, UK, CA, AU markets.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
License URI: https://godigilerwebsolutions.com
Text Domain: godigiler
Tags: business, marketing, one-column, custom-colors, custom-menu, featured-images, footer-widgets, theme-options, translation-ready

/* ============================================================
   GODIGILER THEME — Main Stylesheet
   Brand: #185FA5 Navy | #042C53 Dark | #1D9E75 Teal | #EF9F27 Amber
   Fonts: Plus Jakarta Sans (headings) | Inter (body)
   ============================================================ */

/* ── CSS TOKENS ── */
:root {
  --brand:        #185FA5;
  --brand-dark:   #042C53;
  --brand-deep:   #021A35;
  --brand-mid:    #0C447C;
  --brand-light:  #E6F1FB;
  --brand-soft:   #B5D4F4;
  --teal:         #1D9E75;
  --teal-light:   #E1F5EE;
  --amber:        #EF9F27;
  --amber-light:  #FAEEDA;
  --text:         #0D0D12;
  --text-sec:     #4A4A5A;
  --text-muted:   #888890;
  --border:       #E8E8F0;
  --bg:           #FFFFFF;
  --bg-off:       #F7F8FC;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.12);
  --font-head:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --nav-h:        68px;
  --container:    1180px;
  --transition:   .2s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }

/* ── LAYOUT ── */
.gdl-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.gdl-section { padding: 96px 0; }
.gdl-section--dark { background: var(--brand-deep); }
.gdl-section--off { background: var(--bg-off); }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--brand-dark);
}
h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; letter-spacing: -.03em; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; }
p { line-height: 1.7; color: var(--text-sec); }

.gdl-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.gdl-section-title { margin-bottom: 16px; }
.gdl-section-sub {
  font-size: 17px;
  max-width: 600px;
  margin-bottom: 48px;
  color: var(--text-sec);
}

/* ── BUTTONS ── */
.gdl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.gdl-btn:hover { transform: translateY(-2px); }
.gdl-btn--primary { background: var(--brand); color: #fff; }
.gdl-btn--primary:hover { background: var(--brand-mid); box-shadow: 0 8px 24px rgba(24,95,165,.3); }
.gdl-btn--white { background: #fff; color: var(--brand-dark); }
.gdl-btn--white:hover { box-shadow: 0 8px 24px rgba(255,255,255,.25); }
.gdl-btn--outline { border: 2px solid var(--brand); color: var(--brand); }
.gdl-btn--outline:hover { background: var(--brand); color: #fff; }
.gdl-btn--ghost-white { border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.85); }
.gdl-btn--ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }
.gdl-btn--lg { padding: 16px 36px; font-size: 16px; }

/* ── ANNOUNCE BAR ── */
.gdl-announce {
  background: var(--brand-dark);
  color: #B5D4F4;
  font-size: 12px;
  padding: 0 24px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 200;
}
.gdl-announce__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: gdl-pulse 2s ease-in-out infinite;
}
@keyframes gdl-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(.7); }
}
.gdl-announce__cta { color: var(--amber); font-weight: 600; }
.gdl-announce__cta:hover { opacity: .8; }

/* ── HEADER ── */
.gdl-header {
  position: sticky;
  top: 0;
  z-index: 150;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.gdl-header.scrolled { box-shadow: var(--shadow-md); }
.gdl-nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.gdl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.gdl-logo__mark {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  background: var(--brand);
  color: #fff;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gdl-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.gdl-logo__name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: -.02em;
}
.gdl-logo__sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Nav links */
.gdl-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.gdl-nav__links > li { position: relative; }
.gdl-nav__links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.gdl-nav__links > li > a:hover,
.gdl-nav__links > li > a.current-menu-item { color: var(--brand); background: var(--brand-light); }
.gdl-nav__arrow { width: 12px; height: 12px; transition: transform .2s; }
.has-children:hover .gdl-nav__arrow { transform: rotate(180deg); }

/* Dropdown */
.gdl-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: none;
  gap: 32px;
  min-width: 560px;
  z-index: 300;
}
.has-children:hover .gdl-dropdown { display: flex; }
.gdl-dropdown__col { display: flex; flex-direction: column; gap: 4px; min-width: 150px; }
.gdl-dropdown__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0 10px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.gdl-dropdown__col a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--text-sec);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.gdl-dropdown__col a:hover { background: var(--brand-light); color: var(--brand); }
.gdl-dropdown__icon { font-size: 15px; }

/* Nav actions */
.gdl-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Mobile toggle */
.gdl-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.gdl-mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.gdl-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gdl-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.gdl-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.gdl-mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
  gap: 2px;
}
.gdl-mobile-menu.open { display: flex; }
.gdl-mobile-menu a {
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sec);
  border-radius: var(--radius-sm);
}
.gdl-mobile-menu a:hover { background: var(--brand-light); color: var(--brand); }
.gdl-mobile-menu__cta {
  margin-top: 8px;
  background: var(--brand) !important;
  color: #fff !important;
  text-align: center;
  border-radius: var(--radius-md) !important;
  font-weight: 700 !important;
}

/* ── HERO ── */
.gdl-hero {
  position: relative;
  padding: 104px 0 88px;
  background: var(--brand-deep);
  overflow: hidden;
}
.gdl-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(24,95,165,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,95,165,.18) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.gdl-hero__glow {
  position: absolute;
  top: -240px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(24,95,165,.45) 0%, transparent 68%);
  pointer-events: none;
}
.gdl-hero .gdl-container { position: relative; z-index: 1; }
.gdl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--brand-soft);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.gdl-hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: gdl-pulse 2s ease-in-out infinite;
}
.gdl-hero__title {
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 24px;
  max-width: 800px;
}
.gdl-hero__accent {
  color: transparent;
  background: linear-gradient(135deg, #5BB5FF 0%, #1D9E75 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.gdl-hero__sub {
  font-size: 18px;
  color: #7FAFC8;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.gdl-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.gdl-hero__stats {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 680px;
}
.gdl-stat {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.gdl-stat:last-child { border-right: none; }
.gdl-stat__num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  display: block;
}
.gdl-stat__suffix { color: var(--amber); font-size: 20px; font-weight: 700; }
.gdl-stat__label {
  font-size: 12px;
  color: #5A87A8;
  margin-top: 2px;
  display: block;
}

/* ── TRUSTED BY ── */
.gdl-trusted { padding: 52px 0; border-bottom: 1px solid var(--border); }
.gdl-trusted__label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.gdl-markets {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.gdl-market-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.gdl-logo-strip-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.gdl-logo-strip {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: gdl-scroll 26s linear infinite;
}
.gdl-logo-strip:hover { animation-play-state: paused; }
@keyframes gdl-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gdl-logo-item {
  flex-shrink: 0;
  height: 56px;
  padding: 0 24px;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}
.gdl-logo-item img { height: 28px; width: auto; filter: grayscale(1); opacity: .6; }
.gdl-logo-item img:hover { filter: grayscale(0); opacity: 1; transition: all .3s; }

/* ── SERVICES GRID ── */
.gdl-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gdl-service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.gdl-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.gdl-service-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gdl-service-card:hover::after { transform: scaleX(1); }
.gdl-service-card--featured {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
.gdl-service-card--featured h3 { color: #fff; }
.gdl-service-card--featured p { color: #7FAFC8; }
.gdl-service-card--featured .gdl-service-card__link { color: var(--amber); }
.gdl-service-card--featured::after { background: linear-gradient(90deg, var(--teal), var(--amber)); }
.gdl-service-card__icon { font-size: 30px; margin-bottom: 4px; }
.gdl-service-card h3 { font-size: 18px; font-weight: 700; color: var(--brand-dark); }
.gdl-service-card p { font-size: 14px; color: var(--text-sec); line-height: 1.65; flex: 1; }
.gdl-service-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}
.gdl-service-card--featured .gdl-service-card__badge { background: rgba(29,158,117,.2); color: #5BD8AA; }
.gdl-service-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* ── PROCESS ── */
.gdl-process__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.gdl-process__track::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 13%;
  right: 13%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--teal));
  z-index: 0;
}
.gdl-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.gdl-process-step__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px #fff, 0 0 0 7px var(--border);
}
.gdl-process-step h3 { font-size: 16px; font-weight: 700; color: var(--brand-dark); margin-bottom: 10px; }
.gdl-process-step p { font-size: 14px; color: var(--text-sec); line-height: 1.6; }

/* ── RESULTS ── */
.gdl-results__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.gdl-result-card {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.gdl-result-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.gdl-result-card--dark {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
.gdl-result-card--dark h3 { color: #fff; }
.gdl-result-card--dark p { color: #7FAFC8; }
.gdl-result-card--dark .gdl-result-card__cta { color: var(--amber); }
.gdl-result-card--dark .gdl-result-card__time { background: rgba(29,158,117,.2); color: #5BD8AA; }
.gdl-result-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-light);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: fit-content;
}
.gdl-result-card--dark .gdl-result-card__tag { background: rgba(24,95,165,.3); color: #7BBFFF; }
.gdl-result-card__metric {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
  letter-spacing: -.03em;
}
.gdl-result-card--dark .gdl-result-card__metric { color: #fff; }
.gdl-result-card__metric span { font-size: 26px; font-weight: 600; }
.gdl-result-card h3 { font-size: 16px; font-weight: 700; line-height: 1.4; }
.gdl-result-card p { font-size: 14px; line-height: 1.6; }
.gdl-result-card__time {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  width: fit-content;
  margin-top: auto;
}
.gdl-result-card__cta { font-size: 13px; font-weight: 700; color: var(--brand); }
.gdl-results__cta { display: flex; justify-content: center; margin-top: 36px; }

/* ── RECOGNITION ── */
.gdl-awards__grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.gdl-award {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  min-width: 160px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.gdl-award:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.gdl-award__icon { font-size: 24px; }
.gdl-award__name { font-size: 13px; font-weight: 700; color: var(--brand-dark); line-height: 1.4; }

/* ── TESTIMONIALS ── */
.gdl-testi__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.gdl-testi-card {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gdl-testi-card--dark { background: var(--brand-dark); border-color: var(--brand-dark); }
.gdl-testi-card--dark blockquote { color: #7FAFC8; }
.gdl-testi-card--dark .gdl-testi__name { color: #fff; }
.gdl-testi-card--dark .gdl-testi__role { color: #4A6A80; }
.gdl-testi__stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; }
blockquote { font-size: 15px; line-height: 1.75; font-style: italic; color: var(--text-sec); flex: 1; }
.gdl-testi__author { display: flex; align-items: center; gap: 12px; }
.gdl-testi__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gdl-testi__name { font-size: 14px; font-weight: 700; color: var(--brand-dark); }
.gdl-testi__role { font-size: 12px; color: var(--text-muted); }

/* ── CTA BANNER ── */
.gdl-cta {
  position: relative;
  padding: 100px 0;
  background: var(--brand-deep);
  overflow: hidden;
  text-align: center;
}
.gdl-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(24,95,165,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,95,165,.2) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.gdl-cta .gdl-container { position: relative; z-index: 1; }
.gdl-cta h2 { color: #fff; margin-bottom: 16px; }
.gdl-cta p { color: #7FAFC8; max-width: 520px; margin: 0 auto 36px; font-size: 17px; }
.gdl-cta__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.gdl-cta__trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #4A6A80;
  font-weight: 500;
}
.gdl-cta__trust span::before { content: '✓ '; color: var(--teal); }

/* ── FOOTER ── */
.gdl-footer {
  background: var(--brand-deep);
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 64px;
}
.gdl-footer__top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.gdl-footer__brand .gdl-logo__name { color: #fff; }
.gdl-footer__brand .gdl-logo__sub { color: #4A6A80; }
.gdl-footer__tagline { font-size: 14px; color: #4A6A80; line-height: 1.65; margin: 16px 0 20px; }
.gdl-footer__socials { display: flex; gap: 8px; }
.gdl-footer__socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #4A6A80;
  transition: background var(--transition), color var(--transition);
}
.gdl-footer__socials a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.gdl-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gdl-footer__col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.gdl-footer__col a {
  display: block;
  font-size: 13px;
  color: #4A6A80;
  margin-bottom: 9px;
  transition: color var(--transition);
}
.gdl-footer__col a:hover { color: #B5D4F4; }
.gdl-footer__bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.gdl-footer__badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.gdl-footer__badge {
  font-size: 11px;
  font-weight: 600;
  color: #3A5060;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  padding: 4px 14px;
  border-radius: 20px;
}
.gdl-footer__legal { font-size: 12px; color: #2A3D4D; }
.gdl-footer__legal a { color: #3A5060; }
.gdl-footer__legal a:hover { color: #B5D4F4; }

/* ── INNER PAGE HERO ── */
.gdl-page-hero {
  background: var(--brand-deep);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.gdl-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(24,95,165,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,95,165,.18) 1px, transparent 1px);
  background-size: 52px 52px;
}
.gdl-page-hero .gdl-container { position: relative; z-index: 1; }
.gdl-page-hero h1 { color: #fff; margin-bottom: 16px; }
.gdl-page-hero p { color: #7FAFC8; font-size: 18px; max-width: 560px; }

/* ── CONTENT AREA ── */
.gdl-content { padding: 80px 0; }
.gdl-content h2 { margin: 40px 0 16px; }
.gdl-content h3 { margin: 30px 0 12px; color: var(--brand-dark); }
.gdl-content p { margin-bottom: 20px; }
.gdl-content ul, .gdl-content ol { margin: 16px 0 24px 24px; }
.gdl-content ul { list-style: disc; }
.gdl-content ol { list-style: decimal; }
.gdl-content li { margin-bottom: 8px; color: var(--text-sec); }
.gdl-content a { color: var(--brand); text-decoration: underline; }

/* ── BLOG ── */
.gdl-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.gdl-post-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  background: var(--bg);
}
.gdl-post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.gdl-post-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-off); }
.gdl-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gdl-post-card:hover .gdl-post-card__thumb img { transform: scale(1.04); }
.gdl-post-card__body { padding: 24px; }
.gdl-post-card__cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.gdl-post-card__title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}
.gdl-post-card__title a:hover { color: var(--brand); }
.gdl-post-card__meta { font-size: 12px; color: var(--text-muted); }
.gdl-post-card__excerpt { font-size: 14px; color: var(--text-sec); line-height: 1.6; margin: 12px 0; }
.gdl-post-card__read { font-size: 13px; font-weight: 700; color: var(--brand); }

/* ── CONTACT / FORM ── */
.gdl-form-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.gdl-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.gdl-form__group { margin-bottom: 20px; }
.gdl-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 6px;
}
.gdl-form__input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.gdl-form__input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(24,95,165,.1);
}
.gdl-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gdl-form__submit {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}
.gdl-form__submit:hover { background: var(--brand-mid); transform: translateY(-1px); }

/* ── ANIMATIONS / REVEAL ── */
.gdl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.gdl-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .gdl-services__grid { grid-template-columns: repeat(2, 1fr); }
  .gdl-results__grid { grid-template-columns: 1fr; }
  .gdl-testi__grid { grid-template-columns: 1fr 1fr; }
  .gdl-footer__top { grid-template-columns: 1fr; gap: 40px; }
  .gdl-footer__cols { grid-template-columns: repeat(2, 1fr); }
  .gdl-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .gdl-section { padding: 64px 0; }
  .gdl-nav__links, .gdl-nav__actions { display: none; }
  .gdl-mobile-toggle { display: flex; }
  .gdl-hero { padding: 64px 0 52px; }
  .gdl-hero__stats { flex-direction: column; }
  .gdl-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .gdl-stat:last-child { border-bottom: none; }
  .gdl-services__grid { grid-template-columns: 1fr; }
  .gdl-process__track { grid-template-columns: 1fr; }
  .gdl-process__track::before { display: none; }
  .gdl-testi__grid { grid-template-columns: 1fr; }
  .gdl-footer__cols { grid-template-columns: 1fr 1fr; }
  .gdl-blog__grid { grid-template-columns: 1fr; }
  .gdl-form__row { grid-template-columns: 1fr; }
  .gdl-announce { font-size: 11px; height: auto; padding: 8px 16px; flex-wrap: wrap; justify-content: center; gap: 4px; }
}

@media (max-width: 480px) {
  .gdl-hero__title { font-size: 34px; }
  .gdl-hero__actions { flex-direction: column; }
  .gdl-hero__actions .gdl-btn { width: 100%; justify-content: center; }
  .gdl-footer__cols { grid-template-columns: 1fr; }
  .gdl-process-step { text-align: left; flex-direction: row; align-items: flex-start; gap: 16px; }
  .gdl-process-step__num { flex-shrink: 0; }
}

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