/*
Theme Name: Growbot Digital
Author: Growbot Digital
Description: Lightweight custom theme for lead generation
Version: 1.7
*/

:root {
  --home2-navy: #03153f;
  --home2-blue: #1f5eff;
  --home2-lime: #d8ff2f;
  --home2-green: #8fd400;
  --home2-purple: #8a4dff;
  --home2-text: #0f172a;
  --home2-muted: #5b6780;
  --home2-border: #dfe7f3;
  --home2-bg: #f7f9fd;
  --home2-card: #ffffff;
  --home2-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);

  --color-bg: #f7fafc;
  --color-surface: #ffffff;
  --color-text: #0f172a;
  --color-muted: #475569;
  --color-border: #dbe4ee;
  --color-primary: #0f4fa8;
  --color-primary-dark: #0b3e83;
  --color-accent: #16a34a;
  --color-accent-soft: #dcfce7;
  --color-primary-soft: #e9f2ff;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max-width: 1400px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
}

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

a {
  color: var(--color-primary);
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  letter-spacing: -0.045em;
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}

h3 {
  letter-spacing: -0.03em;
}

p {
  margin-top: 0;
}

/* =========================
   Header / Navigation
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.site-branding {
  display: flex;
  align-items: center;
  min-width: 0;
  
}


.site-branding .custom-logo-link,
.site-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  line-height: 0;
}

.site-branding .custom-logo {
  width: auto !important;
  height: 58px !important;
  max-width: 240px !important;
  object-fit: contain;
  display: block;
  opacity: 1 !important;
}

.site-logo-fallback {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1557e8, #7c22ff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.site-title-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.site-title-text strong {
  color: #fff;
  font-size: 1rem;
}

.site-title-text span {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  margin-top: 4px;
}

.site-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-menu,
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.nav-menu > li {
  position: relative;
  margin: 0;
}

.nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  text-decoration: none;
  color: #041737;
  font-weight: 800;
  font-size: 0.98rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a:focus {
  color: #0678ff;
}

.nav-menu > li.menu-item-has-children > a {
  gap: 8px;
}

.nav-menu > li.menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-menu > li.menu-item-has-children:hover > a::after,
.nav-menu > li.menu-item-has-children:focus-within > a::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  background: #fff;
  border: 1px solid #dfe7f3;
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1005;
}

.nav-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid #dfe7f3;
  border-top: 1px solid #dfe7f3;
  transform: translateX(-50%) rotate(45deg);
}

.nav-menu > li.menu-item-has-children:hover > .sub-menu,
.nav-menu > li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-menu > li.menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.nav-menu .sub-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #07153c;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-menu .sub-menu a:hover,
.nav-menu .sub-menu a:focus {
  background: #edf4ff;
  color: #1557e8;
  transform: translateX(2px);
}

/* MOBILE MENU DROPDOWN ALIGNMENT FIX */
@media (max-width: 980px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    gap: 22px;
    width: 100%;
  }

  .nav-menu > li {
    width: 100%;
    text-align: center;
  }

  .nav-menu > li > a {
    justify-content: center;
    width: 100%;
  }

  .nav-menu .sub-menu {
    position: static !important;
    width: calc(100% - 48px);
    max-width: 360px;
    min-width: 0;
    margin: 10px auto 0 !important;
    transform: none !important;
    text-align: center;
  }

  .nav-menu .sub-menu::before {
    display: none;
  }

  .nav-menu > li.menu-item-has-children:hover > .sub-menu,
  .nav-menu > li.menu-item-has-children:focus-within > .sub-menu {
    transform: none !important;
  }

  .nav-menu .sub-menu a {
    text-align: left !important;
    padding-left: 24px !important;
    transform: none !important;
  }
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-button {
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  background: #d8ff2f;
  color: #06122f;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(216,255,47,0.18);
}

.header-button:hover,
.header-button:focus {
  background: #cfff00;
  color: #06122f;
}

.header-button span {
  font-size: 1.1rem;
}

.desktop-only {
  display: flex;
}

.mobile-nav-cta {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 12px 0;
  }

  .site-branding .custom-logo {
    height: 54px !important;
    max-width: 210px !important;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-cta,
  .header-cta.desktop-only,
  .desktop-only {
    display: none !important;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 4%;
    right: 4%;
    display: none;
    justify-content: stretch;
    background: #fff;
    border: 1px solid #dfe7f3;
    border-radius: 20px;
    box-shadow: 0 20px 44px rgba(0,0,0,0.18);
    padding: 16px;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-menu > li > a {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: #07153c;
    justify-content: space-between;
    border-radius: 12px;
  }

  .nav-menu > li > a:hover,
  .nav-menu > li > a:focus {
    background: #edf4ff;
    color: #1557e8;
  }

  .nav-menu > li.menu-item-has-children {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-menu > li.menu-item-has-children > a {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
  }

  .nav-menu > li.menu-item-has-children > a::after {
    display: none;
  }

  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .submenu-toggle::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #07153c;
    border-bottom: 2px solid #07153c;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .nav-menu > li.submenu-open > .submenu-toggle::before {
    transform: rotate(-135deg);
  }

  .nav-menu .sub-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 6px;
    padding: 8px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #dfe7f3;
  }

  .nav-menu .sub-menu::before {
    display: none;
  }

  .nav-menu > li.submenu-open > .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-branding .custom-logo {
    height: 48px !important;
    max-width: 185px !important;
  }
}

/* =========================
   Buttons
========================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--color-primary), #2563eb);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 79, 168, 0.22);
}

.button.primary:hover,
.button.primary:focus {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--color-primary);
  border-color: rgba(15, 79, 168, 0.22);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--color-primary-soft);
}

.button.ghost-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.home2-final-right .home2-btn-lime {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 12px;
  background: #d8ff2f !important;
  color: #06122f !important;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(216,255,47,0.22);
  opacity: 1 !important;
}

/* =========================
   Generic Sections
========================= */

.section {
  padding: 92px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page .section {
  padding-top: 0;
  margin-top: 0;
}

.cta-rocket {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.cta-rocket img {
  width: 110px;
  height: auto;
}


/* =========================
   GROWBOT HOMEPAGE HERO
========================= */

.growbot-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 160px;
  background:
    radial-gradient(circle at top left, rgba(54, 228, 255, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.18), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0b1428 48%, #10182b 100%);
  color: #ffffff;
}

.growbot-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.32;
  pointer-events: none;
}

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

.growbot-hero-trails {
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
}

.growbot-hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.55;
}

.growbot-hero-glow-one {
  width: 420px;
  height: 420px;
  top: -120px;
  right: 5%;
  background: rgba(54, 228, 255, 0.22);
}

.growbot-hero-glow-two {
  width: 520px;
  height: 520px;
  bottom: -180px;
  right: -80px;
  background: rgba(139, 92, 246, 0.22);
}

.growbot-hero-inner {
  position: relative;
  z-index: 3;
}

.growbot-hero-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.growbot-hero-copy {
  max-width: 600px;
}

.growbot-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(80, 150, 255, 0.45);
  background: rgba(37, 99, 235, 0.12);
  color: #8fc2ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.growbot-hero-badge-icon {
  color: #9cff3b;
}

.growbot-hero-title {
  margin: 0 0 26px;
  font-size: clamp(50px, 5.8vw, 36px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: #ffffff;
}

.growbot-hero-title span {
  background: linear-gradient(135deg, #3b82f6, #7c5cff, #c056ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.growbot-hero-text {
  max-width: 560px;
  margin: 0 0 34px;
  color: rgba(219, 234, 254, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.growbot-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.growbot-hero .home2-btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.growbot-btn-primary {
  background: #1769ff;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(23, 105, 255, 0.35);
}

.growbot-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(23, 105, 255, 0.48);
}

.growbot-btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
}

.growbot-btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.09);
}

.growbot-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 34px;
  color: #ffffff;
  font-size: 17px;
}

.growbot-hero-trust div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.growbot-hero-trust span {
  color: #9cff3b;
  font-weight: 900;
}

/* =========================
   HERO VISUAL
========================= */

.growbot-hero-visual {
  position: relative;
  min-height: 560px;
}

.growbot-hero-photo-wrap {
  position: absolute;
  inset: 0 auto auto 4%;
  width: 74%;
  height: 525px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 40px 110px rgba(0,0,0,0.28);
}

.growbot-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.98;
}

.growbot-open-sign {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  color: #9cff3b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.growbot-stats-card {
  position: absolute;
  top: 30px;
  right: 0;
  width: 325px;
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  color: #07111f;
  box-shadow: 0 28px 70px rgba(0,0,0,0.35);
  z-index: 4;
}

.growbot-stats-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.growbot-stats-head strong {
  font-size: 17px;
}

.growbot-stats-head span {
  color: #8792a8;
  font-size: 12px;
}

.growbot-stat-row {
  display: grid;
  grid-template-columns: 38px 1fr 58px;
  gap: 12px;
  align-items: center;
  padding: 14px 12px;
  margin-bottom: 10px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.12);
}

.growbot-stat-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  font-weight: 900;
}

.growbot-google-icon {
  color: #4285f4;
}

.growbot-stat-copy small {
  display: block;
  color: #64748b;
  font-size: 12px;
  margin-bottom: 2px;
}

.growbot-stat-copy strong {
  display: block;
  font-size: 23px;
  line-height: 1;
}

.growbot-stat-copy strong span {
  color: #00b86b;
  font-size: 12px;
}

.growbot-stat-copy em {
  display: block;
  margin-top: 4px;
  color: #8a94a6;
  font-size: 11px;
  font-style: normal;
}

.growbot-stat-row svg {
  width: 56px;
  height: 28px;
}

.growbot-stat-row svg path {
  fill: rgba(37, 99, 235, 0.08);
}

.growbot-stat-row svg polyline {
  fill: none;
  stroke: #2563eb;
  stroke-width: 3;
}

.growbot-stat-row.purple .growbot-stat-icon {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.growbot-stat-row.purple svg path {
  fill: rgba(139, 92, 246, 0.08);
}

.growbot-stat-row.purple svg polyline {
  stroke: #8b5cf6;
}

.growbot-stat-row.green .growbot-stat-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.growbot-stat-row.green svg path {
  fill: rgba(34, 197, 94, 0.08);
}

.growbot-stat-row.green svg polyline {
  stroke: #22c55e;
}

.growbot-stat-row.amber .growbot-stat-icon {
  background: rgba(245, 158, 11, 0.16);
  color: #f59e0b;
}

.growbot-stat-row.amber svg path {
  fill: rgba(245, 158, 11, 0.08);
}

.growbot-stat-row.amber svg polyline {
  stroke: #f59e0b;
}

.growbot-review-card {
  position: absolute;
  left: 18%;
  bottom: -25px;
  width: 350px;
  padding: 1px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2d7dff, rgba(139, 92, 246, 0.7));
  box-shadow: 0 24px 60px rgba(0,0,0,0.38);
  z-index: 5;
}

.growbot-review-content {
  display: flex;
  gap: 16px;
  padding: 17px 18px;
  border-radius: 17px;
  background: rgba(8, 20, 42, 0.94);
  border: 1px solid rgba(255,255,255,0.08);
}

.growbot-review-check {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1769ff;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 0 25px rgba(23, 105, 255, 0.6);
}

.growbot-review-copy {
  flex: 1;
}

.growbot-review-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.growbot-review-top strong {
  color: #ffffff;
  font-size: 18px;
}

.growbot-review-top span {
  color: #8a94a6;
  font-size: 13px;
}

.growbot-stars {
  color: #ffc107;
  letter-spacing: 1px;
  margin: 4px 0;
}

.growbot-review-card p {
  margin: 0;
  color: rgba(219,234,254,0.82);
  font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .growbot-hero-layout {
    gap: 45px;
  }

  .growbot-stats-card {
    width: 300px;
  }

  .growbot-review-card {
    left: 8%;
  }
}

@media (max-width: 900px) {
  .growbot-hero {
    padding: 95px 0 70px;
  }

  .growbot-hero-layout {
    grid-template-columns: 1fr;
  }

  .growbot-hero-copy {
    max-width: 100%;
  }

  .growbot-hero-visual {
    min-height: 620px;
  }

  .growbot-hero-photo-wrap {
    width: 82%;
    left: 0;
  }

  .growbot-stats-card {
    right: 0;
  }
}

@media (max-width: 640px) {
  .growbot-hero {
    padding: 80px 0 55px;
  }

  .growbot-hero-title {
    font-size: 44px;
  }

  .growbot-hero-text {
    font-size: 17px;
  }

  .growbot-hero-actions {
    flex-direction: column;
  }

  .growbot-hero .home2-btn {
    width: 100%;
  }

  .growbot-hero-trust {
    flex-direction: column;
    gap: 14px;
    font-size: 15px;
  }

  .growbot-hero-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .growbot-hero-photo-wrap,
  .growbot-stats-card,
  .growbot-review-card {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .growbot-hero-photo-wrap {
    height: 420px;
  }

  .growbot-stats-card {
    padding: 18px;
  }

  .growbot-review-card {
    width: 100%;
  }
}

/* =========================
   OVERLAP STRIP
========================= */

.growbot-overlap-strip {
  position: relative;
  z-index: 20;
  margin-top: -64px;
}

.growbot-overlap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  overflow: hidden;

  border-radius: 28px;

  background: rgba(255,255,255,0.96);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.6);

  box-shadow:
    0 30px 80px rgba(2, 8, 23, 0.18),
    0 8px 24px rgba(2, 8, 23, 0.08);
}

.growbot-overlap-item {
  position: relative;

  display: flex;
  align-items: flex-start;
  gap: 22px;

  padding: 38px 36px;
}

.growbot-overlap-item:not(:last-child) {
  border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.growbot-overlap-icon {
  flex: 0 0 72px;

  width: 72px;
  height: 72px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      #1769ff,
      #5b7cff
    );

  color: #ffffff;

  box-shadow:
    0 14px 35px rgba(23, 105, 255, 0.28);
}

.growbot-overlap-copy h3 {
  margin: 0 0 10px;

  color: #07111f;

  font-size: 23px;
  line-height: 1.05;

  font-weight: 800;

  letter-spacing: -0.03em;
}

.growbot-overlap-copy p {
  margin: 0;

  color: #64748b;

  font-size: 17px;
  line-height: 1.6;
}

/* subtle glow */
.growbot-overlap-grid::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(59,130,246,0.08),
      transparent 30%
    );

  pointer-events: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {

  .growbot-overlap-grid {
    grid-template-columns: 1fr;
  }

  .growbot-overlap-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .growbot-overlap-strip {
    margin-top: -40px;
  }
}

@media (max-width: 640px) {

  .growbot-overlap-item {
    flex-direction: column;
    padding: 30px 24px;
    gap: 18px;
  }

  .growbot-overlap-copy h3 {
    font-size: 26px;
  }

  .growbot-overlap-copy p {
    font-size: 15px;
  }

  .growbot-overlap-icon {
    width: 64px;
    height: 64px;
  }
}

.home2-services {
  background: #fff;
  padding: 72px 0 78px;
}

.home2-section-head.home2-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 46px;
}

.home2-section-head h2 {
  color: #07153c;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.08;
}

.home2-section-head h2 span {
  color: var(--home2-blue);
}

.home2-service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  align-items: stretch;
}

.home2-service-card {
  position: relative;
  background: #fff;
  border: 1px solid #edf2fb;
  border-radius: 22px;
  padding: 72px 28px 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
  overflow: visible;
}

.home2-service-card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 80px;
  width: 4px;
  height: 94px;
  border-radius: 999px;
}

.home2-service-card.blue::before { background: #1557e8; }
.home2-service-card.green::before { background: #8fd400; }
.home2-service-card.purple::before { background: #8a4dff; }

.home2-service-icon {
  position: absolute;
  top: -34px;
  left: 34px;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.16);
  margin: 0;
}

.home2-service-icon svg {
  width: 50px;
  height: 50px;
  color: #fff;
  display: block;
}

.home2-service-card.blue .home2-service-icon { background: #1557e8; }
.home2-service-card.green .home2-service-icon { background: #8fd400; }
.home2-service-card.purple .home2-service-icon { background: #8a4dff; }

.home2-service-no {
  display: block;
  color: #07153c;
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.home2-service-card h3 {
  margin: 0 0 14px;
  color: #07153c;
  font-size: 1.35rem;
  line-height: 1.15;
}

.home2-service-card p {
  margin: 0 0 20px;
  color: #5b6780;
  font-size: 1rem;
}

.home2-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  color: #42526e;
}

.home2-service-card li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
  font-size: 0.95rem;
}

.home2-service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: currentColor;
  font-weight: 900;
}

.home2-service-card.blue li::before { color: #1557e8; }
.home2-service-card.green li::before { color: #8fd400; }
.home2-service-card.purple li::before { color: #8a4dff; }

.home2-service-btn {
  width: 100%;
  min-height: 54px;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.home2-service-btn.blue { background: #1557e8; }
.home2-service-btn.green { background: #8fd400; color: #fff; }
.home2-service-btn.purple { background: #8a4dff; }

.home2-service-card .home2-service-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 54px !important;
  padding: 0 18px !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  line-height: 1 !important;
}

.home2-service-card.blue .home2-service-btn,
.home2-service-btn.blue {
  background: #1557e8 !important;
}

.home2-service-card.green .home2-service-btn,
.home2-service-btn.green {
  background: #8fd400 !important;
}

.home2-service-card.purple .home2-service-btn,
.home2-service-btn.purple {
  background: #8a4dff !important;
}

@media (max-width: 900px) {
  .home2-service-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}



/* ===== Why Invest Section ===== */

.home2-invest-section {
  padding: 46px 0 116px;
  background: #ffffff;
}

.home2-invest-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  min-height: 520px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 82%, rgba(37, 99, 235, 0.12), transparent 18%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 52%, #eef5ff 100%);
  border: 1px solid rgba(219, 228, 238, 0.9);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.home2-invest-shell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 120px;
  height: 160px;
  transform: translateY(-50%);
  background-image: radial-gradient(rgba(37, 99, 235, 0.32) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.55;
}

.home2-invest-copy {
  position: relative;
  z-index: 5;
  padding: 76px 56px 76px 72px;
  max-width: 620px;
}

.home2-invest-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #e9f2ff;
    color: #0f4fa8;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.home2-invest-icon svg {
  width: 34px;
  height: 34px;
}

.home2-invest-copy h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.home2-invest-copy h2 span {
  color: #0f4fa8;
}

.home2-invest-line {
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: #16a34a;
  margin: 24px 0 34px;
}

.home2-invest-copy p {
  color: #1f2a44;
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 22px;
}

.home2-invest-copy p:last-child {
  margin-bottom: 0;
}

.home2-invest-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.home2-invest-image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 120px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #f8fbff 0%,
    rgba(248,251,255,0.95) 35%,
    rgba(248,251,255,0.55) 65%,
    rgba(248,251,255,0) 100%
  );
}

.home2-invest-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 72% center;
}

/* Responsive */
@media (max-width: 960px) {
  .home2-invest-shell {
    grid-template-columns: 1fr;
  }

  .home2-invest-copy {
    padding: 56px 32px 34px;
    max-width: 100%;
  }

  .home2-invest-image {
    min-height: 380px;
  }

  .home2-invest-image::before {
    inset: -120px 0 auto 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, #f8fbff 0%, rgba(248,251,255,0.9) 36%, rgba(248,251,255,0) 100%);
  }

  .home2-invest-image img {
    min-height: 380px;
    object-position: center;
  }
}

@media (max-width: 640px) {
  .home2-invest-section {
    padding: 72px 0;
  }

  .home2-invest-shell {
    border-radius: 24px;
  }

  .home2-invest-copy {
    padding: 42px 24px 28px;
  }

  .home2-invest-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 22px;
  }

  .home2-invest-icon svg {
    width: 28px;
    height: 28px;
  }

  .home2-invest-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .home2-invest-image,
  .home2-invest-image img {
    min-height: 300px;
  }
}



.home2-final-cta,
.home2-final-cta .container,
.home2-final-cta-shell {
  overflow: visible !important;
}

.home2-final-cta-shell {
  position: relative;
}

.home2-final-left {
  position: relative;
  padding-left: 220px;
  min-height: 210px;
}

.home2-final-left img {
  position: absolute !important;
  left: -120px;
  bottom: -35px;
  width: 330px !important;
  max-width: none !important;
  height: auto !important;
  transform: rotate(-12deg);
  transform-origin: left bottom;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,0.28))
          drop-shadow(0 0 20px rgba(216,255,47,0.32));
}

.home2-final-left h2 {
  margin: 0 0 10px;
}

.home2-final-left > div {
  position: relative;
  z-index: 6;
}

@media (max-width: 760px) {
  .home2-final-left {
    padding-left: 0;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .home2-final-left img {
    position: relative !important;
    left: auto;
    bottom: auto;
    width: 120px;
    transform: rotate(-10deg);
    margin-bottom: 8px;
  }
}



@media (max-width: 760px) {
  .home2-final-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .home2-final-left img {
    width: 96px;
    flex-basis: auto;
  }
}


/* ===== Problem Section Refresh - Light Editorial Style ===== */

.home2-problem {
  padding: 96px 0;
  background: #fff;
}

.home2-problem-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  min-height: 560px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.12), transparent 18%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 48%, #eef5ff 100%);
  border: 1px solid rgba(219, 228, 238, 0.95);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.home2-problem-shell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 58%;
  width: 120px;
  height: 180px;
  transform: translateY(-50%);
  background-image: radial-gradient(rgba(37, 99, 235, 0.32) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.5;
  z-index: 2;
}

.home2-problem-copy {
  position: relative;
  z-index: 4;
  order: 1;
  padding: 76px 42px 76px 72px;
  max-width: 660px;
}

.home2-problem-copy::before {
  content: "The Problem";
  display: inline-block;
  margin-bottom: 28px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #e9f2ff;
  color: #0f4fa8;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home2-problem-copy h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.25rem, 3.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.home2-problem-copy h2 span {
  color: #e83f5b;
}

.home2-problem-copy h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: #16a34a;
  margin: 26px 0 34px;
}

.home2-problem-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.home2-problem-copy li {
  position: relative;
  padding-left: 56px;
  color: #0f172a;
  font-size: 1.03rem;
  line-height: 1.55;
  max-width: 560px;
}

.home2-problem-copy li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 2px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #fee2e2;
  color: #e83f5b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.home2-problem-image {
  position: relative;
  order: 2;
  min-height: 560px;
  overflow: hidden;
}

.home2-problem-image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 130px;
  z-index: 3;
  background: linear-gradient(
    90deg,
    #f8fbff 0%,
    rgba(248,251,255,0.94) 34%,
    rgba(248,251,255,0.54) 65%,
    rgba(248,251,255,0) 100%
  );
}

.home2-problem-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.02) 0%,
    rgba(15, 23, 42, 0.05) 45%,
    rgba(15, 23, 42, 0.16) 100%
  );
  pointer-events: none;
}

.home2-problem-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 58% center;
}

.home2-alert-card {
  display: none;
}

/* Responsive */
@media (max-width: 960px) {
  .home2-problem-shell {
    grid-template-columns: 1fr;
  }

  .home2-problem-copy {
    padding: 56px 32px 36px;
    max-width: 100%;
  }

  .home2-problem-image {
    min-height: 380px;
  }

  .home2-problem-image::before {
    inset: -120px 0 auto 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(
      180deg,
      #f8fbff 0%,
      rgba(248,251,255,0.92) 38%,
      rgba(248,251,255,0) 100%
    );
  }

  .home2-problem-image img {
    min-height: 380px;
    object-position: center;
  }
}

@media (max-width: 640px) {
  .home2-problem {
    padding: 72px 0;
  }

  .home2-problem-shell {
    border-radius: 24px;
  }

  .home2-problem-copy {
    padding: 42px 24px 32px;
  }

  .home2-problem-copy::before {
    margin-bottom: 22px;
  }

  .home2-problem-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .home2-problem-copy li {
    padding-left: 48px;
    font-size: 0.98rem;
  }

  .home2-problem-copy li::before {
    width: 32px;
    height: 32px;
    font-size: 1.35rem;
  }

  .home2-problem-image,
  .home2-problem-image img {
    min-height: 300px;
  }
}

/* ===== Why Choose Growbot - Light Blue Layout ===== */

.home-why-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 88% 50%, rgba(37,99,235,0.13), transparent 28%),
    radial-gradient(circle at 8% 10%, rgba(37,99,235,0.08), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.home-why-section::before {
  content: "";
  position: absolute;
  right: 5%;
  top: 90px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(37,99,235,0.32) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  opacity: 0.45;
}

.home-why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.home-why-copy {
  max-width: 620px;
}

.home-why-label {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #e9f2ff;
  color: #0f4fa8;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-why-copy h2 {
  margin: 0 0 26px;
  color: #0f172a;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.home-why-copy h2 span {
  color: #0f4fa8;
}

.home-why-copy p {
  color: #1f2a44;
  font-size: 1.03rem;
  line-height: 1.72;
  margin: 0 0 24px;
}

.home-why-copy a {
  color: #0f4fa8;
  font-weight: 700;
}

.home-why-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f4fa8, #2563eb);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(15,79,168,0.22);
}

.home-why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.home-why-card {
  min-height: 270px;
  padding: 38px 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(219,228,238,0.95);
  box-shadow: 0 20px 44px rgba(15,23,42,0.08);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(15,23,42,0.12);
}

.home-why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: #e9f2ff;
  color: #0f4fa8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
}

.home-why-icon svg {
  width: 32px;
  height: 32px;
}

.home-why-icon svg path,
.home-why-icon svg circle {
  stroke-width: 2;
}

.home-why-card h3 {
  margin: 0 0 18px;
  color: #0f172a;
  font-size: 1.22rem;
}

.home-why-card h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: #2563eb;
}

.home-why-card p {
  margin: 0;
  color: #334155;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .home-why-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .home-why-copy {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .home-why-section {
    padding: 78px 0;
  }

  .home-why-cards {
    grid-template-columns: 1fr;
  }

  .home-why-card {
    min-height: auto;
  }
}

.home2-impact {
  background: #FFF;
  padding: 70px 0;
}

.home2-impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.home2-impact-item {
  text-align: center;
  padding: 0 14px;
  border-right: 1px solid #e3eaf5;
}

.home2-impact-item:last-child {
  border-right: 0;
}

.home2-impact-icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;

  background: #1557e8;
  color: #d8ff2f;
}

.home2-impact-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.home2-impact-item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #132247;
}

.home2-impact-item p {
  margin: 0;
  color: var(--home2-muted);
  font-size: 0.95rem;
}

.home2-testimonial-shell {
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 24px;
  padding: 28px 26px 24px;
}

.home2-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home2-testimonial-card {
  background: #fff;
  border: 1px solid #e7eef8;
  border-radius: 18px;
  padding: 24px 20px;
  position: relative;
}

.home2-quote {
  font-size: 3rem;
  line-height: 1;
  color: #7d8cff;
  margin-bottom: 12px;
}

.home2-quote.green { color: #9bd43c; }
.home2-quote.purple { color: #bb8cff; }

.home2-testimonial-card p {
  color: var(--home2-muted);
  min-height: 98px;
}

.home2-testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.home2-testimonial-person img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
}

.home2-testimonial-person strong,
.home2-testimonial-person span {
  display: block;
}

.home2-testimonial-person span {
  color: var(--home2-muted);
  font-size: 0.88rem;
}

.home2-dots {
  text-align: center;
  margin-top: 16px;
}

.home2-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cdd8ea;
  margin: 0 4px;
}

.home2-dots span.active {
  background: var(--home2-blue);
}

.home2-final-cta {
  background: #fff;
  padding: 0 0 70px;
}

.home2-final-cta-shell {
  background: linear-gradient(135deg, #103cf1 0%, #1634c4 100%);
  color: #fff;
  border-radius: 24px;
  padding: 30px 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
}

.home2-final-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.home2-final-left img {
  width: 110px;
  height: auto;
  object-fit: contain;
}

.home2-final-left h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home2-final-left h2 span {
  color: var(--home2-lime);
}

.home2-final-left p {
  margin: 0;
  color: rgba(255,255,255,0.86);
}

.home2-final-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.home2-final-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255,255,255,0.84);
}

.home2-final-micro span::before {
  content: "✓";
  margin-right: 8px;
  color: #b3ff72;
}

/* HOME FAQ SECTION */
.home-faq-block {
  width: 100%;
  max-width: 1100px;
  margin: 100px auto 0;
}

.home-faq-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-faq-head h2 {
  margin: 10px 0 12px;
  color: #06133a;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.08;
  font-weight: 900;
}

.home-faq-head p {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-faq-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.home-faq-item {
  background: #f8fbff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.home-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 28px;
  color: #06133a;
  font-size: 1.08rem;
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eaf2ff;
  color: #2563eb;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.home-faq-item[open] summary::after {
  content: "−";
  background: #dfff00;
  color: #06133a;
}

.home-faq-item p {
  margin: 0;
  padding: 0 28px 26px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .home-faq-section {
    padding: 70px 0;
  }

  .home-faq-head {
    text-align: left;
  }

  .home-faq-item summary {
    padding: 22px 22px;
    font-size: 1rem;
  }

  .home-faq-item p {
    padding: 0 22px 22px;
  }
}


/* =========================
   Bottom Conversion Form
========================= */

.bottom-form-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 90% 35%, rgba(21, 87, 232, 0.28), transparent 34%),
    radial-gradient(circle at 10% 70%, rgba(216, 255, 47, 0.07), transparent 28%),
    linear-gradient(135deg, #06122f 0%, #06206d 100%);
  color: #fff;
}

.bottom-form-section::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 110px;
  width: 260px;
  height: 360px;
  background-image: radial-gradient(rgba(21, 87, 232, 0.45) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.55;
  pointer-events: none;
}

.bottom-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  gap: 64px;
  align-items: center;
}

.bottom-form-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(216, 255, 47, 0.65);
  color: #d8ff2f;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.bottom-form-copy h2 {
  margin: 0 0 24px;
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.bottom-form-copy h2 span {
  color: #d8ff2f;
}

.bottom-form-copy > p {
  max-width: 620px;
  color: rgba(255,255,255,0.86);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 34px;
}

.bottom-form-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

.bottom-form-benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bottom-form-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
}

.bottom-form-benefit-icon.blue {
  background: #1557e8;
}

.bottom-form-benefit-icon.green {
  background: #7ccf00;
}

.bottom-form-benefit-icon.purple {
  background: #8a4dff;
}

.bottom-form-benefit-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.bottom-form-benefit strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.bottom-form-benefit p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 0.94rem;
  line-height: 1.45;
}

.bottom-form-contact {
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 620px;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
}

.bottom-form-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(216,255,47,0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
}

.bottom-form-contact-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.bottom-form-contact strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.bottom-form-contact p {
  margin: 0;
  color: rgba(255,255,255,0.78);
}

.bottom-form-contact a {
  color: #d8ff2f;
  font-weight: 800;
  text-decoration: none;
}

/* =========================
   Form Card
========================= */

.bottom-form-card {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
  color: #07153c;
  border-radius: 28px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.16),
    0 0 22px rgba(21, 87, 232, 0.14);
}

.bottom-form-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.bottom-form-card-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 72px;
}

.bottom-form-card-head h3 {
  margin: 0 0 6px;
  color: #07153c;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.bottom-form-card-head p {
  margin: 0;
  color: #475569;
}

.bottom-form-inner {
  width: 100%;
  max-width: 100%;
}

/* =========================
   WPForms Styling
========================= */

.bottom-form-card .wpforms-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.bottom-form-card .wpforms-form {
  width: 100% !important;
}

.bottom-form-card .wpforms-field-container {
  display: grid !important;
  gap: 14px !important;
}

.bottom-form-card .wpforms-field {
  padding: 0 !important;
  margin: 0 !important;
}

.bottom-form-card .wpforms-field-label {
  display: block;
  margin: 0 0 6px !important;
  color: #07153c !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
}

.bottom-form-card .wpforms-required-label {
  color: #ef4444 !important;
}

.bottom-form-card input,
.bottom-form-card select,
.bottom-form-card textarea {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 56px !important;
  border-radius: 10px !important;
  border: 1px solid #cbd7ea !important;
  background: #ffffff !important;
  color: #07153c !important;
  padding: 0 16px !important;
  font-size: 0.95rem !important;
  font-family: inherit !important;
  outline: none !important;
  box-shadow: none !important;
}

.bottom-form-card input::placeholder,
.bottom-form-card textarea::placeholder {
  color: #94a3b8 !important;
}

.bottom-form-card textarea {
  min-height: 100px !important;
  padding-top: 14px !important;
  resize: vertical !important;
}

.bottom-form-card input:focus,
.bottom-form-card select:focus,
.bottom-form-card textarea:focus {
  border-color: #1557e8 !important;
  box-shadow: 0 0 0 3px rgba(21,87,232,0.12) !important;
}

.bottom-form-card .wpforms-field-description,
.bottom-form-card .wpforms-field-limit-text {
  color: #64748b !important;
  font-size: 0.8rem !important;
  margin-top: 5px !important;
}

.bottom-form-card .wpforms-submit-container {
  padding: 0 !important;
  margin-top: 16px !important;
}

.bottom-form-card button.wpforms-submit {
  width: 100% !important;
  min-height: 62px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: #1557e8 !important;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  transition: 0.2s ease !important;
}

.bottom-form-card button.wpforms-submit:hover,
.bottom-form-card button.wpforms-submit:focus {
  background: #0f49c8 !important;
  transform: translateY(-1px);
}

.bottom-form-privacy {
  margin: 16px 0 0;
  text-align: center;
  color: #475569;
  font-size: 0.9rem;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1100px) {
  .bottom-form-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .bottom-form-card {
    max-width: 680px;
    margin-left: 0;
  }

  .bottom-form-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .bottom-form-section {
    padding: 70px 0;
  }

  .bottom-form-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .bottom-form-copy > p {
    font-size: 1.05rem;
  }

  .bottom-form-card {
    padding: 24px;
    border-radius: 22px;
  }

  .bottom-form-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .bottom-form-card-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .bottom-form-contact {
    align-items: flex-start;
  }
}


/* =========================
   Services
========================= */

/* =========================
   GROWBOT DIGITAL SERVICES PAGE
========================= */

.services-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 34%, rgba(0,102,255,.40), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(216,255,0,.14), transparent 24%),
    linear-gradient(135deg, #020817 0%, #031033 48%, #010511 100%);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .85fr;
  gap: 64px;
  align-items: center;
}

.services-pill,
.services-kicker,
.services-section-head span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.services-hero .services-pill {
  padding: 8px 17px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1557e8;
  font-size: .76rem;
}

.services-hero-copy h1 {
  max-width: 880px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(3rem, 4.7vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 950;
}

.services-hero-copy p {
  max-width: 740px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
  line-height: 1.75;
}

.services-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.services-btn,
.services-final-btn,
.services-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.services-btn.primary {
  background: #1769ff;
  color: #fff;
  box-shadow: 0 16px 34px rgba(23,105,255,.32);
}

.services-btn.secondary {
  background: #fff;
  color: #06133a;
}

.services-hero-panel {
  display: grid;
  gap: 18px;
}

.services-hero-card {
  padding: 36px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,0,.18), transparent 28%),
    rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}

.services-hero-card span {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #dfff00;
  color: #06133a;
}

.services-hero-card svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.services-hero-card strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 950;
}

.services-hero-card p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  line-height: 1.65;
}

.services-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  color: #06133a;
  box-shadow: 0 18px 46px rgba(0,0,0,.16);
}

.services-hero-proof div {
  padding: 22px 18px;
  border-right: 1px solid #e5edf7;
}

.services-hero-proof div:last-child {
  border-right: 0;
}

.services-hero-proof strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 950;
}

.services-hero-proof p {
  margin: 0;
  color: #475569;
  font-size: .9rem;
  line-height: 1.35;
}


/* =========================
   SECTION HEADINGS
========================= */

.services-section-head {
  max-width: 920px;
  margin: 0 auto 42px;
}

.services-section-head.center {
  text-align: center;
}

.services-section-head h2,
.services-intro-copy h2,
.services-future-copy h2,
.services-final-shell h2 {
  margin: 0;
  color: #06133a;
  font-size: clamp(2.2rem, 3.8vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 950;
}

.services-section-head p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
}


/* =========================
   INTRO / STAGES
========================= */

.services-intro {
  padding: 84px 0 92px;
  background: #fff;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.services-intro-copy p {
  max-width: 660px;
  margin: 20px 0 0;
  color: #334155;
  font-size: 1.06rem;
  line-height: 1.78;
}

.services-stage-box {
  display: grid;
  gap: 14px;
}

.services-stage-box div {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 22px 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(21,87,232,.06), transparent 32%),
    #fff;
  border: 1px solid rgba(191,206,226,.95);
  box-shadow: 0 16px 38px rgba(15,23,42,.06);
}

.services-stage-box span {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1557e8;
  color: #fff;
  font-weight: 950;
}

.services-stage-box strong {
  display: block;
  margin-bottom: 4px;
  color: #06133a;
  font-weight: 950;
}

.services-stage-box p {
  margin: 0;
  color: #475569;
  line-height: 1.45;
}


/* =========================
   SERVICES LIST
========================= */

.services-list-section {
  padding: 86px 0 96px;
  background:
    radial-gradient(circle at 0% 0%, rgba(216,255,47,.24), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.services-main-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(21,87,232,.08), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(191,206,226,.95);
  box-shadow: 0 20px 50px rgba(15,23,42,.08);
}

.services-main-card.featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,0,.22), transparent 30%),
    linear-gradient(135deg, #06133a 0%, #031033 100%);
  border-color: rgba(59,130,246,.28);
  color: #fff;
}

.services-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.services-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #eaf2ff;
  color: #1557e8;
}

.services-main-card.featured .services-card-icon {
  background: #dfff00;
  color: #06133a;
}

.services-card-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.services-card-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1557e8;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.services-main-card.featured .services-card-label {
  background: rgba(255,255,255,.12);
  color: #dfff00;
}

.services-main-card h3 {
  margin: 0 0 16px;
  color: #06133a;
  font-size: clamp(1.8rem, 2.3vw, 2.55rem);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 950;
}

.services-main-card.featured h3 {
  color: #fff;
}

.services-main-card p {
  margin: 0;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.65;
}

.services-main-card.featured p {
  color: rgba(255,255,255,.80);
}

.services-main-card ul {
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.services-main-card li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 26px;
  color: #334155;
  font-weight: 700;
  line-height: 1.45;
}

.services-main-card.featured li {
  color: rgba(255,255,255,.84);
}

.services-main-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1557e8;
  font-weight: 950;
}

.services-main-card.featured li::before {
  color: #dfff00;
}

.services-card-btn {
  margin-top: auto;
  background: #1557e8;
  color: #fff;
}

.services-main-card.featured .services-card-btn {
  background: #dfff00;
  color: #06133a;
}


/* =========================
   COMPARE
========================= */

.services-compare {
  padding: 86px 0 92px;
  background: #fff;
}

.services-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.services-compare-card {
  padding: 30px 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(191,206,226,.95);
  box-shadow: 0 18px 42px rgba(15,23,42,.07);
}

.services-compare-card span {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1557e8;
  color: #fff;
  font-weight: 950;
}

.services-compare-card h3 {
  margin: 0 0 12px;
  color: #06133a;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 950;
}

.services-compare-card p {
  margin: 0 0 18px;
  color: #475569;
  line-height: 1.6;
}

.services-compare-card a {
  color: #1557e8;
  font-weight: 950;
  text-decoration: none;
}


/* =========================
   PROCESS
========================= */

.services-process {
  padding: 84px 0 94px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.services-process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.services-process-card {
  position: relative;
  min-height: 220px;
  padding: 44px 26px 28px;
  text-align: center;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #dfe7f3;
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}

.services-process-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  color: #dfff00;
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.services-process-card span {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1557e8;
  color: #fff;
  font-size: .85rem;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(21,87,232,.28);
}

.services-process-card h3 {
  margin: 0 0 10px;
  color: #06133a;
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 950;
}

.services-process-card p {
  margin: 0;
  color: #475569;
  font-size: .96rem;
  line-height: 1.6;
}


/* =========================
   FUTURE
========================= */

.services-future {
  padding: 92px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(0,102,255,.34), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(216,255,0,.12), transparent 22%),
    linear-gradient(135deg, #020817 0%, #06133a 55%, #010511 100%);
}

.services-future-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.services-dark-pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #dfff00;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.services-future-copy h2 {
  color: #fff;
}

.services-future-copy p {
  margin: 20px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 1.06rem;
  line-height: 1.78;
}

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

.services-future-panel div {
  min-height: 180px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.services-future-panel span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #dfff00;
  font-size: 1.45rem;
  font-weight: 950;
}

.services-future-panel p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}


/* =========================
   WHO WE HELP
========================= */

.services-who {
  padding: 84px 0 94px;
  background: #fff;
}

.services-who-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.services-who-card {
  min-height: 130px;
  padding: 24px 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 16px 38px rgba(15,23,42,.07);
  text-align: center;
}

.services-who-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: #1557e8;
  stroke-width: 1.85;
}

.services-who-card h3 {
  margin: 0;
  color: #06133a;
  font-size: .96rem;
  line-height: 1.2;
  font-weight: 950;
}


/* =========================
   FAQ
========================= */

.services-faq-section {
  padding: 84px 0 92px;
  background:
    radial-gradient(circle at 85% 10%, rgba(37,99,235,.12), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.services-faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.services-faq-item {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(219,228,238,.9);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}

.services-faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 28px 80px 28px 30px;
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
  list-style: none;
}

.services-faq-item summary::-webkit-details-marker {
  display: none;
}

.services-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9f2ff;
  color: #2563eb;
  font-size: 1.4rem;
  font-weight: 700;
}

.services-faq-item[open] summary::after {
  content: "−";
}

.services-faq-item p {
  max-width: 760px;
  margin: 0;
  padding: 0 30px 30px;
  color: #475569;
  line-height: 1.8;
  font-size: 1rem;
}


/* =========================
   FINAL CTA
========================= */

.services-final-cta {
  padding: 0 0 92px;
  background: #fff;
}

.services-final-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,47,.18), transparent 30%),
    linear-gradient(135deg, #1557e8 0%, #06133a 100%);
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
}

.services-final-shell span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #dfff00;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.services-final-shell h2 {
  max-width: 760px;
  color: #fff;
}

.services-final-shell p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 1.05rem;
  line-height: 1.65;
}

.services-final-btn {
  white-space: nowrap;
  background: #dfff00;
  color: #06133a;
  box-shadow: 0 16px 34px rgba(216,255,0,.22);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .services-hero-grid,
  .services-intro-grid,
  .services-future-grid,
  .services-final-shell {
    grid-template-columns: 1fr;
  }

  .services-list-grid,
  .services-compare-grid,
  .services-options-grid {
    grid-template-columns: 1fr;
  }

  .services-process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 16px;
  }

  .services-process-card:not(:last-child)::after {
    display: none;
  }

  .services-who-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .services-hero {
    padding: 58px 0 70px;
  }

  .services-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .services-hero-actions {
    flex-direction: column;
  }

  .services-btn,
  .services-final-btn,
  .services-card-btn {
    width: 100%;
  }

  .services-hero-proof {
    grid-template-columns: 1fr;
  }

  .services-hero-proof div {
    border-right: 0;
    border-bottom: 1px solid #e5edf7;
  }

  .services-hero-proof div:last-child {
    border-bottom: 0;
  }

  .services-intro,
  .services-list-section,
  .services-compare,
  .services-process,
  .services-future,
  .services-who,
  .services-faq-section {
    padding: 64px 0 72px;
  }

  .services-stage-box div {
    align-items: flex-start;
  }

  .services-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-main-card {
    min-height: auto;
  }

  .services-process-row,
  .services-who-grid,
  .services-future-panel {
    grid-template-columns: 1fr;
  }

  .services-faq-item summary {
    padding: 22px 65px 22px 22px;
    font-size: 1rem;
  }

  .services-faq-item p {
    padding: 0 22px 22px;
  }

  .services-faq-item summary::after {
    right: 18px;
  }

  .services-final-shell {
    padding: 30px 24px;
  }
}

/* =========================
   About
========================= */

/* =========================
   ABOUT GROWBOT DIGITAL
========================= */

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 32%, rgba(0,102,255,.38), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(216,255,0,.16), transparent 24%),
    linear-gradient(135deg, #020817 0%, #031033 48%, #010511 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .78fr;
  gap: 68px;
  align-items: center;
}

.about-pill,
.about-kicker,
.about-section-head span,
.about-section-label span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.about-hero .about-pill {
  padding: 8px 17px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1557e8;
  font-size: .76rem;
}

.about-hero-copy h1 {
  max-width: 920px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2.8rem, 4.2vw, 5rem);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 950;
}

.about-hero-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.about-btn,
.about-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.about-btn.primary {
  background: #1769ff;
  color: #fff;
  box-shadow: 0 16px 34px rgba(23,105,255,.32);
}

.about-btn.secondary {
  background: #fff;
  color: #06133a;
}

.about-hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 38px 95px rgba(0,0,0,.30),
    0 0 80px rgba(37,99,235,.18);
}

.about-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-hero-card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  padding: 24px 26px;
  border-radius: 20px;
  background: #06133a;
  color: #fff;
  box-shadow: 0 22px 44px rgba(0,0,0,.24);
}

.about-hero-card strong {
  display: block;
  margin-bottom: 8px;
  color: #dfff00;
  font-size: 1.08rem;
  font-weight: 950;
}

.about-hero-card p {
  margin: 0;
  color: rgba(255,255,255,.86);
  line-height: 1.5;
}


/* =========================
   SECTION HEADINGS
========================= */

.about-section-head {
  max-width: 920px;
  margin: 0 auto 42px;
}

.about-section-head.center {
  text-align: center;
}

.about-section-head h2,
.about-story-copy h2,
.about-do-copy h2,
.about-vision-copy h2,
.about-links-box h2,
.about-final-shell h2 {
  margin: 0;
  color: #06133a;
  font-size: clamp(2.2rem, 3.8vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 950;
}

.about-section-head p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
}


/* =========================
   STORY
========================= */

.about-story {
  padding: 84px 0 84px;
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: .26fr 1fr;
  gap: 42px;
  align-items: start;
}

.about-section-label {
  position: sticky;
  top: 110px;
}

.about-section-label span {
  margin-top: 8px;
}

.about-story-copy {
  max-width: 920px;
}

.about-story-copy p {
  margin: 22px 0 0;
  color: #334155;
  font-size: 1.12rem;
  line-height: 1.85;
}

.about-story-media {
  grid-column: 2;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 26px;
  background: #eef5ff;
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 20px 50px rgba(15,23,42,.08);
}

.about-story-media img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
}


/* =========================
   BELIEFS
========================= */

.about-beliefs {
  padding: 82px 0 92px;
  background:
    radial-gradient(circle at 0% 0%, rgba(216,255,47,.28), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.about-belief-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-belief-card {
  min-height: 260px;
  padding: 30px 26px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 18px 42px rgba(15,23,42,.07);
}

.about-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #eaf2ff;
  color: #1557e8;
}

.about-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2;
}

.about-belief-card h3,
.about-choose-card h3,
.about-capability-card h3,
.about-future-card h3,
.about-timeline-item h3 {
  margin: 0 0 10px;
  color: #06133a;
  font-size: 1.14rem;
  line-height: 1.2;
  font-weight: 950;
}

.about-belief-card p,
.about-choose-card p,
.about-capability-card p,
.about-future-card p,
.about-timeline-item p {
  margin: 0;
  color: #475569;
  font-size: .98rem;
  line-height: 1.62;
}

.about-beliefs-media {
  position: relative;
  max-width: 1180px;
  margin: 38px auto 0;
  overflow: hidden;
  border-radius: 28px;
  background: #06133a;
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
}

.about-beliefs-media img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  opacity: .82;
}

.about-beliefs-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,8,23,.88) 0%, rgba(2,8,23,.52) 42%, rgba(2,8,23,.08) 100%);
  pointer-events: none;
}

.about-beliefs-media-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  max-width: 520px;
  padding: 28px 30px;
  border-radius: 22px;
  background: rgba(6,19,58,.92);
  color: #fff;
  box-shadow: 0 22px 44px rgba(0,0,0,.24);
}

.about-beliefs-media-card strong {
  display: block;
  margin-bottom: 10px;
  color: #dfff00;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 950;
}

.about-beliefs-media-card p {
  margin: 0;
  color: rgba(255,255,255,.84);
  line-height: 1.65;
}


/* =========================
   WHAT WE DO
========================= */

.about-do {
  padding: 86px 0 92px;
  background: #fff;
}

.about-do-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 54px;
  align-items: center;
}

.about-do-copy p {
  margin: 20px 0 0;
  color: #334155;
  font-size: 1.06rem;
  line-height: 1.78;
}

.about-do-image {
  margin-top: 30px;
  overflow: hidden;
  border-radius: 24px;
  background: #eef5ff;
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}

.about-do-image img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.about-capability-list {
  display: grid;
  gap: 16px;
}

.about-capability-card,
.about-future-card {
  min-height: 136px;
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 26px 28px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.about-capability-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(21,87,232,.08), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(191,206,226,.95);
  box-shadow:
    0 18px 42px rgba(15,23,42,.07),
    inset 0 0 0 1px rgba(255,255,255,.75);
}

.about-capability-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: #1557e8;
}

.about-capability-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(216,255,0,.16);
  pointer-events: none;
}

.about-capability-number {
  position: relative;
  z-index: 2;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1557e8;
  color: #fff;
  font-size: .9rem;
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(21,87,232,.28);
}

.about-capability-content {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-width: 0;
}

.about-capability-content h3 {
  margin: 0 0 8px;
  color: #06133a;
  font-size: 1.18rem;
  line-height: 1.18;
  font-weight: 950;
}

.about-capability-content p {
  margin: 0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.62;
}

.about-capability-content a {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: #1557e8;
  font-size: .92rem;
  font-weight: 950;
  text-decoration: none;
}

.about-capability-content a::after {
  content: "→";
  margin-left: 7px;
  transition: transform .2s ease;
}

.about-capability-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 54px rgba(15,23,42,.11),
    inset 0 0 0 1px rgba(255,255,255,.85);
}

.about-capability-card:hover .about-capability-content a::after {
  transform: translateX(3px);
}

.about-future-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,47,.18), transparent 30%),
    linear-gradient(135deg, #06133a 0%, #031033 100%);
  border: 1px solid rgba(59,130,246,.26);
  box-shadow: 0 16px 38px rgba(15,23,42,.10);
}

.about-future-card .about-capability-number {
  background: #dfff00;
  color: #06133a;
  font-size: .78rem;
}

.about-future-card .about-capability-content h3 {
  color: #fff;
}

.about-future-card .about-capability-content p {
  color: rgba(255,255,255,.78);
}

@media (max-width: 1100px) {
  .about-do-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-do {
    padding: 64px 0 72px;
  }

  .about-capability-card,
  .about-future-card {
    align-items: flex-start;
    padding: 22px;
  }

  .about-do-image img {
    height: 230px;
  }
}

.about-human-strip {
  max-width: 1180px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(216,255,47,.20), transparent 26%),
    linear-gradient(135deg, #06133a 0%, #031033 100%);
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
}

.about-human-strip-copy {
  padding: 42px;
  align-self: center;
}

.about-human-strip-copy span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #dfff00;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about-human-strip-copy h3 {
  max-width: 620px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 950;
}

.about-human-strip-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.04rem;
  line-height: 1.7;
}

.about-human-strip img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}


/* =========================
   VISION
========================= */

.about-vision {
  padding: 92px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(0,102,255,.34), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(216,255,0,.12), transparent 22%),
    linear-gradient(135deg, #020817 0%, #06133a 55%, #010511 100%);
}

.about-vision-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-dark-pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #dfff00;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about-vision-copy h2 {
  color: #fff;
}

.about-vision-copy p {
  margin: 20px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 1.06rem;
  line-height: 1.78;
}

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

.about-vision-item {
  min-height: 180px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.about-vision-item span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #dfff00;
  font-size: 1.45rem;
  font-weight: 950;
}

.about-vision-item p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}


/* =========================
   TRUST TIMELINE
========================= */

.about-trust {
  padding: 86px 0 94px;
  background: #eef5ff;
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.about-timeline-item {
  position: relative;
  min-height: 210px;
  padding: 42px 24px 26px;
  text-align: center;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #dfe7f3;
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}

.about-timeline-item:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  color: #dfff00;
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.about-timeline-item span {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1557e8;
  color: #fff;
  font-size: .85rem;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(21,87,232,.28);
}


/* =========================
   INTERNAL LINKS
========================= */

.about-links {
  padding: 48px 0 84px;
  background: #eef5ff;
}

.about-links-box {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0px 50px;
  align-items: center;
  padding: 38px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,47,.20), transparent 28%),
    linear-gradient(135deg, #eef5ff 0%, #ffffff 100%);
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.about-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-link-grid a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  background: #1769ff;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid #dfe7f3;
}


.about-link-grid a::after {
  content: "→";
  margin-left: auto;
  color: #fff;
}

/* ABOUT FOUNDER SECTION */
.about-founder-section {
  padding: 80px 0 40px;
  background: #ffffff;
}

.about-founder-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.about-founder-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: #f7f9fd;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
}

.about-founder-image {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

.about-founder-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #1f5eff;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-founder-content h2 {
  margin: 0 0 14px;
  color: #03153f;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.about-founder-content p {
  max-width: 820px;
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.65;
}



/* RESPONSIVE */
@media (max-width: 1100px) {
  .about-founder-card {
    grid-template-columns: 240px 1fr;
  }

}

@media (max-width: 768px) {
  .about-founder-section {
    padding: 60px 0 30px;
  }

  .about-founder-container {
    padding: 0 20px;
  }

  .about-founder-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-founder-image {
    height: auto;
  }
}


/* =========================
   FINAL CTA
========================= */

.about-final-cta {
  padding: 0 0 92px;
  background: #eef5ff;
}

.about-final-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,47,.18), transparent 30%),
    linear-gradient(135deg, #1557e8 0%, #06133a 100%);
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
}

.about-final-shell span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #dfff00;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.about-final-shell h2 {
  max-width: 760px;
  color: #fff;
}

.about-final-shell p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-final-btn {
  white-space: nowrap;
  background: #dfff00;
  color: #06133a;
  box-shadow: 0 16px 34px rgba(216,255,0,.22);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .about-hero-grid,
  .about-story-grid,
  .about-do-grid,
  .about-vision-grid,
  .about-links-box,
  .about-final-shell,
  .about-human-strip {
    grid-template-columns: 1fr;
  }

  .about-section-label {
    position: static;
  }

  .about-story-media {
    grid-column: auto;
  }

  .about-hero-copy h1 {
    max-width: 780px;
  }

  .about-belief-grid,
  .about-choose-grid,
  .about-vision-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 16px;
  }

  .about-timeline-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding: 58px 0 70px;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.8rem, 12vw, 4.3rem);
  }

  .about-hero-actions {
    flex-direction: column;
  }

  .about-btn,
  .about-final-btn {
    width: 100%;
  }

  .about-hero-visual,
  .about-hero-visual img {
    min-height: 420px;
  }

  .about-story,
  .about-beliefs,
  .about-do,
  .about-choose,
  .about-vision,
  .about-trust {
    padding: 64px 0 72px;
  }

  .about-belief-grid,
  .about-choose-grid,
  .about-vision-panel,
  .about-timeline,
  .about-link-grid {
    grid-template-columns: 1fr;
  }

  .about-story-media img,
  .about-beliefs-media img {
    height: 300px;
  }

  .about-beliefs-media-card {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    border-radius: 0;
    padding: 26px 24px;
  }

  .about-beliefs-media::after {
    display: none;
  }

  .about-human-strip-copy {
    padding: 30px 24px;
  }

  .about-human-strip img {
    min-height: 280px;
  }

  .about-do-image img {
    height: 230px;
  }

  .about-final-shell {
    padding: 30px 24px;
  }
}

/* =========================
   Contact
========================= */

.contact-section .contact-intro {
  max-width: 700px;
  margin-bottom: 22px;
  color: var(--color-muted);
}

.contact-shell {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-md);
}

/* =========================
   Footer
========================= */

.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.84);
  padding: 72px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-title {
  color: #fff;
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-brand p,
.footer-contact p {
  margin: 10px 0 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}


/* =========================
   Service Pages
========================= */

.service-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 140px 0 100px;
  background:
    radial-gradient(circle at 85% 20%, rgba(37,99,235,0.18), transparent 30%),
    radial-gradient(circle at 10% 70%, rgba(22,163,74,0.12), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.service-hero::before,
.service-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.service-hero::before {
  width: 260px;
  height: 260px;
  background: rgba(37, 99, 235, 0.12);
  right: -40px;
  top: 10px;
}

.service-hero::after {
  width: 200px;
  height: 200px;
  background: rgba(22, 163, 74, 0.10);
  left: -30px;
  bottom: 0;
}

.service-hero-wrap {
  width: 100%;
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.service-hero h1 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin: 0 0 18px;
}

.service-hero p {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 720px;
  margin: 0 0 28px;
}

.service-content-section {
  padding: 84px 0;
}

.service-panel {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.service-panel h2,
.service-panel h3 {
  margin-top: 0;
}

.service-includes {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.service-include-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #f8fbff;
}

.service-include-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: #15803d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.service-why {
  padding: 84px 0;
}

.service-why-panel {
  background: linear-gradient(135deg, #0f4fa8 0%, #0f172a 100%);
  color: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  position: relative;
  overflow: hidden;
}

.service-why-panel::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
  border-radius: 999px;
  pointer-events: none;
}

.service-why .section-kicker {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.service-why-header {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 28px;
}

.service-why-panel h2 {
  color: #fff;
  margin-bottom: 12px;
}

.service-why-header p {
  color: rgba(255,255,255,0.86);
  max-width: 700px;
  margin: 0;
}

.service-why-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.service-why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
}

.service-why-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.service-why-item strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.service-why-item p {
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.service-benefits-section {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.service-benefit-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.service-benefit-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.service-panel > p {
  margin-bottom: 22px;
  max-width: 760px;
  color: var(--color-muted);
}

.service-include-item strong {
  display: block;
  margin-bottom: 6px;
}

.service-include-item p {
  margin: 0;
  color: var(--color-muted);
}

.service-benefit-card p {
  margin: 0;
  color: var(--color-muted);
}

.service-cta-band {
  background: linear-gradient(135deg, #0f4fa8 0%, #0f172a 100%);
  color: #fff;
  padding: 72px 0;
}

.service-cta-band p {
  color: rgba(255,255,255,0.86);
  max-width: 700px;
}

.service-cta-band .button {
  margin-top: 14px;
}

.service-cta-kicker {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* =========================
   Google Profile Setup Landing - gbp
========================= */


/* =========================================
   FULL WIDTH HERO — GOOGLE PROFILE SETUP
========================================= */

/* =========================
   GBP SETUP HERO — COMPACT
========================= */

.gbp-new-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 78px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 38%, rgba(0,102,255,.42), transparent 24%),
    radial-gradient(circle at 78% 12%, rgba(0,102,255,.12), transparent 30%),
    linear-gradient(135deg, #020817 0%, #031033 45%, #010511 100%);
}

.gbp-new-hero-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 64px;
  align-items: center;
}

.gbp-new-pill {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 17px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1557e8;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gbp-new-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(3rem, 4.4vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.gbp-new-hero-copy p {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  line-height: 1.65;
}

.gbp-new-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 30px 0 26px;
}

.gbp-new-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.gbp-new-btn.primary {
  background: #1769ff;
  color: #fff;
  box-shadow: 0 16px 34px rgba(23,105,255,.32);
}

.gbp-new-btn.secondary {
  background: #fff;
  color: #06133a;
  border: 1px solid rgba(255,255,255,.22);
}

.gbp-new-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.gbp-new-trust span {
  color: #fff;
  font-weight: 900;
}

.gbp-new-trust span::before {
  content: "✓";
  margin-right: 8px;
  color: #1769ff;
}

/* HERO VISUAL */

.gbp-new-hero-visual {
  position: relative;
  min-height: 622px;
  padding: 0;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.75);
  box-shadow:
    0 38px 95px rgba(0,0,0,.30),
    0 0 80px rgba(37,99,235,.18);
}

.gbp-new-owner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 620px;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}

.gbp-new-rating {
  position: absolute;
  left: 34px;
  bottom: 72px;
  z-index: 3;
  max-width: 320px;
  padding: 24px 26px;
  border-radius: 18px;
  background: #06133a;
  color: #fff;
  box-shadow: 0 22px 44px rgba(0,0,0,.22);
}

.gbp-new-rating strong {
  display: block;
  color: #dfff00;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.gbp-new-rating p {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
}

.gbp-new-phone {
  position: absolute;
  right: -170px;
  bottom: -220px;
  z-index: 4;
  width: 550px;
  filter: drop-shadow(0 30px 34px rgba(0,0,0,.35));
}


/* RESPONSIVE */

@media (max-width: 1100px) {
  .gbp-new-hero-grid {
    grid-template-columns: 1fr;
  }

  .gbp-new-hero-visual {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .gbp-new-hero {
    padding: 48px 0 64px;
  }

  .gbp-new-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .gbp-new-actions {
    flex-direction: column;
  }

  .gbp-new-btn {
    width: 100%;
  }

  .gbp-new-hero-visual {
    min-height: auto;
    padding: 16px;
  }

  .gbp-new-owner,
  .gbp-new-rating,
  .gbp-new-phone {
    position: static;
    width: 100%;
    margin-bottom: 14px;
  }

  .gbp-new-owner {
    height: auto;
    aspect-ratio: 1.35 / .85;
    border-radius: 22px;
  }

  .gbp-new-phone {
    max-width: 240px;
    margin-inline: auto;
  }

}

.gbp-new-section-head {
  max-width: 920px;
  margin-bottom: 30px;
}

.gbp-new-section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gbp-new-section-head h2 {
  margin: 0;
  color: #06133a;
  font-size: clamp(2.3rem,3.8vw,3.9rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.gbp-new-foundation {
  padding: 80px 0 90px;
  background:
    radial-gradient(circle at 0% 20%, rgba(216,255,47,.30), transparent 20%),
    linear-gradient(180deg,#ffffff 0%,#eef5ff 100%);
}

/* BOTTOM STRIP */
.gbp-bottom-strip {
  width: calc(100% - 96px);
  max-width: 1640px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #06133a;
  border: 1px solid rgba(59,130,246,.34);
  border-radius: 18px;
  overflow: hidden;
}

.gbp-bottom-strip > div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 34px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.gbp-bottom-strip > div:last-child {
  border-right: 0;
}

.gbp-bottom-strip span {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #dfff00;
  border: 1px solid rgba(223,255,0,.25);
  font-size: 24px;
  box-shadow: 0 0 22px rgba(36,124,255,.4);
}

.gbp-bottom-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.gbp-bottom-copy strong {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
}

.gbp-bottom-copy p {
  margin: 0 !important;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
  font-size: 15px;
}

/* MOBILE CAROUSEL */
@media (max-width: 760px) {
  .gbp-bottom-strip {
    width: 100%;
    max-width: none;
    margin: 28px 0 0;
    padding: 0 20px 14px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    background: transparent;
    border: 0;
    border-radius: 0;
    -webkit-overflow-scrolling: touch;
  }

  .gbp-bottom-strip::-webkit-scrollbar {
    display: none;
  }

  .gbp-bottom-strip > div {
    flex: 0 0 82%;
    min-width: 82%;
    scroll-snap-align: center;
    align-items: center;
    gap: 18px;
    padding: 24px 22px;
    background: #06133a;
    border: 1px solid rgba(59,130,246,.34);
    border-radius: 20px;
  }

  .gbp-bottom-strip > div:last-child {
    margin-right: 20px;
  }

  .gbp-bottom-strip span {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
  }

  .gbp-bottom-copy {
    gap: 6px;
    min-width: 0;
  }

  .gbp-bottom-copy strong {
    font-size: 18px;
  }

  .gbp-bottom-copy p {
    font-size: 15px;
    color: rgba(255,255,255,.78);
  }
}




/* =========================
   GBP FOUNDATION / PROBLEMS
========================= */

/* =========================
   GBP FOUNDATION / PROBLEMS
========================= */

.gbp-foundation-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 90px;
}

.gbp-foundation-section::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 30px;
  width: 42%;
  height: 150px;
  border-radius: 0 0 100% 0;
  filter: blur(2px);
  transform: rotate(8deg);
  pointer-events: none;
}

.gbp-foundation-head {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.gbp-foundation-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.gbp-foundation-head h2 {
  margin: 0;
  color: #06133a;
  font-size: clamp(2.1rem, 3.4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 950;
}

.gbp-foundation-head h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #dfff00;
}

.gbp-foundation-proof {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.gbp-foundation-proof div {
  color: #06133a;
  font-size: .95rem;
  font-weight: 850;
  white-space: nowrap;
}

.gbp-foundation-proof div::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 999px;
  background: #dfff00;
  color: #06133a;
  font-size: .78rem;
  font-weight: 950;
}


/* Included - Everything You Need */

.gps2-included {
  background: #fff;
  padding: 56px 0 70px;
  border-top: 1px solid #e5edf7;
}

.gps2-section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.gps2-section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gps2-section-head h2 {
  margin: 14px 0 10px;
  color: #07153c;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  letter-spacing: -0.05em;
}

.gps2-section-head p {
  color: #475569;
  font-size: 1.05rem;
}

.gps2-included-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.gps2-card {
  min-height: 260px;
  padding: 28px 22px;
  border-radius: 18px;
  border: 1px solid #dfe7f3;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.gps2-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 900;
}

.gps2-card-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2;
}

.gps2-card-icon.blue { background: #edf4ff; color: #1557e8; }
.gps2-card-icon.green { background: #eaf9ef; color: #16a34a; }
.gps2-card-icon.orange { background: #fff2e2; color: #f97316; }
.gps2-card-icon.purple { background: #f1eaff; color: #8a4dff; }
.gps2-card-icon.red { background: #ffe9ee; color: #f43f5e; }

.gps2-card h3 {
  margin: 0 0 12px;
  color: #07153c;
  font-size: 1.15rem;
}

.gps2-card p {
  color: #475569;
  margin: 0;
}

/* Main white panel */

.gbp-problems-panel {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;

  display: flex;
  gap: 48px;
  align-items: stretch;

  border-radius: 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 26px 70px rgba(15,23,42,.10);
  backdrop-filter: blur(14px);
}

/* Left card */

.gbp-problems-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 420px;
  min-height: 520px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(219,228,238,.72);
}



.gbp-problems-card-copy {
  position: relative;
  z-index: 2;
}

.gbp-problems-card h3 {
  max-width: 340px;
  margin: 0 0 16px;
  color: #06133a;
  font-size: clamp(2rem, 3vw, 2.1rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}

.gbp-problems-card p {
  max-width: 330px;
  margin: 0;
  color: #334155;
  font-size: 1.04rem;
  line-height: 1.45;
  font-weight: 650;
}

.gbp-problems-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #1557e8;
  color: #fff;
  font-size: .95rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(21,87,232,.22);
}

.gbp-problems-card img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 1%;
}

/* Right list */

.gbp-problems-list {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gbp-problem-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(15,23,42,.10);
}

.gbp-problem-row:last-child {
  border-bottom: 0;
}

.gbp-problem-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #dfff00;
  color: #06133a;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 950;
}

.gbp-problem-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.gbp-problem-copy strong {
  display: block;
  margin-bottom: 5px;
  color: #06133a;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 950;
}

.gbp-problem-copy p {
  margin: 0;
  color: #334155;
  font-size: .98rem;
  line-height: 1.45;
}

/* Responsive */

@media (max-width: 980px) {
  .gbp-problems-panel {
    flex-direction: column;
    gap: 28px;
  }

  .gbp-problems-card {
    flex-basis: auto;
    min-height: 390px;
  }
  
  .gbp-problems-card img {
    display: none;
  }
}

@media (max-width: 760px) {
    .gbp-new-phone {
        display: none;
    }
}

@media (max-width: 640px) {
  .gbp-foundation-section {
    padding: 64px 0 72px;
  }

  .gbp-foundation-proof {
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
  }

  .gbp-foundation-proof div {
    white-space: normal;
  }

  .gbp-problems-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .gbp-problems-card {
    min-height: 430px;
    padding: 26px;
  }

  .gbp-problems-card h3 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .gbp-problem-row {
    gap: 14px;
    padding: 18px 0;
  }

  .gbp-problem-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
}


/* =========================
   GBP SETUP PROCESS
========================= */

.gbp-process-section {
  padding: 82px 0 92px;
  background: #fff;
}

.gbp-process-head {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: center;
}

.gbp-process-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.gbp-process-head h2 {
  margin: 0;
  color: #06133a;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 950;
}

.gbp-process-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.gbp-process-card {
  position: relative;
  min-height: 190px;
  padding: 44px 28px 26px;
  text-align: center;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #dfe7f3;
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}

.gbp-process-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  color: #dfff00;
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.gbp-process-number {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1557e8;
  color: #fff;
  font-size: .85rem;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(21,87,232,.28);
}

.gbp-process-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  width: 48px;
  height: 48px;
  color: #06133a;
  font-size: 2.1rem;
  line-height: 1;
}

.gbp-process-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 2;
}

.gbp-process-card h3 {
  margin: 0 0 8px;
  color: #06133a;
  font-size: 1.08rem;
  line-height: 1.1;
  font-weight: 950;
}

.gbp-process-card p {
  max-width: 150px;
  margin: 0 auto;
  color: #334155;
  font-size: .94rem;
  line-height: 1.35;
}

/* Responsive */

@media (max-width: 1100px) {
  .gbp-process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 16px;
  }

  .gbp-process-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .gbp-process-section {
    padding: 64px 0 72px;
  }

  .gbp-process-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gbp-process-card {
    min-height: auto;
    padding: 44px 24px 28px;
  }

  .gbp-process-card p {
    max-width: 260px;
  }
}


/* =========================
   GBP BENEFIT STRIP
========================= */

.gbp-benefit-strip-section {
  padding: 34px 0 46px;
  background: #fff;
}

.gbp-benefit-strip-head {
  max-width: 980px;
  margin: 0 auto 14px;
  text-align: center;
}

.gbp-benefit-strip-head span {
  display: inline-flex;
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.gbp-benefit-strip {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;

  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.gbp-benefit-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px 34px;
  border-right: 1px solid rgba(219,228,238,.9);
}

.gbp-benefit-item:last-child {
  border-right: 0;
}

.gbp-benefit-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #1557e8;
}

.gbp-benefit-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.8;
}

.gbp-benefit-item h3 {
  margin: 0 0 6px;
  color: #06133a;
  font-size: 1.08rem;
  line-height: 1.15;
  font-weight: 950;
}

.gbp-benefit-item p {
  margin: 0;
  color: #334155;
  font-size: .98rem;
  line-height: 1.35;
}

/* Responsive */

@media (max-width: 1100px) {
  .gbp-benefit-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .gbp-benefit-item:nth-child(2) {
    border-right: 0;
  }

  .gbp-benefit-item:nth-child(1),
  .gbp-benefit-item:nth-child(2) {
    border-bottom: 1px solid rgba(219,228,238,.9);
  }
}

@media (max-width: 640px) {
  .gbp-benefit-strip-section {
    padding: 28px 0 40px;
  }

  .gbp-benefit-strip {
    grid-template-columns: 1fr;
  }

  .gbp-benefit-item {
    border-right: 0;
    border-bottom: 1px solid rgba(219,228,238,.9);
    padding: 24px;
  }

  .gbp-benefit-item:last-child {
    border-bottom: 0;
  }
}


/* =====================================
   WHY IT MATTERS
===================================== */

.gps2-why {
  background: #06163d;
  padding: 110px 0;
}

.gps2-why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 50px;
    align-items: center;
    color: #fff;
}

.gps2-why-kicker-wrap {
  text-align: center;
  margin-bottom: 18px;
}

.gps2-why .gps2-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.25);
  color: #60a5fa;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gps2-why-heading-card {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 24px;
}

.gps2-why-heading-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.gps2-why-text-row {
  max-width: 980px;
  margin: 0 auto 60px;
  text-align: center;
}

.gps2-why-text-row p {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 16px;
}

.gps2-why-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  background: #081f4f;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  overflow: hidden;
}

.gps2-why-item {
  text-align: center;
  padding: 42px 28px;
  border-left: 1px solid rgba(255,255,255,.08);
}

.gps2-why-item:first-child {
  border-left: 0;
}

.gps2-why-item span {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.25);
  color: #3b82f6;
  font-size: 30px;
  line-height: 1;
}

.gps2-why-item h3 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 800;
}

.gps2-why-item p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 15px;
}

/* MOBILE */

@media (max-width: 980px) {

  .gps2-why-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .gps2-why-item:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 760px) {

  .gps2-why {
    padding: 70px 0;
  }

  .gps2-why-heading-card h2 {
    font-size: 2rem;
  }

  .gps2-why-text-row p {
    font-size: 16px;
  }

  .gps2-why-strip {
    grid-template-columns: 1fr;
  }

  .gps2-why-item {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .gps2-why-item:first-child {
    border-top: 0;
  }
}


/* =========================
   GBP BEFORE / AFTER
========================= */

.gbp-before-after-section {
  padding: 34px 0 74px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.gbp-before-after-head {
  max-width: 980px;
  margin: 0 auto 24px;
  text-align: center;
}

.gbp-before-after-head span {
  display: inline-flex;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  box-shadow: 0 10px 24px rgba(15,23,42,.04);
}

.gbp-before-after-box {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.gbp-before-after-card {
  padding: 34px 44px 38px;
}

.gbp-before-after-card.before {
  background: #fff1f1;
}

.gbp-before-after-card.after {
  background: #efffed;
}

.gbp-before-after-card h3 {
  margin: 0 0 18px;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 950;
}

.gbp-before-after-card.before h3 {
  color: #ef4444;
}

.gbp-before-after-card.after h3 {
  color: #16a34a;
}

.gbp-before-after-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gbp-before-after-card li {
  position: relative;
  margin: 0 0 13px;
  padding-left: 26px;
  color: #334155;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 650;
}

.gbp-before-after-card li:last-child {
  margin-bottom: 0;
}

.gbp-before-after-card.before li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
  color: #ef4444;
  font-weight: 900;
}

.gbp-before-after-card.after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 900;
}

/* Responsive */

@media (max-width: 760px) {
  .gbp-before-after-section {
    padding: 28px 0 58px;
  }

  .gbp-before-after-box {
    grid-template-columns: 1fr;
  }

  .gbp-before-after-card {
    padding: 28px 26px;
  }
}


/* =========================
   GBP SERVICE-AREA BANNER
========================= */

.gbp-service-area-section {
  padding: 56px 0 82px;
  background: #fff;
}

.gbp-service-area-banner {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr .75fr .95fr;
  gap: 34px;
  align-items: center;
  padding: 42px 42px 34px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 34%, rgba(37,99,235,.35), transparent 34%),
    linear-gradient(135deg, #1557e8 0%, #06133a 58%, #031033 100%);
  box-shadow: 0 26px 70px rgba(15,23,42,.18);
}

.gbp-service-area-banner::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 25px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.16);
}

.gbp-service-area-copy {
  position: relative;
  z-index: 2;
}

.gbp-service-area-pill {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #dfff00;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gbp-service-area-copy h2 {
  max-width: 440px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2.1rem, 3.4vw, 3.55rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}

.gbp-service-area-copy p {
  max-width: 440px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 600;
}

.gbp-service-area-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: #dfff00;
  color: #06133a;
  font-size: .95rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(216,255,0,.22);
}

.gbp-service-area-list {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 18px;
}

.gbp-service-area-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 850;
}

.gbp-service-area-list span {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #dfff00;
  color: #06133a;
  font-size: .95rem;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(216,255,0,.18);
}

.gbp-service-area-visual {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-height: 230px;
}

.gbp-service-area-visual img {
  position: absolute;
  right: -18px;
  bottom: -34px;
  width: 118%;
  max-width: 520px;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 38px rgba(0,0,0,.28));
}

/* Responsive */

@media (max-width: 1100px) {
  .gbp-service-area-banner {
    grid-template-columns: 1fr 1fr;
  }

  .gbp-service-area-visual {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .gbp-service-area-visual img {
    right: 0;
    bottom: -34px;
    width: 70%;
  }
}

@media (max-width: 760px) {
  .gbp-service-area-section {
    padding: 44px 0 64px;
  }

  .gbp-service-area-banner {
    grid-template-columns: 1fr;
    padding: 30px 24px 0;
  }

  .gbp-service-area-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .gbp-service-area-list {
    gap: 14px;
  }

  .gbp-service-area-list div {
    font-size: 1rem;
  }

  .gbp-service-area-visual {
    min-height: 230px;
  }

  .gbp-service-area-visual img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 420px;
    margin: 12px auto 0;
  }
}

/* =========================
   GBP PERFECT FOR STRIP
========================= */

.gbp-perfect-section {
  padding: 54px 0 74px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.gbp-perfect-head {
  max-width: 980px;
  margin: 0 auto 18px;
  text-align: center;
}

.gbp-perfect-head span {
  display: inline-flex;
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.gbp-perfect-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.gbp-perfect-card {
  min-height: 116px;
  padding: 22px 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 16px 38px rgba(15,23,42,.07);
  text-align: center;
}

.gbp-perfect-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  width: 42px;
  height: 42px;
  color: #1557e8;
}

.gbp-perfect-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.85;
}

.gbp-perfect-card h3 {
  margin: 0;
  color: #06133a;
  font-size: .95rem;
  line-height: 1.2;
  font-weight: 950;
}

/* Responsive */

@media (max-width: 1100px) {
  .gbp-perfect-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .gbp-perfect-section {
    padding: 44px 0 58px;
  }

  .gbp-perfect-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gbp-perfect-card {
    min-height: 112px;
    padding: 20px 12px 16px;
  }
}



/* Shared light-blue section background */

.gps2-soft-bg {
  background:
    radial-gradient(circle at 12% 8%, rgba(37,99,235,.10), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(37,99,235,.14), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}




/* ===== GBP Setup Bridge Section ===== */

.gbp-setup-bridge {
  padding: 74px 0 10px;
  background: #ffffff;
}

.gbp-setup-bridge-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.gbp-setup-bridge-pill {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gbp-setup-bridge h2 {
  margin: 0 0 22px;
  color: #06133a;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gbp-setup-bridge p {
  max-width: 820px;
  margin: 0 auto;
  color: #475569;
  font-size: 1.15rem;
  line-height: 1.85;
}

/* CTA */

.gps2-final-cta,
.gps2-final-cta .container,
.gps2-final-shell {
  overflow: visible !important;
}

.gps2-final-shell {
  position: relative;
  padding: 30px 34px;
  overflow: visible !important;
}

.gps2-final-left {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 190px;
  min-height: 210px;
}

.gps2-final-left img {
  position: absolute !important;
  left: -105px;
  bottom: -38px;
  width: 310px !important;
  max-width: none !important;
  height: auto !important;
  transform: rotate(-12deg);
  transform-origin: left bottom;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,0.28))
          drop-shadow(0 0 20px rgba(216,255,47,0.32));
}

.gps2-final-left > div {
  position: relative;
  z-index: 6;
}

.gps2-final-left h2 {
  margin: 0 0 10px;
}

.gps2-final-action .gps2-btn-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dfff00 !important;
  color: #06133a !important;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}

.gps2-final-action .gps2-btn-lime:hover {
  background: #ecff4d !important;
  color: #06133a !important;
}

@media (max-width: 900px) {
  .gps2-final-shell {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 24px;
  }

  .gps2-final-left {
    padding-left: 0;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .gps2-final-left img {
    position: relative !important;
    left: auto;
    bottom: auto;
    width: 130px !important;
    transform: rotate(-10deg);
    margin-bottom: 10px;
  }

  .gps2-final-price {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,0.24);
    border-bottom: 1px solid rgba(255,255,255,0.24);
    padding: 22px 0;
  }
}

/* ===== Google Business Profile Setup FAQ ===== */


/* ==================================================
   GOOGLE BUSINESS PROFILE SETUP FAQ
   Uses Homepage FAQ Classes
================================================== */

.gbp-faq-section {
  padding: 10px 0 70px;
  background:
    radial-gradient(circle at 85% 10%, rgba(37,99,235,.12), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.gbp-faq-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.gbp-faq-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  color: #2563eb;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gbp-faq-header h2 {
  margin: 0 0 18px;
  color: #0f172a;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: .95;
  letter-spacing: -0.05em;
}

.gbp-faq-header p {
  max-width: 720px;
  margin: 0 auto;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
}

.gbp-faq-list {
  max-width: 980px;
  margin: 0 auto;
}

/* =====================================
   FAQ ITEMS
===================================== */

.faq-item {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(219,228,238,.9);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
  transition: all .3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
}

.faq-question {
  width: 100%;
  position: relative;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  padding: 28px 80px 28px 30px;

  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #e9f2ff;

  color: #2563eb;
  font-size: 1.4rem;
  font-weight: 700;
}

.faq-answer {
  display: none;
  padding: 0 30px 30px;
}

.faq-answer p {
  margin: 0;
  max-width: 760px;
  color: #475569;
  line-height: 1.8;
  font-size: 1rem;
}

/* =====================================
   ACTIVE STATE
===================================== */

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: "−";
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 768px) {

  .gbp-faq-section {
    padding: 80px 0 50px;
  }

  .faq-question {
    padding: 22px 65px 22px 22px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 22px 22px;
  }

  .faq-question::after {
    right: 18px;
  }
}



/* CTA */

.gps2-final-cta {
  background: #fff;
  padding: 20px 0 80px;
}

.gps2-final-shell {
  display: grid;
  grid-template-columns: 1.4fr 0.45fr 0.75fr;
  gap: 32px;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,47,0.18), transparent 30%),
    linear-gradient(135deg, #1557e8 0%, #0630bd 100%);
  border-radius: 20px;
  padding: 30px 34px;
  color: #fff;
  overflow: hidden;
}

.gps2-final-left {
  display: flex;
  align-items: center;
  gap: 26px;
}

.gps2-final-left img {
  width: 150px;
  flex: 0 0 auto;
}

.gps2-final-left h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.05em;
}

.gps2-final-left h2 span {
  color: #d8ff2f;
}

.gps2-final-left p {
  color: rgba(255,255,255,0.86);
  margin: 0;
}

.gps2-final-price {
  border-left: 1px solid rgba(255,255,255,0.24);
  border-right: 1px solid rgba(255,255,255,0.24);
  padding: 0 28px;
}

.gps2-final-price span {
  display: block;
  color: rgba(255,255,255,0.86);
  font-weight: 800;
}

.gps2-final-price strong {
  display: block;
  font-size: 4rem;
  line-height: 1;
  color: #fff;
}

.gps2-final-action {
  display: grid;
  gap: 14px;
}

.gps2-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255,255,255,0.86);
  font-size: 0.92rem;
}

/* Responsive */

@media (max-width: 1200px) {
  .gps2-hero-grid,
  .gps2-why-grid,
  .gps2-benefits-grid,
  .gps2-final-shell {
    grid-template-columns: 1fr;
  }

  .gps2-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gps2-why-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .gps2-benefit-list,
  .gps2-who-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gps2-final-price {
    border-left: 0;
    border-right: 0;
    padding: 0;
  }
}

@media (max-width: 760px) {
  .gps2-hero {
    padding: 56px 0 0;
  }

  .gps2-hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .gps2-proof-row,
  .gps2-included-grid,
  .gps2-why-items,
  .gps2-benefit-list,
  .gps2-who-grid,
  .gps2-ba-grid {
    grid-template-columns: 1fr;
  }

  .gps2-hero-actions {
    flex-direction: column;
  }

  .gps2-btn,
  .gps2-price-card {
    width: 100%;
  }

  .gps2-hero-visual {
    min-height: 520px;
  }

  .gps2-blue-brush {
    right: 50%;
    transform: translateX(50%);
    width: 360px;
    height: 360px;
  }

  .gps2-hero-bubble {
    width: 160px;
    height: 160px;
    right: 8px;
    top: 160px;
    font-size: 0.86rem;
  }

  .gps2-ba-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .gps2-who-card,
  .gps2-final-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .gps2-final-price strong {
    font-size: 3rem;
  }
}


/* =========================
   Google Business Profile Optimisation - gopt
========================= */


/* =========================
   GOPT HERO
========================= */

.gopt-new-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 78px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 38%, rgba(0,102,255,.42), transparent 24%),
    radial-gradient(circle at 78% 12%, rgba(0,102,255,.12), transparent 30%),
    linear-gradient(135deg, #020817 0%, #031033 45%, #010511 100%);
}

.gopt-new-hero-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 64px;
  align-items: center;
}

.gopt-new-pill {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 17px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1557e8;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gopt-new-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(3rem, 4.4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.gopt-new-hero-copy p {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  line-height: 1.65;
}

.gopt-new-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 30px 0 26px;
}

.gopt-new-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.gopt-new-btn.primary {
  background: #1769ff;
  color: #fff;
  box-shadow: 0 16px 34px rgba(23,105,255,.32);
}

.gopt-new-btn.secondary {
  background: #fff;
  color: #06133a;
  border: 1px solid rgba(255,255,255,.22);
}

.gopt-new-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.gopt-new-trust span {
  color: #fff;
  font-weight: 900;
}

.gopt-new-trust span::before {
  content: "✓";
  margin-right: 8px;
  color: #1769ff;
}


/* HERO VISUAL */

.gopt-new-hero-visual {
  position: relative;
  min-height: 622px;
  padding: 0;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.75);
  box-shadow:
    0 38px 95px rgba(0,0,0,.30),
    0 0 80px rgba(37,99,235,.18);
}

.gopt-new-owner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 620px;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}

.gopt-new-rating {
  position: absolute;
  left: 34px;
  bottom: 72px;
  z-index: 3;
  max-width: 320px;
  padding: 24px 26px;
  border-radius: 18px;
  background: #06133a;
  color: #fff;
  box-shadow: 0 22px 44px rgba(0,0,0,.22);
}

.gopt-new-rating strong {
  display: block;
  color: #dfff00;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.gopt-new-rating p {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
}

.gopt-new-phone {
  position: absolute;
  right: -170px;
  bottom: -220px;
  z-index: 4;
  width: 550px;
  filter: drop-shadow(0 30px 34px rgba(0,0,0,.35));
}


/* RESPONSIVE HERO */

@media (max-width: 1100px) {
  .gopt-new-hero-grid {
    grid-template-columns: 1fr;
  }

  .gopt-new-hero-visual {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .gopt-new-hero {
    padding: 48px 0 64px;
  }

  .gopt-new-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .gopt-new-actions {
    flex-direction: column;
  }

  .gopt-new-btn {
    width: 100%;
  }

  .gopt-new-hero-visual {
    min-height: auto;
    padding: 16px;
  }

  .gopt-new-owner,
  .gopt-new-rating,
  .gopt-new-phone {
    position: static;
    width: 100%;
    margin-bottom: 14px;
  }

  .gopt-new-owner {
    height: auto;
    aspect-ratio: 1.35 / .85;
    border-radius: 22px;
  }

  .gopt-new-phone {
    display: none;
  }
}


/* =========================
   BOTTOM STRIP
========================= */

.gopt-bottom-strip {
  width: calc(100% - 96px);
  max-width: 1640px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #06133a;
  border: 1px solid rgba(59,130,246,.34);
  border-radius: 18px;
  overflow: hidden;
}

.gopt-bottom-strip > div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 34px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.gopt-bottom-strip > div:last-child {
  border-right: 0;
}

.gopt-bottom-strip span,
.gopt-card-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #dfff00;
  border: 1px solid rgba(223,255,0,.25);
  font-size: 24px;
  box-shadow: 0 0 22px rgba(36,124,255,.4);
}

.gopt-card-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.gopt-bottom-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.gopt-bottom-copy strong {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
}

.gopt-bottom-copy p {
  margin: 0 !important;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
  font-size: 15px;
}


/* MOBILE CAROUSEL */

@media (max-width: 760px) {
  .gopt-bottom-strip {
    width: 100%;
    max-width: none;
    margin: 28px 0 0;
    padding: 0 20px 14px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    background: transparent;
    border: 0;
    border-radius: 0;
    -webkit-overflow-scrolling: touch;
  }

  .gopt-bottom-strip::-webkit-scrollbar {
    display: none;
  }

  .gopt-bottom-strip > div {
    flex: 0 0 82%;
    min-width: 82%;
    scroll-snap-align: center;
    align-items: center;
    gap: 18px;
    padding: 24px 22px;
    background: #06133a;
    border: 1px solid rgba(59,130,246,.34);
    border-radius: 20px;
  }

  .gopt-bottom-strip > div:last-child {
    margin-right: 20px;
  }

  .gopt-bottom-strip span,
  .gopt-card-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
  }

  .gopt-bottom-copy strong {
    font-size: 18px;
  }

  .gopt-bottom-copy p {
    font-size: 15px;
    color: rgba(255,255,255,.78);
  }
}


/* =========================
   SHARED GOPT HEADINGS
========================= */

.gopt-section-head {
  max-width: 920px;
  margin-bottom: 30px;
}

.gopt-section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gopt-section-head h2 {
  margin: 0;
  color: #06133a;
  font-size: clamp(2.3rem, 3.8vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.gopt-section-head p {
  max-width: 820px;
  margin: 18px auto 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
}

.gopt-section-head a {
  color: #1557e8;
  font-weight: 900;
}

.gopt-kicker,
.gopt-process-head span,
.gopt-benefit-strip-head span,
.gopt-perfect-head span,
.gopt-bottom-form-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}


/* =========================
   FOUNDATION / PROBLEMS
========================= */

.gopt-foundation-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 90px;
}

.gopt-foundation-section::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 30px;
  width: 42%;
  height: 150px;
  border-radius: 0 0 100% 0;
  filter: blur(2px);
  transform: rotate(8deg);
  pointer-events: none;
}

.gopt-foundation-head {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.gopt-foundation-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.gopt-foundation-head h2 {
  margin: 0;
  color: #06133a;
  font-size: clamp(2.1rem, 3.4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 950;
}

.gopt-foundation-head h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #dfff00;
}

.gopt-foundation-proof {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.gopt-foundation-proof div {
  color: #06133a;
  font-size: .95rem;
  font-weight: 850;
  white-space: nowrap;
}

.gopt-foundation-proof div::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 999px;
  background: #dfff00;
  color: #06133a;
  font-size: .78rem;
  font-weight: 950;
}


/* Main white panel */

.gopt-problems-panel {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  gap: 48px;
  align-items: stretch;
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 26px 70px rgba(15,23,42,.10);
  backdrop-filter: blur(14px);
}


/* Left card */

.gopt-problems-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 420px;
  min-height: 520px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(219,228,238,.72);
}

.gopt-problems-card-copy {
  position: relative;
  z-index: 2;
}

.gopt-problems-card h3 {
  max-width: 340px;
  margin: 0 0 16px;
  color: #06133a;
  font-size: clamp(2rem, 3vw, 2.1rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}

.gopt-problems-card p {
  max-width: 330px;
  margin: 0;
  color: #334155;
  font-size: 1.04rem;
  line-height: 1.45;
  font-weight: 650;
}

.gopt-problems-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #1557e8;
  color: #fff;
  font-size: .95rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(21,87,232,.22);
}

.gopt-problems-card img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 1%;
}


/* Right list */

.gopt-problems-list {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gopt-problem-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(15,23,42,.10);
}

.gopt-problem-row:last-child {
  border-bottom: 0;
}

.gopt-problem-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #dfff00;
  color: #06133a;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 950;
}

.gopt-problem-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.gopt-problem-copy strong {
  display: block;
  margin-bottom: 5px;
  color: #06133a;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 950;
}

.gopt-problem-copy p {
  margin: 0;
  color: #334155;
  font-size: .98rem;
  line-height: 1.45;
}


/* Foundation responsive */

@media (max-width: 980px) {
  .gopt-problems-panel {
    flex-direction: column;
    gap: 28px;
  }

  .gopt-problems-card {
    flex-basis: auto;
    min-height: 390px;
  }

  .gopt-problems-card img {
    display: none;
  }
}

@media (max-width: 640px) {
  .gopt-foundation-section {
    padding: 64px 0 72px;
  }

  .gopt-foundation-proof {
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
  }

  .gopt-foundation-proof div {
    white-space: normal;
  }

  .gopt-problems-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .gopt-problems-card {
    min-height: 430px;
    padding: 26px;
  }

  .gopt-problems-card h3 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .gopt-problem-row {
    gap: 14px;
    padding: 18px 0;
  }

  .gopt-problem-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
}


/* =========================
   INCLUDED / WHAT YOU GET
========================= */

.gopt-included {
  background: #fff;
  padding: 56px 0 70px;
  border-top: 1px solid #e5edf7;
}

.gopt-included-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.gopt-card {
  min-height: 260px;
  padding: 28px 22px;
  border-radius: 18px;
  border: 1px solid #dfe7f3;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15,23,42,.05);
}

.gopt-card .gopt-card-icon,
.gopt-card-icon.blue,
.gopt-card-icon.green,
.gopt-card-icon.orange,
.gopt-card-icon.purple,
.gopt-card-icon.red {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: none;
  border: 0;
}

.gopt-card-icon.blue {
  background: #edf4ff;
  color: #1557e8;
}

.gopt-card-icon.green {
  background: #eaf9ef;
  color: #16a34a;
}

.gopt-card-icon.orange {
  background: #fff2e2;
  color: #f97316;
}

.gopt-card-icon.purple {
  background: #f1eaff;
  color: #8a4dff;
}

.gopt-card-icon.red {
  background: #ffe9ee;
  color: #f43f5e;
}

.gopt-card-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2;
}

.gopt-card h3 {
  margin: 0 0 12px;
  color: #07153c;
  font-size: 1.15rem;
}

.gopt-card p {
  color: #475569;
  margin: 0;
}


/* =========================
   OPTIMISATION BRIDGE
========================= */

.gopt-setup-bridge {
  padding: 74px 0 10px;
  background: #ffffff;
}

.gopt-setup-bridge-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.gopt-setup-bridge-pill {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #2563eb;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gopt-setup-bridge h2 {
  margin: 0 0 22px;
  color: #06133a;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 800;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gopt-setup-bridge p {
  max-width: 820px;
  margin: 0 auto;
  color: #475569;
  font-size: 1.15rem;
  line-height: 1.85;
}


/* =========================
   FINAL CTA
========================= */

.gopt-final-cta,
.gopt-final-cta .container,
.gopt-final-shell {
  overflow: visible !important;
}

.gopt-final-cta {
  background: #fff;
  padding: 20px 0 80px;
}

.gopt-final-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr .45fr .75fr;
  gap: 32px;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,47,.18), transparent 30%),
    linear-gradient(135deg, #1557e8 0%, #0630bd 100%);
  border-radius: 20px;
  padding: 30px 34px;
  color: #fff;
}

.gopt-final-left {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding-left: 190px;
  min-height: 210px;
}

.gopt-final-left img {
  position: absolute !important;
  left: -105px;
  bottom: -38px;
  width: 310px !important;
  max-width: none !important;
  height: auto !important;
  transform: rotate(-12deg);
  transform-origin: left bottom;
  z-index: 5;
  pointer-events: none;
  filter:
    drop-shadow(0 22px 34px rgba(0,0,0,.28))
    drop-shadow(0 0 20px rgba(216,255,47,.32));
}

.gopt-final-left > div {
  position: relative;
  z-index: 6;
}

.gopt-final-left h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -.05em;
}

.gopt-final-left p {
  color: rgba(255,255,255,.86);
  margin: 0;
}

.gopt-final-price {
  border-left: 1px solid rgba(255,255,255,.24);
  border-right: 1px solid rgba(255,255,255,.24);
  padding: 0 28px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
}

.gopt-final-price strong {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  color: #fff;
}

.gopt-final-action {
  display: grid;
  gap: 14px;
}

.gopt-final-action .gopt-btn-lime,
.gopt-btn.gopt-btn-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dfff00 !important;
  color: #06133a !important;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

.gopt-final-action .gopt-btn-lime:hover,
.gopt-btn.gopt-btn-lime:hover {
  background: #ecff4d !important;
  color: #06133a !important;
}

.gopt-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255,255,255,.86);
  font-size: .92rem;
}


/* =========================
   PROCESS
========================= */

.gopt-process-section {
  padding: 82px 0 92px;
  background: #fff;
}

.gopt-process-head {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: center;
}

.gopt-process-head h2 {
  margin: 0;
  color: #06133a;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 950;
}

.gopt-process-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.gopt-process-card {
  position: relative;
  min-height: 190px;
  padding: 44px 28px 26px;
  text-align: center;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #dfe7f3;
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}

.gopt-process-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  color: #dfff00;
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.gopt-process-number {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1557e8;
  color: #fff;
  font-size: .85rem;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(21,87,232,.28);
}

.gopt-process-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  width: 48px;
  height: 48px;
  color: #06133a;
  font-size: 2.1rem;
  line-height: 1;
}

.gopt-process-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 2;
}

.gopt-process-card h3 {
  margin: 0 0 8px;
  color: #06133a;
  font-size: 1.08rem;
  line-height: 1.1;
  font-weight: 950;
}

.gopt-process-card p {
  max-width: 150px;
  margin: 0 auto;
  color: #334155;
  font-size: .94rem;
  line-height: 1.35;
}


/* Process responsive */

@media (max-width: 1100px) {
  .gopt-process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 16px;
  }

  .gopt-process-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .gopt-process-section {
    padding: 64px 0 72px;
  }

  .gopt-process-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gopt-process-card {
    min-height: auto;
    padding: 44px 24px 28px;
  }

  .gopt-process-card p {
    max-width: 260px;
  }
}


/* =========================
   BENEFIT STRIP
========================= */

.gopt-benefit-strip-section {
  padding: 34px 0 46px;
  background: #fff;
}

.gopt-benefit-strip-head {
  max-width: 980px;
  margin: 0 auto 14px;
  text-align: center;
}

.gopt-benefit-strip {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.gopt-benefit-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px 34px;
  border-right: 1px solid rgba(219,228,238,.9);
}

.gopt-benefit-item:last-child {
  border-right: 0;
}

.gopt-benefit-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #1557e8;
}

.gopt-benefit-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.8;
}

.gopt-benefit-item h3 {
  margin: 0 0 6px;
  color: #06133a;
  font-size: 1.08rem;
  line-height: 1.15;
  font-weight: 950;
}

.gopt-benefit-item p {
  margin: 0;
  color: #334155;
  font-size: .98rem;
  line-height: 1.35;
}


/* Benefit responsive */

@media (max-width: 1100px) {
  .gopt-benefit-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .gopt-benefit-item:nth-child(2) {
    border-right: 0;
  }

  .gopt-benefit-item:nth-child(1),
  .gopt-benefit-item:nth-child(2) {
    border-bottom: 1px solid rgba(219,228,238,.9);
  }
}

@media (max-width: 640px) {
  .gopt-benefit-strip-section {
    padding: 28px 0 40px;
  }

  .gopt-benefit-strip {
    grid-template-columns: 1fr;
  }

  .gopt-benefit-item {
    border-right: 0;
    border-bottom: 1px solid rgba(219,228,238,.9);
    padding: 24px;
  }

  .gopt-benefit-item:last-child {
    border-bottom: 0;
  }
}


/* =========================
   WHY / BEFORE AFTER
========================= */

.gopt-why {
  padding: 78px 0 86px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.gopt-why-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 42px;
  align-items: center;
}

.gopt-why-copy h2 {
  margin: 0 0 18px;
  color: #06133a;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 950;
}

.gopt-why-copy p {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.65;
}

.gopt-before-after-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.gopt-before-after-card {
  padding: 34px 38px;
}

.gopt-before-after-card.before {
  background: #fff1f1;
}

.gopt-before-after-card.after {
  background: #efffed;
}

.gopt-before-after-card h3 {
  margin: 0 0 18px;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 950;
}

.gopt-before-after-card.before h3 {
  color: #ef4444;
}

.gopt-before-after-card.after h3 {
  color: #16a34a;
}

.gopt-before-after-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gopt-before-after-card li {
  position: relative;
  margin: 0 0 13px;
  padding-left: 26px;
  color: #334155;
  font-size: .98rem;
  line-height: 1.45;
  font-weight: 650;
}

.gopt-before-after-card li:last-child {
  margin-bottom: 0;
}

.gopt-before-after-card.before li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
  color: #ef4444;
  font-weight: 900;
}

.gopt-before-after-card.after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 900;
}

@media (max-width: 1200px) {
  .gopt-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .gopt-why {
    padding: 70px 0;
  }

  .gopt-before-after-box {
    grid-template-columns: 1fr;
  }

  .gopt-before-after-card {
    padding: 28px 26px;
  }
}


/* =========================
   AUDIT BANNER
========================= */

.gopt-service-area-section {
  padding: 56px 0 82px;
  background: #fff;
}

.gopt-service-area-banner {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr .75fr .95fr;
  gap: 34px;
  align-items: center;
  padding: 42px 42px 34px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 34%, rgba(37,99,235,.35), transparent 34%),
    linear-gradient(135deg, #1557e8 0%, #06133a 58%, #031033 100%);
  box-shadow: 0 26px 70px rgba(15,23,42,.18);
}

.gopt-service-area-banner::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 25px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.16);
}

.gopt-service-area-copy,
.gopt-service-area-list,
.gopt-service-area-visual {
  position: relative;
  z-index: 2;
}

.gopt-service-area-pill {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #dfff00;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gopt-service-area-copy h2 {
  max-width: 440px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}

.gopt-service-area-copy p {
  max-width: 440px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 600;
}

.gopt-service-area-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: #dfff00;
  color: #06133a;
  font-size: .95rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(216,255,0,.22);
}

.gopt-service-area-list {
  display: grid;
  gap: 18px;
}

.gopt-service-area-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 850;
}

.gopt-service-area-list span {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #dfff00;
  color: #06133a;
  font-size: .95rem;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(216,255,0,.18);
}

.gopt-service-area-visual {
  align-self: stretch;
  min-height: 230px;
}

.gopt-service-area-visual img {
  position: absolute;
  right: -18px;
  bottom: -34px;
  width: 118%;
  max-width: 520px;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 38px rgba(0,0,0,.28));
}


/* Audit banner responsive */

@media (max-width: 1100px) {
  .gopt-service-area-banner {
    grid-template-columns: 1fr 1fr;
  }

  .gopt-service-area-visual {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .gopt-service-area-visual img {
    right: 0;
    bottom: -34px;
    width: 70%;
  }
}

@media (max-width: 760px) {
  .gopt-service-area-section {
    padding: 44px 0 64px;
  }

  .gopt-service-area-banner {
    grid-template-columns: 1fr;
    padding: 30px 24px 0;
  }

  .gopt-service-area-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .gopt-service-area-list {
    gap: 14px;
  }

  .gopt-service-area-list div {
    font-size: 1rem;
  }

  .gopt-service-area-visual {
    min-height: 230px;
  }

  .gopt-service-area-visual img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 420px;
    margin: 12px auto 0;
  }
}


/* =========================
   PERFECT FOR
========================= */

.gopt-perfect-section {
  padding: 54px 0 74px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.gopt-perfect-head {
  max-width: 980px;
  margin: 0 auto 18px;
  text-align: center;
}

.gopt-perfect-head span {
  display: inline-flex;
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.gopt-perfect-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.gopt-perfect-card {
  min-height: 116px;
  padding: 22px 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 16px 38px rgba(15,23,42,.07);
  text-align: center;
}

.gopt-perfect-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  width: 42px;
  height: 42px;
  color: #1557e8;
}

.gopt-perfect-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.85;
}

.gopt-perfect-card h3 {
  margin: 0;
  color: #06133a;
  font-size: .95rem;
  line-height: 1.2;
  font-weight: 950;
}


/* Perfect for responsive */

@media (max-width: 1100px) {
  .gopt-perfect-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .gopt-perfect-section {
    padding: 44px 0 58px;
  }

  .gopt-perfect-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gopt-perfect-card {
    min-height: 112px;
    padding: 20px 12px 16px;
  }
}


/* =========================
   FAQ WRAPPER ONLY
   FAQ item styling comes from homepage classes:
   home-faq-block / home-faq-head / home-faq-list / home-faq-item
========================= */

.gopt-faq-section {
  padding: 10px 0 70px;
}

.gopt-soft-bg {
  background:
    radial-gradient(circle at 85% 10%, rgba(37,99,235,.12), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

@media (max-width: 768px) {
  .gopt-faq-section {
    padding: 80px 0 50px;
  }
}


/* =========================
   GENERAL RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .gopt-final-shell {
    grid-template-columns: 1fr;
  }

  .gopt-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gopt-final-price {
    border-left: 0;
    border-right: 0;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.24);
    border-bottom: 1px solid rgba(255,255,255,.24);
  }
}

@media (max-width: 900px) {
  .gopt-final-shell {
    text-align: left;
    gap: 24px;
  }

  .gopt-final-left {
    padding-left: 0;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .gopt-final-left img {
    position: relative !important;
    left: auto;
    bottom: auto;
    width: 130px !important;
    transform: rotate(-10deg);
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .gopt-included-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Google Business Profile Monthly Management - gmm
========================= */


/* =========================
   GMM HERO
========================= */

.gmm-new-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 78px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 38%, rgba(0,102,255,.42), transparent 24%),
    radial-gradient(circle at 78% 12%, rgba(0,102,255,.12), transparent 30%),
    linear-gradient(135deg, #020817 0%, #031033 45%, #010511 100%);
}

.gmm-new-hero-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 64px;
  align-items: center;
}

.gmm-new-pill {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 17px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1557e8;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gmm-new-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(3rem, 4.4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.gmm-new-hero-copy p {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  line-height: 1.65;
}

.gmm-new-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 30px 0 26px;
}

.gmm-new-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.gmm-new-btn.primary {
  background: #1769ff;
  color: #fff;
  box-shadow: 0 16px 34px rgba(23,105,255,.32);
}

.gmm-new-btn.secondary {
  background: #fff;
  color: #06133a;
  border: 1px solid rgba(255,255,255,.22);
}

.gmm-new-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.gmm-new-trust span {
  color: #fff;
  font-weight: 900;
}

.gmm-new-trust span::before {
  content: "✓";
  margin-right: 8px;
  color: #1769ff;
}


/* HERO VISUAL */

.gmm-new-hero-visual {
  position: relative;
  min-height: 622px;
  padding: 0;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.75);
  box-shadow:
    0 38px 95px rgba(0,0,0,.30),
    0 0 80px rgba(37,99,235,.18);
}

.gmm-new-owner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 620px;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}

.gmm-new-rating {
  position: absolute;
  left: 34px;
  bottom: 72px;
  z-index: 3;
  max-width: 320px;
  padding: 24px 26px;
  border-radius: 18px;
  background: #06133a;
  color: #fff;
  box-shadow: 0 22px 44px rgba(0,0,0,.22);
}

.gmm-new-rating strong {
  display: block;
  color: #dfff00;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.gmm-new-rating p {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
}

.gmm-new-phone {
  position: absolute;
  right: -170px;
  bottom: -220px;
  z-index: 4;
  width: 550px;
  filter: drop-shadow(0 30px 34px rgba(0,0,0,.35));
}


/* RESPONSIVE HERO */

@media (max-width: 1100px) {
  .gmm-new-hero-grid {
    grid-template-columns: 1fr;
  }

  .gmm-new-hero-visual {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .gmm-new-hero {
    padding: 48px 0 64px;
  }

  .gmm-new-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .gmm-new-actions {
    flex-direction: column;
  }

  .gmm-new-btn {
    width: 100%;
  }

  .gmm-new-hero-visual {
    min-height: auto;
    padding: 16px;
  }

  .gmm-new-owner,
  .gmm-new-rating,
  .gmm-new-phone {
    position: static;
    width: 100%;
    margin-bottom: 14px;
  }

  .gmm-new-owner {
    height: auto;
    aspect-ratio: 1.35 / .85;
    border-radius: 22px;
  }

  .gmm-new-phone {
    display: none;
  }
}


/* =========================
   BOTTOM STRIP
========================= */

.gmm-bottom-strip {
  width: calc(100% - 96px);
  max-width: 1640px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #06133a;
  border: 1px solid rgba(59,130,246,.34);
  border-radius: 18px;
  overflow: hidden;
}

.gmm-bottom-strip > div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 34px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.gmm-bottom-strip > div:last-child {
  border-right: 0;
}

.gmm-bottom-strip span,
.gmm-card-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #dfff00;
  border: 1px solid rgba(223,255,0,.25);
  font-size: 24px;
  box-shadow: 0 0 22px rgba(36,124,255,.4);
}

.gmm-card-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.gmm-bottom-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.gmm-bottom-copy strong {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
}

.gmm-bottom-copy p {
  margin: 0 !important;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
  font-size: 15px;
}


/* MOBILE CAROUSEL */

@media (max-width: 760px) {
  .gmm-bottom-strip {
    width: 100%;
    max-width: none;
    margin: 28px 0 0;
    padding: 0 20px 14px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    background: transparent;
    border: 0;
    border-radius: 0;
    -webkit-overflow-scrolling: touch;
  }

  .gmm-bottom-strip::-webkit-scrollbar {
    display: none;
  }

  .gmm-bottom-strip > div {
    flex: 0 0 82%;
    min-width: 82%;
    scroll-snap-align: center;
    align-items: center;
    gap: 18px;
    padding: 24px 22px;
    background: #06133a;
    border: 1px solid rgba(59,130,246,.34);
    border-radius: 20px;
  }

  .gmm-bottom-strip > div:last-child {
    margin-right: 20px;
  }

  .gmm-bottom-strip span,
  .gmm-card-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
  }

  .gmm-bottom-copy strong {
    font-size: 18px;
  }

  .gmm-bottom-copy p {
    font-size: 15px;
    color: rgba(255,255,255,.78);
  }
}


/* =========================
   SHARED GMM HEADINGS
========================= */

.gmm-section-head {
  max-width: 920px;
  margin-bottom: 30px;
}

.gmm-section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gmm-section-head h2 {
  margin: 0;
  color: #06133a;
  font-size: clamp(2.3rem, 3.8vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.gmm-section-head p {
  max-width: 820px;
  margin: 18px auto 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
}

.gmm-section-head a {
  color: #1557e8;
  font-weight: 900;
}

.gmm-kicker,
.gmm-process-head span,
.gmm-benefit-strip-head span,
.gmm-perfect-head span,
.gmm-bottom-form-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}


/* =========================
   FOUNDATION / PROBLEMS
========================= */

.gmm-foundation-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 90px;
}

.gmm-foundation-section::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 30px;
  width: 42%;
  height: 150px;
  border-radius: 0 0 100% 0;
  filter: blur(2px);
  transform: rotate(8deg);
  pointer-events: none;
}

.gmm-foundation-head {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.gmm-foundation-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.gmm-foundation-head h2 {
  margin: 0;
  color: #06133a;
  font-size: clamp(2.1rem, 3.4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 950;
}

.gmm-foundation-head h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #dfff00;
}

.gmm-foundation-proof {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.gmm-foundation-proof div {
  color: #06133a;
  font-size: .95rem;
  font-weight: 850;
  white-space: nowrap;
}

.gmm-foundation-proof div::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 999px;
  background: #dfff00;
  color: #06133a;
  font-size: .78rem;
  font-weight: 950;
}


/* Main white panel */

.gmm-problems-panel {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  gap: 48px;
  align-items: stretch;
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 26px 70px rgba(15,23,42,.10);
  backdrop-filter: blur(14px);
}


/* Left card */

.gmm-problems-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 420px;
  min-height: 520px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(219,228,238,.72);
}

.gmm-problems-card-copy {
  position: relative;
  z-index: 2;
}

.gmm-problems-card h3 {
  max-width: 340px;
  margin: 0 0 16px;
  color: #06133a;
  font-size: clamp(2rem, 3vw, 2.1rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}

.gmm-problems-card p {
  max-width: 330px;
  margin: 0;
  color: #334155;
  font-size: 1.04rem;
  line-height: 1.45;
  font-weight: 650;
}

.gmm-problems-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #1557e8;
  color: #fff;
  font-size: .95rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(21,87,232,.22);
}

.gmm-problems-card img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 1%;
}


/* Right list */

.gmm-problems-list {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gmm-problem-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(15,23,42,.10);
}

.gmm-problem-row:last-child {
  border-bottom: 0;
}

.gmm-problem-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #dfff00;
  color: #06133a;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 950;
}

.gmm-problem-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.gmm-problem-copy strong {
  display: block;
  margin-bottom: 5px;
  color: #06133a;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 950;
}

.gmm-problem-copy p {
  margin: 0;
  color: #334155;
  font-size: .98rem;
  line-height: 1.45;
}


/* Foundation responsive */

@media (max-width: 980px) {
  .gmm-problems-panel {
    flex-direction: column;
    gap: 28px;
  }

  .gmm-problems-card {
    flex-basis: auto;
    min-height: 390px;
  }

  .gmm-problems-card img {
    display: none;
  }
}

@media (max-width: 640px) {
  .gmm-foundation-section {
    padding: 64px 0 72px;
  }

  .gmm-foundation-proof {
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
  }

  .gmm-foundation-proof div {
    white-space: normal;
  }

  .gmm-problems-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .gmm-problems-card {
    min-height: 430px;
    padding: 26px;
  }

  .gmm-problems-card h3 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .gmm-problem-row {
    gap: 14px;
    padding: 18px 0;
  }

  .gmm-problem-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
}


/* =========================
   INCLUDED / WHAT YOU GET
========================= */

.gmm-included {
  background: #fff;
  padding: 56px 0 70px;
  border-top: 1px solid #e5edf7;
}

.gmm-included-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.gmm-card {
  min-height: 260px;
  padding: 28px 22px;
  border-radius: 18px;
  border: 1px solid #dfe7f3;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15,23,42,.05);
}

.gmm-card .gmm-card-icon,
.gmm-card-icon.blue,
.gmm-card-icon.green,
.gmm-card-icon.orange,
.gmm-card-icon.purple,
.gmm-card-icon.red {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: none;
  border: 0;
}

.gmm-card-icon.blue {
  background: #edf4ff;
  color: #1557e8;
}

.gmm-card-icon.green {
  background: #eaf9ef;
  color: #16a34a;
}

.gmm-card-icon.orange {
  background: #fff2e2;
  color: #f97316;
}

.gmm-card-icon.purple {
  background: #f1eaff;
  color: #8a4dff;
}

.gmm-card-icon.red {
  background: #ffe9ee;
  color: #f43f5e;
}

.gmm-card-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2;
}

.gmm-card h3 {
  margin: 0 0 12px;
  color: #07153c;
  font-size: 1.15rem;
}

.gmm-card p {
  color: #475569;
  margin: 0;
}


/* =========================
   MANAGEMENT BRIDGE
========================= */

.gmm-setup-bridge {
  padding: 74px 0 10px;
  background: #ffffff;
}

.gmm-setup-bridge-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.gmm-setup-bridge-pill {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #2563eb;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gmm-setup-bridge h2 {
  margin: 0 0 22px;
  color: #06133a;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 800;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gmm-setup-bridge p {
  max-width: 820px;
  margin: 0 auto;
  color: #475569;
  font-size: 1.15rem;
  line-height: 1.85;
}


/* =========================
   FINAL CTA
========================= */

.gmm-final-cta,
.gmm-final-cta .container,
.gmm-final-shell {
  overflow: visible !important;
}

.gmm-final-cta {
  background: #fff;
  padding: 20px 0 80px;
}

.gmm-final-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr .45fr .75fr;
  gap: 32px;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,47,.18), transparent 30%),
    linear-gradient(135deg, #1557e8 0%, #0630bd 100%);
  border-radius: 20px;
  padding: 30px 34px;
  color: #fff;
}

.gmm-final-left {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding-left: 190px;
  min-height: 210px;
}

.gmm-final-left img {
  position: absolute !important;
  left: -105px;
  bottom: -38px;
  width: 310px !important;
  max-width: none !important;
  height: auto !important;
  transform: rotate(-12deg);
  transform-origin: left bottom;
  z-index: 5;
  pointer-events: none;
  filter:
    drop-shadow(0 22px 34px rgba(0,0,0,.28))
    drop-shadow(0 0 20px rgba(216,255,47,.32));
}

.gmm-final-left > div {
  position: relative;
  z-index: 6;
}

.gmm-final-left h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.5rem);
  letter-spacing: -.05em;
}

.gmm-final-left p {
  color: rgba(255,255,255,.86);
  margin: 0;
}

.gmm-final-price {
  border-left: 1px solid rgba(255,255,255,.24);
  border-right: 1px solid rgba(255,255,255,.24);
  padding: 0 28px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
}

.gmm-final-price strong {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  color: #fff;
}

.gmm-final-action {
  display: grid;
  gap: 14px;
}

.gmm-final-action .gmm-btn-lime,
.gmm-btn.gmm-btn-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dfff00 !important;
  color: #06133a !important;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

.gmm-final-action .gmm-btn-lime:hover,
.gmm-btn.gmm-btn-lime:hover {
  background: #ecff4d !important;
  color: #06133a !important;
}

.gmm-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255,255,255,.86);
  font-size: .92rem;
}


/* =========================
   PROCESS
========================= */

.gmm-process-section {
  padding: 82px 0 92px;
  background: #fff;
}

.gmm-process-head {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: center;
}

.gmm-process-head h2 {
  margin: 0;
  color: #06133a;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 950;
}

.gmm-process-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.gmm-process-card {
  position: relative;
  min-height: 190px;
  padding: 44px 28px 26px;
  text-align: center;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #dfe7f3;
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}

.gmm-process-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  color: #dfff00;
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.gmm-process-number {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1557e8;
  color: #fff;
  font-size: .85rem;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(21,87,232,.28);
}

.gmm-process-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  width: 48px;
  height: 48px;
  color: #06133a;
  font-size: 2.1rem;
  line-height: 1;
}

.gmm-process-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 2;
}

.gmm-process-card h3 {
  margin: 0 0 8px;
  color: #06133a;
  font-size: 1.08rem;
  line-height: 1.1;
  font-weight: 950;
}

.gmm-process-card p {
  max-width: 150px;
  margin: 0 auto;
  color: #334155;
  font-size: .94rem;
  line-height: 1.35;
}


/* Process responsive */

@media (max-width: 1100px) {
  .gmm-process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 16px;
  }

  .gmm-process-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .gmm-process-section {
    padding: 64px 0 72px;
  }

  .gmm-process-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gmm-process-card {
    min-height: auto;
    padding: 44px 24px 28px;
  }

  .gmm-process-card p {
    max-width: 260px;
  }
}


/* =========================
   BENEFIT STRIP
========================= */

.gmm-benefit-strip-section {
  padding: 34px 0 46px;
  background: #fff;
}

.gmm-benefit-strip-head {
  max-width: 980px;
  margin: 0 auto 14px;
  text-align: center;
}

.gmm-benefit-strip {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.gmm-benefit-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px 34px;
  border-right: 1px solid rgba(219,228,238,.9);
}

.gmm-benefit-item:last-child {
  border-right: 0;
}

.gmm-benefit-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #1557e8;
}

.gmm-benefit-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.8;
}

.gmm-benefit-item h3 {
  margin: 0 0 6px;
  color: #06133a;
  font-size: 1.08rem;
  line-height: 1.15;
  font-weight: 950;
}

.gmm-benefit-item p {
  margin: 0;
  color: #334155;
  font-size: .98rem;
  line-height: 1.35;
}


/* Benefit responsive */

@media (max-width: 1100px) {
  .gmm-benefit-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .gmm-benefit-item:nth-child(2) {
    border-right: 0;
  }

  .gmm-benefit-item:nth-child(1),
  .gmm-benefit-item:nth-child(2) {
    border-bottom: 1px solid rgba(219,228,238,.9);
  }
}

@media (max-width: 640px) {
  .gmm-benefit-strip-section {
    padding: 28px 0 40px;
  }

  .gmm-benefit-strip {
    grid-template-columns: 1fr;
  }

  .gmm-benefit-item {
    border-right: 0;
    border-bottom: 1px solid rgba(219,228,238,.9);
    padding: 24px;
  }

  .gmm-benefit-item:last-child {
    border-bottom: 0;
  }
}


/* =========================
   WHY / BEFORE AFTER
========================= */

.gmm-why {
  padding: 78px 0 86px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.gmm-why-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 42px;
  align-items: center;
}

.gmm-why-copy h2 {
  margin: 0 0 18px;
  color: #06133a;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 950;
}

.gmm-why-copy p {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.65;
}

.gmm-before-after-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.gmm-before-after-card {
  padding: 34px 38px;
}

.gmm-before-after-card.before {
  background: #fff1f1;
}

.gmm-before-after-card.after {
  background: #efffed;
}

.gmm-before-after-card h3 {
  margin: 0 0 18px;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 950;
}

.gmm-before-after-card.before h3 {
  color: #ef4444;
}

.gmm-before-after-card.after h3 {
  color: #16a34a;
}

.gmm-before-after-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gmm-before-after-card li {
  position: relative;
  margin: 0 0 13px;
  padding-left: 26px;
  color: #334155;
  font-size: .98rem;
  line-height: 1.45;
  font-weight: 650;
}

.gmm-before-after-card li:last-child {
  margin-bottom: 0;
}

.gmm-before-after-card.before li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
  color: #ef4444;
  font-weight: 900;
}

.gmm-before-after-card.after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 900;
}

@media (max-width: 1200px) {
  .gmm-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .gmm-why {
    padding: 70px 0;
  }

  .gmm-before-after-box {
    grid-template-columns: 1fr;
  }

  .gmm-before-after-card {
    padding: 28px 26px;
  }
}


/* =========================
   MONTHLY DELIVERABLES BANNER
========================= */

.gmm-service-area-section {
  padding: 56px 0 82px;
  background: #fff;
}

.gmm-service-area-banner {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr .75fr .95fr;
  gap: 34px;
  align-items: center;
  padding: 42px 42px 34px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 34%, rgba(37,99,235,.35), transparent 34%),
    linear-gradient(135deg, #1557e8 0%, #06133a 58%, #031033 100%);
  box-shadow: 0 26px 70px rgba(15,23,42,.18);
}

.gmm-service-area-banner::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 25px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.16);
}

.gmm-service-area-copy,
.gmm-service-area-list,
.gmm-service-area-visual {
  position: relative;
  z-index: 2;
}

.gmm-service-area-pill {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #dfff00;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gmm-service-area-copy h2 {
  max-width: 440px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2.1rem, 3.4vw, 2.55rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}

.gmm-service-area-copy p {
  max-width: 440px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 600;
}

.gmm-service-area-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: #dfff00;
  color: #06133a;
  font-size: .95rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(216,255,0,.22);
}

.gmm-service-area-list {
  display: grid;
  gap: 18px;
}

.gmm-service-area-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 850;
}

.gmm-service-area-list span {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #dfff00;
  color: #06133a;
  font-size: .95rem;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(216,255,0,.18);
}

.gmm-service-area-visual {
  align-self: stretch;
  min-height: 230px;
}

.gmm-service-area-visual img {
  position: absolute;
  right: -18px;
  bottom: -34px;
  width: 118%;
  max-width: 520px;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 38px rgba(0,0,0,.28));
}


/* Service-area responsive */

@media (max-width: 1100px) {
  .gmm-service-area-banner {
    grid-template-columns: 1fr 1fr;
  }

  .gmm-service-area-visual {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .gmm-service-area-visual img {
    right: 0;
    bottom: -34px;
    width: 70%;
  }
}

@media (max-width: 760px) {
  .gmm-service-area-section {
    padding: 44px 0 64px;
  }

  .gmm-service-area-banner {
    grid-template-columns: 1fr;
    padding: 30px 24px 0;
  }

  .gmm-service-area-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .gmm-service-area-list {
    gap: 14px;
  }

  .gmm-service-area-list div {
    font-size: 1rem;
  }

  .gmm-service-area-visual {
    min-height: 230px;
  }

  .gmm-service-area-visual img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 420px;
    margin: 12px auto 0;
  }
}


/* =========================
   PERFECT FOR
========================= */

.gmm-perfect-section {
  padding: 54px 0 74px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.gmm-perfect-head {
  max-width: 980px;
  margin: 0 auto 18px;
  text-align: center;
}

.gmm-perfect-head span {
  display: inline-flex;
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.gmm-perfect-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.gmm-perfect-card {
  min-height: 116px;
  padding: 22px 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 16px 38px rgba(15,23,42,.07);
  text-align: center;
}

.gmm-perfect-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  width: 42px;
  height: 42px;
  color: #1557e8;
}

.gmm-perfect-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.85;
}

.gmm-perfect-card h3 {
  margin: 0;
  color: #06133a;
  font-size: .95rem;
  line-height: 1.2;
  font-weight: 950;
}


/* Perfect for responsive */

@media (max-width: 1100px) {
  .gmm-perfect-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .gmm-perfect-section {
    padding: 44px 0 58px;
  }

  .gmm-perfect-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gmm-perfect-card {
    min-height: 112px;
    padding: 20px 12px 16px;
  }
}


/* =========================
   FAQ WRAPPER ONLY
   FAQ item styling comes from homepage classes:
   home-faq-block / home-faq-head / home-faq-list / home-faq-item
========================= */

.gmm-faq-section {
  padding: 10px 0 70px;
}

.gmm-soft-bg {
  background:
    radial-gradient(circle at 85% 10%, rgba(37,99,235,.12), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

@media (max-width: 768px) {
  .gmm-faq-section {
    padding: 80px 0 50px;
  }
}


/* =========================
   GENERAL RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .gmm-final-shell {
    grid-template-columns: 1fr;
  }

  .gmm-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gmm-final-price {
    border-left: 0;
    border-right: 0;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.24);
    border-bottom: 1px solid rgba(255,255,255,.24);
  }
}

@media (max-width: 900px) {
  .gmm-final-shell {
    text-align: left;
    gap: 24px;
  }

  .gmm-final-left {
    padding-left: 0;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .gmm-final-left img {
    position: relative !important;
    left: auto;
    bottom: auto;
    width: 130px !important;
    transform: rotate(-10deg);
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .gmm-included-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Responsive
========================= */

@media (max-width: 1200px) {
  .home2-problem-shell,
  .home2-final-cta-shell {
    grid-template-columns: 1fr;
  }

  .home2-service-grid,
  .home2-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home2-impact-grid,
  .whychoose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .whychoose-item:nth-child(2) {
    border-right: 0;
  }

  .whychoose-item:nth-child(1),
  .whychoose-item:nth-child(2) {
    padding-bottom: 28px;
  }

  .whychoose-item:nth-child(3),
  .whychoose-item:nth-child(4) {
    padding-top: 28px;
  }
}

@media (max-width: 1100px) {
  .gps-hero-grid,
  .gps-bottom-cta-inner {
    grid-template-columns: 1fr;
  }

  .gps-card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
  }

  .site-branding {
    justify-content: flex-start;
    width: auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-cta,
  .header-cta.desktop-only,
  .desktop-only {
    display: none !important;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    justify-content: stretch;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(219,228,238,0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15,23,42,0.12);
    padding: 16px;
    backdrop-filter: blur(14px);
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-menu > li > a {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    justify-content: space-between;
    border-radius: 12px;
  }

  .nav-menu > li > a:hover,
  .nav-menu > li > a:focus {
    background: #f8fbff;
  }

  .nav-menu > li.menu-item-has-children {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-menu > li.menu-item-has-children > a {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
  }

  .nav-menu > li.menu-item-has-children > a::after {
    display: none;
  }

  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .submenu-toggle::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #334155;
    border-bottom: 2px solid #334155;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .nav-menu > li.submenu-open > .submenu-toggle::before {
    transform: rotate(-135deg);
  }

  .nav-menu .sub-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 6px;
    padding: 8px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid var(--color-border);
  }

  .nav-menu .sub-menu::before {
    display: none;
  }

  .nav-menu > li.submenu-open > .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    grid-column: 1 / -1;
  }

  .problem-grid,
  .about-card,
  .audit-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .steps-grid,
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-benefits,
  .service-why-list {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding: 80px 0 60px;
  }
}

@media (max-width: 760px) {
  .home2-impact-grid,
  .whychoose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home2-impact-item,
  .whychoose-item {
    border-right: 0;
    border-bottom: 1px solid #e3eaf5;
    padding: 0 0 20px;
    margin-bottom: 20px;
  }

  .home2-impact-item:last-child,
  .whychoose-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .home2-final-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .home2-final-micro {
    flex-direction: column;
    align-items: flex-start;
  }

  .whychoose-heading {
    gap: 12px;
    margin-bottom: 26px;
  }

  .whychoose-heading span {
    width: 32px;
  }

  .whychoose-heading p {
    text-align: center;
    font-size: 0.82rem;
  }

  .whychoose-copy h3 {
    font-size: 1.28rem;
  }

  .whychoose-copy p {
    font-size: 1rem;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 74px 0;
  }

  .button {
    width: 100%;
    max-width: 320px;
  }

  .site-branding .custom-logo {
    height: 60px !important;
    max-width: 220px !important;
  }

  .site-nav {
    left: 0;
    right: 0;
  }

  .services-grid,
  .steps-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .gps-proof-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gps-hero {
    padding: 78px 0 54px;
  }

  .gps-card-grid-4,
  .gps-card-grid-3 {
    grid-template-columns: 1fr;
  }

  .gps-hero-micro,
  .gps-bottom-micro {
    flex-direction: column;
    gap: 10px;
  }

  .gps-bottom-cta-copy {
    flex-direction: column;
  }

  .gps-form-card,
  .gps-info-card,
  .gps-benefit-card,
  .gps-person-card,
  .gps-dark-card,
  .service-why-panel,
  .service-panel {
    padding: 18px;
  }
}


/* =========================================
   Influencer Marketplace Product Preview
   Growbot Digital
========================================= */

:root {
  --imx-navy: #06113d;
  --imx-navy-dark: #020824;
  --imx-blue: #1f5bea;
  --imx-blue-bright: #2f7bff;
  --imx-yellow: #d7ff00;
  --imx-white: #ffffff;
  --imx-soft: #f3f7ff;
  --imx-text: #34415c;
  --imx-border: rgba(255, 255, 255, 0.16);
  --imx-shadow: 0 28px 80px rgba(6, 17, 61, 0.16);
}

.imx-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HERO */

.imx-hero {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  color: var(--imx-white);
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(2, 8, 36, 0.92) 0%,
      rgba(2, 8, 36, 0.78) 42%,
      rgba(2, 8, 36, 0.35) 100%
    ),
    url("/wp-content/uploads/2026/06/stylish-silly-feminine-africanamerican-woman-partying-silver-stylish-dress-folding-lips-mwah-gest.jpg")
      center right / cover no-repeat;
}

.imx-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 56px;
  align-items: center;
  padding: 110px 0;
}

.imx-kicker,
.imx-pill,
.imx-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(215, 255, 0, 0.12);
  color: var(--imx-yellow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.imx-hero h1 {
  margin: 22px 0 24px;
  max-width: 760px;
  color: var(--imx-white);
  font-size: clamp(3.8rem, 8.5vw, 8rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.imx-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
  line-height: 1.75;
}

.imx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.imx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.imx-btn:hover {
  transform: translateY(-2px);
}

.imx-btn-primary {
  background: var(--imx-yellow);
  color: var(--imx-navy-dark);
  box-shadow: 0 18px 46px rgba(215, 255, 0, 0.25);
}

.imx-btn-secondary {
  background: rgba(255, 255, 255, 0.09);
  color: var(--imx-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.imx-build-card {
  justify-self: end;
  max-width: 390px;
  padding: 34px;
  border-radius: 32px;
  background: rgba(2, 8, 36, 0.68);
  border: 1px solid var(--imx-border);
  backdrop-filter: blur(18px);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.38);
}

.imx-build-card span {
  color: var(--imx-yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.imx-build-card h3 {
  margin: 15px 0 22px;
  color: var(--imx-white);
  font-size: 2rem;
  line-height: 1;
}

.imx-build-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.imx-build-card li {
  position: relative;
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.imx-build-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--imx-yellow);
  font-weight: 900;
}

/* SHARED */

.imx-section {
  padding: 120px 0;
  background: var(--imx-soft);
  color: var(--imx-navy);
}

.imx-section-head {
  max-width: 880px;
  margin-bottom: 42px;
}

.imx-section h2,
.imx-vision h2,
.imx-roadmap h2,
.imx-launch h2 {
  margin: 18px 0 24px;
  color: var(--imx-navy);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.imx-section p,
.imx-vision p,
.imx-roadmap p,
.imx-launch p {
  color: var(--imx-text);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* VISION */

.imx-vision {
  padding: 96px 0;
  color: var(--imx-white);
  background:
    radial-gradient(circle at top right, rgba(31, 91, 234, 0.42), transparent 34%),
    linear-gradient(135deg, #020824 0%, #06113d 62%, #102b37 100%);
}

.imx-vision-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.imx-vision h2 {
  color: var(--imx-white);
}

.imx-vision p {
  color: rgba(255, 255, 255, 0.76);
}

.imx-vision-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.imx-vision-card {
  min-height: 220px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.imx-vision-card h3 {
  margin: 0 0 18px;
  color: var(--imx-yellow);
  font-size: 1.55rem;
  line-height: 1;
}

.imx-vision-card p {
  margin: 0;
}

/* PROBLEM */

.imx-problem {
  background: var(--imx-white);
}

.imx-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.imx-problem-card,
.imx-future-card {
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  border: 1px solid #d8e5ff;
  box-shadow: 0 18px 52px rgba(6, 17, 61, 0.07);
}

.imx-problem-card h3,
.imx-future-card h3 {
  margin: 0 0 16px;
  color: var(--imx-navy);
  font-size: 1.45rem;
  line-height: 1.1;
}

.imx-problem-card p,
.imx-future-card p {
  margin: 0;
}

/* PREVIEW */

.imx-preview {
  background: var(--imx-soft);
}

.imx-preview-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
  margin-top: 42px;
}

.imx-preview-row + .imx-preview-row {
  margin-top: 70px;
}

.imx-preview-row.reverse .imx-preview-image {
  order: 2;
}

.imx-preview-row.reverse .imx-preview-copy {
  order: 1;
}

.imx-preview-image {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--imx-shadow);
  background: var(--imx-navy);
}

.imx-preview-image img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.imx-preview-image:hover img {
  transform: scale(1.035);
}

.imx-preview-copy {
  padding: 20px 0;
}

.imx-preview-copy span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--imx-blue);
  color: var(--imx-white);
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(31, 91, 234, 0.28);
}

.imx-preview-copy h3 {
  margin: 24px 0 16px;
  color: var(--imx-navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.imx-preview-copy p {
  max-width: 560px;
}

/* ROADMAP */

.imx[Truncated]


/* =========================
   AI Image to Video Creator
========================= */

.gbai-container {
  width: 92% !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.gbai-hero {
  background: radial-gradient(circle at top right, #7c22ff 0, transparent 34%),
              linear-gradient(135deg, #07051f 0%, #11103a 55%, #1b0b3f 100%);
  color: #fff;
  padding: 90px 0;
  overflow: hidden;
}

.gbai-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.gbai-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(124, 34, 255, 0.15);
  color: #8f5cff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gbai-hero .gbai-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.gbai-hero h1,
.gbai-section h2,
.gbai-final-cta h2 {
  margin: 18px 0;
  font-weight: 900;
  line-height: 1.05;
}

.gbai-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  max-width: 760px;
}

.gbai-hero p {
  max-width: 620px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.gbai-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.gbai-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s ease;
}

.gbai-btn-primary {
  background: #7c22ff;
  color: #fff;
  box-shadow: 0 18px 38px rgba(124, 34, 255, 0.35);
}

.gbai-btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
}

.gbai-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.gbai-hero-card {
  padding: 24px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.gbai-preview-window {
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  min-height: 420px;
}

.gbai-preview-top {
  width: 90px;
  height: 10px;
  border-radius: 999px;
  background: #e7e3f7;
  margin-bottom: 18px;
}

.gbai-preview-image {
  height: 280px;
  border-radius: 22px;
  background: linear-gradient(135deg, #7c22ff, #ff7a59);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.4rem;
}

.gbai-preview-bars {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.gbai-preview-bars span {
  height: 12px;
  border-radius: 999px;
  background: #eeeaf8;
}

.gbai-preview-bars span:nth-child(2) {
  width: 75%;
}

.gbai-preview-bars span:nth-child(3) {
  width: 52%;
}

.gbai-section {
  padding: 82px 0;
  background: #fff;
}

.gbai-section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.gbai-section h2,
.gbai-final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #07051f;
}

.gbai-section p {
  color: #5d5870;
  line-height: 1.7;
}

.gbai-steps,
.gbai-style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gbai-step,
.gbai-style-card,
.gbai-price-card,
.gbai-faq-list details {
  border-radius: 24px;
  padding: 28px;
  background: #f7f5ff;
  border: 1px solid #eee8ff;
}

.gbai-step strong {
  color: #7c22ff;
  font-size: 0.9rem;
}

.gbai-step h3,
.gbai-style-card h3,
.gbai-price-card h3 {
  color: #07051f;
  margin: 12px 0;
}

.gbai-dark {
  background: #07051f;
  color: #fff;
}

.gbai-dark h2,
.gbai-dark h3 {
  color: #fff;
}

.gbai-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.gbai-dark .gbai-style-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gbai-dark .gbai-style-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.gbai-pricing-box {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
}

.gbai-price-card {
  text-align: center;
  background: #fff;
  box-shadow: 0 24px 60px rgba(20, 10, 60, 0.12);
}

.gbai-price {
  font-size: 3.4rem;
  font-weight: 900;
  color: #7c22ff;
  margin: 14px 0;
}

.gbai-price-card small {
  display: block;
  margin-top: 14px;
  color: #777;
}

.gbai-faq-list {
  display: grid;
  gap: 14px;
}

.gbai-faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: #07051f;
}

.gbai-final-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #f6f1ff, #ffffff);
}

.gbai-final-cta p {
  color: #5d5870;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .gbai-hero-grid,
  .gbai-pricing-box {
    grid-template-columns: 1fr;
  }

  .gbai-steps,
  .gbai-style-grid,
  .gbai-dark .gbai-style-grid {
    grid-template-columns: 1fr;
  }

  .gbai-hero {
    padding: 68px 0;
  }

  .gbai-preview-window {
    min-height: 320px;
  }

  .gbai-preview-image {
    height: 210px;
  }
}

/* FINAL HAMBURGER ICON FIX */
@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex !important;
    position: relative !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: none !important;
    display: none !important;
  }

  .menu-toggle span {
    display: block !important;
    width: 26px !important;
    height: 3px !important;
    min-height: 3px !important;
    max-height: 3px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: #041737 !important;
    border-radius: 999px !important;
    box-shadow: none !important;
  }
}

/* RESOURCES PAGE */

.resources-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 40px;
  background:
    radial-gradient(circle at 12% 8%, rgba(37,99,235,.12), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(37,99,235,.16), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.resources-hero-inner {
  max-width: 980px;
  text-align: center;
}

.resources-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #2563eb;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.resources-hero h1 {
  margin: 0 0 14px;
  color: #06133a;
  font-size: clamp(2.2rem, 4.1vw, 4.1rem);
  line-height: .98;
  letter-spacing: -0.055em;
}

.resources-hero p {
  max-width: 760px;
  margin: 0 auto 22px;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.65;
}

.resources-search {
  max-width: 720px;
  margin: 0 auto 16px;
  display: flex;
  gap: 12px;
  padding: 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}

.resources-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 14px 18px;
  font-size: 1rem;
  background: transparent;
}

.resources-search button,
.resources-cta-btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  background: #dfff00;
  color: #06133a;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.resources-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.resources-filters a {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(219,228,238,.95);
  color: #334155;
  text-decoration: none;
  font-weight: 800;
}

.resources-filters a.active,
.resources-filters a:hover {
  background: #06133a;
  color: #fff;
}

/* FEATURED */

.resources-featured {
  padding: 34px 0 24px;
  background: #fff;
}

.resources-featured-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37,99,235,.12), transparent 26%),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid #dbe5f1;
  box-shadow: 0 24px 60px rgba(15,23,42,.08);
}

.resources-featured-image,
.resources-card-image {
  min-height: 210px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 30%, rgba(216,255,47,.35), transparent 20%),
    linear-gradient(135deg, #1557e8, #0630bd);
}

.resources-card-label,
.resources-card-category {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #2563eb;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.resources-featured-copy h2 {
  margin: 0 0 14px;
  color: #06133a;
  font-size: clamp(1.8rem, 2.6vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.resources-featured-copy p,
.resources-card p,
.resources-topic-card p {
  color: #475569;
  line-height: 1.7;
}

.resources-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0;
  color: #64748b;
  font-weight: 700;
  font-size: .92rem;
}

.resources-read-link,
.resources-card a {
  color: #2563eb;
  font-weight: 900;
  text-decoration: none;
}

.resources-featured-image {
  display: block;
  overflow: hidden;
}

.resources-featured-image img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.resources-featured-copy h2 a {
  color: #06133a;
  text-decoration: none;
}

/* GRID */

.resources-grid-section {
  padding: 34px 0 76px;
  background: #fff;
}

.resources-section-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.resources-section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.resources-section-head h2 {
  margin: 0;
  color: #06133a;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.resources-card {
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(15,23,42,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.resources-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(15,23,42,.1);
}

.resources-card-image {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 18px;
  background: #eaf2ff;
}

.resources-card-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform .35s ease;
}

.resources-card:hover .resources-card-image img {
  transform: scale(1.04);
}

.resources-card-category {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #2563eb;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.resources-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.resources-card h3 a {
  color: #06133a;
  text-decoration: none;
}

.resources-card p {
  margin: 0 0 16px;
  color: #475569;
  line-height: 1.65;
}

.resources-card .resources-meta {
  margin: 0 0 14px;
}

.resources-card > a:last-child {
  color: #2563eb;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

/* TOPICS */

.resources-topics {
  padding: 84px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(37,99,235,.10), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

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

.resources-topic-card {
  display: block;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  border: 1px solid #dbe5f1;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(15,23,42,.06);
}

.resources-topic-card h3 {
  margin: 0 0 12px;
  color: #06133a;
}

.resources-topic-count {
  display: inline-flex;
  margin-top: 18px;
  color: #2563eb;
  font-weight: 900;
  font-size: .95rem;
}

.resources-topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(15,23,42,.10);
}

.resources-topic-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

/* RESOURCES PAGINATION */

.resources-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 46px;
}

.resources-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dbe5f1;
  color: #06133a;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
}

.resources-pagination .page-numbers.current {
  background: #06133a;
  color: #ffffff;
}

.resources-pagination .page-numbers:hover {
  background: #eaf2ff;
  color: #2563eb;
}

/* CTA */

.resources-final-cta {
  background: #fff;
  padding: 86px 0;
}

.resources-final-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,47,.18), transparent 30%),
    linear-gradient(135deg, #1557e8 0%, #0630bd 100%);
  border-radius: 22px;
  padding: 34px 40px;
  color: #fff;
  overflow: visible;
}

.resources-final-left {
  position: relative;
  padding-left: 190px;
  min-height: 190px;
  display: flex;
  align-items: center;
}

.resources-final-left img {
  position: absolute;
  left: -95px;
  bottom: -38px;
  width: 280px;
  max-width: none;
  transform: rotate(-12deg);
  filter:
    drop-shadow(0 22px 34px rgba(0,0,0,.28))
    drop-shadow(0 0 20px rgba(216,255,47,.32));
}

.resources-final-left h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: -0.05em;
}

.resources-final-left p {
  margin: 0;
  color: rgba(255,255,255,.86);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .resources-featured-card,
  .resources-grid,
  .resources-topic-grid,
  .resources-final-shell {
    grid-template-columns: 1fr;
  }

  .resources-final-left {
    padding-left: 0;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .resources-final-left img {
    position: relative;
    left: auto;
    bottom: auto;
    width: 130px;
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .resources-hero {
    padding: 60px 0 36px;
  }

  .resources-search {
    flex-direction: column;
    border-radius: 24px;
  }

  .resources-search button {
    width: 100%;
  }
}

/* SINGLE RESOURCE */

.resource-single-wrap {
  max-width: 1180px;
}

.resource-single-hero {
  padding: 64px 0 28px;
  background:
    radial-gradient(circle at 12% 8%, rgba(37,99,235,.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.resource-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: #64748b;
  font-size: .9rem;
  font-weight: 700;
}

.resource-breadcrumb a {
  color: #64748b;
  text-decoration: none;
}

.resource-category-pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #2563eb;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.resource-single-hero h1 {
  max-width: 920px;
  margin: 0 0 20px;
  color: #06133a;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: .98;
  letter-spacing: -0.055em;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.resource-meta span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid #dbe5f1;
  color: #475569;
  font-size: .88rem;
  font-weight: 800;
}

/* KEY TAKEAWAYS */

.resource-key-takeaways {
  padding: 28px 0 22px;
  background: #fff;
}

.resource-key-takeaways-box {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 28px 32px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37,99,235,.10), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid #dbe5f1;
  box-shadow: 0 18px 44px rgba(15,23,42,.06);
}

.resource-takeaway-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #dfff00;
  color: #06133a;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.4rem;
}

.resource-key-takeaways-box span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #2563eb;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.resource-key-takeaways-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.resource-key-takeaways-box li {
  position: relative;
  padding-left: 28px;
  color: #06133a;
  font-size: 1.03rem;
  line-height: 1.6;
  font-weight: 800;
}

.resource-key-takeaways-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 900;
}

/* FEATURED IMAGE */

.resource-featured-image {
  padding: 22px 0 46px;
  background: #fff;
}

.resource-featured-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: 0 20px 52px rgba(15,23,42,.08);
}

/* ARTICLE LAYOUT */

.resource-article-section {
  padding: 0 0 58px;
  background: #fff;
}

.resource-article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.resource-toc {
  position: sticky;
  top: 120px;
}

.resource-toc-box {
  padding: 22px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid #dbe5f1;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}

.resource-toc-box strong {
  display: block;
  margin-bottom: 14px;
  color: #06133a;
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.resource-toc-box ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.resource-toc-box a {
  color: #475569;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.45;
}

.resource-toc-box a:hover {
  color: #2563eb;
}

.resource-content-inner {
  max-width: 900px;
}

.resource-content-inner h2 {
  margin: 0 0 18px;
  padding-top: 18px;
  color: #06133a;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.resource-content-inner h2:not(:first-child) {
  margin-top: 46px;
}

.resource-content-inner h3 {
  margin: 34px 0 14px;
  color: #06133a;
  font-size: 1.45rem;
  line-height: 1.25;
}

.resource-content-inner p,
.resource-content-inner li {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.9;
}

.resource-content-inner p {
  margin: 0 0 22px;
}

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

.resource-content-inner a {
  color: #2563eb;
  font-weight: 800;
}

/* ARTICLE CTA */

.article-service-cta-section {
  padding: 20px 0 54px;
  background: #fff;
}

.article-service-cta {
  padding: 32px 36px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,47,.18), transparent 30%),
    linear-gradient(135deg, #1557e8 0%, #0630bd 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.article-service-cta:has(.article-service-cta-image) {
  grid-template-columns: 96px 1fr auto;
}

.article-service-cta-content span {
  display: inline-block;
  margin-bottom: 8px;
  color: #dfff00;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.article-service-cta-content h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  line-height: 1.1;
}

.article-service-cta-content p {
  margin: 0;
  color: rgba(255,255,255,.86);
  line-height: 1.6;
}

.article-service-cta-image img {
  width: 96px;
  height: auto;
  display: block;
}

.article-service-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 210px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #dfff00;
  color: #06133a !important;
  font-weight: 900;
  text-decoration: none;
}

/* POST NAVIGATION */

.resource-post-nav {
  padding: 20px 0 80px;
  background: #fff;
}

.resource-post-nav-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.resource-post-nav-item {
  padding: 24px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid #dbe5f1;
}

.resource-post-nav-item span {
  display: block;
  margin-bottom: 10px;
  color: #2563eb;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.resource-post-nav-item a {
  color: #06133a;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.resource-post-nav-item.next {
  text-align: right;
}

.resource-post-nav-item:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .resource-post-nav-inner {
    grid-template-columns: 1fr;
  }

  .resource-post-nav-item.next {
    text-align: left;
  }
}.resource-post-nav {
  padding: 20px 0 80px;
  background: #fff;
}

.resource-post-nav-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.resource-post-nav-item {
  padding: 24px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid #dbe5f1;
}

.resource-post-nav-item span {
  display: block;
  margin-bottom: 10px;
  color: #2563eb;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.resource-post-nav-item a {
  color: #06133a;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.resource-post-nav-item.next {
  text-align: right;
}

@media (max-width: 760px) {
  .resource-post-nav-inner {
    grid-template-columns: 1fr;
  }

  .resource-post-nav-item.next {
    text-align: left;
  }
}

/* AUTHOR BOX */

/* Resource Author Box */
.resource-author-box {
  max-width: 1180px;
  margin: 20px auto 20px;
  padding: 28px 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: #f8fbff;
  border: 1px solid #dfe7f3;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.resource-author-logo-link {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #dfe7f3;
  text-decoration: none;
}

.resource-author-logo {
  max-width: 74px;
  max-height: 74px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.resource-author-content {
  max-width: 760px;
}

.resource-author-content h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 900;
  color: #03153f;
}

.resource-author-content h3 a {
  color: #0f4fa8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.resource-author-content p {
  margin: 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.65;
}

/* Mobile */
@media (max-width: 768px) {
  .resource-author-box {
    margin: 60px 18px 34px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .resource-author-logo-link {
    width: 82px;
    height: 82px;
  }

  .resource-author-logo {
    max-width: 66px;
    max-height: 66px;
  }
}

/* RELATED */

.related-resources {
  padding: 70px 0 86px;
  background:
    radial-gradient(circle at 12% 8%, rgba(37,99,235,.10), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}


/* RESPONSIVE */

@media (max-width: 980px) {
  .resource-article-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .resource-toc {
    position: static;
  }

  .resource-featured-image img {
    height: 280px;
  }

  .article-service-cta,
  .article-service-cta:has(.article-service-cta-image) {
    grid-template-columns: 1fr;
  }

  .article-service-cta-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .resource-single-hero {
    padding: 46px 0 24px;
  }

  .resource-single-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .resource-key-takeaways-box {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .resource-featured-image img {
    height: 220px;
  }

  .resource-meta {
    gap: 8px;
  }
}

/* =========================
   CONTACT GROWBOT DIGITAL
========================= */

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 34%, rgba(0,102,255,.40), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(216,255,0,.14), transparent 24%),
    linear-gradient(135deg, #020817 0%, #031033 48%, #010511 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .85fr;
  gap: 64px;
  align-items: center;
}

.contact-pill,
.contact-kicker,
.contact-section-head span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #1557e8;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-hero .contact-pill {
  padding: 8px 17px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1557e8;
  font-size: .76rem;
}

.contact-hero-copy h1 {
  max-width: 880px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(3rem, 4.7vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 950;
}

.contact-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.contact-btn,
.contact-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.contact-btn.primary {
  background: #1769ff;
  color: #fff;
  box-shadow: 0 16px 34px rgba(23,105,255,.32);
}

.contact-btn.secondary {
  background: #fff;
  color: #06133a;
}

.contact-hero-panel {
  display: grid;
  gap: 18px;
}

.contact-hero-card {
  padding: 36px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,0,.18), transparent 28%),
    rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}

.contact-hero-card span {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #dfff00;
  color: #06133a;
}

.contact-hero-card svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.contact-hero-card strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 950;
}

.contact-hero-card p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  line-height: 1.65;
}

.contact-response-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 24px 26px;
  border-radius: 22px;
  background: #fff;
  color: #06133a;
  box-shadow: 0 18px 46px rgba(0,0,0,.16);
}

.contact-response-card strong {
  font-weight: 950;
}

.contact-response-card p {
  margin: 0;
  color: #1557e8;
  font-weight: 950;
}


/* =========================
   SECTION HEADINGS
========================= */

.contact-section-head {
  max-width: 920px;
  margin: 0 auto 42px;
}

.contact-section-head.center {
  text-align: center;
}

.contact-section-head h2,
.contact-before-copy h2,
.contact-form-copy h2,
.contact-final-shell h2 {
  margin: 0;
  color: #06133a;
  font-size: clamp(2.2rem, 3.8vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 950;
}

.contact-section-head p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
}


/* =========================
   CONTACT OPTIONS
========================= */

.contact-options {
  padding: 84px 0 92px;
  background: #fff;
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-option-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 32px 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(21,87,232,.08), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(191,206,226,.95);
  box-shadow: 0 18px 42px rgba(15,23,42,.07);
}

.contact-option-card.featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,0,.20), transparent 30%),
    linear-gradient(135deg, #06133a 0%, #031033 100%);
  color: #fff;
  border-color: rgba(59,130,246,.28);
}

.contact-option-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #eaf2ff;
  color: #1557e8;
}

.contact-option-card.featured .contact-option-icon {
  background: #dfff00;
  color: #06133a;
}

.contact-option-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.contact-option-card h3 {
  margin: 0 0 12px;
  color: #06133a;
  font-size: 1.35rem;
  font-weight: 950;
}

.contact-option-card.featured h3 {
  color: #fff;
}

.contact-option-card p {
  margin: 0 0 18px;
  color: #475569;
  line-height: 1.65;
}

.contact-option-card.featured p {
  color: rgba(255,255,255,.78);
}

.contact-option-card a {
  color: #1557e8;
  font-weight: 950;
  text-decoration: none;
}

.contact-option-card.featured a {
  color: #dfff00;
}


/* =========================
   WHAT HAPPENS NEXT
========================= */

.contact-next {
  padding: 84px 0 94px;
  background:
    radial-gradient(circle at 0% 0%, rgba(216,255,47,.24), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.contact-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-timeline-item {
  position: relative;
  min-height: 220px;
  padding: 44px 26px 28px;
  text-align: center;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #dfe7f3;
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}

.contact-timeline-item:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  color: #dfff00;
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.contact-timeline-item span {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1557e8;
  color: #fff;
  font-size: .85rem;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(21,87,232,.28);
}

.contact-timeline-item h3 {
  margin: 0 0 10px;
  color: #06133a;
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 950;
}

.contact-timeline-item p {
  margin: 0;
  color: #475569;
  font-size: .96rem;
  line-height: 1.6;
}


/* =========================
   BEFORE YOU CONTACT US
========================= */

.contact-before {
  padding: 86px 0 94px;
  background: #fff;
}

.contact-before-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.contact-before-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: #334155;
  font-size: 1.06rem;
  line-height: 1.78;
}

.contact-before-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-before-list div {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 20px 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(191,206,226,.95);
  box-shadow: 0 16px 38px rgba(15,23,42,.06);
}

.contact-before-list span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #dfff00;
  color: #06133a;
  font-weight: 950;
}

.contact-before-list p {
  margin: 0;
  color: #06133a;
  font-weight: 850;
  line-height: 1.35;
}


/* =========================
   WHO WE HELP
========================= */

.contact-help {
  padding: 84px 0 94px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.contact-help-card {
  min-height: 130px;
  padding: 24px 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(219,228,238,.95);
  box-shadow: 0 16px 38px rgba(15,23,42,.07);
  text-align: center;
}

.contact-help-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: #1557e8;
  stroke-width: 1.85;
}

.contact-help-card h3 {
  margin: 0;
  color: #06133a;
  font-size: .96rem;
  line-height: 1.2;
  font-weight: 950;
}


/* =========================
   CONTACT FORM
========================= */

.contact-form-section {
  padding: 86px 0 96px;
  background: #fff;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.contact-form-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: #334155;
  font-size: 1.06rem;
  line-height: 1.78;
}

.contact-form-note {
  margin-top: 30px;
  padding: 24px 26px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,0,.18), transparent 30%),
    linear-gradient(135deg, #06133a 0%, #031033 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(15,23,42,.14);
}

.contact-form-note strong {
  display: block;
  margin-bottom: 8px;
  color: #dfff00;
  font-weight: 950;
}

.contact-form-note p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .98rem;
  line-height: 1.65;
}

.contact-form-card {
  padding: 34px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,0,.16), transparent 28%),
    linear-gradient(135deg, #eef5ff 0%, #ffffff 100%);
  border: 1px solid rgba(191,206,226,.95);
  box-shadow: 0 24px 60px rgba(15,23,42,.12);
}

.contact-form-card-head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.contact-form-card-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #1557e8;
  color: #fff;
}

.contact-form-card-icon svg {
  width: 28px;
  height: 28px;
}

.contact-form-card h3 {
  margin: 0 0 4px;
  color: #06133a;
  font-size: 1.35rem;
  font-weight: 950;
}

.contact-form-card p {
  margin: 0;
  color: #475569;
}

.contact-form-inner .wpforms-container {
  margin: 0 !important;
}

.contact-form-inner .wpforms-field {
  padding: 0 0 14px !important;
  margin: 0 !important;
}

.contact-form-inner input,
.contact-form-inner select,
.contact-form-inner textarea {
  width: 100% !important;
  min-height: 50px !important;
  border-radius: 12px !important;
  border: 1px solid #d5dceb !important;
  background: #fff !important;
  color: #06133a !important;
  padding: 0 14px !important;
}

.contact-form-inner textarea {
  min-height: 110px !important;
  padding-top: 12px !important;
}

.contact-form-inner button.wpforms-submit {
  width: 100% !important;
  min-height: 54px !important;
  margin-top: 10px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #dfff00 !important;
  color: #06133a !important;
  font-weight: 950 !important;
}

.contact-form-privacy {
  margin-top: 14px !important;
  color: #475569;
  font-size: .9rem;
}


/* =========================
   FAQ
========================= */

.contact-faq-section {
  padding: 84px 0 92px;
  background:
    radial-gradient(circle at 85% 10%, rgba(37,99,235,.12), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.contact-faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.contact-faq-item {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(219,228,238,.9);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}

.contact-faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 28px 80px 28px 30px;
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
  list-style: none;
}

.contact-faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9f2ff;
  color: #2563eb;
  font-size: 1.4rem;
  font-weight: 700;
}

.contact-faq-item[open] summary::after {
  content: "−";
}

.contact-faq-item p {
  max-width: 760px;
  margin: 0;
  padding: 0 30px 30px;
  color: #475569;
  line-height: 1.8;
  font-size: 1rem;
}


/* =========================
   FINAL CTA
========================= */

.contact-final-cta {
  padding: 0 0 92px;
  background: #fff;
}

.contact-final-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,255,47,.18), transparent 30%),
    linear-gradient(135deg, #1557e8 0%, #06133a 100%);
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
}

.contact-final-shell span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #dfff00;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-final-shell h2 {
  max-width: 760px;
  color: #fff;
}

.contact-final-shell p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact-final-btn {
  white-space: nowrap;
  background: #dfff00;
  color: #06133a;
  box-shadow: 0 16px 34px rgba(216,255,0,.22);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .contact-hero-grid,
  .contact-before-grid,
  .contact-form-grid,
  .contact-final-shell {
    grid-template-columns: 1fr;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
  }

  .contact-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 16px;
  }

  .contact-timeline-item:not(:last-child)::after {
    display: none;
  }

  .contact-help-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .contact-hero {
    padding: 58px 0 70px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .contact-hero-actions {
    flex-direction: column;
  }

  .contact-btn,
  .contact-final-btn {
    width: 100%;
  }

  .contact-response-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-options,
  .contact-next,
  .contact-before,
  .contact-help,
  .contact-form-section,
  .contact-faq-section {
    padding: 64px 0 72px;
  }

  .contact-before-list {
    grid-template-columns: 1fr;
  }

  .contact-timeline,
  .contact-help-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 26px 22px;
  }

  .contact-faq-item summary {
    padding: 22px 65px 22px 22px;
    font-size: 1rem;
  }

  .contact-faq-item p {
    padding: 0 22px 22px;
  }

  .contact-faq-item summary::after {
    right: 18px;
  }

  .contact-final-shell {
    padding: 30px 24px;
  }
}

/* ================================
   Cookie Banner
================================ */

.cookie-banner {
  position: fixed;
  left: auto;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: none;
  width: min(520px, calc(100% - 40px));
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner-content {
  max-width: none;
  margin: 0;
  display: block;
  padding: 18px 20px;
  border: 1px solid #dbe5f1;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
}

.cookie-banner-text {
  max-width: none;
  margin-bottom: 16px;
}

.cookie-banner-text strong {
  display: block;
  margin-bottom: 6px;
  color: #06133a;
  font-size: 0.98rem;
}

.cookie-banner-text p {
  margin: 0;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cookie-btn {
  min-height: 42px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 0;
  font-size: 0.86rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: #dfff00;
  color: #06133a;
}

.cookie-btn-secondary {
  background: #06133a;
  color: #ffffff;
}

.cookie-btn-link {
  grid-column: 1 / -1;
  justify-self: flex-start;
  width: auto;
  min-height: auto;
  padding: 4px 0 0;
  border-radius: 0;
  background: transparent;
  color: #1557e8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-link:hover {
  transform: none;
}

@media (max-width: 780px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .cookie-banner-content {
    padding: 20px;
    border-radius: 20px;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-btn-link {
    grid-column: auto;
  }
}

/* Cookie banner positioning override */
.cookie-banner {
  position: fixed !important;
  left: auto !important;
  right: 20px !important;
  bottom: 20px !important;
  width: min(520px, calc(100% - 40px)) !important;
  max-width: 520px !important;
  z-index: 9999 !important;
}

@media (max-width: 780px) {
  .cookie-banner {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    width: auto !important;
    max-width: none !important;
  }
}