/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://gatemarkgroup.com
 Description:  A Gatemark Limited child theme of Hello Elementor
 Author:       Adebayo Systems
 Author URI:   https://adebayosystems.com.ng
 Template:     hello-elementor
 Version:      1.0.3
 Text Domain:  hello-elementor-child
*/

/* ═══════════════════════════════════════════════════════════
   TABLE OF CONTENTS
    1.  Brand Tokens & Elementor Variable Map
    2.  Global Base
    3.  Elementor Kit line-height Fix (root cause)
    4.  Buttons
    5.  Section Backgrounds & Eyebrow Tag
    6.  Home — Hero
    7.  Home — Pillar Cards
    8.  Home — Value Band
    9.  Home — Why Cards
   10.  Blog Cards (shared)
   11.  Blog Page — Hero
   12.  Blog Page — Filter Bar
   13.  Blog Page — Featured Post
   14.  Blog Page — Posts Grid & Layout
   15.  Blog Page — Sidebar
   16.  Newsletter Band
   17.  Single Post Page
   18.  About Page
   19.  Solutions Page
   20.  Contact Page
   21.  PHP Templates — Shared
   22.  Inner Pages
   23.  Responsive ≤ 1024px
   24.  Responsive ≤ 767px
   25.  Responsive ≤ 480px
   26.  ElementsKit Nav Overrides
   27.  Utilities
   28.  Your Custom CSS
═══════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────
   1. BRAND TOKENS & ELEMENTOR VARIABLE MAP
───────────────────────────────────────────────────────── */
:root {
  --gm-primary: #1C244B;
  --gm-secondary: #F3F5F8;
  --gm-body-text: #324A6D;
  --gm-accent: #467FF7;
  --gm-bg: #FFFFFF;
  --gm-blue-el: #C8D5DC;
  --gm-blue-light: #F9FAFD;
  --gm-font-head: 'Bricolage Grotesque', sans-serif;
  --gm-font-body: 'DM Sans', sans-serif;
  --gm-max-width: 1200px;
  --gm-radius: 14px;
  --gm-radius-lg: 20px;
  --gm-shadow: 0 4px 32px rgba(28, 36, 75, 0.08);
  --gm-shadow-lg: 0 12px 60px rgba(28, 36, 75, 0.14);

  /* Map Elementor global tokens to theme values */
  --e-global-color-primary: var(--gm-primary);
  --e-global-color-secondary: var(--gm-secondary);
  --e-global-color-text: var(--gm-body-text);
  --e-global-color-accent: var(--gm-accent);

  --e-global-typography-primary-font-family: 'Bricolage Grotesque';
  --e-global-typography-primary-font-weight: 700;
  --e-global-typography-secondary-font-family: 'Bricolage Grotesque';
  --e-global-typography-secondary-font-weight: 800;
  --e-global-typography-text-font-family: 'DM Sans';
  --e-global-typography-text-font-weight: 400;
  --e-global-typography-accent-font-family: 'DM Sans';
  --e-global-typography-accent-font-weight: 600;

  /* Line-height unit normalization */
  --e-global-typography-primary-line-height: 1.2;
  --e-global-typography-secondary-line-height: 1.1;
  --e-global-typography-text-line-height: 1.75;
  --e-global-typography-accent-line-height: 1.5;
}


/* ─────────────────────────────────────────────────────────
   2. GLOBAL BASE
───────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--gm-font-body);
  color: var(--gm-body-text);
  background-color: var(--gm-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--gm-font-head);
  color: var(--gm-primary);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

p {
  line-height: 1.75;
}

a {
  color: var(--gm-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #2f68e8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.elementor-section.elementor-section-boxed>.elementor-container,
.container,
.gm-container {
  max-width: var(--gm-max-width);
  margin: 0 auto;
  padding: 0 64px;
}

.section,
.gm-section {
  padding: 96px 0;
}

.section-light,
.gm-section-light,
.gm-bg-soft {
  background-color: var(--gm-blue-light);
}

.section-secondary,
.gm-section-secondary {
  background-color: var(--gm-secondary);
}

.gm-bg-white {
  background-color: var(--gm-bg);
}

.gm-bg-dark {
  background-color: var(--gm-primary);
}


/* ─────────────────────────────────────────────────────────
   3. ELEMENTOR KIT COMPATIBILITY & HARMONY
   Overrides the 1.2px line-height unit bug without breaking colors
───────────────────────────────────────────────────────── */
.elementor-kit-425,
[class*="elementor-kit-"] {
  --e-global-typography-primary-line-height: 1.2 !important;
  --e-global-typography-secondary-line-height: 1.1 !important;
  --e-global-typography-text-line-height: 1.75 !important;
}

.elementor-kit-425 h1,
[class*="elementor-kit-"] h1,
.elementor-kit-425 h2,
[class*="elementor-kit-"] h2,
.elementor-kit-425 h4,
[class*="elementor-kit-"] h4,
.elementor-kit-425 h5,
[class*="elementor-kit-"] h5,
.elementor-kit-425 h6,
[class*="elementor-kit-"] h6,
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--gm-font-head);
  line-height: 1.2 !important;
}

.elementor-kit-425 h3,
[class*="elementor-kit-"] h3 {
  font-family: var(--gm-font-head);
  line-height: 1.3 !important;
}

.elementor-kit-425 p,
[class*="elementor-kit-"] p,
.elementor-widget-text-editor,
.elementor-widget-text-editor p {
  font-family: var(--gm-font-body);
  line-height: 1.75 !important;
}


/* ─────────────────────────────────────────────────────────
   4. BUTTONS & SVG ICONS
   Usage:
   gm-btn-primary  solid accent
   gm-btn-outline  transparent, for light backgrounds
   gm-btn-light    semi-transparent, for dark backgrounds
   gm-btn-inline   inline link button with pill padding
───────────────────────────────────────────────────────── */
.gm-btn-primary,
.btn-primary,
.gm-btn-primary .elementor-button,
.gm-btn-primary.elementor-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background-color: var(--gm-accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 9px !important;
  font-family: var(--gm-font-body) !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  padding: 13px 28px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 18px rgba(70, 127, 247, 0.3) !important;
  transition: all 0.25s ease !important;
}

.gm-btn-primary:hover,
.btn-primary:hover,
.gm-btn-primary .elementor-button:hover,
.gm-btn-primary.elementor-button:hover {
  background-color: #2f68e8 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(70, 127, 247, 0.4) !important;
}

.gm-btn-outline,
.btn-outline,
.gm-btn-outline .elementor-button,
.gm-btn-outline.elementor-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: transparent !important;
  color: var(--gm-primary) !important;
  border: 1.5px solid var(--gm-blue-el) !important;
  border-radius: 9px !important;
  font-family: var(--gm-font-body) !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  padding: 13px 28px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.gm-btn-outline:hover,
.btn-outline:hover,
.gm-btn-outline .elementor-button:hover,
.gm-btn-outline.elementor-button:hover {
  border-color: var(--gm-accent) !important;
  color: var(--gm-accent) !important;
  background: rgba(70, 127, 247, 0.05) !important;
  transform: translateY(-2px) !important;
}

/* Outline on dark/navy sections — auto white */
.gm-hero-section .gm-btn-outline,
.gm-hero-section .btn-outline,
.gm-hero-section .gm-btn-outline .elementor-button,
.gm-hero-section .gm-btn-outline.elementor-button,
.gm-bg-dark .gm-btn-outline,
.gm-bg-dark .btn-outline,
.gm-bg-dark .gm-btn-outline .elementor-button,
.gm-bg-dark .gm-btn-outline.elementor-button {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
}

.gm-hero-section .gm-btn-outline:hover,
.gm-hero-section .btn-outline:hover,
.gm-hero-section .gm-btn-outline .elementor-button:hover,
.gm-hero-section .gm-btn-outline.elementor-button:hover,
.gm-bg-dark .gm-btn-outline:hover,
.gm-bg-dark .btn-outline:hover,
.gm-bg-dark .gm-btn-outline .elementor-button:hover,
.gm-bg-dark .gm-btn-outline.elementor-button:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
}

.gm-btn-light,
.btn-light,
.gm-btn-light .elementor-button,
.gm-btn-light.elementor-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 9px !important;
  font-family: var(--gm-font-body) !important;
  font-weight: 500 !important;
  font-size: 0.92rem !important;
  padding: 13px 28px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.gm-btn-light:hover,
.btn-light:hover,
.gm-btn-light .elementor-button:hover,
.gm-btn-light.elementor-button:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

/* SVG Icon Shared Rules */
.gm-svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
}

.gm-meta-svg {
  width: 14px;
  height: 14px;
  color: var(--gm-accent);
  margin-right: 4px;
  vertical-align: -2px;
}

.gm-btn-primary .gm-svg,
.btn-primary .gm-svg,
.gm-btn-outline .gm-svg,
.btn-outline .gm-svg,
.gm-btn-light .gm-svg,
.btn-light .gm-svg,
.gm-btn-inline .gm-svg,
.gm-form-submit .gm-svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.gm-btn-primary:hover .gm-svg-arrow,
.btn-primary:hover .gm-svg-arrow,
.gm-btn-inline:hover .gm-svg-arrow,
.gm-form-submit:hover .gm-svg-arrow {
  transform: translateX(4px);
}

.gm-partner-logo .gm-svg {
  width: 32px;
  height: 32px;
  color: var(--gm-accent);
}

.gm-adv-icon .gm-svg {
  width: 22px;
  height: 22px;
  color: var(--gm-accent);
}

.gm-contact-icon .gm-svg {
  width: 20px;
  height: 20px;
  color: var(--gm-accent);
}

.gm-pillar-card .gm-svg,
.pillar-card .gm-svg {
  width: 32px;
  height: 32px;
  color: var(--gm-accent);
  margin-bottom: 16px;
}

.gm-sol-visual-icon .gm-svg {
  width: 56px;
  height: 56px;
  color: #fff;
  opacity: 0.85;
}

.gm-blog-thumb .gm-svg,
.gm-fp-icon .gm-svg {
  width: 48px;
  height: 48px;
  color: #fff;
  opacity: 0.8;
}

.gm-rp-thumb .gm-svg {
  width: 18px;
  height: 18px;
  color: #fff;
  opacity: 0.85;
}


/* ─────────────────────────────────────────────────────────
   5. SECTION BACKGROUNDS & EYEBROW TAG
───────────────────────────────────────────────────────── */
.gm-bg-white {
  background-color: var(--gm-bg) !important;
}

.gm-bg-light {
  background-color: var(--gm-blue-light) !important;
}

.gm-bg-soft {
  background-color: var(--gm-secondary) !important;
}

.gm-bg-dark {
  background-color: var(--gm-primary) !important;
}

.gm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(70, 127, 247, 0.1);
  color: var(--gm-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(70, 127, 247, 0.2);
  margin-bottom: 20px;
  line-height: 1;
}

.gm-eyebrow-dark {
  background: rgba(70, 127, 247, 0.15);
  color: #8aaffe;
  border-color: rgba(70, 127, 247, 0.25);
}


/* ─────────────────────────────────────────────────────────
   6. HOME — HERO
───────────────────────────────────────────────────────── */
.gm-hero-section,
.hero {
  background-color: var(--gm-primary);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-geo,
.hero-glow-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-geo::before,
.hero-glow-bg::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(70, 127, 247, 0.15);
  pointer-events: none;
  z-index: 0;
}

.hero-geo::after,
.hero-glow-bg::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(70, 127, 247, 0.1);
  pointer-events: none;
  z-index: 0;
}

.hero-dots {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background-image: radial-gradient(circle, rgba(70, 127, 247, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(70, 127, 247, 0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: gm-breathe 6s ease-in-out infinite;
}

@keyframes gm-breathe {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.gm-hero-inner,
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 96px 64px 80px;
  max-width: var(--gm-max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero-left {
  animation: fadeUp 0.7s ease both;
}

.gm-hero-tag,
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(70, 127, 247, 0.15);
  border: 1px solid rgba(70, 127, 247, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #8aaffe;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.gm-hero-tag .dot,
.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gm-accent);
  box-shadow: 0 0 8px var(--gm-accent);
  animation: gm-pulse 2s infinite;
}

@keyframes gm-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero h1,
.gm-hero-section h1 {
  color: #fff;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 em,
.gm-hero-section h1 em {
  font-style: normal;
  color: var(--gm-accent);
}

.hero .lead,
.gm-hero-section .lead {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions,
.gm-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-trust,
.gm-hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-trust-label,
.gm-hero-trust-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-badges,
.gm-trust-badges {
  display: flex;
  gap: 10px;
}

.trust-badge,
.gm-trust-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
}

/* hero right: floating card mockup */
.hero-right,
.gm-hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeUp 0.7s 0.15s ease both;
  transition: all 0.3s ease;
}

.hero-card,
.gm-hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 28px;
  transition: transform 0.3s, border-color 0.3s;
}

.hero-card:hover,
.gm-hero-card:hover {
  transform: translateX(-6px);
  border-color: rgba(70, 127, 247, 0.3);
}

.hero-card-icon,
.gm-hero-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(70, 127, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.hero-card h4,
.gm-hero-card h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-card p,
.gm-hero-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.hero-card-row,
.gm-hero-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}


/* ─────────────────────────────────────────────────────────
   7. HOME — PILLAR CARDS
───────────────────────────────────────────────────────── */
.pillars-grid,
.gm-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pillar-card,
.gm-pillar-card {
  background-color: var(--gm-bg);
  border: 1px solid var(--gm-blue-el);
  border-radius: var(--gm-radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pillar-card::after,
.gm-pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gm-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.pillar-card:hover,
.gm-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gm-shadow-lg);
  border-color: rgba(70, 127, 247, 0.25);
}

.pillar-card:hover::after,
.gm-pillar-card:hover::after {
  transform: scaleX(1);
}

.pillar-icon,
.gm-pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--gm-blue-light);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border: 1px solid var(--gm-blue-el);
  transition: background 0.3s ease;
}

.pillar-card:hover .pillar-icon,
.gm-pillar-card:hover .gm-pillar-icon {
  background: rgba(70, 127, 247, 0.1);
}

.pillar-card h3,
.gm-pillar-card h3 {
  font-size: 1rem;
  color: var(--gm-primary);
  margin-bottom: 8px;
}

.pillar-card p,
.gm-pillar-card p {
  font-size: 0.85rem;
  color: var(--gm-body-text);
  line-height: 1.65;
  margin: 0;
}


/* ─────────────────────────────────────────────────────────
   8. HOME — VALUE BAND
───────────────────────────────────────────────────────── */
.value-band,
.gm-value-band {
  background-color: var(--gm-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.value-band::before,
.gm-value-band::before {
  content: '';
  position: absolute;
  left: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(70, 127, 247, 0.1);
  pointer-events: none;
}

.value-inner,
.gm-value-inner {
  max-width: var(--gm-max-width);
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  gap: 80px;
  align-items: center;
}

.value-quote,
.gm-value-quote {
  flex: 1;
}

.quote-mark,
.gm-quote-mark {
  font-family: var(--gm-font-head);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gm-accent);
  opacity: 0.4;
  margin-bottom: 16px;
}

.value-quote blockquote,
.gm-value-quote blockquote {
  font-family: var(--gm-font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
}

.value-quote blockquote em,
.gm-value-quote blockquote em {
  font-style: normal;
  color: var(--gm-accent);
}

.value-stats,
.gm-value-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 260px;
}

.v-stat,
.gm-stat-item {
  border-left: 2px solid var(--gm-accent);
  padding-left: 20px;
  margin-bottom: 0;
}

.v-stat .num,
.gm-stat-num {
  font-family: var(--gm-font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.v-stat .label,
.gm-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}


/* ─────────────────────────────────────────────────────────
   9. HOME — WHY CARDS
───────────────────────────────────────────────────────── */
.why-grid,
.gm-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-card,
.gm-why-card {
  background-color: var(--gm-bg);
  border: 1px solid var(--gm-blue-el);
  border-radius: var(--gm-radius);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  margin-bottom: 0;
}

.why-card:hover,
.gm-why-card:hover {
  box-shadow: var(--gm-shadow);
  border-color: rgba(70, 127, 247, 0.25);
}

.why-num,
.gm-why-num {
  font-family: var(--gm-font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(70, 127, 247, 0.15);
  line-height: 1;
  min-width: 44px;
}

.why-card h3,
.gm-why-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--gm-primary);
}

.why-card p,
.gm-why-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gm-body-text);
  margin: 0;
}


/* ─────────────────────────────────────────────────────────
   10. BLOG CARDS  (shared: home preview, blog page, related)
───────────────────────────────────────────────────────── */
.gm-blog-preview-grid,
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.gm-blog-section-header,
.blog-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0;
}

.gm-blog-card,
.blog-card {
  background: var(--gm-bg);
  border: 1px solid var(--gm-blue-el);
  border-radius: var(--gm-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.gm-blog-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gm-shadow-lg);
  border-color: rgba(70, 127, 247, 0.25);
}

/* Thumbnail — gradient + dot overlay */
.gm-blog-thumb,
.blog-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, #0f1f4a 0%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.thumb-bg-1,
.gm-blog-card:nth-child(3n+1) .gm-blog-thumb:not(.gm-blog-thumb--image),
.blog-card:nth-child(3n+1) .blog-card-thumb:not(.gm-blog-thumb--image) {
  background: linear-gradient(135deg, #0f1f4a 0%, #1e3a8a 100%);
}

.thumb-bg-2,
.gm-blog-card:nth-child(3n+2) .gm-blog-thumb:not(.gm-blog-thumb--image),
.blog-card:nth-child(3n+2) .blog-card-thumb:not(.gm-blog-thumb--image) {
  background: linear-gradient(135deg, #0a2540 0%, #0d4f6e 100%);
}

.thumb-bg-3,
.gm-blog-card:nth-child(3n) .gm-blog-thumb:not(.gm-blog-thumb--image),
.blog-card:nth-child(3n) .blog-card-thumb:not(.gm-blog-thumb--image) {
  background: linear-gradient(135deg, #1a1040 0%, #2a3875 100%);
}

.gm-blog-thumb::before,
.blog-card-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(70, 127, 247, 0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.gm-blog-thumb-icon,
.blog-card-thumb-icon,
.gm-blog-thumb>span {
  font-size: 3rem;
  position: relative;
  z-index: 2;
  opacity: 0.7;
}

/* Thumbnail with actual image */
.gm-blog-thumb--image {
  height: 180px;
  overflow: hidden;
  background: none;
}

.gm-blog-thumb--image::before {
  display: none;
}

.gm-blog-thumb--image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gm-blog-card:hover .gm-blog-thumb--image img,
.blog-card:hover .gm-blog-thumb--image img {
  transform: scale(1.04);
}

/* Thumb link wrapper */
.gm-card-thumb-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

/* Card body */
.gm-blog-card-body,
.blog-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Category badge */
.gm-post-cat-badge,
.blog-cat {
  display: inline-block;
  align-self: flex-start;
  background: rgba(70, 127, 247, 0.1);
  color: var(--gm-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-decoration: none;
}

/* Title link */
.gm-card-title-link,
.blog-card h3 {
  font-family: var(--gm-font-head);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--gm-primary);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.gm-card-title-link {
  display: block;
}

.gm-card-title-link:hover,
.gm-blog-card:hover .gm-card-title-link,
.blog-card:hover h3 {
  color: var(--gm-accent);
}

/* Excerpt */
.gm-blog-card-body>p,
.blog-card p {
  font-size: 0.82rem;
  color: var(--gm-body-text);
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Meta row */
.gm-blog-card-meta,
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gm-secondary);
  margin-top: auto;
}

.gm-blog-card-meta>span,
.blog-date {
  font-size: 0.75rem;
  color: var(--gm-body-text);
  opacity: 0.6;
}

/* Read link */
.gm-read-more,
.blog-read {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gm-accent);
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.gm-read-more:hover,
.blog-read:hover,
.gm-blog-card:hover .gm-read-more,
.blog-card:hover .blog-read {
  color: #2f68e8;
}


/* ─────────────────────────────────────────────────────────
   11. BLOG PAGE — HERO
───────────────────────────────────────────────────────── */
.gm-blog-hero,
.blog-page-hero {
  background: linear-gradient(135deg, var(--gm-primary) 0%, #2a3875 100%);
  padding: 80px 64px 64px;
  position: relative;
  overflow: hidden;
}

.gm-blog-hero::before,
.blog-page-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(70, 127, 247, 0.1);
  pointer-events: none;
}

.gm-blog-hero h1,
.blog-page-hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

.gm-blog-hero .gm-hero-lead,
.blog-page-hero .lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
}


/* ─────────────────────────────────────────────────────────
   12. BLOG PAGE — FILTER BAR
───────────────────────────────────────────────────────── */
.gm-filter-bar,
.blog-filter-bar {
  background: var(--gm-secondary);
  border-bottom: 1px solid var(--gm-blue-el);
  padding: 20px 64px;
}

.gm-filter-bar-inner {
  max-width: var(--gm-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gm-filter-label,
.filter-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gm-body-text);
  margin-right: 8px;
}

.gm-filter-chip,
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gm-body-text);
  background: var(--gm-bg);
  border: 1.5px solid var(--gm-blue-el);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.gm-filter-chip:hover,
.filter-chip:hover,
.gm-filter-chip.active,
.filter-chip.active {
  background: var(--gm-accent);
  color: #fff;
  border-color: var(--gm-accent);
}


/* ─────────────────────────────────────────────────────────
   13. BLOG PAGE — FEATURED POST
───────────────────────────────────────────────────────── */
.gm-featured-post,
.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--gm-blue-el);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 56px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  background: var(--gm-bg);
}

.gm-featured-post:hover,
.featured-post:hover {
  box-shadow: var(--gm-shadow-lg);
  border-color: rgba(70, 127, 247, 0.25);
}

.gm-fp-visual,
.featured-post-visual {
  background: linear-gradient(145deg, #0f1f4a 0%, #1e3a8a 60%, #0d4f6e 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gm-fp-visual::before,
.featured-post-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(70, 127, 247, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.gm-fp-visual::after,
.featured-post-visual::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 127, 247, 0.2), transparent 70%);
  pointer-events: none;
}

.gm-fp-visual-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.gm-fp-icon,
.featured-post-icon {
  font-size: 5rem;
  position: relative;
  z-index: 2;
  opacity: 0.55;
}

.gm-fp-badge,
.fp-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  background: var(--gm-accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.gm-fp-body,
.featured-post-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gm-bg);
}

.gm-fp-body .gm-post-cat-badge,
.featured-post-body .blog-cat {
  margin-bottom: 16px;
}

.gm-fp-body h2,
.featured-post-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--gm-primary);
}

.gm-fp-title-link {
  color: var(--gm-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.gm-fp-title-link:hover,
.gm-featured-post:hover .gm-fp-title-link {
  color: var(--gm-accent);
}

.gm-fp-body>p,
.featured-post-body p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gm-body-text);
  margin-bottom: 28px;
}

.gm-fp-meta,
.fp-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gm-body-text);
  opacity: 0.7;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.gm-fp-meta span,
.fp-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.gm-fp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gm-accent);
  color: #fff;
  font-family: var(--gm-font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: 9px;
  text-decoration: none;
  align-self: flex-start;
  box-shadow: 0 4px 18px rgba(70, 127, 247, 0.3);
  transition: background 0.2s ease, transform 0.2s ease;
}

.gm-fp-cta:hover {
  background: #2f68e8;
  color: #fff;
  transform: translateY(-1px);
}


/* ─────────────────────────────────────────────────────────
   14. BLOG PAGE — POSTS GRID & LAYOUT
───────────────────────────────────────────────────────── */

/* Outer: 2/3 content + 1/3 sidebar */
.gm-blog-list-section,
.blog-list-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Posts grid: 2 columns within the content area */
.gm-posts-grid,
.posts-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
}

/* Pagination */
.gm-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.gm-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  border: 1px solid var(--gm-blue-el);
  background: var(--gm-bg);
  color: var(--gm-body-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gm-page-btn:hover,
.gm-page-btn.active {
  background: var(--gm-accent);
  border-color: var(--gm-accent);
  color: #fff;
}

.gm-no-posts {
  padding: 60px 0;
  text-align: center;
}

.gm-no-posts p {
  font-size: 1rem;
  color: var(--gm-body-text);
  margin-bottom: 16px;
}

.gm-no-posts a {
  color: var(--gm-accent);
  font-weight: 600;
}


/* ─────────────────────────────────────────────────────────
   15. BLOG PAGE — SIDEBAR
───────────────────────────────────────────────────────── */
.gm-blog-sidebar,
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.gm-sidebar-widget,
.sidebar-widget {
  background: var(--gm-blue-light);
  border: 1px solid var(--gm-blue-el);
  border-radius: var(--gm-radius);
  padding: 24px;
  margin-bottom: 24px;
}

.gm-sidebar-widget h4,
.blog-sidebar h4 {
  font-family: var(--gm-font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gm-primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gm-accent);
  display: inline-block;
}

.gm-sidebar-dark {
  background: var(--gm-primary);
  border-color: transparent;
}

.gm-sidebar-dark h4 {
  color: #fff;
  border-bottom-color: rgba(70, 127, 247, 0.4);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
}

.gm-topic-tags,
.sidebar-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.gm-topic-tag,
.topic-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--gm-bg);
  border: 1px solid var(--gm-blue-el);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gm-body-text);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gm-topic-tag:hover,
.topic-tag:hover,
.gm-topic-tag.active,
.topic-tag.active {
  border-color: var(--gm-accent);
  color: var(--gm-accent);
}

.gm-tag-count {
  font-size: 0.68rem;
  opacity: 0.5;
  margin-left: 3px;
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.gm-recent-post,
.recent-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.gm-recent-post:hover,
.recent-post-item:hover {
  background: var(--gm-bg);
}

.gm-rp-thumb,
.rp-thumb {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f1f4a, #1e3a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.rp-bg-1,
.gm-recent-post:nth-child(3n+1) .gm-rp-thumb,
.recent-post-item:nth-child(3n+1) .rp-thumb {
  background: linear-gradient(135deg, #0f1f4a, #1e3a8a);
}

.rp-bg-2,
.gm-recent-post:nth-child(3n+2) .gm-rp-thumb,
.recent-post-item:nth-child(3n+2) .rp-thumb {
  background: linear-gradient(135deg, #0a2540, #0d4f6e);
}

.rp-bg-3,
.gm-recent-post:nth-child(3n) .gm-rp-thumb,
.recent-post-item:nth-child(3n) .rp-thumb {
  background: linear-gradient(135deg, #1a1040, #2a3875);
}

.gm-rp-info h5,
.rp-info h5 {
  font-size: 0.8rem;
  color: var(--gm-primary);
  line-height: 1.4;
  margin-bottom: 3px;
  font-weight: 600;
}

.gm-rp-info span,
.rp-info span {
  font-size: 0.7rem;
  color: var(--gm-body-text);
  opacity: 0.6;
}

.gm-sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gm-accent);
  color: #fff;
  font-family: var(--gm-font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 11px 20px;
  border-radius: 9px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(70, 127, 247, 0.3);
  transition: background 0.2s ease, transform 0.2s ease;
}

.gm-sidebar-cta:hover {
  background: #2f68e8;
  color: #fff;
  transform: translateY(-1px);
}


/* ─────────────────────────────────────────────────────────
   16. NEWSLETTER BAND
───────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────
   16. NEWSLETTER BAND (FLUID & FULLY RESPONSIVE)
───────────────────────────────────────────────────────── */
.gm-newsletter-outer {
  padding: 0 64px 96px;
  background-color: transparent;
  width: 100%;
  box-sizing: border-box;
}

.gm-newsletter-outer>.gm-container,
.gm-newsletter-outer>.container,
.gm-newsletter-outer>div {
  max-width: var(--gm-max-width);
  margin: 0 auto;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.gm-newsletter-band,
.newsletter-band {
  background: var(--gm-primary);
  border-radius: 20px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

.gm-newsletter-band::before,
.newsletter-band::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 127, 247, 0.15), transparent 70%);
  pointer-events: none;
}

.gm-newsletter-text {
  flex: 1;
  max-width: 520px;
}

.gm-newsletter-text h3,
.newsletter-band h3 {
  font-family: var(--gm-font-head);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.gm-newsletter-text p,
.newsletter-band p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.gm-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  max-width: 440px;
  width: 100%;
  flex-shrink: 0;
}

.gm-newsletter-input,
.newsletter-input {
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: stretch;
}

.gm-newsletter-input input,
.newsletter-input input {
  flex: 1;
  min-width: 0;
  padding: 13px 18px;
  border-radius: 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: var(--gm-font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.gm-newsletter-input input::placeholder,
.newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.gm-newsletter-input input:focus,
.newsletter-input input:focus {
  border-color: var(--gm-accent);
  background: rgba(255, 255, 255, 0.12);
}

.gm-newsletter-btn,
.gm-newsletter-band button,
.newsletter-band button,
.newsletter-input .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gm-accent);
  color: #ffffff !important;
  font-family: var(--gm-font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 13px 24px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(70, 127, 247, 0.3);
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  box-sizing: border-box;
}

.gm-newsletter-btn:hover,
.gm-newsletter-band button:hover,
.newsletter-band button:hover,
.newsletter-input .btn-primary:hover {
  background: #2f68e8;
  transform: translateY(-1px);
}


/* ─────────────────────────────────────────────────────────
   17. SINGLE POST PAGE
───────────────────────────────────────────────────────── */
.single-post .entry-header,
.single-post .post-thumbnail,
.single-post .entry-footer {
  display: none;
}

.gm-post-hero {
  background: linear-gradient(135deg, var(--gm-primary) 0%, #2a3875 100%);
  padding: 80px 64px 64px;
  position: relative;
  overflow: hidden;
}

.gm-post-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 127, 247, 0.15), transparent 70%);
  pointer-events: none;
}

.gm-post-hero-inner {
  max-width: var(--gm-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gm-breadcrumb,
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.gm-breadcrumb a,
.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.gm-breadcrumb a:hover,
.breadcrumb a:hover {
  color: #ffffff;
}

.gm-breadcrumb span.sep,
.breadcrumb span.sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 4px;
}

.gm-breadcrumb span:last-child,
.breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.75);
}

.gm-post-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.gm-post-hero-cat {
  display: inline-flex;
  align-items: center;
  background: rgba(70, 127, 247, 0.2);
  border: 1px solid rgba(70, 127, 247, 0.35);
  color: #8aaffe;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.gm-post-hero-cat:hover {
  background: rgba(70, 127, 247, 0.35);
  color: #8aaffe;
}

.gm-post-hero-date,
.gm-post-hero-read {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.gm-post-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.gm-post-hero-byline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gm-post-hero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(70, 127, 247, 0.2);
  border: 1.5px solid rgba(70, 127, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  overflow: hidden;
  flex-shrink: 0;
}

.gm-post-hero-avatar img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.gm-post-hero-avatar-fallback {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.gm-post-hero-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.gm-post-hero-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.gm-post-body {
  max-width: var(--gm-max-width);
  margin: 0 auto;
  padding: 72px 64px 96px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Post Featured Image */
.gm-post-featured-image {
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gm-border);
  background: var(--gm-bg-soft);
}

.gm-post-featured-image img,
.gm-post-hero-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.gm-post-img-caption {
  font-size: 0.82rem;
  color: var(--gm-muted);
  padding: 10px 18px;
  background: var(--gm-bg-soft);
  text-align: center;
  font-style: italic;
  border-top: 1px solid var(--gm-border);
}

/* Article typography */
.entry-content {
  font-family: var(--gm-font-body);
  font-size: 1.05rem;
  color: var(--gm-body-text);
  line-height: 1.85;
}

.entry-content h2 {
  font-family: var(--gm-font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gm-primary);
  letter-spacing: -0.3px;
  margin: 52px 0 20px;
  padding-top: 52px;
  border-top: 1px solid var(--gm-secondary);
  line-height: 1.2;
}

.entry-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.entry-content h3 {
  font-family: var(--gm-font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gm-primary);
  margin: 36px 0 14px;
  line-height: 1.3;
}

.entry-content p {
  margin-bottom: 24px;
}

.entry-content a {
  color: var(--gm-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(70, 127, 247, 0.3);
  transition: text-decoration-color 0.2s ease;
}

.entry-content a:hover {
  text-decoration-color: var(--gm-accent);
}

.entry-content ul,
.entry-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.entry-content li {
  margin-bottom: 10px;
  line-height: 1.75;
}

.entry-content ul li::marker {
  color: var(--gm-accent);
}

.entry-content blockquote {
  margin: 40px 0;
  padding: 28px 32px;
  background: var(--gm-blue-light);
  border-left: 3px solid var(--gm-accent);
  border-radius: 0 var(--gm-radius) var(--gm-radius) 0;
  position: relative;
}

.entry-content blockquote p {
  font-family: var(--gm-font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gm-primary);
  line-height: 1.5;
  margin: 0;
}

.entry-content blockquote::before {
  content: '"';
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: var(--gm-font-head);
  font-size: 4rem;
  color: var(--gm-accent);
  opacity: 0.3;
  line-height: 1;
}

.entry-content img {
  border-radius: var(--gm-radius);
  width: 100%;
  height: auto;
  margin: 8px 0 28px;
  border: 1px solid var(--gm-blue-el);
}

/* Post tags */
.gm-post-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 40px;
  margin-top: 48px;
  border-top: 1px solid var(--gm-secondary);
}

.gm-post-tag {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--gm-blue-el);
  background: var(--gm-blue-light);
  font-size: 0.75rem;
  color: var(--gm-body-text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.gm-post-tag:hover {
  background: var(--gm-accent);
  border-color: var(--gm-accent);
  color: #fff;
}

/* Related posts */
.gm-related-posts {
  background: var(--gm-secondary);
  padding: 80px 64px;
}

.gm-related-posts-inner {
  max-width: var(--gm-max-width);
  margin: 0 auto;
}

.gm-related-heading {
  font-family: var(--gm-font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gm-primary);
  margin: 8px 0 40px;
  line-height: 1.2;
}

.gm-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


/* ─────────────────────────────────────────────────────────
   18. ABOUT PAGE
───────────────────────────────────────────────────────── */
.gm-page-hero {
  background: linear-gradient(135deg, var(--gm-primary) 0%, #2a3875 100%);
  padding: 96px 64px 80px;
  position: relative;
  overflow: hidden;
}

.gm-page-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(70, 127, 247, 0.1);
  pointer-events: none;
}

.gm-page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.gm-page-hero-inner {
  max-width: var(--gm-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gm-hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 680px;
  margin: 0;
  font-weight: 300;
}

.gm-identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  margin-bottom: 64px;
}

.gm-identity-visual {
  background: linear-gradient(145deg, var(--gm-primary) 0%, #172454 100%);
  border: 1px solid rgba(70, 127, 247, 0.18);
  box-shadow: var(--gm-shadow-lg);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gm-identity-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(70, 127, 247, 0.25), transparent 70%);
  pointer-events: none;
}

.gm-id-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.gm-id-badge {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 24px 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gm-id-badge h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 8px;
  line-height: 1.25;
}

.gm-id-badge p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.gm-advantage-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.gm-adv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gm-adv-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gm-blue-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid var(--gm-blue-el);
  flex-shrink: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gm-adv-item:hover .gm-adv-icon {
  border-color: rgba(70, 127, 247, 0.35);
  transform: translateY(-2px);
}

.gm-adv-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--gm-primary);
  margin-bottom: 4px;
  line-height: 1.35;
}

.gm-adv-item p {
  font-size: 0.85rem;
  color: var(--gm-body-text);
  line-height: 1.65;
  margin: 0;
}

.gm-tagline-banner {
  background: var(--gm-blue-light);
  border: 1px solid var(--gm-blue-el);
  border-radius: var(--gm-radius);
  padding: 36px 48px;
  text-align: center;
  margin-top: 48px;
}

.gm-tagline-banner p {
  font-family: var(--gm-font-head);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--gm-primary);
  letter-spacing: -0.3px;
  margin: 0;
  line-height: 1.5;
}

.gm-tagline-banner span {
  color: var(--gm-accent);
}


/* ─────────────────────────────────────────────────────────
   19. SOLUTIONS PAGE
───────────────────────────────────────────────────────── */
.gm-solutions-nav,
.solutions-nav {
  display: flex;
  gap: 8px;
  background: var(--gm-secondary);
  border-bottom: 1px solid var(--gm-blue-el);
  padding: 0 64px;
  overflow-x: auto;
}

.gm-sol-tab,
.sol-tab {
  padding: 16px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gm-body-text);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.gm-sol-tab:hover,
.sol-tab:hover {
  color: var(--gm-primary);
}

.gm-sol-tab.active,
.sol-tab.active {
  color: var(--gm-accent);
  border-bottom-color: var(--gm-accent);
  font-weight: 600;
}

.gm-solution-block,
.solution-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--gm-secondary);
}

.gm-solution-block:last-child,
.solution-block:last-child {
  border-bottom: none;
}

.gm-solution-block.gm-sol-reverse,
.solution-block.reverse {
  direction: rtl;
}

.gm-solution-block.gm-sol-reverse>*,
.solution-block.reverse>* {
  direction: ltr;
}

.gm-sol-num,
.sol-num {
  font-family: var(--gm-font-head);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(70, 127, 247, 0.08);
  line-height: 1;
  margin-bottom: -20px;
}

.gm-sol-tag,
.sol-tag {
  display: inline-block;
  background: rgba(70, 127, 247, 0.1);
  color: var(--gm-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.gm-sol-visual,
.sol-visual {
  background: linear-gradient(145deg, var(--gm-primary), #1e3a8a);
  border-radius: 20px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gm-sol-visual-dots,
.sol-visual-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}

.gm-sol-visual-icon,
.sol-visual-icon {
  position: relative;
  z-index: 2;
  font-size: 5rem;
  opacity: 0.6;
}

.gm-sol-features,
.sol-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gm-sol-feat,
.sol-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--gm-blue-light);
  border-radius: 10px;
  border: 1px solid var(--gm-blue-el);
  transition: border-color 0.2s ease;
}

.gm-sol-feat:hover,
.sol-feat:hover {
  border-color: rgba(70, 127, 247, 0.3);
}

.gm-feat-dot,
.feat-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--gm-accent);
  margin-top: 7px;
  flex-shrink: 0;
}

.gm-sol-feat p,
.sol-feat p {
  font-size: 0.85rem;
  color: var(--gm-body-text);
  line-height: 1.55;
  margin: 0;
}


/* ─────────────────────────────────────────────────────────
   20. CONTACT PAGE
───────────────────────────────────────────────────────── */
.gm-contact-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.gm-contact-info h2,
.contact-info h2 {
  margin-bottom: 16px;
}

.gm-contact-details,
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.gm-contact-item,
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gm-contact-icon,
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gm-blue-light);
  border: 1px solid var(--gm-blue-el);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.gm-contact-item h4,
.contact-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gm-body-text);
  margin-bottom: 4px;
  font-weight: 500;
}

.gm-contact-item p,
.contact-item p {
  font-size: 0.92rem;
  color: var(--gm-primary);
  font-weight: 500;
  margin: 0;
}

.gm-contact-item a,
.contact-item a {
  color: var(--gm-accent);
  text-decoration: none;
}

.gm-contact-next,
.contact-next {
  background: var(--gm-blue-light);
  border: 1px solid var(--gm-blue-el);
  border-radius: var(--gm-radius);
  padding: 28px 24px;
}

.gm-contact-next h4,
.contact-next h4 {
  font-size: 0.95rem;
  color: var(--gm-primary);
  margin-bottom: 8px;
}

.gm-contact-next p,
.contact-next p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--gm-body-text);
  margin: 0;
}

.gm-contact-form-wrap,
.contact-form {
  background: var(--gm-bg);
  border: 1px solid var(--gm-blue-el);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--gm-shadow);
}

.gm-contact-form-wrap h3,
.contact-form h3 {
  font-size: 1.4rem;
  color: var(--gm-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.gm-form-sub,
.contact-form .sub {
  font-size: 0.85rem;
  color: var(--gm-body-text);
  margin-bottom: 32px;
}

.gm-form-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 9px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #dc2626;
  margin-bottom: 20px;
}

.gm-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gm-form-row,
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gm-form-group,
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.gm-form-group label,
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gm-primary);
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

.gm-required {
  color: var(--gm-accent);
}

.gm-form-group input,
.gm-form-group select,
.gm-form-group textarea,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gm-blue-el);
  border-radius: 9px;
  font-family: var(--gm-font-body);
  font-size: 0.88rem;
  color: var(--gm-primary);
  background: var(--gm-blue-light);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.gm-form-group input:focus,
.gm-form-group select:focus,
.gm-form-group textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gm-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(70, 127, 247, 0.1);
}

.gm-form-group input::placeholder,
.gm-form-group textarea::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(50, 74, 109, 0.4);
}

.gm-form-group textarea,
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.gm-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 28px;
  background: var(--gm-accent);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-family: var(--gm-font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(70, 127, 247, 0.3);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gm-form-submit:hover {
  background: #2f68e8;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(70, 127, 247, 0.4);
}

.gm-form-success {
  text-align: center;
  padding: 40px 20px;
}

.gm-form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.gm-form-success h3 {
  font-size: 1.4rem;
  color: var(--gm-primary);
  margin-bottom: 8px;
}

.gm-form-success p {
  font-size: 0.92rem;
  color: var(--gm-body-text);
  margin-bottom: 24px;
}

.gm-btn-inline {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--gm-accent);
  color: #fff;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--gm-font-body);
  transition: background 0.2s ease;
}

.gm-btn-inline:hover {
  background: #2f68e8;
  color: #fff;
}


/* ─────────────────────────────────────────────────────────
   21. PHP TEMPLATES — SHARED
───────────────────────────────────────────────────────── */
.gm-container,
.container {
  max-width: var(--gm-max-width);
  margin: 0 auto;
  padding: 0 64px;
}

.gm-section,
.section {
  padding: 96px 0;
}

.gm-lead,
.lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gm-body-text);
  line-height: 1.75;
  max-width: 600px;
}


/* ─────────────────────────────────────────────────────────
   22. INNER PAGES & APPROACH
───────────────────────────────────────────────────────── */
/* Approach process steps */
.gm-approach-steps,
.approach-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.gm-step,
.step-card {
  background: var(--gm-bg);
  border: 1px solid var(--gm-blue-el);
  border-radius: var(--gm-radius);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.gm-step:hover,
.step-card:hover {
  box-shadow: var(--gm-shadow);
  border-color: rgba(70, 127, 247, 0.25);
}

.gm-step-num {
  font-family: var(--gm-font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(70, 127, 247, 0.15);
  line-height: 1;
  min-width: 44px;
}

.gm-step h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--gm-primary);
}

.gm-step p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gm-body-text);
  margin: 0;
}

.gm-people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.gm-person-card {
  background: var(--gm-bg);
  border: 1px solid var(--gm-blue-el);
  border-radius: var(--gm-radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gm-person-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gm-shadow-lg);
}

.gm-person-photo {
  height: 200px;
  background: linear-gradient(145deg, var(--gm-primary), #1e3a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.gm-person-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(70, 127, 247, 0.1) 1px, transparent 1px);
  background-size: 18px 18px;
}

.gm-person-body {
  padding: 24px;
}

.gm-person-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gm-primary);
  margin-bottom: 4px;
}

.gm-person-role {
  font-size: 0.78rem;
  color: var(--gm-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.gm-person-bio {
  font-size: 0.83rem;
  color: var(--gm-body-text);
  line-height: 1.65;
}

/* Advantage List (shared: about, partnership) */
.gm-advantage-list,
.advantage-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 12px;
}

.gm-adv-item,
.adv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gm-adv-icon,
.adv-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gm-blue-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--gm-blue-el);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.gm-adv-item:hover .gm-adv-icon,
.adv-item:hover .adv-icon {
  background: rgba(70, 127, 247, 0.1);
  border-color: rgba(70, 127, 247, 0.3);
}

.gm-adv-item h4,
.adv-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gm-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.gm-adv-item p,
.adv-item p {
  font-size: 0.83rem;
  color: var(--gm-body-text);
  line-height: 1.65;
  margin: 0;
}

/* Tagline Banner (shared: about, partners) */
.gm-tagline-banner,
.tagline-banner {
  background: var(--gm-blue-light);
  border: 1px solid var(--gm-blue-el);
  border-radius: var(--gm-radius);
  padding: 40px 48px;
  text-align: center;
  margin-top: 64px;
}

.gm-tagline-banner p,
.tagline-banner p {
  font-family: var(--gm-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gm-primary);
  letter-spacing: -0.3px;
  margin: 0;
}

.gm-tagline-banner span,
.tagline-banner span {
  color: var(--gm-accent);
}

/* Partners Grid & Cards */
.gm-partners-grid,
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.gm-partner-card,
.partner-card {
  background: var(--gm-bg);
  border: 1px solid var(--gm-blue-el);
  border-radius: var(--gm-radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.gm-partner-card:hover,
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gm-shadow-lg);
  border-color: rgba(70, 127, 247, 0.25);
}

.gm-partner-logo,
.partner-logo {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: var(--gm-blue-light);
  border: 1px solid var(--gm-blue-el);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.gm-partner-card:hover .gm-partner-logo,
.partner-card:hover .partner-logo {
  background: rgba(70, 127, 247, 0.08);
  border-color: rgba(70, 127, 247, 0.3);
  transform: scale(1.08);
}

.gm-partner-name,
.partner-name {
  font-family: var(--gm-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gm-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.gm-partner-tier,
.partner-tier {
  display: inline-block;
  background: rgba(70, 127, 247, 0.1);
  color: var(--gm-accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.gm-partner-card p,
.partner-card p {
  font-size: 0.83rem;
  color: var(--gm-body-text);
  line-height: 1.65;
  margin: 0;
}

/* Partner Benefits Grid */
.gm-partners-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gm-jobs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.gm-job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--gm-bg);
  border: 1px solid var(--gm-blue-el);
  border-radius: var(--gm-radius);
  padding: 24px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gm-job-card:hover {
  border-color: rgba(70, 127, 247, 0.3);
  box-shadow: var(--gm-shadow);
}

.gm-job-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gm-primary);
  margin-bottom: 6px;
}

.gm-job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gm-job-tag {
  font-size: 0.75rem;
  color: var(--gm-body-text);
  opacity: 0.7;
}

.gm-job-tag::before {
  content: '• ';
  color: var(--gm-accent);
}

.gm-legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 64px 96px;
}

.gm-legal-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gm-primary);
  margin: 48px 0 12px;
  padding-top: 48px;
  border-top: 1px solid var(--gm-secondary);
  line-height: 1.2;
}

.gm-legal-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.gm-legal-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gm-body-text);
  margin-bottom: 16px;
}

.gm-legal-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.gm-legal-body li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gm-body-text);
  margin-bottom: 8px;
}

.gm-legal-body strong {
  color: var(--gm-primary);
  font-weight: 600;
}

.gm-legal-last-updated {
  font-size: 0.8rem;
  color: var(--gm-body-text);
  opacity: 0.55;
  margin-bottom: 48px;
}

.gm-page-content {
  max-width: 780px;
}

.gm-page-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--gm-body-text);
}

.gm-page-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gm-primary);
  margin: 48px 0 16px;
  line-height: 1.2;
}

.gm-page-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gm-primary);
  margin: 32px 0 12px;
  line-height: 1.3;
}

.gm-page-content ul {
  padding-left: 0;
  margin-bottom: 20px;
  list-style: none;
}

.gm-page-content ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gm-body-text);
}

.gm-page-content ul li::before {
  content: '→';
  color: var(--gm-accent);
  font-weight: 700;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────────────────
   23. RESPONSIVE — TABLET  ≤ 1024px
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  .gm-container,
  .container {
    padding: 0 32px;
  }

  .gm-section,
  .section {
    padding: 72px 0;
  }

  .gm-legal-body {
    padding: 56px 32px 72px;
  }

  /* Hero */
  .hero-inner,
  .gm-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right,
  .gm-hero-right {
    display: none !important;
  }

  .hero-left,
  .gm-hero-left {
    width: 100% !important;
  }

  /* Pillars */
  .pillars-grid,
  .gm-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Value band */
  .value-inner,
  .gm-value-inner {
    flex-direction: column;
    gap: 40px;
  }

  /* Heroes */
  .gm-blog-hero {
    padding: 64px 32px 48px;
  }

  .gm-page-hero {
    padding: 72px 32px 56px;
  }

  .gm-post-hero {
    padding: 64px 32px 48px;
  }

  /* Filter */
  .gm-filter-bar,
  .blog-filter-bar {
    padding: 16px 32px;
  }

  /* Featured post */
  .gm-featured-post,
  .featured-post {
    grid-template-columns: 1fr;
  }

  .gm-fp-visual,
  .featured-post-visual {
    min-height: 220px;
  }

  .gm-fp-body,
  .featured-post-body {
    padding: 32px 32px;
  }

  /* Blog list */
  .gm-blog-list-section {
    grid-template-columns: 1fr;
  }

  .gm-blog-sidebar {
    position: static;
  }

  /* Newsletter */
  .gm-newsletter-band,
  .newsletter-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 40px 36px;
  }

  .gm-newsletter-input,
  .newsletter-input {
    max-width: 100%;
    width: 100%;
  }

  .gm-newsletter-outer {
    padding: 0 32px 72px;
  }

  /* Post */
  .gm-post-body {
    grid-template-columns: 1fr;
    padding: 56px 32px 72px;
    gap: 48px;
  }

  .gm-related-posts {
    padding: 64px 32px;
  }

  .gm-related-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* About */
  .gm-identity-grid,
  .identity-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gm-identity-visual,
  .identity-visual {
    min-height: 260px;
  }

  /* Solutions */
  .gm-solution-block,
  .solution-block {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr !important;
    padding: 56px 0;
  }

  .gm-sol-visual,
  .sol-visual {
    min-height: 220px;
  }

  .gm-sol-num,
  .sol-num {
    font-size: 3.5rem;
  }

  .gm-solutions-nav,
  .solutions-nav {
    padding: 0 32px;
  }

  /* Contact */
  .gm-contact-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Inner pages */
  .gm-approach-steps,
  .approach-steps {
    grid-template-columns: 1fr;
  }

  .gm-people-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gm-partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gm-partners-benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Newsletter tablet layout */
  .gm-newsletter-outer {
    padding: 0 32px 64px;
  }

  .gm-newsletter-band,
  .newsletter-band {
    padding: 36px 32px;
    gap: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .gm-newsletter-text,
  .gm-newsletter-form {
    max-width: 100%;
    width: 100%;
  }
}


/* ─────────────────────────────────────────────────────────
   24. RESPONSIVE — MOBILE  ≤ 767px
───────────────────────────────────────────────────────── */
@media (max-width: 767px) {

  .gm-container,
  .container {
    padding: 0 20px;
  }

  .gm-section,
  .section {
    padding: 56px 0;
  }

  .gm-legal-body {
    padding: 40px 20px 56px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  /* HOME: Hero */
  .hero,
  .gm-hero-section {
    min-height: auto;
  }

  .hero-inner,
  .gm-hero-inner {
    padding: 80px 20px 52px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero h1,
  .gm-hero-section h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .hero .lead,
  .gm-hero-section .lead {
    font-size: 0.93rem;
  }

  .hero-actions,
  .gm-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .gm-btn-primary,
  .hero-actions .btn-primary,
  .hero-actions .gm-btn-light,
  .hero-actions .btn-light {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-trust,
  .gm-hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .trust-badges,
  .gm-trust-badges {
    flex-wrap: wrap;
  }

  /* HOME: Pillars */
  .pillars-grid,
  .gm-pillars-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }

  .pillar-card,
  .gm-pillar-card {
    padding: 24px 20px;
  }

  /* HOME: Value band */
  .value-band,
  .gm-value-band {
    padding: 56px 0;
  }

  .value-inner,
  .gm-value-inner {
    padding: 0 20px;
  }

  .value-quote blockquote,
  .gm-value-quote blockquote {
    font-size: 1.2rem;
  }

  .value-stats,
  .gm-value-stats {
    flex-direction: column;
    gap: 20px;
  }

  /* HOME: Why */
  .why-grid,
  .gm-why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }

  .why-card,
  .gm-why-card {
    flex-direction: column;
    gap: 6px;
    padding: 24px 20px;
  }

  .why-num,
  .gm-why-num {
    font-size: 1.8rem;
  }

  /* HOME: Blog preview */
  .blog-section-header,
  .gm-blog-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .blog-preview-grid,
  .gm-blog-preview-grid {
    grid-template-columns: 1fr;
  }

  /* Heroes */
  .gm-blog-hero {
    padding: 60px 20px 44px;
  }

  .gm-page-hero {
    padding: 60px 20px 44px;
  }

  .gm-post-hero {
    padding: 56px 20px 40px;
  }

  /* Filter — horizontal scroll */
  .gm-filter-bar,
  .blog-filter-bar {
    padding: 12px 20px;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .gm-filter-bar::-webkit-scrollbar,
  .blog-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .gm-filter-chip,
  .filter-chip {
    white-space: nowrap;
    font-size: 0.74rem;
  }

  /* Featured post */
  .gm-featured-post,
  .featured-post {
    border-radius: 14px;
  }

  .gm-fp-visual,
  .featured-post-visual {
    min-height: 180px;
  }

  .gm-fp-body,
  .featured-post-body {
    padding: 28px 22px;
  }

  .gm-fp-body h2,
  .featured-post-body h2 {
    font-size: 1.3rem;
  }

  .gm-blog-list-section {
    gap: 32px;
  }

  .gm-blog-sidebar {
    order: -1;
  }

  /* Posts grid — single column */
  .gm-posts-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Blog preview shortcode inline-style override */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Newsletter mobile layout */
  .gm-newsletter-outer {
    padding: 0 20px 48px;
  }

  .gm-newsletter-band,
  .newsletter-band {
    padding: 28px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 14px;
    margin-top: 36px;
    box-sizing: border-box;
  }

  .gm-newsletter-text h3,
  .newsletter-band h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }

  .gm-newsletter-text p,
  .newsletter-band p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .gm-newsletter-form {
    width: 100%;
    max-width: 100%;
  }

  .gm-newsletter-input,
  .newsletter-input {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .gm-newsletter-input input,
  .newsletter-input input {
    width: 100%;
    font-size: 0.88rem;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  .gm-newsletter-btn,
  .gm-newsletter-band button,
  .newsletter-band button,
  .newsletter-input .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.88rem;
    box-sizing: border-box;
  }

  /* Small mobile extra refinement */
  @media (max-width: 480px) {
    .gm-newsletter-outer {
      padding: 0 14px 36px;
    }

    .gm-newsletter-band,
    .newsletter-band {
      padding: 22px 14px;
      border-radius: 12px;
      margin-top: 24px;
      gap: 16px;
    }

    .gm-newsletter-text h3,
    .newsletter-band h3 {
      font-size: 1.12rem;
    }

    .gm-newsletter-text p,
    .newsletter-band p {
      font-size: 0.8rem;
    }

    .gm-newsletter-input input,
    .newsletter-input input {
      font-size: 0.84rem;
      padding: 11px 14px;
    }

    .gm-newsletter-btn,
    .gm-newsletter-band button,
    .newsletter-band button,
    .newsletter-input .btn-primary {
      font-size: 0.84rem;
      padding: 12px 14px;
    }
  }

  /* Post */
  .gm-post-body {
    padding: 40px 20px 56px;
    gap: 40px;
  }

  .gm-post-hero h1 {
    font-size: 1.7rem;
  }

  .gm-related-posts {
    padding: 56px 20px;
  }

  .gm-related-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .gm-identity-visual,
  .identity-visual {
    min-height: 200px;
    padding: 28px;
  }

  .gm-tagline-banner,
  .tagline-banner {
    padding: 28px 20px;
  }

  .gm-tagline-banner p,
  .tagline-banner p {
    font-size: 1rem;
  }

  /* Solutions */
  .gm-solutions-nav,
  .solutions-nav {
    padding: 0 20px;
  }

  .gm-solution-block,
  .solution-block {
    padding: 48px 0;
    gap: 28px;
  }

  .gm-sol-visual,
  .sol-visual {
    min-height: 160px;
    border-radius: var(--gm-radius);
  }

  .gm-sol-num,
  .sol-num {
    font-size: 2.8rem;
  }

  /* Contact */
  .gm-contact-form-wrap,
  .contact-form {
    padding: 28px 20px;
  }

  .gm-form-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gm-contact-details,
  .contact-details {
    gap: 16px;
  }

  /* Approach */
  .gm-step,
  .step-card {
    flex-direction: column;
    gap: 6px;
    padding: 24px 20px;
  }

  .gm-step-num {
    font-size: 1.8rem;
  }

  /* Buttons */
  .gm-btn-primary .elementor-button,
  .gm-btn-outline .elementor-button,
  .gm-btn-light .elementor-button {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .gm-job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .gm-job-card .gm-btn-inline {
    width: 100%;
    justify-content: center;
  }

  .gm-people-grid {
    grid-template-columns: 1fr;
  }

  .gm-partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .gm-partners-benefits-grid {
    grid-template-columns: 1fr;
  }
}


/* ─────────────────────────────────────────────────────────
   25. RESPONSIVE — SMALL MOBILE  ≤ 480px
───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .gm-blog-thumb {
    height: 150px;
  }

  .gm-page-hero h1 {
    font-size: 1.7rem;
  }

  .gm-topic-tags {
    gap: 6px;
  }

  .gm-topic-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .gm-partners-grid {
    grid-template-columns: 1fr;
  }
}


/* ─────────────────────────────────────────────────────────
   26. ELEMENTSKIT NAV OVERRIDES
───────────────────────────────────────────────────────── */
.ekit-nav-menu .ekit-menu-nav-link {
  font-family: var(--gm-font-body) !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: var(--gm-body-text) !important;
  transition: color 0.2s ease;
}

.ekit-nav-menu .ekit-menu-nav-link:hover,
.ekit-nav-menu .current-menu-item>.ekit-menu-nav-link {
  color: var(--gm-accent) !important;
}

@media (max-width: 767px) {
  .ekit-nav-menu .menu-item-nav-cta a {
    display: block !important;
    text-align: center !important;
    background: var(--gm-accent) !important;
    color: #fff !important;
    border-radius: 8px !important;
    margin-top: 8px !important;
    padding: 13px !important;
  }
}


/* ─────────────────────────────────────────────────────────
   27. UTILITIES
───────────────────────────────────────────────────────── */
.hide-mobile {
  display: block;
}

.show-mobile {
  display: none;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }

  .show-mobile {
    display: block !important;
  }
}


/* ─────────────────────────────────────────────────────────
   28. 404 ERROR & SEARCH STYLES
───────────────────────────────────────────────────────── */
.gm-404-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.gm-404-graphic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.gm-404-code {
  font-family: var(--gm-font-head);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 800;
  line-height: 0.9;
  color: rgba(70, 127, 247, 0.12);
  letter-spacing: -2px;
  user-select: none;
}

.gm-404-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gm-accent);
  background: var(--gm-bg);
  border: 1px solid var(--gm-blue-el);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gm-shadow);
}

.gm-404-search {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.gm-404-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 9px;
  border: 1.5px solid var(--gm-blue-el);
  background: var(--gm-bg);
  font-family: var(--gm-font-body);
  font-size: 0.9rem;
  color: var(--gm-primary);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gm-404-input:focus {
  border-color: var(--gm-accent);
  box-shadow: 0 0 0 3px rgba(70, 127, 247, 0.1);
}

.gm-404-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.gm-404-directory {
  text-align: left;
  border-top: 1px solid var(--gm-secondary);
  padding-top: 48px;
}

.gm-404-directory h3 {
  font-size: 1.1rem;
  color: var(--gm-primary);
  margin-bottom: 24px;
  text-align: center;
}

.gm-404-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gm-404-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--gm-blue-light);
  border: 1px solid var(--gm-blue-el);
  border-radius: 12px;
  padding: 20px 22px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gm-404-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gm-shadow);
  border-color: rgba(70, 127, 247, 0.3);
}

.gm-404-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--gm-bg);
  border: 1px solid var(--gm-blue-el);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gm-accent);
  flex-shrink: 0;
}

.gm-404-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gm-primary);
  margin: 0 0 4px;
}

.gm-404-card p {
  font-size: 0.8rem;
  color: var(--gm-body-text);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 767px) {
  .gm-404-grid {
    grid-template-columns: 1fr;
  }

  .gm-404-search {
    flex-direction: column;
  }

  .gm-404-actions {
    flex-direction: column;
    width: 100%;
  }

  .gm-404-actions .gm-btn-primary,
  .gm-404-actions .gm-btn-outline {
    width: 100%;
    justify-content: center;
  }
}


/* ─────────────────────────────────────────────────────────
   29. YOUR CUSTOM CSS — add overrides below this line
───────────────────────────────────────────────────────── */