/* =============================================
   eSEO Solutions – Static Site Stylesheet
   Optimized for Core Web Vitals & Performance
   ============================================= */

/* ── CSS Custom Properties ── */
:root {
  --navy: #113b51 /*#0b1d3a*/;
  --navy-light: #112347;
  --orange: #f47c20;
  --Lime-Green: #34B71A;
  --orange-dark: #d96a10;
  --orange-light: #fff3e8;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --text: #1a2535;
  --text-muted: #5a6a80;
  --text-body: #fff;
  --border: #e2e8f0;
  --hww-bg:#edf3ea;
  --hww-line:#e3eadf;
  --hww-green:#2f9d46;
  --hww-green-2:#79ca61;
  --muted: #5b6b73;
  --shadow: 0 4px 24px rgba(11,29,58,.08);
  --shadow-lg: 0 12px 40px rgba(11,29,58,.14);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.22s ease;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Sora', sans-serif;
  --font-display: 'Sora', sans-serif;
  --shadow-card: 0 6px 24px rgba(13, 40, 50, 0.08);
  --shadow-soft: 0 2px 10px rgba(13, 40, 50, 0.05);
}

/* ── Reset & Base ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{font-family:var(--font-body);color:var(--text);background:var(--white);line-height:1.6;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}

/* ── Typography ── */
h1,h2,h3,h4,h5,h6{font-family:var(--font-head);line-height:1.2;color:var(--navy)}
h1{font-size:clamp(36px, 3.8vw, 38px);font-weight:700}
h2{font-size:clamp(34px, 3.6vw, 36px);font-weight:600}
h3{font-size:clamp(30px, 2vw, 28px);font-weight:500}
p{font-size:14px;color:var(--text-muted);line-height:1.75}


/* ── Utility ── */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 20px}
.section{padding:40px 0}
.section--dark{background:var(--navy);color:var(--white)}
.section--lightblue{background: #173365;color:var(--white)}
.section--dark h2,.section--dark h3,.section--dark p{color:var(--white)}
.section--dark p{color:rgba(255,255,255,.75)}
.section--gray{background:var(--off-white)}
.section-label{display:inline-block;background:#045683;color:var(--white);font-size:.8rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:6px 14px;border-radius:40px;margin-bottom:14px}
.section-title{margin-bottom:16px}
.section-subtitle{font-size:1.05rem;max-width:640px;margin-bottom:48px}
.text-center{text-align:center}
.text-center .section-subtitle{margin-left:auto;margin-right:auto}
.btn-outline{background:#fff;color:var(--navy);border-color:var(--white)}
.btn-outline:hover{background:var(--white);color:var(--navy)}

/* New Button Style */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #7bc46a 0%, #00732f 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 115, 47, 0.25);
  padding:18px 30px;
  display: inline-flex;
  min-height: 40px;
  
}

/* HOVER EFFECT */
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 115, 47, 0.35);
  background: linear-gradient(135deg, #8fd97a 0%, #008a38 100%);
}

/* ACTIVE CLICK */
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 115, 47, 0.2);
}

/* OPTIONAL SHINE EFFECT (LIKE YOUR HERO BUTTON) */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.2),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.2)
  );
  transform: skewX(-20deg);
  transition: 0.5s;
}

.btn-primary:hover::after {
  left: 120%;
}


.btn-outline-dark{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn-outline-dark:hover{background:var(--navy);color:var(--white)}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}

/* ── Top Bar ── */
.topbar{background:linear-gradient(135deg, #7bc46a 0%, #00732f 100%);padding:8px 0;font-size:.82rem}
.topbar__inner{display:flex;justify-content:space-between;align-items:center;color:rgb(255, 255, 255)}
.topbar a{color:rgba(255,255,255,.8);transition:color var(--transition)}
.topbar a:hover{color:var(--white)}
.topbar__left,.topbar__right{display:flex;gap:20px;align-items:center}
.topbar__right a.topbar-cta{background:linear-gradient(135deg, #7bc46a 0%, #00732f 100%);color:#fff;padding:4px 14px;border-radius:20px;font-weight:600;font-size:.8rem}

/* =====================================================
   eSEO Header + Desktop Mega Menu + Mobile Drawer
   Final Revised CSS
===================================================== */

.eseo-site-header {
  position: sticky;
  top: 0;
  z-index: 9990;
  width: 100%;
  background: rgba(10, 38, 56, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.eseo-header-wrap {
  width: min(100% - 48px, 1240px);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.eseo-header-logo {
  width: 138px;
  flex: 0 0 138px;
  display: inline-flex;
  align-items: center;
}

.eseo-header-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================
   Desktop Navigation
================================ */

.eseo-desktop-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.eseo-desktop-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eseo-desktop-nav__item {
  position: relative;
}

.eseo-desktop-nav__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}

.eseo-desktop-nav__link span {
  font-size: 11px;
  opacity: 0.82;
  transition: transform 0.22s ease;
}

.eseo-desktop-nav__item:hover > .eseo-desktop-nav__link,
.eseo-desktop-nav__item.is-open > .eseo-desktop-nav__link,
.eseo-desktop-nav__link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #88e27d;
  outline: none;
}

.eseo-desktop-nav__item:hover > .eseo-desktop-nav__link span,
.eseo-desktop-nav__item.is-open > .eseo-desktop-nav__link span {
  transform: rotate(180deg);
}

/* ================================
   Desktop Mega Menu
================================ */

.eseo-desktop-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 9999;
  width: min(880px, calc(100vw - 48px));
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

/* Invisible hover bridge: prevents closing while moving cursor from menu label to dropdown */
.eseo-desktop-mega::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
  pointer-events: auto;
}

.eseo-desktop-mega--small {
  width: min(560px, calc(100vw - 48px));
}

.eseo-desktop-nav__item:hover .eseo-desktop-mega,
.eseo-desktop-nav__item:focus-within .eseo-desktop-mega,
.eseo-desktop-nav__item.is-open .eseo-desktop-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Move SEO mega menu slightly right */
.eseo-desktop-nav__item--seo .eseo-desktop-mega {
  left: calc(50% + 110px);
}

.eseo-desktop-nav__item--seo:hover .eseo-desktop-mega,
.eseo-desktop-nav__item--seo:focus-within .eseo-desktop-mega,
.eseo-desktop-nav__item--seo.is-open .eseo-desktop-mega {
  transform: translate(-50%, 0);
}

.eseo-desktop-mega__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 0.9fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(214, 234, 220, 0.85);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.eseo-desktop-mega--small .eseo-desktop-mega__inner {
  grid-template-columns: 1fr 1fr;
}

.eseo-desktop-mega__column h3,
.eseo-desktop-mega__highlight span {
  margin: 0 0 12px;
  color: #07823a;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eseo-desktop-mega__column a {
  display: block;
  padding: 9px 10px;
  border-radius: 9px;
  color: #1d2b3a;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.eseo-desktop-mega__column a:hover,
.eseo-desktop-mega__column a:focus-visible {
  background: #eef9ee;
  color: #07823a;
  transform: translateX(4px);
  outline: none;
}

.eseo-desktop-mega__highlight {
  padding: 22px;
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(122, 211, 138, 0.28), transparent 42%),
    linear-gradient(135deg, #0f3a56, #087d33);
  color: #ffffff;
}

.eseo-desktop-mega__highlight h4 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.eseo-desktop-mega__highlight p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.55;
}

.eseo-desktop-mega__highlight a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 15px;
  border-radius: 9px;
  background: #ffffff;
  color: #07823a;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.eseo-desktop-mega__highlight a:hover,
.eseo-desktop-mega__highlight a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  outline: none;
}

/* ================================
   Header Actions
================================ */

.eseo-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eseo-header-audit-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #72ce64, #07823a);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(7, 130, 58, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.eseo-header-audit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(7, 130, 58, 0.32);
}

/* ================================
   Mobile Menu Button
================================ */

.eseo-mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.eseo-mobile-menu-button span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 3px auto;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.eseo-mobile-menu-button.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

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

.eseo-mobile-menu-button.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* ================================
   Mobile Drawer
================================ */

.eseo-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9991;
  background: rgba(2, 13, 38, 0.62);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.eseo-mobile-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.eseo-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9992;
  width: min(88vw, 410px);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 0%, rgba(52, 183, 26, 0.1), transparent 32%),
    #ffffff;
  box-shadow: -22px 0 60px rgba(0, 0, 0, 0.22);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}

.eseo-mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.eseo-mobile-drawer__top {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid #e6eee8;
  background: rgba(10, 38, 56, 0.96);
}

.eseo-mobile-drawer__logo {
  width: 125px;
  display: inline-flex;
}

.eseo-mobile-drawer__logo img {
  width: 100%;
  height: auto;
}

.eseo-mobile-drawer__close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #dce9df;
  border-radius: 50%;
  background: #ffffff;
  color: #10384f;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.eseo-mobile-drawer__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 12px 20px 28px;
  -webkit-overflow-scrolling: touch;
}

.eseo-mobile-drawer__simple-link,
.eseo-mobile-accordion__toggle {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid #e6eee8;
  background: transparent;
  color: #10384f;
  font-family: inherit;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.eseo-mobile-accordion__toggle span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef8ee;
  color: #07823a;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.eseo-mobile-accordion.is-open .eseo-mobile-accordion__toggle {
  color: #07823a;
}

.eseo-mobile-accordion.is-open .eseo-mobile-accordion__toggle span {
  background: #07823a;
  color: #ffffff;
  transform: rotate(180deg);
}

.eseo-mobile-accordion__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 0.34s ease,
    opacity 0.24s ease,
    visibility 0.24s ease,
    padding 0.24s ease;
}

.eseo-mobile-accordion.is-open .eseo-mobile-accordion__panel {
  max-height: 1300px;
  opacity: 1;
  visibility: visible;
  padding: 12px 0 16px;
}

.eseo-mobile-accordion__panel p {
  margin: 16px 0 8px;
  color: #07823a;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eseo-mobile-accordion__panel a {
  display: block;
  margin: 5px 0;
  padding: 11px 14px;
  border-radius: 10px;
  background: #f6faf7;
  color: #1d2b3a;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  text-decoration: none;
}

.eseo-mobile-accordion__panel a:hover,
.eseo-mobile-accordion__panel a:focus-visible {
  background: #e8f7e9;
  color: #07823a;
  outline: none;
}

.eseo-mobile-drawer__cta {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 13px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #72ce64, #07823a);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

body.eseo-menu-open {
  overflow: hidden;
}

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

@media (max-width: 1240px) {
  .eseo-desktop-nav__item--seo .eseo-desktop-mega {
    left: calc(50% + 75px);
  }
}

@media (max-width: 1160px) {
  .eseo-header-wrap {
    width: min(100% - 32px, 1240px);
  }

  .eseo-desktop-nav,
  .eseo-header-audit-btn {
    display: none;
  }

  .eseo-mobile-menu-button {
    display: grid;
  }
}

@media (max-width: 480px) {
  .eseo-header-wrap {
    width: min(100% - 24px, 1240px);
    min-height: 70px;
  }

  .eseo-header-logo {
    width: 120px;
    flex-basis: 120px;
  }

  .eseo-mobile-drawer {
    width: 92vw;
  }

  .eseo-mobile-drawer__body {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ================= HERO SECTION START ================= */

:root {
  --nxp-white: #ffffff;
  --nxp-green: #31e06f;
  --nxp-green-2: #17b75a;
  --nxp-text: rgba(255, 255, 255, .84);
}

/* HERO SECTION */
.nxp-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: unset;
  aspect-ratio: 1907 / 768;
  background: #020919;
}

/* HTML image as background */
.nxp-hero__bg {
   position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Dark overlay for text readability */
.nxp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(2, 9, 25, .86) 0%,
    rgba(2, 9, 25, .62) 34%,
    rgba(2, 9, 25, .18) 66%,
    rgba(2, 9, 25, .04) 100%
  );
  pointer-events: none;
}

.nxp-hero__container {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  height: 100%;
  min-height: unset;
  margin: 0 auto;
  padding: 70px 72px;
  display: flex;
  align-items: center;
}

.nxp-hero__left {
  max-width: 720px;
}

.nxp-hero__title {
  margin: 0 0 24px;
  color: var(--nxp-white);
  font-size: clamp(2rem,4vw,3.2rem);
  line-height: 1.02;
  letter-spacing: -2.2px;
  font-weight: 600;
}

.nxp-hero__desc {
  margin: 0 0 36px;
  max-width: 640px;
  color: var(--nxp-text);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

.nxp-hero__actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nxp-btn {
  height: 62px;
  padding: 0 28px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.nxp-btn:hover {
  transform: translateY(-2px);
}

.nxp-btn--primary {
  color: #ffffff;
  background: linear-gradient(180deg, #59e26f 0%, #1ea84b 100%);
  box-shadow: 0 14px 28px rgba(33, 205, 100, .26);
}

.nxp-btn--secondary {
  color: #17334c;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .15);
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .nxp-hero {
    aspect-ratio: 1907 / 768;
    min-height: unset;
  }

  .nxp-hero__bg {
     object-fit: cover;
    object-position: center center;
  }

  .nxp-hero__container {
    height: 100%;
    min-height: unset;
    padding: 58px 42px;
  }

  .nxp-hero__left {
    max-width: 650px;
  }

  .nxp-hero__desc {
    font-size: 17px;
  }
}

@media (max-width: 992px) {
  .nxp-hero {
    aspect-ratio: auto;
    min-height: 620px;
  }

  .nxp-hero__bg {
    object-fit: cover;
    object-position: 60% center;
  }

  .nxp-hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(2, 9, 25, .9) 0%,
      rgba(2, 9, 25, .74) 48%,
      rgba(2, 9, 25, .38) 100%
    );
  }

   .nxp-hero__container {
    min-height: 620px;
    height: auto;
    padding: 56px 24px 52px;
  }

  .nxp-hero__left {
    max-width: 610px;
  }

  .nxp-hero__title {
    font-size: clamp(40px, 7vw, 54px);
    letter-spacing: -1.8px;
  }

  .nxp-hero__desc {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 680px) {
  .nxp-hero {
    min-height: 580px;
  }

  .nxp-hero__bg {
    object-fit: cover;
    object-position: 66% center;
  }

  .nxp-hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(2, 9, 25, .94) 0%,
      rgba(2, 9, 25, .82) 58%,
      rgba(2, 9, 25, .55) 100%
    );
  }

  .nxp-hero__container {
    min-height: 580px;
    padding: 44px 16px 42px;
    
  }

  .nxp-hero__title {
    margin-bottom: 20px;
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -1.3px;
    font-weight: 600;
  }

  .nxp-hero__desc {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.6;
  }

  .nxp-hero__actions {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
}

.nxp-btn {
  flex: 0 1 176px;
  width: 176px;
  max-width: calc(50% - 5px);
  height: auto;
  min-height: 60px;
  padding: 11px 10px;
  font-size: 13px;
  line-height: 1.2;
  border-radius: 12px;
  text-align: center;
  justify-content: center;
  white-space: normal;
}
}

@media (max-width: 420px) {
  .nxp-hero {
    min-height: 560px;
  }

  .nxp-hero__bg {
    object-position: 68% center;
  }

  .nxp-hero__container {
    min-height: 560px;
  }

  .nxp-hero__title {
    font-size: 34px;
  }

  .nxp-hero__desc {
    font-size: 14.5px;
  }
  
    .nxp-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nxp-btn {
    width: 100%;
    flex-basis: auto;
    font-size: 14px;
  }
}

/* ── Hero ── */
.hero{background:linear-gradient(135deg,var(--navy) 0%,#163060 60%,#1a3d7a 100%);min-height:88vh;display:flex;align-items:center;position:relative;overflow:hidden;padding:30px 0}
.hero::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.hero__inner{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;position:relative;z-index:1}
.hero__content{}
.hero__badge{display:inline-flex;align-items:center;gap:8px;background:rgba(244,124,32,.15);border:1px solid rgba(244,124,32,.3);color:var(--orange);font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:6px 14px;border-radius:40px;margin-bottom:20px}
.hero__badge::before{content:'';width:8px;height:8px;background:var(--orange);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.hero__title{color:var(--white);margin-bottom:20px}
.hero__title em{color:var(--orange);font-style:normal}
.hero__desc{color:rgba(255,255,255,.75);font-size:1.05rem;margin-bottom:36px;max-width:500px}
.hero__actions{display:flex;gap:14px;flex-wrap:wrap}
.hero__trust{margin-top:40px;display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.hero__trust-text{color:rgba(255,255,255,.5);font-size:.78rem;text-transform:uppercase;letter-spacing:.08em}
.hero__trust-logos{display:flex;gap:16px;align-items:center;flex-wrap:wrap}
.trust-badge{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius);padding:8px 14px;color:rgba(255,255,255,.7);font-size:.78rem;font-weight:600}
.hero__image{display:flex;justify-content:center;align-items:center}
.hero__img-wrap{position:relative}
.hero__city-svg{width:100%;max-width:520px;filter:drop-shadow(0 20px 60px rgba(0,0,0,.4))}
.hero__stats{display:flex;flex-direction:column;gap:12px;position:absolute;right:-20px;top:50%;transform:translateY(-50%)}
.hero__stat-card{background:rgba(255,255,255,.1);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.15);border-radius:var(--radius);padding:12px 18px;text-align:center;white-space:nowrap}
.hero__stat-card strong{display:block;color:var(--orange);font-family:var(--font-head);font-size:1.3rem;font-weight:700}
.hero__stat-card span{color:rgba(255,255,255,.7);font-size:.72rem}

/* Hero V2 */

.hero-v2 {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 30px 0;
  background-size: cover;
  background-position: top center;  /* ← people show from top */
  background-repeat: no-repeat;
}
 
/* Overlay as div — not ::before */
.hero-v2__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.92) 30%,
    rgba(255,255,255,0.70) 52%,
    rgba(255,255,255,0.10) 70%,
    rgba(255,255,255,0.00) 100%
  );
}
 
.hero-v2__inner {
  position: relative;
  z-index: 2;
  display: grid;
  /* 3 columns: text | checklist | empty (people show through) */
  grid-template-columns: 1.1fr 1fr 0.6fr;
  gap: 32px;
  align-items: center;
}
 
/* LEFT: text */
.hero-v2__rank {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  color: var(--Lime-Green);
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}
 
.hero-v2__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #0b2d4e;
  line-height: 1.12;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}
 
.hero-v2__desc {
  font-size: 1rem;
  color: #3d4e5e;
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}
 
.hero-v2__desc strong {
  color: #0b2d4e;
}
 
.hero-v2__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
 
/* MIDDLE: checklist */
.hero-v2__checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.hero-v2__check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: 0 2px 18px rgba(11, 29, 58, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  margin: 0;
}
 
.hero-v2__check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--Lime-Green);
}
 
.hero-v2__check-item p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.4;
}
 
.hero-v2__check-item strong {
  font-weight: 700;
  color: #0b2d4e;
}
 
.hero-v2__check-item span {
  font-weight: 400;
  color: #3d4e5e;
}
 
/* RIGHT: empty col — people show through */
.hero-v2__spacer {
  /* intentionally empty */
}
 
/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-v2__inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero-v2__spacer {
    display: none;
  }
  .hero-v2__overlay {
    background: linear-gradient(
      100deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.90) 40%,
      rgba(255,255,255,0.60) 70%,
      rgba(255,255,255,0.10) 100%
    );
  }
}
 
@media (max-width: 768px) {
  .hero-v2 {
    padding: 56px 0;
    background-position: top right;
    min-height: auto;
  }
  .hero-v2__inner {
    grid-template-columns: 1fr;
  }
  .hero-v2__overlay {
    background: rgba(255,255,255,0.90);
  }
  .hero-v2__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* LEADERSHIP New 3 */
.eseo-lead-section{background:#fff;padding:62px 0 42px;position:relative;overflow:hidden}
.eseo-lead-wrap{display:grid;grid-template-columns:1.02fr .98fr;gap:46px;align-items:center}
.eseo-lead-visual{position:relative;min-height:560px}
.eseo-lead-circle{position:absolute;left:-52px;top:-26px;width:338px;height:338px;border-radius:50%;background:#edf5ef}
.eseo-lead-ring{position:absolute;left:126px;top:54px;width:280px;height:280px;border-radius:50%;border:1.5px solid #15345b}
.eseo-founder-card{position:absolute;width:250px;border-radius:20px;overflow:hidden;box-shadow:0 14px 30px rgba(18,40,61,.14);background:#fff}
.eseo-founder-card img{width:100%;height:355px;object-fit:cover}
.eseo-founder-card .bio{background:#fff;padding:18px 16px 20px;text-align:center}
.eseo-founder-card .bio2{background:#fff;padding:18px 16px 20px;text-align:center; margin-top: -80px;margin-bottom: 40px;}
.eseo-founder-card .avatar{position:absolute;left:50%;top:230px;transform:translateX(-50%);width:54px;height:54px;border-radius:50%;background:var(--Lime-Green);display:flex;align-items:center;justify-content:center;color:#113b51;border:6px solid #fff}
.eseo-founder-card .avatar svg{width:22px;height:22px;fill:#0f172a;stroke:none}
.eseo-founder-card h3{margin:18px 0 8px;font-family:var(--font-head);font-size:22px;line-height:1.15;color:#133a5a;font-weight:700}
.eseo-founder-card p{margin:0;color:#607086;font-size:13px;line-height:1.5}
.eseo-founder-card--one{left:62px;top:70px;border-top:5px solid var(--Lime-Green)}
.eseo-founder-card--two{left:300px;top:168px;border-top:5px solid #0f2d4e;z-index:2}
.eseo-founder-card--two img{height:300px}
.eseo-founder-card--two .avatar{top:280px}
.eseo-lead-copy h2{font-family:var(--font-head);font-size:clamp(34px, 3.6vw, 36px);font-weight:300;letter-spacing:-.04em;margin:0 0 10px;color:var(--navy)}
.eseo-lead-copy h2 span{color:#2f9a4a;font-weight:600}
.eseo-lead-copy .sub{margin:0 0 20px;font-size:16px;color:#6a7b92}
.eseo-lead-copy .name{margin:18px 0 6px;font-family:var(--font-head);font-size:22px;font-weight:700;color:#133a5a}
.eseo-lead-copy p{margin:0;color:#5a6a80;font-size:16px;line-height:1.72}
.eseo-lead-copy .block{margin-bottom:18px}
.eseo-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:28px}
.eseo-stat{border:1px solid #dce7f7;border-radius:14px;padding:18px 14px 16px;text-align:center;box-shadow:0 8px 18px rgba(13,40,50,.04)}
.eseo-stat .icon{width:46px;height:46px;border-radius:50%;margin:0 auto 10px;display:flex;align-items:center;justify-content:center;background:#eef4ff;color:#2f69ff}
.eseo-stat:nth-child(2) .icon,.eseo-stat:nth-child(4) 
.icon{background:#eef9ef;color:#2ab11c}
.eseo-stat .icon svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.eseo-stat strong{display:block;font-family:var(--font-head);font-size:25px;line-height:1;color:#1d5fe0;margin-bottom:4px}
.eseo-stat:nth-child(2) strong,.eseo-stat:nth-child(4) strong{color:#20a72c}
.eseo-stat span{display:block;color:#667487;font-size:12px;line-height:1.25;font-weight:700}
.eseo-lead-cta
{
    margin-top:10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:12px;
    background:linear-gradient(90deg,#7bc46a 0%,#1f9a40 100%);
    color:#fff;
    font-weight:700;
    font-family:var(--font-head);
    box-shadow:0 10px 20px rgba(31,154,64,.18);
    z-index: 1;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.eseo-lead-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 115, 47, 0.35);
  background: linear-gradient(135deg, #8fd97a 0%, #008a38 100%);}
  
  /* SHINE EFFECT */
.eseo-lead-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.2),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.2)
  );
  transform: skewX(-20deg);
  transition: 0.5s;
  pointer-events: none;
  z-index: 1;
}

.eseo-lead-cta:hover::after {
  left: 120%;
  pointer-events: none;
  z-index: 1;
}


/* RESPONSIVE */
@media(max-width:1100px){
    .eseo-lead-wrap{grid-template-columns:1fr;gap:24px}
    .eseo-lead-visual{min-height:610px}
    .eseo-lead-copy{text-align:center}
    .eseo-stats{max-width:760px;margin-left:auto;margin-right:auto}
    }
    
@media(max-width:720px){
    .eseo-wrap{width:min(100% - 28px,1240px)}
    .eseo-lead-section{padding:44px 0 26px}
    .eseo-lead-visual{min-height:540px;transform:scale(.9);transform-origin:top center}
    .eseo-founder-card{width:230px}
    .eseo-founder-card--one{left:10px;top:44px}
    .eseo-founder-card--two{left:188px;top:140px}
    .eseo-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
}


/* LEADERSHIP NEW2 */
.leadership { padding: 90px 0; background: #fff; }
.leadership-grid { display: grid; grid-template-columns: 0.9fr 1.2fr; gap: 60px; align-items: center; }
.leadership-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.leader-card {
  margin: 0; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-card); background: #fff;
  border: 1px solid var(--line); transition: transform .25s ease;
}
.leader-card:nth-child(2) { transform: translateY(40px); }
.leader-card:hover { transform: translateY(-4px); }
.leader-card:nth-child(2):hover { transform: translateY(36px); }
.leader-card img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.leader-card figcaption { padding: 14px 16px; font-weight: 700; color: var(--navy); text-align: center; }
.leader-bio { margin-top: 22px; }
.leader-bio h3 { color: var(--green); margin: 0 0 6px; font-size: 18px; font-family: 'Work Sans', sans-serif; }
.leader-bio p { margin: 0; color: var(--muted); font-size: 15px; }
.leader-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }


/* ── Clients Marquee ── */
.clients {
  padding: 40px 0; /* reduced top-bottom space */
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
  background-color: #EEF6ED;
}

.clients__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #051A41;
  margin-bottom: 20px; /* 🔥 reduced spacing */
}

.marquee-outer {
  overflow: hidden;
}

/* Track */
.marquee-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: marquee 22s linear infinite;
  will-change: transform;
  backface-visibility: hidden; /* important */
  transform: translateZ(0);
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* Logo container */
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  height: 100px;   /* 🔥 reduced container height */
  width: auto;    /* allow natural width */

  opacity: 1;
  transition: opacity 0.3s ease;
}

.marquee-item:hover {
  opacity: 1;
}

/* 🔥 BIGGER LOGOS */
.marquee-item img {
  height: 180px;  /* 🔥 increase logo size */
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Animation */
@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .clients {
    padding: 20px 0;
  }

  .marquee-track {
    gap: 15px;
    animation-duration: 18s;
  }

  .marquee-item {
    height: 55px;
  }

  .marquee-item img {
    height: 45px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* =============================
   ABOUT SECTION (FOUNDERS)
============================= */

.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT FOUNDERS */
.about-founders {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.founder-card {
  position: relative;
  width: 200px;
}

.founder-card img {
  width: 180px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

/* Background shape */
.founder-bg {
  position: absolute;
  width: 185px;
  height: 270px;
  bottom: 50px;
  left: 0;
  border-radius: 28px;
  z-index: 1;
}

.founder-bg--green {
  background: #c3f4bd;
}

.founder-bg--blue {
  background: #b2d6e9;
}

/* Info */
.founder-info {
  text-align: center;
  margin-top: 12px;
}

.founder-info .name {
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
}

.founder-info .role {
  font-size: 12px;
  color: var(--text-muted);
}

/* Floating Tag */
.founder-tag {
  position: absolute;
  top: 16px;
  right: -30%;
  transform: translateX(-50%);
  background: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 3;
  margin-top: -15px;
}

.founder-tag p {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

.founder-tag span {
  font-size: 10px;
  color: var(--text-muted);
}

/* Offset card */
.founder-card--offset {
  margin-top: 40px;
}

/* RIGHT CONTENT */
.about-content {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-text h2 {
  margin-bottom: 16px;
  text-align:center;
}

.about-text .light {
  display: inline;
  font-weight: 400;
  color:#113b51;
}

.about-text .bold {
  font-weight: 600;
  background:linear-gradient(160deg,#7bc46a,#00732f);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  display: inline;
  
}

.about-text p {
  margin-bottom: 10px;
  line-height:1.75;
}

.about-content .btn {
  width: auto !important;
  align-self: flex-start;
}

/* STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stat-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
}

.stat-box span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17,59,81,.5);
}

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

@media (max-width: 1024px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-founders {
    justify-content: center;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-founders {
    flex-direction: column;
    align-items: center;
  }

  .founder-card--offset {
    margin-top: 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-content .btn {
    width: auto;
  }
}

/* ── Why UAE Section ── */
.why-uae__content{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.why-uae__features{display:grid;gap:20px;margin-top:32px}
.feature-row{display:flex;gap:16px;align-items:flex-start}
.feature-icon{width:48px;height:48px;min-width:48px;background:var(--orange-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.feature-icon svg{width:22px;height:22px;color:var(--Lime-Green)}
.feature-row h4{font-size:1rem;margin-bottom:4px}
.feature-row p{font-size:.88rem}
.why-uae__img-wrap{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg)}
.why-uae__img-wrap img,.why-uae__img-placeholder{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:var(--radius-lg)}
.img-placeholder{background:linear-gradient(135deg,#e8f0fe,#c9d9f9);border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;aspect-ratio:4/3}
.img-placeholder svg{width:60px;height:60px;opacity:.3;color:var(--navy)}

/* ── Services ── */
.services__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.service-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px 28px;transition:all var(--transition);position:relative;overflow:hidden}
.service-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--Lime-Green);transform:scaleX(0);transition:transform var(--transition);transform-origin:left}
.service-card:hover{border-color:transparent;box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.service-card:hover::before{transform:scaleX(1)}
.service-card__icon{width:52px;height:52px;background:var(--orange-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.service-card__icon svg{width:24px;height:24px;color:var(--Lime-Green)}
.service-card h3{margin-bottom:10px;font-size:1.1rem}
.service-card p{font-size:.88rem;margin-bottom:20px}
.service-card__link{display:inline-flex;align-items:center;gap:6px;color:var(--orange);font-weight:600;font-size:.88rem;transition:gap var(--transition)}
.service-card__link:hover{gap:10px}
.service-card__link svg{width:14px;height:14px}

/* ===============================
   PREMIUM SERVICES SECTION
=============================== */

.services-pro {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  overflow: hidden;
  
}

/* LIGHT SHAPE BACKGROUND */
.services-pro::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52,183,26,0.08), transparent 70%);
  z-index: 0;
}

.services-pro::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0,115,47,0.06), transparent 70%);
  z-index: 0;
}

/* KEEP CONTENT ABOVE */
.services-pro .container {
  position: relative;
  z-index: 1;
}

.services-pro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

/* CARD */
.service-pro-card {
  position: relative;
  padding: 30px 26px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e6f0e8;

  transition: all 0.35s ease;
  transform-style: preserve-3d;

  display: flex;
  flex-direction: column;
  gap: 14px;

  text-decoration: none;
}

/* TOP GRADIENT LINE */
.service-pro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, #7bc46a, #00732f);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease;
}

/* ICON */
.service-pro-card__icon {
  font-size: 32px;
}

/* TITLE */
.service-pro-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #113b51;
}

/* TEXT */
.service-pro-card p {
  font-size: 0.9rem;
  color: #5a6a80;
  line-height: 1.6;
}

/* LINK */
.service-pro-card__link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00732f;
  transition: 0.3s;
}

/* HOVER 3D EFFECT */
.service-pro-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 115, 47, 0.15);
  border-color: transparent;
}

.service-pro-card:hover::before {
  transform: scaleX(1);
}

.service-pro-card:hover .service-pro-card__link {
  transform: translateX(6px);
}

.service-pro-card__icon svg {
  width: 36px;
  height: 36px;
  color: #34B71A;
  stroke: #34B71A;
  transition: all 0.35s ease;
}

/* Hover animation */
.service-pro-card:hover .service-pro-card__icon svg {
  transform: scale(1.15) rotate(6deg);
  stroke: #00732f;
}

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

@media (max-width: 1024px) {
  .services-pro__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-pro__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Services Section Single CTA + Form Box
========================================= */

.eseo-services-cta-combined {
  grid-column: span 2;
  min-height: 256px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  border: 1px solid #dfeee0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(18, 61, 32, 0.08);
}

.eseo-services-cta-combined__content {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  background: linear-gradient(135deg, #168f3f 0%, #04742e 100%);
  color: #ffffff;
}

.eseo-services-cta-pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.eseo-services-cta-combined__content h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.eseo-services-cta-combined__content p {
  max-width: 210px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.55;
}

.eseo-services-cta-chart {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 54px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  opacity: 0.45;
}

.eseo-services-cta-chart span {
  width: 12px;
  border-radius: 5px 5px 0 0;
  background: #b8f3a9;
}

.eseo-services-cta-chart span:nth-child(1) {
  height: 22px;
}

.eseo-services-cta-chart span:nth-child(2) {
  height: 36px;
}

.eseo-services-cta-chart span:nth-child(3) {
  height: 50px;
}

.eseo-services-cta-combined__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 22px 20px;
  background: #ffffff;
}

.eseo-services-mini-form__field {
  min-height: 42px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dfe7ef;
  border-radius: 9px;
  background: #ffffff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.eseo-services-mini-form__field:focus-within {
  border-color: var(--Lime-Green);
  box-shadow: 0 0 0 4px rgba(52, 183, 26, 0.12);
}

.eseo-services-mini-form__field span {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--Lime-Green);
}

.eseo-services-mini-form__field svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eseo-services-mini-form__field input {
  width: 100%;
  height: 42px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 12px;
}

.eseo-services-mini-form__field input::placeholder {
  color: #9ca9b8;
}

.eseo-services-mini-form__button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #6ec75e 0%, #087d33 100%);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 120, 48, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.eseo-services-mini-form__button span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #087d33;
  font-size: 15px;
}

.eseo-services-mini-form__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 120, 48, 0.26);
}

.eseo-services-mini-form__note {
  margin: 0;
  color: #6b7a90;
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
}

/* Tablet */
@media (max-width: 1100px) {
  .eseo-services-cta-combined {
    grid-column: span 2;
    min-height: 230px;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .eseo-services-cta-combined {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .eseo-services-cta-combined__content {
    padding: 28px 22px 70px;
  }

  .eseo-services-cta-combined__content p {
    max-width: 100%;
  }

  .eseo-services-cta-combined__form {
    padding: 22px;
  }

  .eseo-services-mini-form__field {
    min-height: 46px;
  }

  .eseo-services-mini-form__field input {
    height: 46px;
    font-size: 14px;
  }

  .eseo-services-mini-form__button {
    min-height: 46px;
    font-size: 13px;
  }
}

/* ===============================
      How We Work New Design
=============================== */

    .hww-section{
      width:100%;
      padding:40px 0 70px;
      position:relative;
      overflow:hidden;
      background-color: #EEF6ED;
    }

    .hww-container{
      position:relative;
    }

    .hww-header{
      text-align:center;
      margin-bottom:50px;
    }

    .hww-section .section-title{
      margin:0 0 12px;
      color:#113b51;
      line-height:1;
      font-weight:600;
      letter-spacing:-1px;
      font-size: 1.5rem;
    }

    .hww-section .section-subtitle{
      max-width:820px;
      margin:0 auto;
      color:var(--navy);
      font-size:15px;
      line-height:1.6;
      margin-bottom:0;
      font-weight: 600px;
    }

    .hww-timeline{
      position:relative;
    }

    .hww-row{
      display:grid;
      grid-template-columns:1fr 140px 1fr;
      align-items:center;
      min-height:165px;
      border-bottom:1px solid var(--hww-line);
      position:relative;
    }

    .hww-col{
      padding:25px 10px;
      z-index:2;
    }

    .hww-left{padding-left:20px}
    .hww-right{padding-left:40px}

    .hww-step-center{
      display:flex;
      justify-content:center;
      align-items:center;
      position:relative;
      z-index:3;
    }

    .hww-step{
      width:48px;
      height:48px;
      border-radius:50%;
      background:linear-gradient(180deg,var(--hww-green-2),var(--hww-green));
      color:#fff;
      font-weight:700;
      font-size:15px;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 8px 16px rgba(0,0,0,.15);
    }

    .hww-title-row{
      display:flex;
      align-items:center;
      gap:14px;
      font-size:30px;
      font-weight:300;
      letter-spacing:-0.3px;
      line-height:1.08;
      color:var(--hww-title);
      margin:0;
    }

    .hww-icon{
      width:56px;
      height:56px;
      min-width:56px;
      object-fit:contain;
      display:block;
      flex:0 0 56px;
    }

    .hww-desc{
      margin:0;
      max-width:360px;
      font-size:14.5px;
      line-height:1.6;
      color:var(--navy);
      font-weight:400;
    }

    /* Curved dotted connector */
    .hww-path-layer{
      position:absolute;
      inset:0;
      pointer-events:none;
      z-index:1;
    }

    .hww-path-layer svg{
      position:absolute;
      left:50%;
      transform:translateX(-50%);
      width:280px;
      height:100%;
      overflow:visible;
    }

    .hww-path{
      stroke:#4ba94f;
      stroke-width:3;
      stroke-dasharray:10 10;
      fill:none;
      stroke-linecap:round;
    }

    .hww-cta{
      text-align:center;
      margin-top:40px;
      position:relative;
      z-index:2;
    }

    .hww-cta .btn-primary{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:14px 34px;
      border-radius:8px;
      font-size:15px;
      text-decoration:none;
    }

    .hww-arrow{
      width:16px;
      height:16px;
      stroke:currentColor;
      fill:none;
      stroke-width:2;
    }

    /* Fine alignment tweaks */
    .hww-row.hww-r1{min-height:150px}
    .hww-row.hww-r2,
    .hww-row.hww-r3,
    .hww-row.hww-r4,
    .hww-row.hww-r5,
    .hww-row.hww-r6,
    .hww-row.hww-r7{min-height:170px}

    @media (max-width: 1024px) {
  .hww-section {
    padding: 44px 0 60px;
  }

  .hww-section .section-title {
    font-size: 42px;
    line-height: 1.08;
  }

  .hww-section .section-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  .hww-section-note {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .hww-header {
    margin-bottom: 34px;
  }

  .hww-row {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px 0;
    gap: 10px;
  }

  .hww-step-center,
  .hww-path-layer {
    display: none;
  }

  .hww-col,
  .hww-left,
  .hww-right {
    width: 100%;
    padding: 0;
  }

  /* Important: keep all rows as Heading first, Paragraph second */
  .hww-r1 .hww-left,
  .hww-r3 .hww-left,
  .hww-r5 .hww-left,
  .hww-r7 .hww-left,
  .hww-r2 .hww-right,
  .hww-r4 .hww-right,
  .hww-r6 .hww-right {
    order: 1;
  }

  .hww-r1 .hww-right,
  .hww-r3 .hww-right,
  .hww-r5 .hww-right,
  .hww-r7 .hww-right,
  .hww-r2 .hww-left,
  .hww-r4 .hww-left,
  .hww-r6 .hww-left {
    order: 2;
  }

  .hww-title-row {
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    line-height: 1.18;
    text-align: left;
  }

  .hww-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    flex-basis: 46px;
  }

  .hww-desc {
    max-width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
  }

  .hww-cta {
    margin-top: 26px;
  }
}

@media (max-width: 768px) {
  .hww-section {
    padding: 40px 0 56px;
  }

  .hww-section .section-title {
    font-size: 36px;
    line-height: 1.1;
  }

  .hww-section .section-subtitle {
    font-size: 14px;
  }

  .hww-section-note {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .hww-row {
    padding: 20px 0 22px;
    gap: 9px;
  }

  .hww-title-row {
    font-size: 22px;
    line-height: 1.18;
  }

  .hww-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    flex-basis: 42px;
  }

  .hww-desc {
    font-size: 14px;
    line-height: 1.65;
  }

  .hww-cta .btn-primary {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 420px) {
  .hww-title-row {
    font-size: 20px;
    gap: 10px;
  }

  .hww-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    flex-basis: 38px;
  }

  .hww-desc {
    font-size: 13.5px;
  }
}


/* ===============================
    AI DRIVEN New Design 
    ===============================*/
.section-sub { font-size: 16px; color: var(--navy); margin: 0 0 10px; font-weight: 600; }
.section-desc { font-size: 15px; color: var(--navy); max-width: 760px; margin: 0 auto; }
.ai-driven { padding: 90px 0; background: #fff; }
.ai-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.ai-illustration img { border-radius: 16px; box-shadow: var(--shadow-card); }
.ai-checklist { list-style: none; padding: 0; margin: 24px 0 30px; display: grid; gap: 12px; }
.ai-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
.ai-checklist i { color: var(--hww-green); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

@media (max-width: 1024px) {
  .ai-driven {
    padding: 70px 0;
  }

  .ai-grid {
    gap: 40px;
  }

  .section-sub {
    font-size: 15px;
  }

  .section-desc {
    font-size: 14px;
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .ai-driven {
    padding: 60px 0;
  }

  .ai-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ai-illustration {
    order: 2;
  }

  .ai-content { order: 1; }
  .section-sub { font-size: 14px; margin-bottom: 8px; }
  .section-desc { font-size: 14px; max-width: 100%; }
  .ai-checklist { margin: 20px 0 24px; gap: 10px; }
  .ai-checklist li { font-size: 14px; gap: 10px; }
  .ai-checklist i { font-size: 16px; }
  .ai-illustration img { width: 100%; height: auto; } }

@media (max-width: 480px) { 
.ai-driven { padding: 50px 0; }
  .section-sub { font-size: 13px; }
  .section-desc { font-size: 13px; line-height: 1.6; }
  .ai-checklist { margin: 18px 0 22px; }
  .ai-checklist li { font-size: 13px; line-height: 1.55;} }

/* ── Process ── */
.process__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative}
.process__grid::after{content:'';position:absolute;top:36px;left:12%;right:12%;height:2px;background:linear-gradient(90deg,var(--Lime-Green),rgba(244,124,32,.2));z-index:0}
.process-step{text-align:center;padding:0 16px;position:relative;z-index:1}
.process-step__num{width:72px;height:72px;background:var(--navy-light);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;font-family:var(--font-head);font-weight:800;font-size:1.3rem;color:var(--white);border:4px solid var(--white);box-shadow:linear-gradient(135deg,#7bc46a,#00732f)}
.process-step h3{font-size:1rem;margin-bottom:8px}
.process-step p{font-size:.83rem}

/* ── Funnel Section ── */
.funnel__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.funnel-card{background:var(--white);border-radius:var(--radius-lg);padding:32px 24px;text-align:center;border:1px solid var(--border);transition:all var(--transition)}
.funnel-card:hover{border-color:var(--orange);box-shadow:var(--shadow)}
.funnel-card__icon{width:56px;height:56px;margin:0 auto 18px;background:var(--orange-light);border-radius:50%;display:flex;align-items:center;justify-content:center}
.funnel-card__icon svg{width:26px;height:26px;color:var(--Lime-Green)}
.funnel-card h3{font-size:1.1rem;margin-bottom:8px}

/* ── Benefits ── */
.benefits__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.benefit-card{background:var(--white);border-radius:var(--radius-lg);padding:28px;border:1px solid var(--border);display:flex;gap:18px;align-items:flex-start;transition:all var(--transition)}
.benefit-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.benefit-card__icon{width:44px;height:44px;min-width:44px;background:var(--orange-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.benefit-card__icon svg{width:20px;height:20px;color:var(--Lime-Green)}
.benefit-card h3{font-size:1rem;margin-bottom:6px}
.benefit-card p{font-size:.84rem}

/* ── AEO / GEO ── */
.aeo-geo{background:var(--navy)}
.aeo-geo__grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.aeo-geo__card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius-lg);padding:36px}
.aeo-geo__card h3{color:var(--white);margin-bottom:12px;font-size:1.3rem}
.aeo-geo__card p{color:var(--white);margin-bottom:24px}
.aeo-geo__list{display:grid;gap:10px}
.aeo-geo__list li{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.85);font-size:.9rem}
.aeo-geo__list li::before{content:'';width:8px;height:8px;min-width:8px;background:var(--Lime-Green);border-radius:50%}

/*--- Timeline New 3----*/

.ej-journey-section {
  width: 100%;
  background: #eef7ee;
  padding: 48px 0 88px;
  overflow: hidden;
  font-family: "Poppins", "Inter", Arial, sans-serif;
}

.ej-journey-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 44px;
}

.ej-journey-head {
  text-align: center;
  margin-bottom: 72px;
}

.ej-journey-head h2 {
  margin: 0;
  color: #123d54;
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -1.2px;
}

.ej-journey-head p {
  margin: 6px 0 0;
  color: #6f7772;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.1px;
}

.ej-journey-timeline {
  position: relative;
  height: 455px;
}

.ej-journey-road {
  position: absolute;
  left: 0;
  top: 220px;
  width: 100%;
  height: 90px;
  z-index: 1;
  overflow: visible;
}

.ej-journey-road path,
.ej-journey-road polyline {
  stroke: #3aa45b;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ej-journey-road polyline {
  stroke: #087a36;
}

.ej-journey-item {
  position: absolute;
  left: var(--x);
  width: 232px;
  transform: translateX(-50%);
  z-index: 3;
}

.ej-journey-item--top {
  top: 0;
}

.ej-journey-item--bottom {
  top: 209px;
}

.ej-journey-card {
  width: 100%;
  min-height: 166px;
  background: #ffffff;
  border-radius: 14px;
  padding: 19px 18px 17px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: none;
}

.ej-journey-card-bottom {
  width: 100%;
  min-height: 166px;
  background: #ffffff;
  border-radius: 14px;
  padding: 19px 18px 17px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: none;
  margin-top:100px;
}

.ej-journey-card-bottom h3 {
  margin: 0 0 9px;
  color: #123d54;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.ej-journey-card-bottom h4 {
  margin: 0 0 13px;
  color: #263238;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.ej-journey-card-bottom p {
  margin: 0;
  color: #666666;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 400;
}

.ej-journey-card h3 {
  margin: 0 0 9px;
  color: #123d54;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.ej-journey-card h4 {
  margin: 0 0 13px;
  color: #263238;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.ej-journey-card p {
  margin: 0;
  color: #666666;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 400;
}

.ej-journey-node {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translateX(-50%);
  border: 1.5px solid #0c8a3c;
  border-radius: 50%;
  background: #ffffff;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ej-journey-item--top .ej-journey-node {
  top: 210px;
}

.ej-journey-item--bottom .ej-journey-node {
  top: 0;
}

.ej-journey-node span {
  width: 36px;
  height: 36px;
  background: linear-gradient(180deg, #65c46b 0%, #35a852 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35);
}

.ej-journey-node svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Medium screens */
@media (max-width: 1199px) {
  .ej-journey-container {
    padding: 0 28px;
  }

  .ej-journey-item {
    width: 210px;
  }

  .ej-journey-card {
    min-height: 162px;
    padding: 18px 14px 16px;
  }

  .ej-journey-card h3 {
    font-size: 31px;
  }

  .ej-journey-card p {
    font-size: 9.8px;
  }
  
  .ej-journey-card-bottom {
    min-height: 162px;
    padding: 18px 14px 16px;
  }

  .ej-journey-card-bottom h3 {
    font-size: 31px;
  }

  .ej-journey-card-bottom p {
    font-size: 9.8px;
  }
}

/* Tablet and Mobile Vertical Timeline */
@media (max-width: 899px) {
  .ej-journey-section {
    padding: 42px 0 56px;
  }

  .ej-journey-container {
    padding: 0 18px;
  }

  .ej-journey-head {
    margin-bottom: 34px;
  }

  .ej-journey-head h2 {
    font-size: 34px;
  }

  .ej-journey-head p {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
  }

  .ej-journey-timeline {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-left: 72px;
  }

  .ej-journey-timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 22px;
    bottom: 22px;
    width: 6px;
    background: #3aa45b;
    border-radius: 20px;
  }

  .ej-journey-road {
    display: none;
  }

  .ej-journey-item,
  .ej-journey-item--top,
  .ej-journey-item--bottom {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 560px;
    transform: none;
    z-index: 3;
  }

  .ej-journey-card {
    min-height: auto;
    padding: 22px 20px;
    text-align: left;
    border-radius: 14px;
  }

  .ej-journey-card h3 {
    font-size: 34px;
    margin-bottom: 8px;
  }

  .ej-journey-card h4 {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .ej-journey-card p {
    font-size: 12px;
    line-height: 1.55;
  }
  
  .ej-journey-card-bottom {
    min-height: auto;
    padding: 22px 20px;
    text-align: left;
    border-radius: 14px;
    margin-top:0;
  }

  .ej-journey-card-bottom h3 {
    font-size: 34px;
    margin-bottom: 8px;
  }

  .ej-journey-card-bottom h4 {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .ej-journey-card-bottom p {
    font-size: 12px;
    line-height: 1.55;
  }

  .ej-journey-node,
  .ej-journey-item--top .ej-journey-node,
  .ej-journey-item--bottom .ej-journey-node {
    left: -72px;
    top: 14px;
    width: 58px;
    height: 58px;
    transform: none;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .ej-journey-section {
    padding: 36px 0 46px;
  }

  .ej-journey-head h2 {
    font-size: 34px;
  }

  .ej-journey-timeline {
    padding-left: 58px;
    gap: 18px;
  }

  .ej-journey-timeline::before {
    left: 24px;
    width: 5px;
  }

  .ej-journey-node,
  .ej-journey-item--top .ej-journey-node,
  .ej-journey-item--bottom .ej-journey-node {
    left: -58px;
    width: 50px;
    height: 50px;
  }

  .ej-journey-node span {
    width: 32px;
    height: 32px;
  }

  .ej-journey-card {
    padding: 20px 17px;
  }

  .ej-journey-card h3 {
    font-size: 30px;
  }
  
   .ej-journey-card-bottom {
    padding: 20px 17px;
    margin-top:0;
  }

  .ej-journey-card-bottom h3 {
    font-size: 30px;
  }
}

/*----- Timeline New 2--------*/

.eseo-jh-section{
  background:#eaf2e8;
  padding:18px 0 20px;
}

.eseo-jh-container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 42px;
  box-sizing:border-box;
  font-family:var(--font-body);
}

.eseo-jh-title{
  margin:0;
  text-align:center;
  font-family:var(--font-head);
  font-size:clamp(28px, 3vw, 33px);
  line-height:1;
  font-weight:300;
  color:var(--navy);
  letter-spacing:-0.04em;
}

.eseo-jh-subtitle{
  margin:8px 0 0;
  text-align:center;
  font-size:11px;
  line-height:1.2;
  color:#6c726d;
}

.eseo-jh-row{
  display:grid;
  position:relative;
  column-gap:18px;
}

.eseo-jh-row--top{
  grid-template-columns:repeat(4,minmax(0,1fr));
  margin-top:28px;
  padding-bottom:18px;
  border-bottom:1px dashed #b7d9be;
}

.eseo-jh-row--bottom{
  grid-template-columns:repeat(3,minmax(0,1fr));
  margin-top:14px;
  padding-top:12px;
  border-top:1px dashed #b7d9be;
}

.eseo-jh-row--top::before,
.eseo-jh-row--bottom::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}

.eseo-jh-row--top::before{
  background-image:
    linear-gradient(to right,
      transparent 24.9%, #b7d9be 25%, transparent 25.1%,
      transparent 49.9%, #b7d9be 50%, transparent 50.1%,
      transparent 74.9%, #b7d9be 75%, transparent 75.1%);
  background-repeat:no-repeat;
  background-size:100% 100%;
  opacity:.9;
}

.eseo-jh-row--bottom::before{
  background-image:
    linear-gradient(to right,
      transparent 33.2%, #b7d9be 33.35%, transparent 33.5%,
      transparent 66.5%, #b7d9be 66.65%, transparent 66.8%);
  background-repeat:no-repeat;
  background-size:100% 100%;
  opacity:.9;
}

.eseo-jh-item{
  position:relative;
  z-index:1;
  min-width:0;
}

.eseo-jh-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:4px;
}

.eseo-jh-icon{
  width:28px;
  height:28px;
  min-width:28px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#6ac86a 0%, #238f3a 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.25);
}

.eseo-jh-icon svg{
  width:16px;
  height:16px;
  fill:none;
  stroke:#fff;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.eseo-jh-year{
  font-family:var(--font-head);
  font-size:30px;
  line-height:1;
  font-weight:700;
  color:var(--navy);
  letter-spacing:-0.05em;
}

.eseo-jh-label{
  margin:0 0 3px;
  font-size:11px;
  line-height:1.2;
  font-weight:700;
  color:#2f3833;
}

.eseo-jh-text{
  margin:0;
  font-size:10px;
  line-height:1.55;
  color:#5a605b;
}

/* fine-tuning per row */
.eseo-jh-row--top .eseo-jh-item{
  padding-right:4px;
}

.eseo-jh-row--bottom .eseo-jh-item{
  padding-right:10px;
}

/* responsive */
@media (max-width: 992px){
  .eseo-jh-container{
    padding:0 24px;
  }

  .eseo-jh-row--top{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .eseo-jh-row--bottom{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .eseo-jh-row--top::before{
    background-image:
      linear-gradient(to right, transparent 49.9%, #b7d9be 50%, transparent 50.1%);
  }

  .eseo-jh-row--bottom::before{
    background-image:
      linear-gradient(to right, transparent 49.9%, #b7d9be 50%, transparent 50.1%);
  }
}

@media (max-width: 640px){
  .eseo-jh-section{
    padding:16px 0 18px;
  }

  .eseo-jh-container{
    padding:0 16px;
  }

  .eseo-jh-row--top,
  .eseo-jh-row--bottom{
    grid-template-columns:1fr;
    column-gap:0;
  }

  .eseo-jh-row--top::before,
  .eseo-jh-row--bottom::before,
  .eseo-jh-row--top{
    border-bottom:0;
  }

  .eseo-jh-row--bottom{
    border-top:0;
    margin-top:10px;
    padding-top:0;
  }

  .eseo-jh-item{
    margin-bottom:14px;
  }
}


/* ── Timeline ── */
/*.timeline{padding:80px 0}
.timeline__track{display:flex;flex-direction:column;gap:0;position:relative;max-width:700px;margin:0 auto}
.timeline__track::before{content:'';position:absolute;left:50%;top:0;bottom:0;width:2px;background:var(--border);transform:translateX(-50%)}
.timeline-item{display:grid;grid-template-columns:1fr 1fr;gap:0;position:relative;padding-bottom:48px}
.timeline-item:last-child{padding-bottom:0}
.timeline-item__year{text-align:right;padding-right:40px;padding-top:4px;font-family:var(--font-head);font-weight:800;font-size:1.5rem;color:var(--orange)}
.timeline-item__dot{position:absolute;left:50%;top:8px;width:16px;height:16px;background:var(--orange);border-radius:50%;transform:translateX(-50%);border:3px solid var(--white);box-shadow:0 0 0 3px var(--orange)}
.timeline-item__content{padding-left:40px;padding-top:0}
.timeline-item__content h3{font-size:1.05rem;margin-bottom:6px}
.timeline-item__content p{font-size:.85rem}*/

.timeline-section{background:var(--off-white);padding:80px 0}

/* Outer wrapper holds the zig-zag */
.timeline-h{position:relative;overflow:visible}

/* 6 columns, one per milestone */
.timeline-h__row{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  position:relative;
}

/* The central horizontal connector line */
.timeline-h__row::before{
  content:'';
  position:absolute;
  top:50%;
  left:calc(100% / 12);
  right:calc(100% / 12);
  height:2px;
  background:linear-gradient(90deg, var(--orange) 0%, rgba(245,130,31,.2) 100%);
  transform:translateY(-50%);
  z-index:0;
}

/* Each milestone cell */
.tl-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative;
  z-index:1;
}

/* ABOVE items: illustration top, year+dot in middle, text bottom */
.tl-item.above{
  /* Top half: illustration */
  /* Middle: dot on the line */
  /* Bottom half: text content */
  padding-top:0;
}

/* BELOW items: text top, year+dot in middle, illustration bottom */
.tl-item.below{}

/* Shared illustration box */
.tl-img{
  width:108px;height:84px;
  background:linear-gradient(135deg,#e4eefb,#ccd9f5);
  border-radius:var(--radius);
  border:2px solid rgba(255,255,255,.9);
  box-shadow:var(--shadow-sm);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  overflow:hidden;
}
.tl-img svg{width:38px;height:38px;opacity:.38;color:var(--navy)}

/* Vertical stub connecting illustration to dot */
.tl-stub{
  width:2px;
  height:36px;
  background:rgba(245,130,31,.3);
  flex-shrink:0;
}

/* Year label */
.tl-year{
  font-family:var(--font-head);
  font-weight:800;
  font-size:1.05rem;
  color:var(--navy-light);
  line-height:1;
  margin:6px 0 4px;
}

/* navy dot on the line */
.tl-dot{
  width:16px;height:16px;
  background:var(--navy-light);
  border-radius:50%;
  border:3px solid #fff;
  box-shadow:0 0 0 3px rgba(245,130,31,.35);
  flex-shrink:0;
  position:relative;
  z-index:2;
}

/* Text content block */
.tl-content{
  text-align:center;
  padding:0 6px;
  max-width:150px;
}
.tl-content h4{
  font-family:var(--font-head);
  font-weight:700;
  font-size:.78rem;
  color:var(--navy);
  margin-bottom:4px;
  line-height:1.3;
}
.tl-content p{
  font-size:.72rem;
  color:var(--text-muted);
  line-height:1.5;
}

/* ABOVE: img → stub → year → dot → stub → content */
.tl-item.above{justify-content:flex-end}
.tl-item.above .tl-img{order:1}
.tl-item.above .tl-stub:first-of-type{order:2}
.tl-item.above .tl-year{order:3}
.tl-item.above .tl-dot{order:4}
.tl-item.above .tl-stub:last-of-type{order:5}
.tl-item.above .tl-content{order:6}

/* BELOW: content → stub → dot → year → stub → img */
.tl-item.below{justify-content:flex-start;flex-direction:column-reverse}
.tl-item.below .tl-img{order:1}
.tl-item.below .tl-stub:first-of-type{order:2}
.tl-item.below .tl-year{order:3}
.tl-item.below .tl-dot{order:4}
.tl-item.below .tl-stub:last-of-type{order:5}
.tl-item.below .tl-content{order:6}

/* ── Mobile/tablet vertical timeline ── */
.timeline-v{display:none}
.timeline-v__track{position:relative;padding-left:36px}
.timeline-v__track::before{content:'';position:absolute;left:7px;top:0;bottom:0;width:2px;background:linear-gradient(to bottom,var(--orange),rgba(245,130,31,.12))}
.timeline-v__item{position:relative;padding-bottom:36px}
.timeline-v__item:last-child{padding-bottom:0}
.timeline-v__dot{position:absolute;left:-31px;top:4px;width:15px;height:15px;background:var(--orange);border-radius:50%;border:3px solid #fff;box-shadow:0 0 0 3px rgba(245,130,31,.35)}
.timeline-v__year{font-family:var(--font-head);font-weight:800;font-size:.88rem;color:var(--orange);margin-bottom:3px}
.timeline-v__title{font-family:var(--font-head);font-weight:700;font-size:.97rem;color:var(--navy);margin-bottom:4px}
.timeline-v__desc{font-size:.84rem;color:var(--text-muted);line-height:1.6}   

/* ── Stats ── */
.stats{background:var(--navy)}
.stats__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
.stat-item{text-align:center}
.stat-item__num{font-family:var(--font-head);font-size:2.8rem;font-weight:800;color:var(--white);line-height:1}
.stat-item__label{color:rgba(255,255,255,.7);font-size:.88rem;margin-top:8px}

/* ── Contact Form ── */
.contact{background:var(--off-white)}
.contact__inner{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.contact__info h2{margin-bottom:16px}
.contact__features{display:grid;gap:16px;margin-top:32px}
.contact__feature{display:flex;gap:14px;align-items:flex-start}
.contact__feature-icon{width:40px;height:40px;min-width:40px;background:var(--orange);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.contact__feature-icon svg{width:18px;height:18px;color:white}
.contact__feature h4{font-size:.95rem;margin-bottom:2px}
.contact__feature p{font-size:.82rem}
.contact-form{background:var(--white);border-radius:var(--radius-lg);padding:40px;box-shadow:var(--shadow)}
.form-group{margin-bottom:18px}
.form-group label{display:block;font-weight:600;font-size:.85rem;margin-bottom:6px;color:var(--text)}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:12px 16px;border:1.5px solid var(--border);border-radius:var(--radius);font-family:var(--font-body);font-size:.9rem;color:var(--text);background:var(--white);transition:border-color var(--transition);outline:none}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--orange)}
.form-group textarea{resize:vertical;min-height:110px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}

/* MAP FIX */
.contact__map {
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== CONTACT FULL MAP SECTION ===== */
.contact-full {
  position: relative;
  height: 100vh;
  width: 100%;
}

/* MAP */
.contact-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* OVERLAY */
.contact-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 40px;
}

/* FORM BOX */
.contact-form-box {
  width: 420px;
  background: #051A41E6;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
  color: #fff;
}

/* TITLE */
.contact-form-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color:#fff;
  text-align: center;
}

/* FORM */
.form-group {
  margin-bottom: 14px;
}

.form-group input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

/* PHONE INPUT FIX (intl-tel-input) */
.iti {
  width: 100%;
}

/* BUTTON */
.btn-submit {
  width: 100%;
  background: #1ec21e;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #16a34a;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .contact-full {
    height: auto;
  }

  .contact-map {
    position: relative;
    height: 350px;
  }

  .contact-overlay {
    position: relative;
    justify-content: center;
    padding: 20px;
  }

  .contact-form-box {
    width: 100%;
  }
}



/* ── Industries ── */
.industries__grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.industry-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:24px 16px;text-align:center;transition:all var(--transition)}
.industry-card:hover{border-color:var(--orange);box-shadow:var(--shadow);transform:translateY(-3px)}
.industry-card__icon{width:50px;height:50px;margin:0 auto 12px;background:var(--orange-light);border-radius:50%;display:flex;align-items:center;justify-content:center}
.industry-card__icon svg{width:22px;height:22px;color:var(--Lime-Green)}
.industry-card p{font-size:.82rem;font-weight:600;color:var(--text)}


/* ---- Case Studies New Section ---- */

.h2case-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0 130px;
  background: #0e4c57;
}

.h2case-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.98;
}

.h2case-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 65, 76, 0.82) 0%, rgba(8, 65, 76, 0.86) 100%),
    linear-gradient(90deg, rgba(6, 55, 66, 0.25) 0%, rgba(8, 65, 76, 0.08) 45%, rgba(8, 65, 76, 0.18) 100%);
}

.h2case-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 120px;
  padding: 0 20px;
}

.h2case-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.h2case-title {
  margin: 0;
  line-height: 1.08;
  font-family: var(--font-head);
}

.h2case-light {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: clamp(34px, 3.6vw, 36px);
  letter-spacing: -0.02em;
}

.h2case-bold {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: clamp(34px, 3.6vw, 36px);
  letter-spacing: -0.02em;
}

.h2case-top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: #fff;
  color: #0b7b35;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  margin-top: 20px;
}

.h2case-top-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0,0,0,.15);
  background: #f7fff5;
}

.h2case-slider {
  position: relative;
}

.h2case-viewport {
  overflow: hidden;
  padding: 8px 0 2px;
}

.h2case-track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.h2case-card {
  flex: 0 0 auto;
  width: clamp(760px, 66vw, 860px);
  min-width: clamp(760px, 66vw, 860px);
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 0;
  background: #eef5e8;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 18px 38px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.42);
}

.h2case-media {
  border-radius: 6px;
  overflow: hidden;
  min-height: 238px;
  background: #dfe8d8;
}

.h2case-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.h2case-body {
  padding: 10px 10px 8px 18px;
  display: flex;
  flex-direction: column;
}

.h2case-brand {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.h2case-brand--orange {
  color: #ff6b35;
}

.h2case-brand--green {
  color: #0b7b35;
}

.h2case-card-title {
  margin: 0 0 10px;
  color: #2a4c63;
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.22;
}

.h2case-card-text {
  margin: 0 0 14px;
  color: #5c6f7b;
  font-size: 12px;
  line-height: 1.6;
  max-width: 94%;
}

.h2case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}

.h2case-metric {
  background: #f6faf2;
  border: 1px solid rgba(183, 216, 163, .65);
  border-radius: 4px;
  padding: 12px 8px 10px;
  text-align: center;
}

.h2case-metric strong {
  display: block;
  color: #2ca24f;
  font-size: 25px;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 5px;
}

.h2case-metric span {
  display: block;
  color: #6c7c71;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}

.h2case-case-btn {
  align-self: flex-start;
  margin-top: 12px;
  background: transparent;
  color: #0b7b35;
  border: 1px solid rgba(11,123,53,.35);
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.h2case-case-btn:hover {
  background: #f5fff3;
  border-color: rgba(11,123,53,.6);
  transform: translateY(-1px);
}

/* Prevent layout shift */
.h2case-media {
  min-height: 240px;
}

/* Smooth GPU animation */
.h2case-track {
  will-change: transform;
}

@media (max-width: 1180px) {
  .h2case-container {
    margin: 0 32px;
    padding: 0;
  }

  .h2case-card {
    width: 100%;
    min-width: 100%;
    grid-template-columns: 0.95fr 1.05fr;
  }

  .h2case-media {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .h2case-section {
    padding: 58px 0 66px;
  }

  .h2case-container {
    margin: 0;
    padding: 0 16px;
  }

  .h2case-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .h2case-viewport {
    overflow: hidden;
    padding: 6px 0 2px;
  }

  .h2case-track {
    gap: 14px;
  }

  .h2case-card {
    width: 100%;
    min-width: 100%;
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 14px;
  }

  .h2case-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .h2case-body {
    padding: 14px 6px 4px;
  }

  .h2case-card-text {
    max-width: 100%;
  }

  .h2case-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .h2case-metric {
    padding: 10px 5px;
  }

  .h2case-metric strong {
    font-size: 20px;
  }

  .h2case-metric span {
    font-size: 8px;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .h2case-container {
    padding: 0 12px;
  }

  .h2case-card-title {
    font-size: 18px;
    line-height: 1.25;
  }

  .h2case-card-text {
    font-size: 12px;
    line-height: 1.55;
  }

  .h2case-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .h2case-metric span {
    font-size: 9px;
  }
}


/* ── Case Studies ── */
/* Section */

.case-slider {
  padding: 50px 0;
}

/* Container */
.case-container {
  max-width: 950px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

/* Track */
.case-track {
  display: flex;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 1;
}

/* CARD */
.case-card {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  background: #f8f9fc;
  border-radius: 16px;
  padding: 35px;
  border: 1px solid #e5e7eb;
}

/* LEFT */
.case-left {
  flex: 1;
  min-width: 0;
}

/* HEADER */
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* LOGO CONTAINER */
.logo {
  width: 120px;     /* 🔥 fixed width */
  height: 50px;     /* 🔥 fixed height */

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

  flex-shrink: 0;
}

/* IMAGE INSIDE */
.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.case-btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
}

.primary {
  background: #2b6cff;
  color: #fff;
}

.outline {
  border: 1px solid #2b6cff;
  color: #2b6cff;
}

/* TEXT */
.case-left p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* METRICS */
.metrics {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
}

.metrics strong {
  font-size: 20px;
}

.metrics span {
  font-size: 11px;
}

/* IMAGE */
.case-right {
  flex: 0 0 340px;
}

.case-right img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  border-radius: 12px;
}

/* NAV BUTTONS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

/* Proper spacing */
.prev {
  left: -25px;
}

.next {
  right: -25px;
}

/* MOBILE */
@media (max-width: 768px) {
  .case-card {
    flex-direction: column;
  }

  .case-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-right {
    width: 100%;
  }

  .case-right img {
    width: 100%;
  }
}

/* ── Testimonials ── */
.testimonials{background:var(--off-white)}
.testimonials__slider{position:relative;overflow:hidden}
.testimonials__track{display:flex;transition:transform 0.4s ease}
.testimonial-slide{min-width:100%;display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.testimonial-card{background:var(--white);border-radius:var(--radius-lg);padding:28px;border:1px solid var(--border);display:flex;flex-direction:column;gap:16px}
.testimonial-card__stars{display:flex;gap:3px;color:var(--Lime-Green)}
.testimonial-card__text{font-size:.88rem;color:var(--text-muted);flex:1;line-height:1.7}
.testimonial-card__author{display:flex;align-items:center;gap:12px;border-top:1px solid var(--border);padding-top:16px}
.testimonial-card__avatar{width:42px;height:42px;border-radius:50%;background:var(--orange-light);display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-weight:700;color:var(--navy-light);font-size:.9rem;min-width:42px}
.testimonial-card__name{font-weight:700;font-size:.88rem}
.testimonial-card__role{font-size:.78rem;color:var(--text-muted)}
.slider-controls{display:flex;justify-content:center;gap:10px;margin-top:32px}
.slider-dot{width:10px;height:10px;border-radius:50%;background:var(--border);transition:all var(--transition);cursor:pointer}
.slider-dot.active{background:var(--navy-light);width:30px;border-radius:5px}

/* ===============================
   TESTIMONIAL NEW
=============================== */
/* SECTION */
.tm-section {
  background: #f5fdf5;
  padding: 80px 0;
  padding-left: 32px;
  padding-right: 32px;
}

.tm-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  
}

.tm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  
}

.tm-title {
  font-size: clamp(24px,4vw,50px);
  line-height: 1.1;
  
}

.tm-light {
  display: block;
  font-weight: 300;
  color: #113b51;
}

.tm-bold {
  font-weight: 600;
  background: linear-gradient(160deg,#7bc46a,#00732f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tm-btn {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 48px;
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  white-space: normal;
  box-sizing: border-box;
}

.tm-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 12px;
}

.tm-viewport {
  overflow: hidden;
}

.tm-track {
  display: flex;
  gap: 20px;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.tm-card {
  width: 550px;
  min-width: 450px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
}

.tm-card img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.tm-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding-top: 4px;
}

.tm-text {
  font-size: 13px;
  color: rgba(15,20,25,.72);
  line-height: 1.7;
  font-style: italic;
}

.tm-name {
  font-size: 13px;
  font-weight: 700;
  color: #113b51;
}

.tm-role {
  font-size: 11px;
  color: #6b7280;
}

.tm-stars {
  color: #0fcc7c;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}

.tm-prev,
.tm-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  font-size: 24px;
  color: #113b51;
  line-height: 1;
}

.tm-prev { left: 0; }
.tm-next { right: 0; }

.tm-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
}

.dot.on {
  background: #34B71A;
}

@media (max-width: 1024px) {
  .tm-section {
    padding: 64px 0;
    padding-left: 0;
    padding-right: 0;
  }

  .tm-container {
    padding: 0 24px;
  }

  .tm-slider-wrap {
    padding: 0;
  }

  .tm-card {
    width: calc((100vw - 88px) / 2);
    min-width: calc((100vw - 88px) / 2);
    max-width: 420px;
  }

  .tm-card img {
    width: 96px;
    height: 96px;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .tm-section {
    padding: 58px 0 66px;
    padding-left: 0;
    padding-right: 0;
  }

  .tm-container {
    padding: 0 16px;
  }

  .tm-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }

.tm-btn {
  width: 220px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  height: 48px;
  min-height: 48px;
  justify-content: center;
  text-align: center;
  white-space: normal;
  margin-left: auto;
  margin-right: auto;
}

  .tm-slider-wrap {
    padding: 0 0 48px;
    overflow: hidden;
  }

  .tm-track {
    gap: 14px;
  }

  .tm-card {
    width: 100%;
    min-width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .tm-card img {
    width: 82px;
    height: 82px;
    border-radius: 12px;
    object-fit: contain;
    align-self: flex-start;
  }

  .tm-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .tm-prev,
  .tm-next {
    width: 34px;
    height: 34px;
    top: auto;
    bottom: 0;
    transform: none;
    font-size: 22px;
  }

  .tm-prev {
    left: calc(50% - 42px);
  }

  .tm-next {
    right: calc(50% - 42px);
  }
}

@media (min-width: 1200px) {
  .tm-section {
    padding-left: 60px;
    padding-right: 60px;
  }

  .tm-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ----- New What we Do and Our Process Section CSS --*/

.h2-offer-section {
  background: #f5fdf5;
  padding: 80px 0;
}

.h2-offer-shell {
  display: flex;
  gap: 24px;
  border-radius: 24px;
  overflow: hidden;
}

.h2-offer-left {
  background: #00732f;
  color: #fff;
  padding: 40px;
  border-radius: 24px;
  min-width: 280px;
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.h2-offer-kicker {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.h2-offer-title {
  color: #fff;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 300;
  margin: 0 0 16px;
}

.h2-offer-title span {
  font-weight: 700;
}

.h2-offer-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 32px;
}

.h2-offer-btn {
  background: #fff;
  color: #00732f;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 14px;
  align-self: flex-start;
}

.h2-offer-btn:hover {
  background: #f3fff3;
  transform: translateY(-2px);
}

.h2-offer-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.h2-offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(17, 59, 81, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.h2-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 115, 47, 0.13);
}

.h2-offer-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef6ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.h2-offer-card h3 {
  color: #113b51;
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 8px;
}

.h2-offer-card p {
  color: #666;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.h2-process-section {
  background: #eef6ed;
  padding: 80px 0;
}

.h2-process-head {
  text-align: center;
  margin-bottom: 48px;
}

.h2-process-kicker {
  color: #113b51;
  font-size: clamp(22px, 4vw, 46px);
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
}

.h2-process-title {
  color: #113b51;
  font-size: clamp(22px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.h2-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.h2-process-card {
  position: relative;
  background: #eef6ed;
  border: 1px solid rgba(150, 150, 150, 0.28);
  border-radius: 20px;
  padding: 40px 24px 24px;
  box-shadow: 0 10px 28px rgba(17, 59, 81, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.h2-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 115, 47, 0.13);
}

.h2-process-number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: rgba(100, 100, 100, 0.14);
  user-select: none;
}

.h2-process-icon {
  display: block;
  margin-bottom: 16px;
}

.h2-process-card h3 {
  color: #113b51;
  font-size: 28px;
  font-weight: 300;
  margin: 0 0 8px;
}

.h2-process-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.h2-process-cta {
  display: flex;
  justify-content: center;
}

.h2-process-btn {
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 14px;
}

@media (max-width: 1024px) {
  .h2-offer-shell {
    flex-direction: column;
  }

  .h2-offer-left {
    max-width: 100%;
  }

  .h2-offer-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .h2-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 768px) {
  .h2-offer-section,
  .h2-process-section {
    padding: 60px 0;
  }

  .h2-offer-right,
  .h2-process-grid {
    grid-template-columns: 1fr;
  }

  .h2-offer-left {
    padding: 32px 24px;
  }

  .h2-process-card {
    padding: 36px 20px 20px;
  }

  .h2-process-card h3 {
    font-size: 24px;
  }
}

/* ── Why UAE Section ── */
.why-uae__content{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.why-uae__features{display:grid;gap:20px;margin-top:32px}
.feature-row{display:flex;gap:16px;align-items:flex-start}
.feature-icon{width:48px;height:48px;min-width:48px;background:var(--orange-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.feature-icon svg{width:22px;height:22px;color:var(--Lime-Green)}
.feature-row h4{font-size:1rem;margin-bottom:4px}
.feature-row p{font-size:.88rem}
.why-uae__img-wrap{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg)}
.why-uae__img-wrap img,.why-uae__img-placeholder{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:var(--radius-lg)}
.img-placeholder{background:linear-gradient(135deg,#e8f0fe,#c9d9f9);border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;aspect-ratio:4/3}
.img-placeholder svg{width:60px;height:60px;opacity:.3;color:var(--navy)}


/*----- New Services CSS Sudhanshu Design ---*/

/* SERVICES */

*{box-sizing:border-box}html,body{margin:0;padding:0}body{font-family:var(--font-body);color:var(--navy);background:#fff;overflow-x:hidden}img{max-width:100%;display:block;height:auto}a{text-decoration:none;color:inherit}.eseo-page{width:100%}.eseo-wrap{width:min(1240px,calc(100% - 48px));margin:0 auto}.eseo-section-title{font-family:var(--font-head);font-weight:300;letter-spacing:-.04em;line-height:1;color:var(--navy);text-align:center;margin:0}.eseo-section-subtitle{text-align:center;color:#6b7280;margin:10px auto 0;line-height:1.55;max-width:900px;font-size:16px}

.eseo-services-section{background:#fff;padding:24px 0 44px}

.eseo-services-head{padding-top:4px;padding-bottom:18px}

.eseo-services-title{font-size:clamp(34px,3vw,32px);margin-bottom:14px}

.eseo-services-sub{font-size:17px;color:#6b7a90}

.eseo-services-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:32px 28px;margin-top:30px}

.eseo-service-card{position:relative;background:#fff;border:1px solid #dfeee0;border-top:4px solid var(--Lime-Green);border-radius:18px;padding:18px 18px 20px;min-height:256px;box-shadow:0 8px 20px rgba(18,61,32,.04);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;overflow:hidden}

.eseo-service-card:hover{transform:translateY(-8px);box-shadow:0 18px 36px rgba(18,61,32,.12);border-color:#bfe4c0}

.eseo-service-card::after{content:"";position:absolute;inset:auto 18px 0 18px;height:4px;background:linear-gradient(90deg,var(--Lime-Green),var(--Lime-Green));border-radius:999px;opacity:0;transform:scaleX(.7);transition:.28s ease}

.eseo-service-card:hover::after{opacity:1;transform:scaleX(1)}

.eseo-service-no{position:absolute;left:14px;top:14px;background:var(--Lime-Green);color:#fff;font-size:14px;font-weight:700;padding:6px 8px;border-radius:4px;line-height:1;box-shadow:0 8px 18px rgba(52,183,26,.18)}

.eseo-service-icon{width:64px;height:64px;border-radius:50%;background:#eef8ee;display:flex;align-items:center;justify-content:center;margin:18px auto 18px;color:var(--Lime-Green)}

.eseo-service-icon svg{width:30px;height:30px;stroke:currentColor;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}

.eseo-service-card h3{margin:0 0 8px;font-family:var(--font-head);color:var(--navy);font-size:20px;line-height:1.18;font-weight:600}

.eseo-service-card p{margin:0 0 18px;color:#6b7a90;font-size:14px;line-height:1.55;min-height:66px}

.eseo-service-link{display:inline-flex;align-items:center;gap:7px;color:#0b7b35;font-weight:700;font-size:13px}
.eseo-service-link svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2}

/* =========================================
   Services Section CTA + Mini Form
========================================= */

.eseo-services-cta-card {
  position: relative;
  min-height: 256px;
  overflow: hidden;
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #168f3f 0%, #04742e 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 115, 47, 0.18);
}

.eseo-services-cta-pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.eseo-services-cta-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.eseo-services-cta-card p {
  max-width: 210px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.55;
}

.eseo-services-cta-chart {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 54px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  opacity: 0.45;
}

.eseo-services-cta-chart span {
  width: 12px;
  border-radius: 5px 5px 0 0;
  background: #b8f3a9;
}

.eseo-services-cta-chart span:nth-child(1) {
  height: 22px;
}

.eseo-services-cta-chart span:nth-child(2) {
  height: 36px;
}

.eseo-services-cta-chart span:nth-child(3) {
  height: 50px;
}

/* Mini Form */
.eseo-services-mini-form {
  min-height: 256px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 22px 20px;
  border: 1px solid #dfeee0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(18, 61, 32, 0.06);
}

.eseo-services-mini-form__field {
  min-height: 42px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dfe7ef;
  border-radius: 9px;
  background: #ffffff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.eseo-services-mini-form__field:focus-within {
  border-color: var(--Lime-Green);
  box-shadow: 0 0 0 4px rgba(52, 183, 26, 0.12);
}

.eseo-services-mini-form__field span {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--Lime-Green);
}

.eseo-services-mini-form__field svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eseo-services-mini-form__field input {
  width: 100%;
  height: 42px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 12px;
}

.eseo-services-mini-form__field input::placeholder {
  color: #9ca9b8;
}

.eseo-services-mini-form__button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #6ec75e 0%, #087d33 100%);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 120, 48, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.eseo-services-mini-form__button span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #087d33;
  font-size: 15px;
}

.eseo-services-mini-form__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 120, 48, 0.26);
}

.eseo-services-mini-form__note {
  margin: 0;
  color: #6b7a90;
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1100px) {
  .eseo-services-cta-card,
  .eseo-services-mini-form {
    min-height: 230px;
  }
}

@media (max-width: 720px) {
  .eseo-services-cta-card,
  .eseo-services-mini-form {
    min-height: auto;
  }

  .eseo-services-cta-card {
    padding: 28px 22px 70px;
  }

  .eseo-services-cta-card p {
    max-width: 100%;
  }

  .eseo-services-mini-form {
    padding: 22px;
  }

  .eseo-services-mini-form__field {
    min-height: 46px;
  }

  .eseo-services-mini-form__field input {
    height: 46px;
    font-size: 14px;
  }

  .eseo-services-mini-form__button {
    min-height: 46px;
    font-size: 13px;
  }
}

/* RESPONSIVE */
@media(max-width:1100px){.eseo-services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.eseo-journey-row--top,.eseo-journey-row--bottom{grid-template-columns:repeat(2,minmax(0,1fr));row-gap:20px}.eseo-journey-path{display:none}.eseo-lead-wrap{grid-template-columns:1fr;gap:24px}.eseo-lead-visual{min-height:610px}.eseo-lead-copy{text-align:center}.eseo-stats{max-width:760px;margin-left:auto;margin-right:auto}.eseo-hero-section{min-height:auto}.eseo-hero-grid{grid-template-columns:1fr;min-height:auto;padding:56px 0 34px}.eseo-hero-right{min-height:680px}.eseo-hero-copy{text-align:center;max-width:none;margin:0 auto}.eseo-hero-copy p{margin-left:auto;margin-right:auto}.eseo-hero-actions{justify-content:center}}
@media(max-width:720px){.eseo-wrap{width:min(100% - 28px,1240px)}.eseo-services-grid{grid-template-columns:1fr;gap:18px}.eseo-service-card{min-height:auto}.eseo-journey-row--top,.eseo-journey-row--bottom{grid-template-columns:1fr}.eseo-journey-row--bottom{margin-top:14px}.eseo-journey-item{min-height:auto}.eseo-lead-section{padding:44px 0 26px}.eseo-lead-visual{min-height:540px;transform:scale(.9);transform-origin:top center}.eseo-founder-card{width:230px}.eseo-founder-card--one{left:10px;top:44px}.eseo-founder-card--two{left:188px;top:140px}.eseo-stats{grid-template-columns:repeat(2,minmax(0,1fr))}.eseo-hero-grid{padding:40px 0 28px}.eseo-hero-copy h1{font-size:clamp(36px, 3.8vw, 38px)}.eseo-hero-copy p{font-size:14px}.eseo-hero-right{min-height:780px;transform:scale(.86);transform-origin:top center;margin-left:-24px}.f1,.f2,.f3,.f4{right:auto}.f1{left:8px;top:28px}.f2{left:230px;top:238px}.f3{left:254px;top:430px}.f4{left:214px;top:612px}.eseo-hero-center-badge{right:120px;top:184px}}

/* ── Process ── */
.process__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative}
.process__grid::after{content:'';position:absolute;top:36px;left:12%;right:12%;height:2px;background:linear-gradient(90deg,var(--Lime-Green),rgba(244,124,32,.2));z-index:0}
.process-step{text-align:center;padding:0 16px;position:relative;z-index:1}
.process-step__num{width:72px;height:72px;background:var(--navy-light);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;font-family:var(--font-head);font-weight:800;font-size:1.3rem;color:var(--white);border:4px solid var(--white);box-shadow:0 0 0 4px var(--Lime-Green)}
.process-step h3{font-size:1rem;margin-bottom:8px}
.process-step p{font-size:.83rem}

/* ── Funnel Section ── */
.funnel__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.funnel-card{background:var(--white);border-radius:var(--radius-lg);padding:32px 24px;text-align:center;border:1px solid var(--border);transition:all var(--transition)}
.funnel-card:hover{border-color:var(--orange);box-shadow:var(--shadow)}
.funnel-card__icon{width:56px;height:56px;margin:0 auto 18px;background:var(--orange-light);border-radius:50%;display:flex;align-items:center;justify-content:center}
.funnel-card__icon svg{width:26px;height:26px;color:var(--Lime-Green)}
.funnel-card h3{font-size:1.1rem;margin-bottom:8px}

/* ── Benefits ── */
.benefits__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.benefit-card{background:var(--white);border-radius:var(--radius-lg);padding:28px;border:1px solid var(--border);display:flex;gap:18px;align-items:flex-start;transition:all var(--transition)}
.benefit-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.benefit-card__icon{width:44px;height:44px;min-width:44px;background:var(--orange-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.benefit-card__icon svg{width:20px;height:20px;color:var(--Lime-Green)}
.benefit-card h3{font-size:1rem;margin-bottom:6px}
.benefit-card p{font-size:.84rem}

/* ── AEO / GEO ── */
.aeo-geo{background:var(--navy)}
.aeo-geo__grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.aeo-geo__card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius-lg);padding:36px}
.aeo-geo__card h3{color:var(--white);margin-bottom:12px;font-size:1.3rem}
.aeo-geo__card p{color:var(--white);margin-bottom:24px}
.aeo-geo__list{display:grid;gap:10px}
.aeo-geo__list li{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.85);font-size:.9rem}
.aeo-geo__list li::before{content:'';width:8px;height:8px;min-width:8px;background:var(--Lime-Green);border-radius:50%}

/* ── Timeline ── */
/*.timeline{padding:80px 0}
.timeline__track{display:flex;flex-direction:column;gap:0;position:relative;max-width:700px;margin:0 auto}
.timeline__track::before{content:'';position:absolute;left:50%;top:0;bottom:0;width:2px;background:var(--border);transform:translateX(-50%)}
.timeline-item{display:grid;grid-template-columns:1fr 1fr;gap:0;position:relative;padding-bottom:48px}
.timeline-item:last-child{padding-bottom:0}
.timeline-item__year{text-align:right;padding-right:40px;padding-top:4px;font-family:var(--font-head);font-weight:800;font-size:1.5rem;color:var(--orange)}
.timeline-item__dot{position:absolute;left:50%;top:8px;width:16px;height:16px;background:var(--orange);border-radius:50%;transform:translateX(-50%);border:3px solid var(--white);box-shadow:0 0 0 3px var(--orange)}
.timeline-item__content{padding-left:40px;padding-top:0}
.timeline-item__content h3{font-size:1.05rem;margin-bottom:6px}
.timeline-item__content p{font-size:.85rem}*/

.timeline-section{background:var(--off-white);padding:80px 0}

/* Outer wrapper holds the zig-zag */
.timeline-h{position:relative;overflow:visible}

/* 6 columns, one per milestone */
.timeline-h__row{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  position:relative;
}

/* The central horizontal connector line */
.timeline-h__row::before{
  content:'';
  position:absolute;
  top:50%;
  left:calc(100% / 12);
  right:calc(100% / 12);
  height:2px;
  background:linear-gradient(90deg, var(--orange) 0%, rgba(245,130,31,.2) 100%);
  transform:translateY(-50%);
  z-index:0;
}

/* Each milestone cell */
.tl-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative;
  z-index:1;
}

/* ABOVE items: illustration top, year+dot in middle, text bottom */
.tl-item.above{
  /* Top half: illustration */
  /* Middle: dot on the line */
  /* Bottom half: text content */
  padding-top:0;
}

/* BELOW items: text top, year+dot in middle, illustration bottom */
.tl-item.below{}

/* Shared illustration box */
.tl-img{
  width:108px;height:84px;
  background:linear-gradient(135deg,#e4eefb,#ccd9f5);
  border-radius:var(--radius);
  border:2px solid rgba(255,255,255,.9);
  box-shadow:var(--shadow-sm);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  overflow:hidden;
}
.tl-img svg{width:38px;height:38px;opacity:.38;color:var(--navy)}

/* Vertical stub connecting illustration to dot */
.tl-stub{
  width:2px;
  height:36px;
  background:rgba(245,130,31,.3);
  flex-shrink:0;
}

/* Year label */
.tl-year{
  font-family:var(--font-head);
  font-weight:800;
  font-size:1.05rem;
  color:var(--navy-light);
  line-height:1;
  margin:6px 0 4px;
}

/* navy dot on the line */
.tl-dot{
  width:16px;height:16px;
  background:var(--navy-light);
  border-radius:50%;
  border:3px solid #fff;
  box-shadow:0 0 0 3px rgba(245,130,31,.35);
  flex-shrink:0;
  position:relative;
  z-index:2;
}

/* Text content block */
.tl-content{
  text-align:center;
  padding:0 6px;
  max-width:150px;
}
.tl-content h4{
  font-family:var(--font-head);
  font-weight:700;
  font-size:.78rem;
  color:var(--navy);
  margin-bottom:4px;
  line-height:1.3;
}
.tl-content p{
  font-size:.72rem;
  color:var(--text-muted);
  line-height:1.5;
}

/* ABOVE: img → stub → year → dot → stub → content */
.tl-item.above{justify-content:flex-end}
.tl-item.above .tl-img{order:1}
.tl-item.above .tl-stub:first-of-type{order:2}
.tl-item.above .tl-year{order:3}
.tl-item.above .tl-dot{order:4}
.tl-item.above .tl-stub:last-of-type{order:5}
.tl-item.above .tl-content{order:6}

/* BELOW: content → stub → dot → year → stub → img */
.tl-item.below{justify-content:flex-start;flex-direction:column-reverse}
.tl-item.below .tl-img{order:1}
.tl-item.below .tl-stub:first-of-type{order:2}
.tl-item.below .tl-year{order:3}
.tl-item.below .tl-dot{order:4}
.tl-item.below .tl-stub:last-of-type{order:5}
.tl-item.below .tl-content{order:6}

/* ── Mobile/tablet vertical timeline ── */
.timeline-v{display:none}
.timeline-v__track{position:relative;padding-left:36px}
.timeline-v__track::before{content:'';position:absolute;left:7px;top:0;bottom:0;width:2px;background:linear-gradient(to bottom,var(--orange),rgba(245,130,31,.12))}
.timeline-v__item{position:relative;padding-bottom:36px}
.timeline-v__item:last-child{padding-bottom:0}
.timeline-v__dot{position:absolute;left:-31px;top:4px;width:15px;height:15px;background:var(--orange);border-radius:50%;border:3px solid #fff;box-shadow:0 0 0 3px rgba(245,130,31,.35)}
.timeline-v__year{font-family:var(--font-head);font-weight:800;font-size:.88rem;color:var(--orange);margin-bottom:3px}
.timeline-v__title{font-family:var(--font-head);font-weight:700;font-size:.97rem;color:var(--navy);margin-bottom:4px}
.timeline-v__desc{font-size:.84rem;color:var(--text-muted);line-height:1.6}   

/* ── Stats ── */
.stats{background:var(--navy)}
.stats__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
.stat-item{text-align:center}
.stat-item__num{font-family:var(--font-head);font-size:2.8rem;font-weight:800;color:var(--white);line-height:1}
.stat-item__label{color:rgba(255,255,255,.7);font-size:.88rem;margin-top:8px}

/* ── Contact Form ── */
.contact{background:var(--off-white)}
.contact__inner{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.contact__info h2{margin-bottom:16px}
.contact__features{display:grid;gap:16px;margin-top:32px}
.contact__feature{display:flex;gap:14px;align-items:flex-start}
.contact__feature-icon{width:40px;height:40px;min-width:40px;background:var(--orange);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.contact__feature-icon svg{width:18px;height:18px;color:white}
.contact__feature h4{font-size:.95rem;margin-bottom:2px}
.contact__feature p{font-size:.82rem}
.contact-form{background:var(--white);border-radius:var(--radius-lg);padding:40px;box-shadow:var(--shadow)}
.form-group{margin-bottom:18px}
.form-group label{display:block;font-weight:600;font-size:.85rem;margin-bottom:6px;color:var(--text)}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:12px 16px;border:1.5px solid var(--border);border-radius:var(--radius);font-family:var(--font-body);font-size:.9rem;color:var(--text);background:var(--white);transition:border-color var(--transition);outline:none}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--orange)}
.form-group textarea{resize:vertical;min-height:110px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}

/* MAP FIX */
.contact__map {
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== CONTACT FULL MAP SECTION ===== */
.contact-full {
  position: relative;
  height: 100vh;
  width: 100%;
}

/* MAP */
.contact-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* OVERLAY */
.contact-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 40px;
}

/* FORM BOX */
.contact-form-box {
  width: 420px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
  color: var(--navy);
}

/* TITLE */
.contact-form-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color:var(--navy);
  text-align: center;
}

/* FORM */
.form-group {
  margin-bottom: 14px;
}

.form-group input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: line;
  outline: none;
  font-size: 14px;
}

/* PHONE INPUT FIX (intl-tel-input) */
.iti {
  width: 100%;
}

/* BUTTON */
.btn-submit {
  width: 100%;
  background: #1ec21e;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #16a34a;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .contact-full {
    height: auto;
  }

  .contact-map {
    position: relative;
    height: 350px;
  }

  .contact-overlay {
    position: relative;
    justify-content: center;
    padding: 20px;
  }

  .contact-form-box {
    width: 100%;
  }
}



/* ── Industries ── */
.industries__grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.industry-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:24px 16px;text-align:center;transition:all var(--transition)}
.industry-card:hover{border-color:var(--orange);box-shadow:var(--shadow);transform:translateY(-3px)}
.industry-card__icon{width:50px;height:50px;margin:0 auto 12px;background:var(--orange-light);border-radius:50%;display:flex;align-items:center;justify-content:center}
.industry-card__icon svg{width:22px;height:22px;color:var(--Lime-Green)}
.industry-card p{font-size:.82rem;font-weight:600;color:var(--text)}

/* ── Case Studies ── */
/* Section */

.case-slider {
  padding: 50px 0;
}

/* Container */
.case-container {
  max-width: 950px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

/* Track */
.case-track {
  display: flex;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 1;
}

/* CARD */
.case-card {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  background: #f8f9fc;
  border-radius: 16px;
  padding: 35px;
  border: 1px solid #e5e7eb;
}

/* LEFT */
.case-left {
  flex: 1;
  min-width: 0;
}

/* HEADER */
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* LOGO CONTAINER */
.logo {
  width: 120px;     /* 🔥 fixed width */
  height: 50px;     /* 🔥 fixed height */

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

  flex-shrink: 0;
}

/* IMAGE INSIDE */
.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.case-btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
}

.primary {
  background: #2b6cff;
  color: #fff;
}

.outline {
  border: 1px solid #2b6cff;
  color: #2b6cff;
}

/* TEXT */
.case-left p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* METRICS */
.metrics {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
}

.metrics strong {
  font-size: 20px;
}

.metrics span {
  font-size: 11px;
}

/* IMAGE */
.case-right {
  flex: 0 0 340px;
}

.case-right img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  border-radius: 12px;
}

/* NAV BUTTONS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

/* Proper spacing */
.prev {
  left: -25px;
}

.next {
  right: -25px;
}

/* MOBILE */
@media (max-width: 768px) {
  .case-card {
    flex-direction: column;
  }

  .case-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-right {
    width: 100%;
  }

  .case-right img {
    width: 100%;
  }
}

/* ── Testimonials ── */
.testimonials{background:var(--off-white)}
.testimonials__slider{position:relative;overflow:hidden}
.testimonials__track{display:flex;transition:transform 0.4s ease}
.testimonial-slide{min-width:100%;display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.testimonial-card{background:var(--white);border-radius:var(--radius-lg);padding:28px;border:1px solid var(--border);display:flex;flex-direction:column;gap:16px}
.testimonial-card__stars{display:flex;gap:3px;color:var(--Lime-Green)}
.testimonial-card__text{font-size:.88rem;color:var(--text-muted);flex:1;line-height:1.7}
.testimonial-card__author{display:flex;align-items:center;gap:12px;border-top:1px solid var(--border);padding-top:16px}
.testimonial-card__avatar{width:42px;height:42px;border-radius:50%;background:var(--orange-light);display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-weight:700;color:var(--navy-light);font-size:.9rem;min-width:42px}
.testimonial-card__name{font-weight:700;font-size:.88rem}
.testimonial-card__role{font-size:.78rem;color:var(--text-muted)}
.slider-controls{display:flex;justify-content:center;gap:10px;margin-top:32px}
.slider-dot{width:10px;height:10px;border-radius:50%;background:var(--border);transition:all var(--transition);cursor:pointer}
.slider-dot.active{background:var(--navy-light);width:30px;border-radius:5px}


/* ===============================
        CTA RIBBON 
 ===============================*/
.cta-ribbon {
  padding: 0 16px;              /* space on left/right of the whole section */
  margin: 10px 0;
  
}

.cta-ribbon__inner {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background-image:
    linear-gradient(90deg, rgba(34, 167, 76, 0.96) 0%, rgba(26, 143, 58, 0.96) 100%),
    var(--cta-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 40px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.cta-ribbon__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(255,255,255,0.16), transparent 42%);
  pointer-events: none;
}

.ribbon-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.ribbon-copy h3 {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
}

.ribbon-copy p {
  margin: 6px 0 0;
  opacity: 0.92;
  font-size: 15px;
  color: #fff;
}

.accent-light {
  color: rgba(255, 255, 255, 0.9);
}

.btn.btn-white {
  background: #fff;
  color: #118d33;
  border: 0;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.btn.btn-white:hover {
  transform: translateY(-1px);
}

/* ── FAQ ── */

/* ── FAQ ── */

.faq__list {
  width: min(100%, 1160px);
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.faq__col {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  width: 100%;
  min-width: 0;
  height: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.90rem;
  line-height: 1.45;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  box-sizing: border-box;
}

.faq-item__q:hover,
.faq-item.open .faq-item__q {
  color: var(--orange);
}

.faq-item__icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.faq-item.open .faq-item__icon {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(45deg);
}

.faq-item__icon svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.faq-item.open .faq-item__icon svg {
  stroke: #ffffff;
}

.faq-item__a {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__a-inner {
  width: 100%;
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .faq__list {
    width: min(100%, 720px);
    max-width: 720px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq__col {
    gap: 16px;
  }

  .faq-item__q {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .faq__list {
    width: 100%;
  }

  .faq-item__q {
    padding: 18px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .faq-item__a-inner {
    padding: 0 18px 18px;
  }
}

/* ── Media Coverage ── */
/* SECTION BACKGROUND */
.media-section {
  padding: 80px 0;
  background: #f3f5f7;
  position: relative;
}

/* DOTTED PATTERN (like screenshot) */
.media-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.4;
  pointer-events: none;
}

/* GRID */
.media__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* CARD STYLE */
.media-card {
  background: #fff;
  border: 1px solid var(--Lime-Green);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* LOGO */
.media-card img {
  max-width: 120px;
  height: auto;
}

/* HOVER EFFECT */
.media-card:hover img {
  filter: none;
  opacity: 1;
}

/* CTA BUTTON */
.media-cta {
  margin-top: 40px;
  text-align: center;
}

.media-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid var(--Lime-Green);
  border-radius: 30px;
  color: var(--Lime-Green);
  font-weight: 600;
  transition: 0.3s;
}

.media-btn:hover {
  background: var(--Lime-Green);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .media__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .media__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── CTA Banner ── */
.cta-banner{background:linear-gradient(135deg,var(--orange) 0%,#e05a00 100%);padding:70px 0;text-align:center}
.cta-banner h2{color:var(--white);margin-bottom:12px}
.cta-banner p{color:rgba(255,255,255,.85);margin-bottom:32px;max-width:560px;margin-left:auto;margin-right:auto}


/* ===============================
   FOOTER CTA with Brevo Form (FINAL PREMIUM)
=============================== */

.footer-cta {
  position: relative;
  padding: 80px 0;
  overflow: visible;
}

.footer-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.footer-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7,112,47,0.95) 0%,
    rgba(7,112,47,0.85) 40%,
    rgba(7,112,47,0.5) 70%,
    rgba(7,112,47,0.2) 100%
  );
  z-index: 1;
}

.footer-cta .container {
  position: relative;
  z-index: 2;
}

/* OVERLAY (VERY IMPORTANT) */
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 112, 47, 0.95) 0%,
    rgba(7, 112, 47, 0.85) 40%,
    rgba(7, 112, 47, 0.55) 70%,
    rgba(7, 112, 47, 0.2) 100%
  );
  z-index: 1;
}

.footer-cta .btn-primary {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 48px;
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  background: #fff;
  color: #0b7b35;
  border: none;
  white-space: normal;
  box-sizing: border-box;
}

.footer-cta .btn-primary:hover {
  background: linear-gradient(135deg,#7bc46a,#00732f);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,115,47,0.3);
}

.footer-cta .btn-outline {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 48px;
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  border: 1.5px solid #fff;
  color: #fff;
  background: transparent;
  white-space: normal;
  box-sizing: border-box;
}

.footer-cta .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* CONTENT LAYER */
.footer-cta .container {
  position: relative;
  z-index: 2;
}

/* GRID */
.footer-cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.footer-cta__content h2 {
  color: #fff;
  font-size: clamp(34px, 3.6vw, 36px);
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-cta__content h2 span {
  display: block;
  font-weight: 600;
  color: #7BC46A; /* lighter green highlight */
}

.footer-cta__content p {
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 25px;
}

.footer-cta__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-cta__points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

/* RIGHT FORM */
.footer-cta__form {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
   z-index: 3;
   position: relative;
   width:450px;
}

.footer-cta__form h3 {
  margin-bottom: 5px;
  color: #113b51;
}

.footer-cta__form p {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.footer-cta__form form {
  display: grid;
  gap: 12px;
}

.footer-cta__form input {
  height: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
}

.footer-cta__form input:focus {
  border-color: #34B71A;
  outline: none;
}

.footer-cta__form button {
  height: 44px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #7bc46a, #00732f);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.footer-cta__form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,115,47,0.25);
}

.footer-cta__trust {
  margin-top: 14px;
  text-align: center;
}

/* avatars */
.trust-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.trust-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* rating */
.trust-rating {
  font-size: 12px;
  color: #666;
}

.trust-rating span {
  margin-left: 4px;
}

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

@media (max-width: 1024px) {
  .footer-cta__inner {
    grid-template-columns: 1fr;
  }

  .footer-cta__form {
    max-width: 420px;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .footer-cta {
    padding: 60px 0;
  }

 .footer-cta__actions {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-cta .btn-primary,
.footer-cta .btn-outline {
  width: 220px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  height: 48px;
  min-height: 48px;
}

  .footer-cta__points {
    flex-direction: column;
  }
  
  .footer-cta__form {
    margin-top: -40px;
  }

  .footer-cta {
    margin-top: 80px;
  }
}

/* =========================================================
   Brevo form compatibility styles
========================================================= */
.footer-cta--brevo .sib-form-container,
.footer-cta--brevo #sib-form-container {
  margin: 0;
  padding: 0;
  max-width: none;
  width: 100%;
  background: transparent;
}

.footer-cta__form--brevo h3 {
  margin: 0 0 17px;
  color: #113b51;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.footer-cta__form--brevo #sib-form {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  width: 100%;
}

.footer-cta__form--brevo .sib-form-block,
.footer-cta__form--brevo .sib-input,
.footer-cta__form--brevo .sib-sms-field,
.footer-cta__form--brevo .form__entry,
.footer-cta__form--brevo .form__label-row {
  margin: 0;
  padding: 0;
  width: 100%;
}

.footer-cta__form--brevo .entry__field {
  margin: 0;
  padding: 0;
  width: 100%;
  border: 0;
  background: transparent;
}

.footer-cta__form--brevo input.input,
.footer-cta__form--brevo select.input,
.footer-cta__form--brevo .entry__field input,
.footer-cta__form--brevo .entry__field select {
  width: 100%;
  height: 42px;
  min-height: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 42px;
  color: #111827;
  background: #fff;
  box-shadow: none;
  outline: none;
  font-family: inherit;
}

.footer-cta__form--brevo input.input::placeholder,
.footer-cta__form--brevo .entry__field input::placeholder {
  color: #6b7280;
  opacity: 1;
}

.footer-cta__form--brevo input.input:focus,
.footer-cta__form--brevo select.input:focus,
.footer-cta__form--brevo .entry__field input:focus,
.footer-cta__form--brevo .entry__field select:focus {
  border-color: #34B71A;
  outline: none;
  box-shadow: none;
}

.footer-cta__form--brevo .sib-sms-input-wrapper,
.footer-cta__form--brevo .sib-sms-input {
  display: block;
  width: 100%;
}

.footer-cta__form--brevo .footer-cta__hidden-country-code {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}


.footer-cta__form--brevo .sib-sms-tooltip {
  display: none;
}

.footer-cta__form--brevo .sib-form-block__button,
.footer-cta__form--brevo button[type="submit"] {
  width: 100%;
  height: 44px;
  min-height: 44px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #7bc46a, #00732f);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 44px;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 16px;
  font-family: inherit;
}

.footer-cta__form--brevo .sib-form-block__button:hover,
.footer-cta__form--brevo button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,115,47,0.25);
}

.footer-cta__form--brevo .sib-form-block__button svg,
.footer-cta__form--brevo button[type="submit"] svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
}

.footer-cta__form--brevo .entry__error {
  margin: 6px 0 0;
  padding: 7px 10px;
  border-radius: 4px;
  font-size: 12px !important;
  line-height: 1.35;
  color: #661d1d;
  background-color: #ffeded;
  border-color: #ff4949;
  text-align: left;
  font-family: inherit !important;
}

.footer-cta__form--brevo .footer-cta__brevo-message {
  max-width: none;
  width: 100%;
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  font-family: inherit;
}

.footer-cta__form--brevo .footer-cta__brevo-message--error {
  color: #661d1d;
  background-color: #ffeded;
  border-color: #ff4949;
}

.footer-cta__form--brevo .footer-cta__brevo-message--success {
  color: #085229;
  background-color: #e7faf0;
  border-color: #13ce66;
}

.footer-cta__form--brevo .sib-form-message-panel__text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
}

.footer-cta__form--brevo .sib-notification__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.footer-cta__form--brevo .input--hidden {
  display: none !important;
}

.footer-cta__form--brevo .footer-cta__trust p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

@media (max-width: 1024px) {
  .footer-cta__form--brevo {
    width: 100%;
  }
}

/* =====================================================
   Brevo Phone Country Code Color Fix - All Service Pages
   Existing classes only
===================================================== */

.footer-cta__form--brevo select.input,
.footer-cta__form--brevo .entry__field select,
.footer-cta__form--brevo select[name*="COUNTRY_CODE"],
.footer-cta__form--brevo select[name="LANDLINE_NUMBER__COUNTRY_CODE"] {
  color: #111827 !important;
  -webkit-text-fill-color: #111827 !important;
  background-color: #ffffff !important;
}

.footer-cta__form--brevo select.input option,
.footer-cta__form--brevo .entry__field select option,
.footer-cta__form--brevo select[name*="COUNTRY_CODE"] option,
.footer-cta__form--brevo select[name="LANDLINE_NUMBER__COUNTRY_CODE"] option {
  color: #111827 !important;
  background-color: #ffffff !important;
}

/* Brevo generated phone wrapper text */
.footer-cta__form--brevo .sib-sms-input,
.footer-cta__form--brevo .sib-sms-input *,
.footer-cta__form--brevo .sib-sms-input-wrapper,
.footer-cta__form--brevo .sib-sms-input-wrapper * {
  color: #111827 !important;
  -webkit-text-fill-color: #111827 !important;
}

/* Keep placeholder color normal */
.footer-cta__form--brevo input::placeholder {
  color: #8b95a5 !important;
  -webkit-text-fill-color: #8b95a5 !important;
}

/* ===============================
   FOOTER (PRODUCTION VERSION)
================================= */

.footer {
  position: relative;
  color: #fff;
  padding: 60px 0 20px;

  background: linear-gradient(
    135deg,
    #031a3a 10%,
    #062a4d 40%,
    #0a3d66 75%,
    #0f5c7a 100%
  );
}

/* TOP GRID */
.footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* HEADINGS */
.footer__col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 700;
  color:#fff;
}

/* LINKS */
.footer__col a {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer__col a:hover {
  color: #fff;
}

/* TEXT */
.footer__col p {
  font-size: 16px;
  color: #fff;
}

/* DIVIDER */
/*.footer__divider {
  margin: 20px auto;
  width: 100%;
}*/

.footer__divider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 20px 0;
  max-width: 1200px;   /* match container */
  margin: 20px auto;   /* center it */
  padding: 0 20px;     /* match container padding */
}

/* EACH SEGMENT */
.footer__divider span {
  display: block;
  border-top: 1px dashed rgba(255,255,255,0.25);
}

.footer__divider::before,
.footer__divider::after {
  content: "";
}

/* Create 4 segments */
.footer__divider div {
  border-top: 1px dashed rgba(255,255,255,0.25);
}

/* OFFICES */
.footer__offices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer__offices p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

/* BOTTOM */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SOCIAL */
.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer__social a:hover {
  background: #22c55e;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .footer__top,
  .footer__offices {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 15px;
  }
   .footer__divider {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ── Floating Buttons ── */
.float-btns{position:fixed;bottom:28px;right:24px;display:flex;flex-direction:column;gap:12px;z-index:900}
.float-btn{width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(0,0,0,.2);transition:all var(--transition)}
.float-btn:hover{transform:scale(1.1)}
.float-btn--wa{background:#25d366}
.float-btn--call{background:#045683}
.float-btn svg{width:22px;height:22px;color:white}

/* ── Blog ── */
.blog__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.blog-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:all var(--transition)}
.blog-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.blog-card__img{aspect-ratio:16/9;overflow:hidden}
.blog-card__img img,.blog-card__img-placeholder{width:100%;height:100%;object-fit:cover;transition:transform 0.4s ease}
.blog-card:hover .blog-card__img img,.blog-card:hover .blog-card__img-placeholder{transform:scale(1.04)}
.blog-card__img-placeholder{background:linear-gradient(135deg,#e8f0fe,#c9d9f9);display:flex;align-items:center;justify-content:center}
.blog-card__body{padding:24px}
.blog-card__meta{display:flex;align-items:center;gap:10px;font-size:.75rem;color:var(--text-muted);margin-bottom:10px}
.blog-card__meta span{background:var(--orange-light);color:var(--navy-light);padding:2px 8px;border-radius:20px;font-weight:600}
.blog-card h3{font-size:1rem;margin-bottom:10px;line-height:1.4}
.blog-card p{font-size:.84rem;margin-bottom:16px}
.blog-card__read{color:var(--navy-ligh);font-weight:600;font-size:.85rem;display:inline-flex;align-items:center;gap:5px;transition:gap var(--transition)}
.blog-card:hover .blog-card__read{gap:9px}

.blog-section {
  text-align: left;
}

.blog-section .section-head {
  max-width: 700px;
  margin: 0 0 30px 0; /* remove center alignment */
}

.blog-section .section-title,
.blog-section .section-subtitle {
  text-align: left;
}

/* ── Scroll to Top ── */
.scroll-top{position:fixed;bottom:90px;right:24px;width:42px;height:42px;background:var(--navy);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:900;opacity:0;visibility:hidden;transition:all var(--transition);border:2px solid rgba(255,255,255,.15)}
.scroll-top.visible{opacity:1;visibility:visible}
.scroll-top:hover{background:var(--orange);border-color:var(--orange)}
.scroll-top svg{width:18px;height:18px;color:white}

/* ── Responsive ── */
@media(max-width:1024px){
  .hero__inner{grid-template-columns:1fr;text-align:center}
  .hero__image{display:none}
  .hero__actions{justify-content:center}
  .hero__trust{justify-content:center}
  .services__grid{grid-template-columns:repeat(2,1fr)}
  .process__grid{grid-template-columns:repeat(2,1fr)}
  .process__grid::after{display:none}
  .industries__grid{grid-template-columns:repeat(3,1fr)}
  .footer__top{grid-template-columns:1fr 1fr}
  .testimonial-slide{grid-template-columns:repeat(2,1fr)}
  .case-studies__grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .section{padding:30px 0}
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .navbar__nav,.navbar__actions .btn{display:none}
  .hamburger{display:flex}
  .services__grid{grid-template-columns:1fr}
  .funnel__grid{grid-template-columns:repeat(2,1fr)}
  .industries__grid{grid-template-columns:repeat(2,1fr)}
  .benefits__grid{grid-template-columns:1fr}
  .aeo-geo__grid{grid-template-columns:1fr}
  .stats__grid{grid-template-columns:repeat(2,1fr)}
  .blog__grid{grid-template-columns:1fr}
  .contact__inner{grid-template-columns:1fr}
  .footer__top{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;text-align:center}
  .topbar__left{display:none}
  .why-uae__content{grid-template-columns:1fr}
  .testimonial-slide{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .timeline__track::before{left:20px}
  .timeline-item{grid-template-columns:0 1fr}
  .timeline-item__year{display:none}
  .timeline-item__content{padding-left:48px}
  .timeline-item__dot{left:20px}
  .process__grid{grid-template-columns:1fr;gap:28px}
}
@media(max-width:480px){
  .funnel__grid,.industries__grid{grid-template-columns:1fr}
  .stats__grid{grid-template-columns:1fr 1fr}
  h1{font-size:36px}
  h2{font-size:34px}
}

/* ── Print ── */
@media print{
  .navbar,.topbar,.float-btns,.scroll-top,.hamburger{display:none !important}
  .hero{min-height:auto}
}


/* FIX 1 – Marquee constrained width */
/* Marquee: now inside container so width = container width (max 1200px) */
.clients .container { overflow: hidden }
.marquee-outer {
  overflow: hidden;
  border-radius: 8px;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.marquee-item img,
.marquee-item svg { display:block; height:70px; width:auto; max-width:130px; border-radius:8px; filter:grayscale(0.2); transition:filter 0.2s }
.marquee-item:hover img,
.marquee-item:hover svg { filter:none }

/* FIX 2 – Service card as full link + arrow icon */
a.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.service-card__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--orange-light);
  border-radius: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.service-card__arrow svg {
  width: 16px;
  height: 16px;
  color: var(--Lime-Green);
  transition: transform 0.25s ease;
}
a.service-card:hover .service-card__arrow {
  background: var(--Lime-Green);
}
a.service-card:hover .service-card__arrow svg {
  color: #fff;
  transform: translate(2px, -2px);
}
a.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
a.service-card:hover::before { transform: scaleX(1); }

/* FIX 3 – Transparent Reporting section */
.reporting-section { background: #fff }
.reporting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.reporting-lead {
  font-size: 1rem;
  margin-bottom: 32px;
  color: var(--text-muted);
  line-height: 1.7;
}
.reporting-items { display: grid; gap: 20px }
.reporting-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.22s ease;
}
.reporting-item:hover {
  border-color: var(--Lime-Green);
  box-shadow: 0 4px 20px rgba(52,183,26,.08);
  transform: translateX(4px);
}
.reporting-item__icon {
  width: 42px; height: 42px; min-width: 42px;
  background: #fff3e8;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.reporting-item__icon svg { width: 20px; height: 20px; color: var(--Lime-Green) }
.reporting-item h4 { font-size: .95rem; margin-bottom: 3px; color: var(--navy) }
.reporting-item p { font-size: .83rem }

/* Dashboard visual */
.reporting-visual { display: flex; justify-content: center }
.reporting-visual img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.reporting-dashboard {
  background: #0b1d3a;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(11,29,58,.3);
}
.dash-header {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 20px;
  font-size: .75rem; color: rgba(255,255,255,.5);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50% }
.dash-header span { margin-left: 4px }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px }
.dash-stat {
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.dash-stat strong { display: block; color: var(--Lime-Green); font-family: var(--font-head); font-size: 1.1rem; font-weight: 800 }
.dash-stat span { color: rgba(255,255,255,.5); font-size: .7rem }
.dash-chart { background: rgba(255,255,255,.04); border-radius: 8px; padding: 10px; margin-bottom: 16px }
.dash-chart svg { width: 100%; display: block }
.dash-rows { display: grid; gap: 10px }
.dash-row { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: rgba(255,255,255,.6) }
.dash-row span:first-child { width: 60px; min-width: 60px }
.dash-bar { flex: 1; height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden }
.dash-bar div { height: 100%; border-radius: 3px }
.dash-row span:last-child { width: 30px; text-align: right }

/* FIX 4 – Affordable Pricing section */
.pricing-section { }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pricing-img-wrap svg { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg) }
.pricing-lead { font-size: 1rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.75 }
.pricing-features { display: grid; gap: 12px }
.pricing-feature {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}
.pricing-feature:hover { background: #f0fdf0 }
.pricing-feature svg { width: 18px; height: 18px; min-width: 18px; color: var(--Lime-Green); margin-top: 2px }
.pricing-feature span { font-size: .9rem; color: var(--text) }

/* ---- AI Marketing ERA Section -- */

.h2ai2-section {
  background:#fff;
  padding: 40px 0;
  color: #113b51;
  overflow: hidden;
}

.h2ai2-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.h2ai2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #113b51;
  font-weight: 500;
  text-transform: uppercase;
}

.h2ai2-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: #18d0b2;
}

.h2ai2-title {
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 0.98;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  color: #113b51;
}

.h2ai2-title span {
  background:linear-gradient(160deg,#7bc46a,#00732f);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  font-weight: 500;
}

.h2ai2-desc {
  max-width: 470px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: 28px;
}

.h2ai2-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 680px;
}

.h2ai2-feature {
  display: flex;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.h2ai2-feature:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(24, 208, 178, 0.25);
}

.h2ai2-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  color: #18d0b2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.h2ai2-icon svg {
  width: 24px;
  height: 24px;
}

.h2ai2-feature-content h4 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.35;
  color: var(--navy);
  font-weight: 600;
}

.h2ai2-feature-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--navy);
}

.h2ai2-right {
  display: flex;
  justify-content: center;
}

.h2ai2-stat-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  padding: 32px 30px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(10, 12, 13, 0.86);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.h2ai2-stat-topline {
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #18d0b2 0%, #34B71A 52%, #ff7a45 100%);
}

.h2ai2-stat {
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 0.95;
  font-weight: 600;
  background: linear-gradient(160deg,#7bc46a,#00732f);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  letter-spacing: -0.04em;
  margin: 8px 0 10px;
}

.h2ai2-stat-desc {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.h2ai2-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.h2ai2-list li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.h2ai2-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #18d0b2;
  box-shadow: 0 0 0 3px rgba(24, 208, 178, 0.12);
}

.h2ai2-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .h2ai2-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .h2ai2-right {
    justify-content: flex-start;
  }

  .h2ai2-stat-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .h2ai2-section {
    padding: 64px 0;
  }

  .h2ai2-feature {
    padding: 16px 14px;
  }

  .h2ai2-stat-card {
    padding: 26px 20px 22px;
  }

  .h2ai2-title {
    font-size: clamp(34px, 3.6vw, 36px);
  }
}

/* FIX 5 – Real Results section */
.results-section { background: var(--navy) }
.results-section .section-label { background: rgba(52,183,26,.15); color: #fff }
.results-section .section-title { color: #fff }
.results-section .section-subtitle { color: rgba(255,255,255,.7) }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default;
}
.result-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.3);
  border-color: rgba(52,183,26,.4);
}
.result-card__icon {
  width: 60px; height: 60px;
  background: rgba(52,183,26,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s;
}
.result-card:hover .result-card__icon { background: rgba(52,183,26,.3) }
.result-card__icon svg { width: 26px; height: 26px; color: #34B71A }
.result-card__num {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #34B71A;
  margin-bottom: 8px;
}
.result-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px }
.result-card p { color: rgba(255,255,255,.65); font-size: .88rem }
.result-card__hover-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #34B71A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.result-card:hover .result-card__hover-bar { transform: scaleX(1) }

/* FIX 6 – Local Expertise */
.local-section {}
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.local-list {
  display: grid; gap: 12px; margin: 24px 0;
}
.local-list li {
  display: flex; gap: 10px; align-items: center;
  font-size: .95rem; color: var(--text);
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.local-list li:hover {
  border-color: var(--Lime-Green);
  transform: translateX(4px);
}
.local-list svg { width: 18px; height: 18px; min-width: 18px; color: var(--Lime-Green) }
.local-footer { font-size: .9rem; color: var(--text-muted); margin-top: 8px }
.local-map-wrap svg { width: 100%; border-radius: 16px; box-shadow: var(--shadow) }
.local-map-wrap {
  width: 100%;
}
.local-custom-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

@media (max-width: 767px) {
  .local-custom-img {
    height: auto;
  }
}

/* FIX 7 – Let's Build Future */
/* SECTION */
/* SECTION */
/* SECTION */
.future-section {
  background: linear-gradient(135deg, #0b1d3a 0%, #163060 60%, #1a3d7a 100%);
  padding: 50px 0;
}

/* GRID LAYOUT */
.future-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* 🔥 left small, right larger */
  gap: 50px;
  align-items: start;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
}

/* LEFT COLUMN */
.future-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.future-icon svg {
  width: 60px;
  height: 60px;
}

.future-left h2 {
  color: #fff;
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.3;
}

/* RIGHT COLUMN */
.future-right {
  display: flex;
  flex-direction: column;
}

.future-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* BUTTONS (FIXED ISSUE) */
.future-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.future-actions .btn {
  width: auto; /* 🔥 prevents full width */
  padding: 10px 18px;
  border-radius: 25px;
  white-space: nowrap;
}

/* HOVER */
.future-grid:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .future-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  .future-actions {
    justify-content: center;
  }
}

/* FIX 8 – Boost / Lead Form section */
.boost-section { background: var(--off-white) }
.boost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.boost-content .section-title { margin-bottom: 12px }
.boost-content > p { font-size: .95rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.75 }
.boost-trust { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px }
.boost-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--text-muted);
}
.boost-trust-item svg { width: 16px; height: 16px; color: var(--Lime-Green) }
.boost-stats { display: flex; gap: 24px }
.boost-stat { text-align: center }
.boost-stat strong { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--navy) }
.boost-stat span { font-size: .75rem; color: var(--text-muted) }

/* Compact lead form */
.boost-form-wrap { }
.boost-form {
  background: var(--navy);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(11,29,58,.18);
}
.boost-form h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  text-align: center;
}
.boost-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; margin-top:10px; }
.boost-field { margin-bottom: 10px }
.boost-field input,
.boost-field textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-family: var(--font-body);
  font-size: .87rem;
  outline: none;
  transition: border-color 0.22s;
}
.boost-field input::placeholder,
.boost-field textarea::placeholder { color: rgba(255,255,255,.4) }
.boost-field input:focus,
.boost-field textarea:focus { border-color: var(--Lime-Green) }
.boost-field textarea { resize: none }
.boost-field--phone .iti { width: 100% }
.boost-field--phone .iti input { width: 100% }
.boost-submit {
  width: 100%;
  background: var(--Lime-Green);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px;
}
.boost-submit svg { width: 16px; height: 16px }
.boost-submit:hover { background: #28a016; transform: translateY(-1px) }

/* intl-tel-input dark theme overrides */
.boost-field .iti__flag-container { height: 100% }
.boost-field .iti__selected-flag { background: rgba(255,255,255,.08) }
.boost-field .iti__selected-flag:hover { background: rgba(255,255,255,.15) }
.boost-field .iti__country-list {
  background: #0b1d3a;
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.boost-field .iti__country:hover,
.boost-field .iti__country.iti__highlight { background: rgba(255,255,255,.08) }
.boost-field .iti__dial-code { color: rgba(255,255,255,.6) }

/* FIX 9 – Scroll-to-top: fix overlap with WhatsApp/call buttons */
/* float-btns: bottom 28px, 2 buttons × 50px + 12px gap = 140px height */
/* scroll-top must be above that: 28+140+16 = 184px */
.scroll-top {
  bottom: 165px !important;
  right: 24px;
}

/* ── Responsive: new sections ── */
@media(max-width:1024px) {
  .reporting-grid,
  .pricing-grid,
  .local-grid,
  .boost-grid { grid-template-columns: 1fr }
  .reporting-visual { order: -1 }
  .pricing-visual { order: -1 }
  .timeline-h { display: none !important }
  .timeline-v { display: block !important }
}
@media(max-width:768px) {
  .results-grid { grid-template-columns: 1fr }
  .boost-form-row { grid-template-columns: 1fr }
  .boost-stats { gap: 16px }
  .future-actions { flex-direction: column; align-items: center }
}


/* FIX: hamburger visible on dark navbar */
.hamburger span {
  background: #ffffff !important;
}

body.menu-open .topbar {
  display: none;
}


/* ============================
   Contact Us Page CSS 
=============================*/

.tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--Lime-Green);
    border: 1px solid var(--Lime-Green);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
  }


  /* ============================
     HERO / PAGE HEADER
  ============================= */
  .contact-hero {
    position: relative;
    padding: 30px 0 80px;
    background: var(--navy);
    overflow: hidden;
    text-align: center;
  }
  .contact-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 30%, rgba(201,168,76,0.07) 0%, transparent 60%);
  }
  .contact-hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at center, navy 20%, transparent 80%);
  }
  .contact-hero-inner { position: relative; z-index: 2; }
  .contact-hero h1 {
    font-size: clamp(36px, 3.8vw, 38px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }
  .contact-hero h1 em { font-style: normal; color: var(--Lime-Green); }
  .contact-hero-sub {
    font-size: 17px;
    color: var(--text-body);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }
  .hero-quick-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mid-surface);
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    transition: all var(--transition);
  }
  .hero-quick-link:hover { border-color: var(--Lime-Green); color: var(--Lime-Green); }
  .hero-quick-link span { font-size: 18px; }

  /* ============================
     MAIN CONTACT SECTION
  ============================= */
  .contact-main {
    background: var(--dark-surface);
    padding: 80px 0;
  }
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: start;
  }
  /* Info Column */
  .contact-info h2 {
    font-size: clamp(34px, 3.6vw, 36px);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .contact-info-sub {
    font-size: 15px;
    color: var(--navy-light);
    line-height: 1.7;
    margin-bottom: 40px;
  }
 /* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}

.contact-method {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 10px 60px 10px;
  border: 0;
  border-radius: 18px;
  text-decoration: none;
  background: linear-gradient(135deg, #7bc46a 0%, #00732f 100%);
  box-shadow: 0 16px 34px rgba(0, 115, 47, 0.18);
  transition:
    transform var(--transition, 0.25s ease),
    box-shadow var(--transition, 0.25s ease),
    background var(--transition, 0.25s ease);
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(0, 115, 47, 0.34);
  background: linear-gradient(135deg, #8fd97a 0%, #008a38 100%);
}

.contact-method-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contact-method-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 20px;
  line-height: 1;
}

.contact-method-arrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 20px;
  line-height: 1;
  transition:
    color var(--transition, 0.25s ease),
    transform var(--transition, 0.25s ease);
}

.contact-method:hover .contact-method-arrow {
  color: #ffffff;
  transform: translateX(5px);
}

.contact-method-body {
  display: grid;
  gap: 8px;
}

.contact-method-label {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.contact-method-value {
  color: #ffffff;
  font-size: clamp(16px, 1.4vw, 14px);
  line-height: 1.33;
  font-weight: 700;
  word-break: break-word;
}

/* Make email card text fit better */
.contact-method[href^="mailto"] .contact-method-value {
  font-size: clamp(16px, 1.4vw, 14px);
}

/* Tablet */
@media (max-width: 1024px) {
  .contact-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-method {
    min-height: 210px;
  }

  .contact-method[href^="mailto"] {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .contact-method,
  .contact-method[href^="mailto"] {
    grid-column: auto;
  }

  .contact-method {
    min-height: auto;
    padding: 24px 22px;
    gap: 24px;
  }

  .contact-method-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 22px;
  }

  .contact-method-label {
    font-size: 13px;
  }

  .contact-method-value,
  .contact-method[href^="mailto"] .contact-method-value {
    font-size: 16px;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .contact-method {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .contact-method-value,
  .contact-method[href^="mailto"] .contact-method-value {
    font-size: 16px;
  }
}

  /* Query Types */
  .query-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .query-card {
    background: var(--mid-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: border-color var(--transition);
  }
  .query-card:hover { border-color: rgba(201,168,76,0.4); }
  .query-icon { font-size: 24px; margin-bottom: 12px; }
  .query-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
  .query-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

  /* Contact Form */
  .contact-form-card {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 100px;
  }
  .contact-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--Lime-Green), transparent);
  }
  .contact-form-card h3 { color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 6px; }
  .contact-form-card > p { font-size: 13px; color: var(--white); margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-group { margin-bottom: 14px; }
  .form-group label { display: block; font-size: 11px; color: var(--white); margin-bottom: 6px; letter-spacing: 0.06em; text-transform: uppercase; }
  .form-control {
    width: 100%;
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    color: var(--white);
    padding: 12px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    transition: border-color var(--transition);
    outline: none;
  }
  .form-control:focus { border-color: var(--Lime-Green); }
  .form-control::placeholder { color: #444; }
  textarea.form-control { resize: vertical; min-height: 100px; }
  .form-submit {
    width: 100%;
    background: var(--Lime-Green);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 15px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background var(--transition);
    margin-top: 6px;
  }
  .form-submit:hover { background: var(--Lime-Green-light); }
  .form-note { text-align: center; margin-top: 12px; font-size: 12px; color: var(--text-muted); }

  /* ============================
     OFFICES
  ============================= */
  .offices-section { background: white }
  .offices-section h2 {color: var(--navy);}
  .offices-section p { color: var(--navy); margin-top: 20px;}
  .offices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .office-card {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }
  .office-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; width: 2px;
    background: var(--Lime-Green);
    opacity: 0;
    transition: opacity var(--transition);
  }
  .office-card:hover { border-color: rgba(201,168,76,0.3); }
  .office-card:hover::before { opacity: 1; }
  .office-flag { font-size: 28px; margin-bottom: 16px; color: var(--Lime-Green); }
  .office-card h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--Lime-Green);
    margin-bottom: 12px;
  }
  .office-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }
  .office-badge {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    color: var(--Lime-Green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
  }

  /* ============================
     CLIENTS TICKER
  ============================= */
  .clients-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--dark-surface);
  }
  .clients-label {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
  .clients-track-wrapper { overflow: hidden; }
  .clients-track {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .client-item {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .client-dot { color: var(--Lime-Green); font-size: 8px; vertical-align: middle; }

  /* ============================
     WHY CONTACT
  ============================= */
  .why-contact { background: var(--dark-surface); }
  .why-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .wc-card {
    background: var(--mid-surface);
    padding: 40px;
    transition: background var(--transition);
  }
  .wc-card:hover { background: #1F1F1F; }
  .wc-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--Lime-Green);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.4;
  }
  .wc-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
  .wc-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

  /* ============================
     SOCIAL SECTION
  ============================= */
  .social-section {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid var(--border);
  }
  .social-label { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px; }
  .social-links { display: flex; gap: 16px; justify-content: center; }
  .social-link-lg {
    display: flex; align-items: center; gap: 10px;
    background: var(--mid-surface);
    border: 1px solid var(--border);
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    transition: all var(--transition);
  }
  .social-link-lg:hover { border-color: var(--Lime-Green); color: var(--Lime-Green); }

  /* ============================
     CTA
  ============================= */
  .cta-section {
    background: linear-gradient(135deg, #1A1508 0%, #111111 50%, #0A0A0A 100%);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 80px 0;
  }
  .cta-section h2 { font-size: clamp(34px, 3.6vw, 36px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 16px; }
  .cta-section p { font-size: 16px; color: var(--text-body); margin-bottom: 36px; }
 
  
   /* ============================
     ANIMATIONS
  ============================= */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  .fade-up { animation: fadeUp 0.6s ease forwards; }

  /* ============================
     RESPONSIVE
  ============================= */
  @media (max-width: 1024px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form-card { position: static; }
    .offices-grid { grid-template-columns: 1fr 1fr; }
    .why-contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; }
    .offices-grid { grid-template-columns: 1fr; }
    .query-types { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-quick-links { flex-direction: column; align-items: center; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .social-links { flex-wrap: wrap; justify-content: center; }
  }

  /* Success state */
  .success-msg {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--Lime-Green);
    border-radius: var(--radius);
    color: var(--Lime-Green);
    font-weight: 600;
    margin-top: 12px;
  }
  
  
  
  /* ====================================
   Seo Services Company Dubai Page CSS 
=====================================================*/

/* ================================
            Hero Section
================================ */

.seo-services-agency-hero {
  position: relative;
  min-height: 604px;
  padding: 70px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #061d3d;
  color: #ffffff;
}

.seo-services-agency-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.seo-services-agency-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 85% 28%, rgba(41, 221, 140, 0.22), transparent 58%),
    linear-gradient(
      90deg,
      rgba(2, 13, 38, 0.94) 0%,
      rgba(3, 31, 71, 0.72) 38%,
      rgba(3, 21, 50, 0.5) 80%
    );
  pointer-events: none;
}

.seo-services-agency-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 543px);
  gap: clamp(24px, 4vw, 70px);
}

.seo-services-agency-hero__content {
  max-width: 990px;
}

.seo-services-agency-hero__content h1 {
  margin: 0 0 12px;
  color: #ffffff;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -1.8px;
  font-size: clamp(36px, 3.8vw, 38px);
}

.seo-services-agency-hero__content h1 span {
  color: #2ac10f;
}

.seo-services-agency-hero__content p {
  max-width: 560px;
  margin: 0 0 29px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15.5px;
  line-height: 1.75;
}

.seo-services-agency-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.seo-services-agency-hero__primary-btn,
.seo-services-agency-hero__secondary-btn {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 48px;
  min-height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  justify-content: center;
  text-align: center;
  border-radius: 9px;
  line-height: 1.2;
  white-space: normal;
}

.seo-services-agency-hero__primary-btn {
  min-width: 220px;
}

.seo-services-agency-hero__secondary-btn {
  min-width: 220px;
  background: #ffffff;
  color: #0a3048;
  border-color: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.seo-services-agency-hero__form-card {
  position: relative;
  min-height: 464px;
  overflow: hidden;
  padding: 36px 40px 45px;
  border-radius: 9px;
  background: rgba(3, 40, 76, 0.76);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  width: 100%;
  max-width: 543px;
  justify-self: end;
}

.seo-services-agency-hero__form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 32%, rgba(255, 255, 255, 0.08) 32.3%, transparent 32.7%),
    linear-gradient(90deg, transparent 0 72%, rgba(255, 255, 255, 0.04) 72% 82%, transparent 82%);
  pointer-events: none;
}

.seo-services-agency-hero__chart-bars {
  position: absolute;
  right: 28px;
  bottom: 86px;
  display: flex;
  align-items: flex-end;
  gap: 11px;
  opacity: 0.75;
  pointer-events: none;
}

.seo-services-agency-hero__chart-bars span {
  width: 20px;
  background: linear-gradient(180deg, rgba(36, 198, 255, 0.92), rgba(16, 92, 177, 0.36));
  border: 1px solid rgba(54, 221, 255, 0.55);
}

.seo-services-agency-hero__chart-bars span:nth-child(1) {
  height: 94px;
}

.seo-services-agency-hero__chart-bars span:nth-child(2) {
  height: 124px;
}

.seo-services-agency-hero__chart-bars span:nth-child(3) {
  height: 160px;
}

.seo-services-agency-hero__chart-bars span:nth-child(4) {
  height: 198px;
}

.seo-services-agency-hero__form-card h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 21px;
  color: #ffffff;
  text-align: center;
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.2;
  font-weight: 600;
}

.seo-services-agency-hero__form {
  position: relative;
  z-index: 2;
}

.seo-services-agency-hero__form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 20px;
}

.seo-services-agency-hero__form input,
.seo-services-agency-hero__form textarea {
  width: 100%;
  border: 2px solid rgba(211, 229, 247, 0.5);
  border-radius: 5px;
  outline: none;
  background: rgba(5, 30, 64, 0.22);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 18px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.seo-services-agency-hero__form input {
  height: 50px;
  padding: 0 20px;
}

.seo-services-agency-hero__form textarea {
  min-height: 120px;
  padding: 14px 20px;
  resize: vertical;
}

.seo-services-agency-hero__form input::placeholder,
.seo-services-agency-hero__form textarea::placeholder {
  color: rgba(226, 237, 248, 0.72);
}

.seo-services-agency-hero__form input:focus,
.seo-services-agency-hero__form textarea:focus {
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 4px rgba(0, 181, 255, 0.12);
}

.seo-services-agency-hero__submit {
  min-width: 187px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  padding: 0 25px;
  border-radius: 5px;
  background: #2ec118;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease;
}

.seo-services-agency-hero__submit:hover {
  transform: translateY(-2px);
  background: #25aa14;
}

@media (max-width: 1180px) {
  .seo-services-agency-hero {
    padding: 70px 0;
  }

  .seo-services-agency-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 500px);
    gap: 28px;
  }
  
   .seo-services-agency-hero__content h1 {
    font-size: clamp(36px, 3.8vw, 38px);
  }

  .seo-services-agency-hero__form-card {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 28px 38px;
  }
  
  .seo-services-agency-hero__form-row {
    gap: 16px;
  }
}

@media (max-width: 991px) {
  .seo-services-agency-hero {
    min-height: auto;
    padding: 72px 0;
  }

  .seo-services-agency-hero__bg {
    object-position: 58% center;
  }

  .seo-services-agency-hero__overlay {
    background:
      radial-gradient(circle at 85% 28%, rgba(41, 221, 140, 0.18), transparent 58%),
      linear-gradient(
        90deg,
        rgba(2, 13, 38, 0.94) 0%,
        rgba(3, 31, 71, 0.78) 52%,
        rgba(3, 21, 50, 0.58) 100%
      );
  }

  .seo-services-agency-hero__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .seo-services-agency-hero__content {
    max-width: 720px;
  }

  .seo-services-agency-hero__form-card {
    max-width: 640px;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .seo-services-agency-hero {
    min-height: auto;
    padding: 54px 0;
  }
  
  .seo-services-agency-hero__bg {
    object-position: 64% center;
  }
  
   .seo-services-agency-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(2, 13, 38, 0.96) 0%,
        rgba(3, 31, 71, 0.86) 62%,
        rgba(3, 21, 50, 0.68) 100%
      );
  }

  .seo-services-agency-hero__content h1 {
    font-size: clamp(36px, 3.8vw, 38px);
    line-height: 1.12;
    letter-spacing: -1.2px;
  }
  
  .seo-services-agency-hero__content h1 br {
    display: none;
  }

  .seo-services-agency-hero__content p {
    font-size: 15px;
    max-width: 100%;
    line-height: 1.65;
  }

  .seo-services-agency-hero__actions {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.seo-services-agency-hero__primary-btn,
.seo-services-agency-hero__secondary-btn {
  width: 220px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  height: 48px;
  min-height: 60px;
}

  .seo-services-agency-hero__form-card {
    max-width: 100%;
    min-height: auto;
    padding: 28px 18px 32px;
  }

  .seo-services-agency-hero__form-row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }

 .seo-services-agency-hero__form input,
  .seo-services-agency-hero__form textarea {
    font-size: 16px;
  }
  
   .seo-services-agency-hero__form textarea {
    min-height: 112px;
  }
  
  .seo-services-agency-hero__chart-bars {
    display: none;
  }
}

@media (max-width: 420px) {
  .seo-services-agency-hero {
    padding: 44px 0;
  }

  .seo-services-agency-hero__content h1 {
    font-size: 30px;
  }

  .seo-services-agency-hero__form-card h2 {
    font-size: 18px;
  }

 .seo-services-agency-hero__submit {
  width: 220px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  height: 48px;
  min-height: 48px;
}
}


/* ================================
   SEO Services Agency Stats Section
================================ */

.seo-services-agency-stats {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 52px;
  border-top: 1px solid #e4e9ef;
}

.seo-services-agency-stats__title {
  margin: 0 0 38px;
  text-align: center;
  color: #10294f;
  font-size: clamp(22px, 2.2vw, 27px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.seo-services-agency-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}

.seo-services-agency-stats__item {
  text-align: center;
}

.seo-services-agency-stats__icon {
  width: 37px;
  height: 37px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf2ff;
  border: 1px solid #a9c7ff;
}

.seo-services-agency-stats__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.seo-services-agency-stats__item:nth-child(2) .seo-services-agency-stats__icon,
.seo-services-agency-stats__item:nth-child(4) .seo-services-agency-stats__icon {
  background: #e5fae9;
  border-color: #91e7aa;
}

.seo-services-agency-stats__item strong {
  display: block;
  margin-bottom: 5px;
  color: #0064ff;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
}

.seo-services-agency-stats__item:nth-child(2) strong,
.seo-services-agency-stats__item:nth-child(4) strong {
  color: #04b64c;
}

.seo-services-agency-stats__item p {
  margin: 0;
  color: #53677e;
  font-size: 12.5px;
  line-height: 1.42;
}

@media (max-width: 900px) {
  .seo-services-agency-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }
}

@media (max-width: 520px) {
  .seo-services-agency-stats {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .seo-services-agency-stats__title {
    margin-bottom: 30px;
  }

  .seo-services-agency-stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   SEO Services Dubai Overview
================================ */

.seo-services-dubai-overview {
  padding: 0;
  background: #ffffff;
}

.seo-services-dubai-overview__top {
  background: #eaf0f7;
  padding-top: 88px;
  padding-bottom: 92px;
}

.seo-services-dubai-overview__intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
  align-items: center;
}

.seo-services-dubai-overview__title-wrap {
  padding-left: 16px;
  border-left: 3px solid #20a24a;
}

.seo-services-dubai-overview__title-wrap h2 {
  margin: 0;
  color: #113b51;
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: -1.2px;
}

.seo-services-dubai-overview__title-wrap h2 span {
  color: #5cb85c;
  font-weight: 600;
}

.seo-services-dubai-overview__content {
  max-width: 565px;
}

.seo-services-dubai-overview__content p {
  margin: 0 0 30px;
  color: #53677e;
  font-size: 16px;
  line-height: 1.85;
}

.seo-services-dubai-overview__btn {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 48px;
  min-height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  justify-content: center;
  text-align: center;
  border-radius: 9px;
  line-height: 1.2;
  white-space: normal;
}

.seo-services-dubai-overview__bottom {
  background: #ffffff;
  padding-top: 40px;
  padding-bottom: 86px;
}

.seo-services-dubai-overview__bottom h3 {
  margin: 0 0 32px;
  text-align: center;
  color: #10294f;
  font-size: clamp(23px, 2.2vw, 27px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.seo-services-dubai-overview__features {
  max-width: 1055px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 13px;
}

.seo-services-dubai-overview__feature {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 8px 15px;
  border-radius: 8px;
  background: #ffffff;
  color: #1d2b3a;
  font-size: 15px;
  line-height: 1.35;
  box-shadow:
    0 4px 0 rgba(17, 59, 81, 0.18),
    0 8px 18px rgba(17, 59, 81, 0.1);
}

.seo-services-dubai-overview__feature span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2fa84f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.seo-services-dubai-overview__feature--center {
  grid-column: 1 / -1;
  max-width: 594px;
  justify-self: center;
  width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
  .seo-services-dubai-overview__top {
    padding-top: 70px;
    padding-bottom: 72px;
  }

  .seo-services-dubai-overview__intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .seo-services-dubai-overview__content {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .seo-services-dubai-overview__top {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .seo-services-dubai-overview__title-wrap h2 {
    font-size: 31px;
  }

  .seo-services-dubai-overview__title-wrap h2 br {
    display: none;
  }

  .seo-services-dubai-overview__content p {
    font-size: 14.5px;
    line-height: 1.75;
  }

 .seo-services-dubai-overview__btn {
  width: 220px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  height: 48px;
  min-height: 48px;
  margin-left: auto;
  margin-right: auto;
}

  .seo-services-dubai-overview__bottom {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .seo-services-dubai-overview__features {
    grid-template-columns: 1fr;
  }

  .seo-services-dubai-overview__feature--center {
    max-width: none;
  }

  .seo-services-dubai-overview__feature {
    align-items: flex-start;
    font-size: 14px;
    padding: 12px 14px;
  }

  .seo-services-dubai-overview__feature span {
    margin-top: 1px;
  }
}

/* ================================
   SEO Services Agency Process
================================ */

.seo-services-agency-process {
  --seo-process-total: 7;
  --seo-process-visible: 3;
  background: #eaf0f7;
  padding: 0;
  min-height: 100vh;
}

.seo-services-agency-process__sticky {
  position: relative;
  min-height: 100vh;
  padding-top: 76px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.seo-services-agency-process__header {
  max-width: 1080px;
  margin: 0 auto 38px;
  text-align: center;
}

.seo-services-agency-process__header h2 {
  margin: 0 0 16px;
  color: #113b51;
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -1px;
}

.seo-services-agency-process__header p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.55;
}

.seo-services-agency-process__steps {
  max-width: 970px;
  width: 100%;
  margin: 0 auto;
  cursor: ns-resize;
}

.seo-services-agency-process__step {
  padding: 24px 0 27px;
  border-bottom: 1px solid rgba(17, 59, 81, 0.75);
}

.seo-services-agency-process__step:last-child {
  border-bottom: 0;
}

.seo-services-agency-process__step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.seo-services-agency-process__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 53px;
  height: 30px;
  padding: 0 10px;
  border-radius: 5px;
  background: #2dbc17;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
}

.seo-services-agency-process__number {
  color: rgba(47, 193, 62, 0.22);
  font-size: 56px;
  line-height: 0.8;
  font-weight: 800;
  letter-spacing: -2px;
}

.seo-services-agency-process__step h3 {
  margin: 0;
  color: #123c52;
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.25;
  font-weight: 600;
}

.seo-services-agency-process__step p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.62;
}

.seo-services-agency-process__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  max-width: 390px;
  margin: 78px auto 0;
  position: relative;
}

.seo-services-agency-process__dots::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 1px;
  background: rgba(17, 59, 81, 0.25);
  transform: translateY(-50%);
}

.seo-services-agency-process__dot {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d3d8dc;
  transition: background 0.2s ease, transform 0.2s ease;
}

.seo-services-agency-process__dot.is-active {
  background: #27b91b;
  transform: scale(1.05);
}

/* JS enhanced mode: show only the current visible group */
.seo-services-agency-process.is-enhanced .seo-services-agency-process__step {
  display: none;
}

.seo-services-agency-process.is-enhanced .seo-services-agency-process__step.is-visible {
  display: block;
}

/* Tablet */
@media (max-width: 900px) {
  .seo-services-agency-process {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .seo-services-agency-process__sticky {
    position: relative;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .seo-services-agency-process.is-enhanced .seo-services-agency-process__step {
    display: block;
  }

  .seo-services-agency-process__dots {
    display: none;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .seo-services-agency-process__header h2 {
    font-size: 31px;
  }

  .seo-services-agency-process__header p {
    font-size: 14.5px;
  }

  .seo-services-agency-process__step-head {
    flex-wrap: wrap;
    gap: 8px;
  }

  .seo-services-agency-process__number {
    font-size: 46px;
  }

  .seo-services-agency-process__step h3 {
    width: 100%;
    font-size: 21px;
  }
}

/* ================================
   SEO Services Agency Difference
================================ */

.seo-services-agency-difference {
  background: linear-gradient(180deg, #178f3f 0%, #168d3e 100%);
  padding-top: 50px;
  color: #ffffff;
  position: relative;
  z-index: 3;
  overflow: visible;
}

.seo-services-agency-difference .container {
  position: relative;
  z-index: 4;
}


.seo-services-agency-difference__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 36px;
}

.seo-services-agency-difference__header h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.17;
  font-weight: 600;
  letter-spacing: -1px;
}

.seo-services-agency-difference__header p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.65;
}

.seo-services-agency-difference__header-btn {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 48px;
  min-height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  justify-content: center;
  text-align: center;
  border-radius: 7px;
  background: #ffffff;
  color: #087d33;
  font-weight: 700;
  line-height: 1.2;
  white-space: normal;
}

.seo-services-agency-difference__header-btn:hover {
  background: #ffffff;
  color: #087d33;
  transform: translateY(-2px);
}

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

.seo-services-agency-difference__card {
  position: relative;
  min-height: 242px;
  padding: 25px 20px 28px;
  border: 3px solid #37bd20;
  border-radius: 16px;
  background: #ffffff;
  color: #10384f;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 24px rgba(16, 56, 79, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.seo-services-agency-difference__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top right, rgba(52, 183, 26, 0.16), transparent 38%),
    linear-gradient(135deg, #ffffff 0%, #f2fff4 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.seo-services-agency-difference__card:hover {
  transform: translateY(-8px);
  border-color: #ffffff;
  box-shadow: 0 22px 44px rgba(6, 88, 37, 0.22);
}

.seo-services-agency-difference__card:hover::before {
  opacity: 1;
}

.seo-services-agency-difference__count {
  position: absolute;
  top: 12px;
  right: 12px;
  min-width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #29b51c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.seo-services-agency-difference__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ebf9ed;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.seo-services-agency-difference__icon img {
  width: 29px;
  height: 29px;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.seo-services-agency-difference__card:hover .seo-services-agency-difference__icon {
  transform: scale(1.08) rotate(4deg);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(52, 183, 26, 0.2);
}

.seo-services-agency-difference__card:hover .seo-services-agency-difference__icon img {
  transform: scale(1.08);
}

.seo-services-agency-difference__card h3 {
  margin: 0 0 15px;
  color: #10384f;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 600;
}

.seo-services-agency-difference__card p {
  margin: 0;
  color: #53677e;
  font-size: 12px;
  line-height: 1.62;
}

.seo-services-agency-difference__card h3,
.seo-services-agency-difference__card p {
  transition: color 0.28s ease;
}

.seo-services-agency-difference__card:hover h3 {
  color: #087d33;
}

.seo-services-agency-difference__card:hover p {
  color: #3f5368;
}

@media (max-width: 1024px) {
  .seo-services-agency-difference__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-services-agency-difference__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .seo-services-agency-difference {
    padding-top: 58px;
  }

  .seo-services-agency-difference__header h2 br {
    display: none;
  }

 .seo-services-agency-difference__header-btn {
  width: 220px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  height: 48px;
  min-height: 48px;
  margin-left: auto;
  margin-right: auto;
}

  .seo-services-agency-difference__grid {
    grid-template-columns: 1fr;
  }

  .seo-services-agency-difference__card {
    min-height: auto;
  }
  
  .seo-services-agency-difference__card:hover {
  transform: translateY(-4px);
}
}

/* ================================
   Ranking CTA + Associate Partners
================================ */

.vp-ranking-partners-section {
  width: 100%;
  background: #ffffff;
  padding: 40px 20px 48px;
  overflow: hidden;
}

/* Green CTA Card */
.vp-ranking-card {
  position: relative;
  width: 100%;
  max-width: 1220px;
  min-height: 110px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(255,255,255,0.08), transparent 24%),
    linear-gradient(135deg, #058637 0%, #007c31 50%, #006c2c 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 95, 38, 0.12);
}

/* Geometric pattern */
.vp-ranking-card__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, transparent 0 24%, rgba(255,255,255,0.32) 24.2%, transparent 24.6%),
    linear-gradient(45deg, transparent 0 34%, rgba(255,255,255,0.22) 34.2%, transparent 34.6%),
    linear-gradient(120deg, transparent 0 56%, rgba(255,255,255,0.18) 56.2%, transparent 56.6%),
    linear-gradient(60deg, transparent 0 70%, rgba(255,255,255,0.16) 70.2%, transparent 70.6%);
  background-size: 160px 126px, 230px 126px, 300px 126px, 390px 126px;
  background-position: 0 0, 35px -22px, 110px 8px, -65px 0;
}

.vp-ranking-card__content {
  position: relative;
  z-index: 2;
  padding: 25px 28px;
}

.vp-ranking-card__content h2 {
  margin: 0 0 9px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: clamp(30px, 3.2vw, 32px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.vp-ranking-card__content h2 span {
  font-weight: 500;
}

.vp-ranking-card__content p {
  margin: 0;
  max-width: 600px;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

/* Right chart area */
.vp-ranking-card__visual {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 26px;
}

.vp-ranking-card__chart {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 235px;
  height: 126px;
  opacity: 0.92;
}

.vp-ranking-card__btn {
  position: relative;
  z-index: 3;
  overflow: hidden;
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 48px;
  min-height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 5px;
  background: #ffffff;
  color: #008137;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  transition: all 0.3s ease;
  white-space: normal;
}

.vp-ranking-card__btn span {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.vp-ranking-card__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 128, 53, 0.14),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.vp-ranking-card__btn:hover {
  transform: translateY(-1px);
  background: #f7fff9;
  color: #005f26;
}

.vp-ranking-card__btn:hover::before {
  left: 130%;
}

.vp-ranking-card__btn:hover span {
  transform: translateX(2px);
}

/* Associate Partners */
.vp-partners-block {
  width: 100%;
  max-width: 820px;
  margin: 42px auto 0;
  text-align: center;
}

.vp-partners-block h2 {
  margin: 0 0 22px;
  color: #24485d;
  font-family: var(--font-head);
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.vp-partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.vp-partner-item {
  width: 130px;
  height: 68px;
  border: 1px solid #e9edf0;
  border-radius: 6px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  transition: all 0.3s ease;
}

.vp-partner-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 129, 55, 0.22);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.vp-partner-item img {
  max-width: 100%;
  max-height: 68px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 767px) {
  .vp-ranking-partners-section {
    padding: 34px 16px 42px;
  }

  .vp-ranking-card {
    max-width: 100%;
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .vp-ranking-card__content {
    padding: 32px 22px 16px;
  }

  .vp-ranking-card__content p {
    max-width: 100%;
    font-size: 12px;
  }

  .vp-ranking-card__visual {
    min-height: 88px;
    padding: 0 0 24px;
  }

  .vp-ranking-card__chart {
    width: 220px;
    height: 100px;
    opacity: 0.55;
  }

  .vp-ranking-card__btn {
  width: 220px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  height: 48px;
  min-height: 48px;
  font-size: 12px;
}

  .vp-ranking-card__btn span {
    font-size: 12px;
  }

  .vp-partners-block {
    margin-top: 36px;
  }

  .vp-partners-grid {
    gap: 12px;
  }

  .vp-partner-item {
    width: 120px;
    height: 58px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .vp-ranking-card__content h2 {
    font-size: 30px;
    line-height: 0.95;
  }

  .vp-partners-block h2 {
    font-size: 30px;
  }

  .vp-partner-item {
    width: calc(50% - 8px);
    height: 58px;
  }
}

/* Process New CSS*/

/* =========================
   SECTION BACKGROUND
========================= */
.jt-journey-section {
  background: #eef3eb;
  padding: 50px 24px 40px;
}

.jt-journey-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 0 15px;
}

.jt-journey-title {
  text-align: center;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 400;
  color: #1d4964;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}

.jt-journey-subtitle {
  text-align: center;
  font-size: 22px;
  line-height: 1.4;
  color: #4f5856;
  margin: 0 0 70px;
  font-weight: 400;
}

.jt-journey-timeline {
  position: relative;
}

.jt-journey-row {
  display: grid;
  gap: 30px;
}

.jt-journey-row--top {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jt-journey-row--bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  margin-bottom: 30px;
}

.jt-journey-connector {
  margin: 46px 0 0;
  border-top: 2px dashed #8ac69d;
  position: relative;
}

/* item */
.jt-journey-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

/* vertical dotted line */
.jt-journey-row--top .jt-journey-item::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 58px;
  bottom: -48px;
  border-left: 2px dashed #8ac69d;
}

.jt-journey-row--bottom .jt-journey-item::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -28px;
  height: 58px;
  border-left: 2px dashed #8ac69d;
}

/* icon */
.jt-journey-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, #6fc15d 0%, #1a8c39 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 18px rgba(26, 140, 57, 0.18);
}

.jt-journey-icon-img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

/* content shift */
.jt-journey-content {
  flex: 1;
  padding-right: 6px;
  max-width: 265px;
}

.jt-journey-year {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: #1d4964;
  margin: 15px 0 8px 4px;
  letter-spacing: -0.04em;
}

.jt-journey-heading {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  color: #2a3538;
  margin: 0 0 8px;
}

.jt-journey-text {
  font-size: 14px;
  line-height: 1.65;
  color: #54615d;
  margin: 0;
}

/* responsive */
@media (max-width: 1200px) {
  .jt-journey-title {
    font-size: 42px;
  }

  .jt-journey-subtitle {
    font-size: 18px;
    margin-bottom: 55px;
  }

  .jt-journey-row--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jt-journey-row--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jt-journey-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .jt-journey-section {
    padding: 50px 16px 60px;
  }

  .jt-journey-container {
    padding: 0 8px;
  }

  .jt-journey-title {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .jt-journey-subtitle {
    font-size: 16px;
    margin-bottom: 38px;
  }

  .jt-journey-row--top,
  .jt-journey-row--bottom {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 0;
  }

  .jt-journey-connector {
    display: none;
  }

  .jt-journey-row--top .jt-journey-item::before,
  .jt-journey-row--bottom .jt-journey-item::before {
    left: 28px;
    top: 58px;
    bottom: auto;
    height: calc(100% - 58px);
  }

  .jt-journey-content {
    padding-left: 10px;
  }

  .jt-journey-year {
    font-size: 32px;
  }

  .jt-journey-heading {
    font-size: 18px;
  }

  .jt-journey-text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .jt-journey-timeline {
    display: flex;
    flex-direction: column;
  }

  .jt-journey-row {
    display: contents;
  }

  .jt-journey-row--top .jt-journey-item:nth-child(1) { order: 1; }
  .jt-journey-row--bottom .jt-journey-item:nth-child(1) { order: 2; }
  .jt-journey-row--top .jt-journey-item:nth-child(2) { order: 3; }
  .jt-journey-row--bottom .jt-journey-item:nth-child(2) { order: 4; }
  .jt-journey-row--top .jt-journey-item:nth-child(3) { order: 5; }
  .jt-journey-row--bottom .jt-journey-item:nth-child(3) { order: 6; }
  .jt-journey-row--top .jt-journey-item:nth-child(4) { order: 7; }

  .jt-journey-row--top,
  .jt-journey-row--bottom {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 0;
  }

  .jt-journey-connector {
    display: none;
  }
}

/* ================================
   Guest Posting Services Reporting
================================ */

.guest-posting-services-reporting {
  background: #ffffff;
  padding-top: 48px;
  padding-bottom: 66px;
}

.guest-posting-services-reporting__header {
  text-align: center;
  margin-bottom: 26px;
}

.guest-posting-services-reporting__header h2 {
  margin: 0 0 12px;
  color: #113b51;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.guest-posting-services-reporting__header p {
  margin: 0;
  color: #10384f;
  font-size: 14px;
  line-height: 1.5;
}

.guest-posting-services-reporting__grid {
  max-width: 1090px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 48px;
  align-items: center;
}

.guest-posting-services-reporting__content h3 {
  margin: 0 0 22px;
  color: #10384f;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.guest-posting-services-reporting__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 9px;
}

.guest-posting-services-reporting__item {
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 4px;
  background: #ffffff;
  color: #1d2b3a;
  font-size: 14px;
  line-height: 1.35;
  box-shadow:
    0 3px 0 rgba(17, 59, 81, 0.2),
    0 7px 14px rgba(17, 59, 81, 0.1);
}

.guest-posting-services-reporting__item--wide {
  grid-column: 1 / -1;
}

.guest-posting-services-reporting__item span {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2fa84f;
  color: #ffffff;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
}

.guest-posting-services-reporting__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.guest-posting-services-reporting__image img {
  width: min(100%, 460px);
  height: auto;
  display: block;
  object-fit: contain;
}

.guest-posting-services-reporting__note {
  max-width: 534px;
  margin: 0 auto;
  padding: 11px 18px;
  border: 1px solid #2db81b;
  border-left-width: 3px;
  border-radius: 2px;
  background: #f3fff4;
  color: #10384f;
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
}

/* Tablet */
@media (max-width: 768px) {
  .guest-posting-services-reporting {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .guest-posting-services-reporting__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 520px;
  }

  .guest-posting-services-reporting__content h3 {
    text-align: center;
  }

  .guest-posting-services-reporting__image {
    order: -1;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .guest-posting-services-reporting__header h2 {
    font-size: 25px;
  }

  .guest-posting-services-reporting__list {
    grid-template-columns: 1fr;
  }

  .guest-posting-services-reporting__item--wide {
    grid-column: auto;
  }

  .guest-posting-services-reporting__item {
    font-size: 12px;
    min-height: 34px;
  }

  .guest-posting-services-reporting__note {
    max-width: 100%;
    font-size: 11px;
  }
}

/* ================================
   Free SEO Audit Ribbon Section
================================ */

/* ================================
   Free SEO Audit Ribbon Section - Larger Version
================================ */

.vp-audit-ribbon {
  position: relative;
  width: 100%;
  min-height: 190px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(255,255,255,0.08), transparent 24%),
    linear-gradient(135deg, #048334 0%, #00712d 48%, #006929 100%);
  display: flex;
  align-items: center;
}

/* Background geometric pattern */
.vp-audit-ribbon__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, transparent 0 23%, rgba(255,255,255,0.32) 23.2%, transparent 23.6%),
    linear-gradient(45deg, transparent 0 32%, rgba(255,255,255,0.22) 32.2%, transparent 32.6%),
    linear-gradient(120deg, transparent 0 55%, rgba(255,255,255,0.18) 55.2%, transparent 55.6%),
    linear-gradient(60deg, transparent 0 68%, rgba(255,255,255,0.16) 68.2%, transparent 68.6%);
  background-size: 250px 190px, 340px 190px, 430px 190px, 560px 190px;
  background-position: 0 0, 40px -20px, 120px 10px, -70px 0;
}

.vp-audit-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.55) 1px, transparent 1.5px);
  background-size: 170px 95px;
  background-position: 70px 20px;
  pointer-events: none;
}

.vp-audit-ribbon__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}

.vp-audit-ribbon__content h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: clamp(30px, 3.2vw, 32px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.vp-audit-ribbon__content p {
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-head);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

.vp-audit-ribbon__action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.vp-audit-ribbon__btn {
  position: relative;
  overflow: hidden;
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 48px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  background: #ffffff;
  color: #007a32;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  white-space: normal;
}

.vp-audit-ribbon__btn span {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.vp-audit-ribbon__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 128, 53, 0.14),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.vp-audit-ribbon__btn:hover {
  transform: translateY(-2px);
  background: #f7fff9;
  color: #005f26;
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

.vp-audit-ribbon__btn:hover::before {
  left: 130%;
}

.vp-audit-ribbon__btn:hover span {
  transform: translateX(3px);
}

/* Tablet */
@media (max-width: 991px) {
  .vp-audit-ribbon {
    min-height: auto;
  }

  .vp-audit-ribbon__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    padding: 48px 24px;
  }

  .vp-audit-ribbon__content p {
    max-width: 760px;
    margin: 0 auto;
  }

  .vp-audit-ribbon__action {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .vp-audit-ribbon__inner {
    padding: 42px 18px;
    gap: 24px;
  }

  .vp-audit-ribbon__content h2 {
    font-size: 32px;
  }

  .vp-audit-ribbon__content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .vp-audit-ribbon__btn {
  width: 220px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  height: 48px;
  min-height: 48px;
  font-size: 14px;
}
}

/* ------- Why Business Choose eSEO -------- */

:root {
  --ezo-green: #178f3a;
  --ezo-green-deep: #11732f;
  --ezo-navy: #153f5a;
  --ezo-light: #eef4eb;
  --ezo-card-dark: rgba(20, 58, 84, 0.82);
  --ezo-card-dark-2: rgba(12, 36, 52, 0.88);
  --ezo-card-light: #f4f7f0;
  --ezo-text: #5c6770;
  --ezo-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.ezo-why-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background:
    linear-gradient(rgba(18, 141, 56, 0.95), rgba(18, 141, 56, 0.95)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 30%),
    #178f3a;
}

.ezo-why-section::before,
.ezo-why-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ezo-why-section::before {
  background:
    linear-gradient(45deg, transparent 49.5%, rgba(255,255,255,0.08) 50%, transparent 50.5%),
    linear-gradient(-45deg, transparent 49.5%, rgba(255,255,255,0.08) 50%, transparent 50.5%);
  background-size: 180px 180px;
  opacity: 0.6;
}

.ezo-why-section::after {
  background:
    linear-gradient(0deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.05), transparent 45%);
  mix-blend-mode: screen;
  opacity: 0.45;
}

.ezo-why-shell {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
}

.ezo-why-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.ezo-why-heading-wrap {
  max-width: 700px;
}

.ezo-why-title {
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.ezo-why-title span {
  display: block;
  
}

.ezo-why-subtitle {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.88);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 300;
}

.ezo-why-cta-wrap {
  flex: 0 0 auto;
  padding-top: 56px;
}

.ezo-why-cta {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 48px;
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  background: #fff;
  color: var(--ezo-green);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--ezo-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: normal;
}

.ezo-why-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

.ezo-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* 2nd box: increase space only from the top side */
.ezo-why-grid > .ezo-why-card:nth-child(2) .ezo-why-card-inner {
  padding-top: 64px;
}

/* 4th box: increase space only from the bottom side */
.ezo-why-grid > .ezo-why-card:nth-child(4) .ezo-why-card-inner {
  padding-bottom: 34px;
}

.ezo-why-card {
  position: relative;
  min-height: 275px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--ezo-shadow);
}

/* Professional card hover effect */
.ezo-why-card {
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.ezo-why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 46%);
  transform: translate(-18px, -18px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.ezo-why-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  z-index: 3;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #ffffff, #71e05d, #ffffff);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.ezo-why-card-inner {
  transition: transform 0.35s ease;
}

.ezo-why-card-icon {
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    filter 0.35s ease;
}

.ezo-why-card-title,
.ezo-why-card-text {
  transition:
    color 0.35s ease,
    opacity 0.35s ease;
}

/* Hover state */
.ezo-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.38);
}

.ezo-why-card:hover::before {
  opacity: 1;
  transform: translate(0, 0);
}

.ezo-why-card:hover::after {
  transform: scaleX(1);
}

.ezo-why-card:hover .ezo-why-card-inner {
  transform: translateY(-4px);
}

.ezo-why-card:hover .ezo-why-card-icon {
  transform: translateY(-5px) scale(1.07);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

/* Light card hover */
.ezo-why-card-light:hover {
  background: #ffffff;
  border-color: rgba(23, 143, 58, 0.28);
}

.ezo-why-card-light:hover .ezo-why-card-icon,
.ezo-why-card-light:hover .ezo-why-card-title {
  color: var(--ezo-green);
}

.ezo-why-card-light:hover .ezo-why-card-text {
  color: #41505c;
}

/* Dark/image card hover */
.ezo-why-card-dark:hover {
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.ezo-why-card-dark:hover .ezo-why-card-icon {
  color: #7df06a;
}

.ezo-why-card-dark:hover .ezo-why-card-text {
  opacity: 1;
}

/* Better keyboard accessibility */
.ezo-why-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

/* Disable heavy hover movement on touch devices */
@media (hover: none) {
  .ezo-why-card:hover,
  .ezo-why-card:hover .ezo-why-card-inner,
  .ezo-why-card:hover .ezo-why-card-icon {
    transform: none;
  }

  .ezo-why-card::before,
  .ezo-why-card::after {
    display: none;
  }
}

.ezo-why-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ezo-why-card-dark {
  background: var(--ezo-card-dark);
  color: #fff;
}

.ezo-why-card-dark.ezo-why-card-photo {
  background:
    linear-gradient(rgba(14, 46, 68, 0.72), rgba(14, 46, 68, 0.72)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.ezo-why-card-dark:nth-child(3) {
  background:
    linear-gradient(rgba(10, 39, 58, 0.78), rgba(10, 39, 58, 0.78)),
    url("https://images.unsplash.com/photo-1484417894907-623942c8ee29?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.ezo-why-card-dark:nth-child(5) {
  background:
    linear-gradient(rgba(10, 16, 22, 0.75), rgba(10, 16, 22, 0.75)),
    url("https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.ezo-why-card-light {
  background: var(--ezo-card-light);
  color: var(--ezo-navy);
}

.ezo-why-card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: currentColor;
}

.ezo-why-card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ezo-why-card-title {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: inherit;
}

.ezo-why-card-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: inherit;
  opacity: 0.92;
  max-width: 95%;
}

.ezo-why-card-light .ezo-why-card-title {
  color: var(--ezo-navy);
}

.ezo-why-card-light .ezo-why-card-text {
  color: var(--ezo-text);
}

.ezo-why-card-dark .ezo-why-card-text {
  color: rgba(255,255,255,0.92);
}

.ezo-why-card-dark .ezo-why-card-icon,
.ezo-why-card-dark .ezo-why-card-title {
  color: #ffffff;
}

.ezo-why-card-light .ezo-why-card-icon {
  color: var(--ezo-navy);
}

/* responsive */
@media (max-width: 1100px) {
  .ezo-why-title {
    font-size: 46px;
  }

  .ezo-why-subtitle {
    font-size: 18px;
  }

  .ezo-why-grid {
    gap: 14px;
  }

  .ezo-why-card-title {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .ezo-why-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 34px;
  }

  .ezo-why-cta-wrap {
    padding-top: 0;
  }

  .ezo-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ezo-why-card {
    min-height: 250px;
  }
}

@media (max-width: 640px) {
  .ezo-why-section {
    padding: 64px 0 72px;
  }

  .ezo-why-shell {
    padding: 0 16px;
  }

  .ezo-why-title {
    font-size: 34px;
    line-height: 1.08;
  }

  .ezo-why-subtitle {
    font-size: 15px;
    margin-top: 12px;
  }

  .ezo-why-cta {
  width: 220px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  height: 48px;
  min-height: 48px;
  padding: 0 16px;
  font-size: 14px;
}

  .ezo-why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ezo-why-card {
    min-height: 220px;
  }

  .ezo-why-card-inner {
    padding: 22px 18px 18px;
  }

  .ezo-why-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .ezo-why-card-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .ezo-why-card-text {
    font-size: 14px;
    line-height: 1.58;
    max-width: 100%;
  }
}

/* ================================
   SEO Services Agency Location
================================ */

.seo-services-agency-location {
  background: #eaf0f7;
  padding-top: 58px;
  padding-bottom: 58px;
}

.seo-services-agency-location__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.seo-services-agency-location__map {
  height: 486px;
  overflow: hidden;
  border: 5px solid #ffffff;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 0 rgba(17, 59, 81, 0.18);
}

.seo-services-agency-location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.seo-services-agency-location__content h2 {
  margin: 0 0 28px;
  color: #113b51;
  font-size: clamp(32px, 3.2vw, 38px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.8px;
}

.seo-services-agency-location__content h2 span {
  color: #07823a;
}

.seo-services-agency-location__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 470px;
}

.seo-services-agency-location__info,
.seo-services-agency-location__side {
  border-radius: 6px;
  overflow: hidden;
}

.seo-services-agency-location__row,
.seo-services-agency-location__side-box,
.seo-services-agency-location__cta-box {
  padding: 19px 34px;
  background: #ffffff;
  border-bottom: 1px solid #e6edf3;
}

.seo-services-agency-location__row:last-child,
.seo-services-agency-location__side-box:last-child {
  border-bottom: 0;
}

.seo-services-agency-location__row h3,
.seo-services-agency-location__side-box h3,
.seo-services-agency-location__cta-box h3 {
  margin: 0 0 5px;
  color: #10384f;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
}

.seo-services-agency-location__row p,
.seo-services-agency-location__side-box p,
.seo-services-agency-location__cta-box p {
  margin: 0;
  color: #53677e;
  font-size: 10px;
  line-height: 1.65;
}

.seo-services-agency-location__cta-box {
  background: #d9f1dc;
  min-height: 88px;
}

.seo-services-agency-location__btn {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  height: 48px;
  min-height: 48px;
  margin-top: 14px;
  padding: 0 16px;
  justify-content: center;
  text-align: center;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.2;
  white-space: normal;
}

@media (max-width: 1024px) {
  .seo-services-agency-location__grid {
    grid-template-columns: 1fr;
  }

  .seo-services-agency-location__map {
    height: 420px;
  }

  .seo-services-agency-location__cards {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .seo-services-agency-location {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .seo-services-agency-location__map {
    height: 360px;
  }

  .seo-services-agency-location__content h2 br {
    display: none;
  }

  .seo-services-agency-location__cards {
    grid-template-columns: 1fr;
  }

  .seo-services-agency-location__row,
  .seo-services-agency-location__side-box,
  .seo-services-agency-location__cta-box {
    padding: 18px 22px;
  }
}


/*---- Transparent Reporting ---*/

/* Section */
.section-transparent {
  padding: 50px 20px;
  text-align: center;
  background: #fff; /*- radial-gradient(circle at top, #12385b, #071421);*/
}

/* Heading */
.section-transparent h2 {
  color: var(--navy);
  margin-bottom: 15px;
}

.section-transparent p {
  max-width: 950px;
  margin: 0 auto 50px;
  color: var(--navy-light);
  line-height: 1.6;
}

/* Grid */
.grid-transparent {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* Card */
.card-transparent {
  
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  backdrop-filter: blur(12px);
  border: 1px var(--navy-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Glow Effect */
.card-transparent::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,140,255,0.15), transparent 60%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.4s;
}

.card-transparent:hover::before {
  opacity: 1;
}

.card-transparent:hover {
  transform: translateY(-8px);
  border-color: rgba(0,140,255,0.4);
}

/* Icon */
.icon-transparent {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  border-radius: 12px;
  font-size: 22px;
}

/* Title */
.card-transparent h3 {
  margin-bottom: 12px;
  color: var(--navy-light);
}

/* Text */
.card-transparent p {
  color: var(--navy-light);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-transparent h1 {
    font-size: 30px;
  }
}

/* ----- Result Grid -----*/

.section--lightblue1 {background: radial-gradient(circle at 50% 20%, #111827, #133760);
}

.result-section-title { color: #fff;}
.result-section-subtitle { color: #F5F5F5; font-size:1.05rem;max-width:640px;margin-bottom:48px; margin-left:auto;margin-right:auto}

.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;}
  .result-card {
    background: rgb(255,255,255, 0.06);
    padding: 40px 32px;
    border: 1px solid var(--Lime-Green);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
  }
  .result-card:hover { transform: translateY(-4px); }
  .result-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
  }
  .result-card:hover::before { opacity: 1; }
  .result-icon { font-size: 32px; margin-bottom: 20px; }
  .result-card h3 { font-size: 18px; color: var(--white);font-weight: 600; margin-bottom: 10px; }
  .result-card p { font-size: 14px; color: var(--off-white); line-height: 1.6; }
  
  
  /* Strategic Importance */
  
  .strategic-section-light {
  padding: 30px 20px;
  text-align: center;
}

.strategic-section-light h2 {
  color: var(--navy);
  margin-bottom: 15px;
}

.strategic-section-light p {
  max-width: 750px;
  margin: 0 auto 50px;
  color: var(--navy-light);
  line-height: 1.6;
}

/* Cards */
.strategic-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.strategic-feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border-top: 4px solid #2ecc71;
}

.strategic-feature-card:hover {
  transform: translateY(-6px);
}

.strategic-icon-box {
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--Lime-Green);
  margin-bottom: 15px;
}

.strategic-feature-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.strategic-feature-card p {
  color: var(navy-light);
}

/* Local SEO */

.local-seo-section-premium {
  padding: 30px 20px;
  background: linear-gradient(135deg, #071a2d 0%, #0b2c4a 60%, #0d3b66 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.local-seo-section-premium::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,140,255,0.25), transparent 70%);
  filter: blur(60px);
}

/* heading */
.local-seo-section-premium h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

.local-seo-section-premium .subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
  color: #c7d6e6;
  line-height: 1.6;
}

/* layout */
.local-seo-premium-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

/* image side */
.local-seo-premium-image {
  position: relative;
}

.local-seo-premium-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* glass panel */
.local-seo-premium-content {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  padding: 35px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* cards */
.local-seo-premium-card {
  padding: 20px 20px 20px 25px;
  margin-bottom: 20px;
  border-left: 4px solid #00c6ff;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.local-seo-premium-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(6px);
  border-left-color: #4facfe;
}

/* text */
.local-seo-premium-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.local-seo-premium-card p {
  font-size: 14px;
  color: #cfd8e3;
}

/* responsive */
@media (max-width: 768px) {
  .local-seo-premium-grid {
    grid-template-columns: 1fr;
  }

  .local-seo-section-premium h2 {
    font-size: 28px;
  }
}

/* ============================
     SEO Services Dubai AEO/GEO SECTION
  ============================= */
  .seo-dubai-aeo-section {
    
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .seo-dubai-aeo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .seo-dubai-aeo-features { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
  .seo-dubai-aeo-feature {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition);
  }
  .seo-dubai-aeo-feature:hover { border-color: rgba(201,168,76,0.4); }
  .seo-dubai-aeo-feature-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--orange-light);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .seo-dubai-aeo-feature h4 { font-size: 15px; color: var(--white); font-weight: 600; margin-bottom: 4px; }
  .seo-dubai-aeo-feature p { font-size: 13px; color: var(--white); }
  .seo-dubai-aeo-visual {
    background: var(--dark-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
  }
  .seo-dubai-aeo-label {
    display: inline-block;
    background: #045683;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .seo-dubai-aeo-visual h3 { font-size: 28px; color: var(--navy); font-weight: 800; margin-bottom: 16px; }
  .seo-dubai-aeo-visual p { font-size: 14px; color: var(--navy-light); line-height: 1.7; }
  .seo-dubai-aeo-platforms {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 24px; justify-content: center;
  }
  .seo-dubai-aeo-platform {
    background: var(--navy);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
  }
  
@media (max-width: 1024px) {
    
     .hero-inner { grid-template-columns: 1fr; }
    .hero-form-card { max-width: 520px; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .seo-dubai-aeo-inner { grid-template-columns: 1fr; }
    .reporting-grid { grid-template-columns: 1fr; }

  }
  @media (max-width: 768px) {
    .hero-inner { padding: 10px 20px; }
    .results-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .container-wide { padding: 0 20px; }
  }
  
  /* ==================================
        Guest Posting Agency Page CSS 
    ================================== */
  
  /* ================================
   Guest Posting Services Hero
================================ */

.guest-posting-services-hero {
  position: relative;
  min-height: 590px;
  padding: 92px 0 104px;
  overflow: visible;
  color: #ffffff;
  background: #061d3d;
}

.guest-posting-services-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.guest-posting-services-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 84% 28%, rgba(41, 221, 140, 0.2), transparent 26%),
    linear-gradient(
      90deg,
      rgba(2, 13, 38, 0.94) 0%,
      rgba(3, 31, 71, 0.78) 47%,
      rgba(3, 21, 50, 0.52) 100%
    );
  pointer-events: none;
}

.guest-posting-services-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 543px);
  gap: 58px;
  align-items: center;
}

.guest-posting-services-hero__content {
  max-width: 680px;
}

.guest-posting-services-hero__content h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(36px, 3.8vw, 38px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.7px;
}

.guest-posting-services-hero__content h1 span {
  color: #27c414;
}

.guest-posting-services-hero__content h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.guest-posting-services-hero__content p {
  max-width: 585px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.65;
}

.guest-posting-services-hero__btn {
  min-width: 166px;
  justify-content: center;
  border-radius: 9px;
}

.guest-posting-services-hero__form-card {
  position: relative;
  min-height: 464px;
  overflow: hidden;
  padding: 36px 40px 48px;
  border-radius: 9px;
  background: rgba(3, 40, 76, 0.76);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.guest-posting-services-hero__form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 32%, rgba(255, 255, 255, 0.08) 32.3%, transparent 32.7%),
    linear-gradient(90deg, transparent 0 72%, rgba(255, 255, 255, 0.04) 72% 82%, transparent 82%);
  pointer-events: none;
}

.guest-posting-services-hero__chart-bars {
  position: absolute;
  right: 28px;
  bottom: 86px;
  display: flex;
  align-items: flex-end;
  gap: 11px;
  opacity: 0.38;
  pointer-events: none;
}

.guest-posting-services-hero__chart-bars span {
  width: 20px;
  background: linear-gradient(180deg, rgba(36, 198, 255, 0.92), rgba(16, 92, 177, 0.36));
  border: 1px solid rgba(54, 221, 255, 0.55);
}

.guest-posting-services-hero__chart-bars span:nth-child(1) { height: 94px; }
.guest-posting-services-hero__chart-bars span:nth-child(2) { height: 124px; }
.guest-posting-services-hero__chart-bars span:nth-child(3) { height: 160px; }
.guest-posting-services-hero__chart-bars span:nth-child(4) { height: 198px; }

.guest-posting-services-hero__form-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 22px;
  color: var(--navy);
  text-align: center;
  font-size: 20px;
  font-weight: 800;
}

.guest-posting-services-hero__form {
  position: relative;
  z-index: 2;
}

.guest-posting-services-hero__form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 20px;
}

.guest-posting-services-hero__form input,
.guest-posting-services-hero__form textarea {
  width: 100%;
  border: 2px solid rgba(211, 229, 247, 0.5);
  border-radius: 5px;
  outline: none;
  background: rgba(5, 30, 64, 0.22);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 18px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.guest-posting-services-hero__form input {
  height: 50px;
  padding: 0 20px;
}

.guest-posting-services-hero__form textarea {
  min-height: 120px;
  padding: 14px 20px;
  resize: vertical;
}

.guest-posting-services-hero__form input::placeholder,
.guest-posting-services-hero__form textarea::placeholder {
  color: rgba(226, 237, 248, 0.72);
}

.guest-posting-services-hero__form input:focus,
.guest-posting-services-hero__form textarea:focus {
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 4px rgba(0, 181, 255, 0.12);
}

.guest-posting-services-hero__submit {
  min-width: 187px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  padding: 0 25px;
  border-radius: 5px;
  background: #2ec118;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease;
}

.guest-posting-services-hero__submit:hover {
  transform: translateY(-2px);
  background: #25aa14;
}

/* ================================
   Guest Posting Stats Overlay
================================ */

.guest-posting-services-stats {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: -79px;
  transform: translateX(-50%);
  width: min(795px, calc(100% - 48px));
  min-height: 162px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
  padding: 26px 44px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow:
    0 3px 0 rgba(6, 47, 73, 0.14),
    0 16px 35px rgba(4, 26, 43, 0.22);
}

.guest-posting-services-stats__item {
  text-align: center;
}

.guest-posting-services-stats__icon {
  width: 37px;
  height: 37px;
  margin: 0 auto 9px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf2ff;
  border: 1px solid #a9c7ff;
}

.guest-posting-services-stats__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.guest-posting-services-stats__item:nth-child(2) .guest-posting-services-stats__icon {
  background: #e5fae9;
  border-color: #91e7aa;
}

.guest-posting-services-stats__item strong {
  display: block;
  margin-bottom: 5px;
  color: #0064ff;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
}

.guest-posting-services-stats__item:nth-child(2) strong {
  color: #04b64c;
}

.guest-posting-services-stats__item p {
  margin: 0;
  color: #53677e;
  font-size: 13px;
  line-height: 1.35;
}

/* ================================
   Guest Posting Intro
================================ */

.guest-posting-services-intro {
  background: #ffffff;
  padding-top: 150px;
  padding-bottom: 86px;
}

.guest-posting-services-intro__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 84px;
  align-items: center;
}

.guest-posting-services-intro__left h2 {
  margin: 0 0 30px;
  color: #113b51;
  font-size: clamp(34px, 3.3vw, 42px);
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: -1px;
}

.guest-posting-services-intro__left h2 span {
  color: #54b957;
  font-weight: 800;
}

.guest-posting-services-intro__btn {
  min-width: 190px;
  justify-content: center;
  border-radius: 9px;
}

.guest-posting-services-intro__content {
  max-width: 720px;
}

.guest-posting-services-intro__content p {
  margin: 0;
  color: #53677e;
  font-size: 16px;
  line-height: 1.75;
}

.guest-posting-services-intro__content p + p {
  margin-top: 6px;
}

/* ================================
   Guest Posting Services Matter
================================ */

.guest-posting-services-matter {
  background: #ffffff;
  padding-top: 76px;
  padding-bottom: 72px;
}

.guest-posting-services-matter__header {
  max-width: 1050px;
  margin: 0 auto 78px;
  text-align: center;
}

.guest-posting-services-matter__header h2 {
  margin: 0 0 30px;
  color: #113b51;
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -1px;
}

.guest-posting-services-matter__header h2 span {
  color: #54b957;
  font-weight: 600;
}

.guest-posting-services-matter__header p {
  max-width: 1050px;
  margin: 0 auto;
  color: #53677e;
  font-size: 14px;
  line-height: 1.55;
}

.guest-posting-services-matter__grid {
  max-width: 1030px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 90px;
  row-gap: 0;
  position: relative;
}

.guest-posting-services-matter__grid::before,
.guest-posting-services-matter__grid::after {
  content: "";
  position: absolute;
  background: rgba(17, 35, 50, 0.9);
}

.guest-posting-services-matter__grid::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

.guest-posting-services-matter__grid::after {
   left: 23%;
  right: 23%;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

.guest-posting-services-matter__item {
  min-height: 318px;
  padding: 16px 0 42px;
}

.guest-posting-services-matter__item:nth-child(odd),
.guest-posting-services-matter__item:nth-child(even) {
   padding-left: 0;
  padding-right: 0;
}

.guest-posting-services-matter__item:nth-child(n + 3) {
  padding-top: 58px;
}

.guest-posting-services-matter__title-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 70px;
}

.guest-posting-services-matter__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}

.guest-posting-services-matter__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.guest-posting-services-matter__item h3 {
  margin: 0;
  color: #113b51;
  font-size: clamp(25px, 2.4vw, 29px);
  line-height: 1.32;
  font-weight: 400;
  letter-spacing: -0.6px;
}

.guest-posting-services-matter__item p {
  margin: 0;
  color: #1d2b3a;
  font-size: 15.5px;
  line-height: 1.62;
}

.guest-posting-services-matter__cta {
  margin-top: 62px;
  text-align: center;
}

.guest-posting-services-matter__cta .btn {
  min-width: 300px;
  justify-content: center;
  border-radius: 9px;
}

@media (max-width: 1024px) {
  .guest-posting-services-matter__header {
    margin-bottom: 55px;
  }

  .guest-posting-services-matter__grid {
    max-width: 100%;
  }

  .guest-posting-services-matter__item {
    padding-left: 28px;
    padding-right: 28px;
  }

  .guest-posting-services-matter__item:nth-child(odd) {
    padding-left: 0;
  }

  .guest-posting-services-matter__item:nth-child(even) {
    padding-right: 0;
  }

  .guest-posting-services-matter__title-row {
    gap: 18px;
    margin-bottom: 45px;
  }
}

@media (max-width: 760px) {
  .guest-posting-services-matter {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .guest-posting-services-matter__header h2 br {
    display: none;
  }

  .guest-posting-services-matter__header p {
    font-size: 15px;
  }

  .guest-posting-services-matter__grid {
    grid-template-columns: 1fr;
  }

  .guest-posting-services-matter__grid::before,
  .guest-posting-services-matter__grid::after {
    display: none;
  }

  .guest-posting-services-matter__item,
  .guest-posting-services-matter__item:nth-child(odd),
  .guest-posting-services-matter__item:nth-child(even),
  .guest-posting-services-matter__item:nth-child(n + 3) {
    min-height: auto;
    padding: 0 0 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(17, 35, 50, 0.25);
  }

  .guest-posting-services-matter__item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
  }

  .guest-posting-services-matter__title-row {
    grid-template-columns: 54px 1fr;
    gap: 16px;
    margin-bottom: 22px;
  }

  .guest-posting-services-matter__icon,
  .guest-posting-services-matter__icon img {
    width: 50px;
    height: 50px;
  }

  .guest-posting-services-matter__item h3 {
    font-size: 25px;
  }

  .guest-posting-services-matter__item p {
    font-size: 14.5px;
  }

  .guest-posting-services-matter__cta .btn {
    width: 100%;
    min-width: 0;
  }
}

/* ================================
   Guest Posting Services Problems
================================ */

.guest-posting-services-problems {
  background: #178f3f;
  padding-top: 78px;
  padding-bottom: 76px;
  color: #ffffff;
}

.guest-posting-services-problems__header {
  max-width: 1040px;
  margin: 0 auto 42px;
  text-align: center;
}

.guest-posting-services-problems__header h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -1px;
}

.guest-posting-services-problems__header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  line-height: 1.65;
}

.guest-posting-services-problems__grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px 18px;
}

.guest-posting-services-problems__card {
  grid-column: span 3;
  min-height: 176px;
  padding: 33px 26px 26px;
  border: 2px solid #37bd20;
  border-radius: 16px;
  background: #ffffff;
  color: #10384f;
  box-shadow: 0 8px 20px rgba(0, 70, 25, 0.08);
}

.guest-posting-services-problems__card--row-two:nth-child(5) {
  grid-column: 3 / span 3;
}

.guest-posting-services-problems__card--row-two:nth-child(6) {
  grid-column: 6 / span 3;
}

.guest-posting-services-problems__card--row-two:nth-child(7) {
  grid-column: 9 / span 3;
}

.guest-posting-services-problems__card h3 {
  margin: 0 0 27px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.3px;
  font-size: 18px;
}

.guest-posting-services-problems__card p {
  margin: 0;
  color: #53677e;
  font-size: 12px;
  line-height: 1.45;
}

.guest-posting-services-problems__cta {
  margin-top: 48px;
  text-align: center;
}

.guest-posting-services-problems__cta .btn {
  min-width: 310px;
  justify-content: center;
  border-radius: 11px;
}

@media (max-width: 1100px) {
  .guest-posting-services-problems__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
  }

  .guest-posting-services-problems__card,
  .guest-posting-services-problems__card--row-two:nth-child(5),
  .guest-posting-services-problems__card--row-two:nth-child(6),
  .guest-posting-services-problems__card--row-two:nth-child(7) {
    grid-column: auto;
  }

  .guest-posting-services-problems__card:last-child {
    grid-column: 1 / -1;
    max-width: 421px;
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .guest-posting-services-problems {
    padding-top: 58px;
    padding-bottom: 60px;
  }

  .guest-posting-services-problems__header {
    margin-bottom: 32px;
  }

  .guest-posting-services-problems__header h2 {
    font-size: 30px;
  }

  .guest-posting-services-problems__header p br {
    display: none;
  }

  .guest-posting-services-problems__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .guest-posting-services-problems__card,
  .guest-posting-services-problems__card:last-child {
    grid-column: auto;
    max-width: none;
    min-height: auto;
  }

  .guest-posting-services-problems__card h3 br {
    display: none;
  }

  .guest-posting-services-problems__cta .btn {
    width: 100%;
    min-width: 0;
  }
}

/* ================================
   Guest Posting Services Types
================================ */

.guest-posting-services-types {
  background: #ffffff;
  padding-top: 96px;
  padding-bottom: 72px;
}

.guest-posting-services-types__header {
  max-width: 880px;
  margin: 0 auto 42px;
  text-align: center;
}

.guest-posting-services-types__header h2 {
  margin: 0 0 20px;
  color: #113b51;
  font-size: clamp(34px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -1px;
}

.guest-posting-services-types__header p {
  margin: 0;
  color: #66778a;
  font-size: 15px;
  line-height: 1.65;
}

.guest-posting-services-types__grid {
  max-width: 1030px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px 20px;
}

.guest-posting-services-types__card {
  position: relative;
  grid-column: span 2;
  min-height: 382px;
  padding: 40px 30px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid #2bb91b;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 0 rgba(43, 185, 31, 0.75);
}

.guest-posting-services-types__card--bottom:nth-child(4) {
  grid-column: 2 / span 2;
}

.guest-posting-services-types__card--bottom:nth-child(5) {
  grid-column: 4 / span 2;
}

.guest-posting-services-types__number {
  position: absolute;
  top: 13px;
  left: 20px;
  min-width: 39px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #29b51c;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.guest-posting-services-types__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ebf9ed;
}

.guest-posting-services-types__icon img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  display: block;
}

.guest-posting-services-types__card h3 {
  margin: 0 0 27px;
  color: #10384f;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.guest-posting-services-types__card p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.guest-posting-services-types__cta {
  margin-top: 38px;
  text-align: center;
}

.guest-posting-services-types__cta .btn {
  min-width: 220px;
  justify-content: center;
  border-radius: 9px;
}

@media (max-width: 1024px) {
  .guest-posting-services-types {
    padding-top: 72px;
  }

  .guest-posting-services-types__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }

  .guest-posting-services-types__card,
  .guest-posting-services-types__card--bottom:nth-child(4),
  .guest-posting-services-types__card--bottom:nth-child(5) {
    grid-column: auto;
  }

  .guest-posting-services-types__card:last-child {
    grid-column: 1 / -1;
    max-width: 370px;
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .guest-posting-services-types {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .guest-posting-services-types__header {
    margin-bottom: 32px;
  }

  .guest-posting-services-types__header h2 {
    font-size: 31px;
  }

  .guest-posting-services-types__header h2 br,
  .guest-posting-services-types__header p br {
    display: none;
  }

  .guest-posting-services-types__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .guest-posting-services-types__card,
  .guest-posting-services-types__card:last-child {
    max-width: none;
    min-height: auto;
    grid-column: auto;
    padding: 36px 22px 30px;
  }

  .guest-posting-services-types__icon {
    margin-bottom: 26px;
  }

  .guest-posting-services-types__card h3 br {
    display: none;
  }

  .guest-posting-services-types__card p {
    text-align: center;
  }

  .guest-posting-services-types__cta .btn {
    width: 100%;
    min-width: 0;
  }
}

/* ================================
   Guest Posting Services Vet
================================ */

.guest-posting-services-vet {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 78px;
}

.guest-posting-services-vet__header {
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.guest-posting-services-vet__header h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(34px, 3.5vw, 36px);
  line-height: 1.18;
  font-weight: 300;
  letter-spacing: -1px;
}

.guest-posting-services-vet__header p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.65;
}

.guest-posting-services-vet__grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.guest-posting-services-vet__card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 51px 42px 30px;
  background: #ffffff;
  box-shadow:
    0 4px 0 rgba(17, 59, 81, 0.16),
    0 12px 24px rgba(17, 59, 81, 0.08);
}

.guest-posting-services-vet__card h3 {
  margin: 0 0 22px;
  color: #10384f;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.guest-posting-services-vet__card p {
  max-width: 490px;
  margin: 0 0 26px;
  color: #53677e;
  font-size: 14px;
  line-height: 1.55;
}

.guest-posting-services-vet__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 455px;
}

.guest-posting-services-vet__metrics--two {
  grid-template-columns: repeat(2, minmax(0, 140px));
}

.guest-posting-services-vet__metrics span {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  text-align: center;
  border: 1.5px solid #28b61f;
  border-radius: 8px;
  background: #effbef;
}

.guest-posting-services-vet__metrics strong {
  display: block;
  color: #10384f;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
}

.guest-posting-services-vet__metrics small {
  display: block;
  margin-top: 4px;
  color: #53677e;
  font-size: 10px;
  line-height: 1.25;
}

/* Responsive */
@media (max-width: 1024px) {
  .guest-posting-services-vet {
    padding-top: 68px;
    padding-bottom: 64px;
  }

  .guest-posting-services-vet__grid {
    max-width: 760px;
    grid-template-columns: 1fr;
  }

  .guest-posting-services-vet__card {
    min-height: auto;
  }

  .guest-posting-services-vet__card p {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .guest-posting-services-vet {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .guest-posting-services-vet__header {
    margin-bottom: 32px;
  }

  .guest-posting-services-vet__header h2 {
    font-size: 31px;
  }

  .guest-posting-services-vet__header p br {
    display: none;
  }

  .guest-posting-services-vet__card {
    padding: 34px 22px 26px;
  }

  .guest-posting-services-vet__metrics,
  .guest-posting-services-vet__metrics--two {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .guest-posting-services-vet__card h3 {
    font-size: 17px;
  }

  .guest-posting-services-vet__card p {
    font-size: 13.5px;
  }
}

/* ================================
   Guest Posting Services Quality Table
================================ */

.guest-posting-services-quality {
  background: #eaf0f7;
  padding-top: 40px;
  padding-bottom: 40px;
}

.guest-posting-services-quality__header {
  max-width: 960px;
  margin: 0 auto 42px;
  text-align: center;
}

.guest-posting-services-quality__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #e4f8e7;
  color: #07823a;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guest-posting-services-quality__header h2 {
  margin: 0 0 20px;
  color: #113b51;
  font-size: clamp(34px, 3.7vw, 48px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -1.1px;
}

.guest-posting-services-quality__header h2 span {
  color: #07823a;
  font-weight: 800;
}

.guest-posting-services-quality__header p {
  max-width: 860px;
  margin: 0 auto;
  color: #53677e;
  font-size: 16px;
  line-height: 1.7;
}

.guest-posting-services-quality__table-wrap {
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 4px 0 rgba(17, 59, 81, 0.12),
    0 18px 38px rgba(17, 59, 81, 0.08);
  -webkit-overflow-scrolling: touch;
}

.guest-posting-services-quality__table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  table-layout: fixed;
}

.guest-posting-services-quality__table th {
  padding: 20px 16px;
  background: #087a31;
  color: #ffffff;
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
  vertical-align: middle;
}

.guest-posting-services-quality__table th:first-child {
  width: 23%;
  text-align: left;
  padding-left: 24px;
}

.guest-posting-services-quality__table th:nth-child(2),
.guest-posting-services-quality__table th:nth-child(3),
.guest-posting-services-quality__table th:nth-child(4) {
  width: 8.5%;
}

.guest-posting-services-quality__table th:nth-child(5) {
  width: 13%;
}

.guest-posting-services-quality__table th:nth-child(6) {
  width: 15%;
}

.guest-posting-services-quality__table th:nth-child(7) {
  width: 13%;
}

.guest-posting-services-quality__table th:nth-child(8) {
  width: 16%;
}

.guest-posting-services-quality__table td {
  padding: 22px 16px;
  color: #1d2b3a;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #dce6ed;
}

.guest-posting-services-quality__table td:first-child {
  padding-left: 24px;
  text-align: left;
}

.guest-posting-services-quality__table tbody tr:nth-child(odd) td {
  background: #f8fbfd;
}

.guest-posting-services-quality__table tbody tr:nth-child(even) td {
  background: #eef5fb;
}

.guest-posting-services-quality__table tbody tr:hover td {
  background: #e6f7e9;
}

.guest-posting-services-quality__table td strong {
  display: block;
  margin-bottom: 5px;
  color: #10384f;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

.guest-posting-services-quality__table td small {
  display: block;
  color: #66778a;
  font-size: 11px;
  line-height: 1.4;
}

.guest-posting-services-quality__badge {
  min-width: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.guest-posting-services-quality__badge--green {
  background: #dcf8e4;
  color: #047a31;
}

.guest-posting-services-quality__badge--blue {
  background: #e1f0ff;
  color: #1166aa;
}

.guest-posting-services-quality__badge--yellow {
  background: #fff0d3;
  color: #9a4c00;
}

.guest-posting-services-quality__note {
  max-width: 960px;
  margin: 30px auto 0;
  padding: 18px 24px;
  border: 1px solid #bde7c4;
  border-left: 5px solid #29b51c;
  border-radius: 12px;
  background: #ffffff;
  color: #53677e;
  font-size: 14.5px;
  line-height: 1.65;
  box-shadow: 0 10px 24px rgba(17, 59, 81, 0.06);
}

.guest-posting-services-quality__note strong {
  color: #10384f;
  font-weight: 800;
}

.guest-posting-services-quality__cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.guest-posting-services-quality__cta .btn {
  min-width: 285px;
  justify-content: center;
  border-radius: 10px;
}

.guest-posting-services-quality__secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1.5px solid #07823a;
  border-radius: 10px;
  background: #ffffff;
  color: #07823a;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.guest-posting-services-quality__secondary:hover {
  transform: translateY(-2px);
  background: #07823a;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 1024px) {
  .guest-posting-services-quality {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .guest-posting-services-quality__header {
    margin-bottom: 34px;
  }

  .guest-posting-services-quality__table-wrap {
    border-radius: 14px;
  }
}

/* Mobile: Convert table rows into cards */
@media (max-width: 760px) {
  .guest-posting-services-quality {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .guest-posting-services-quality__header h2 {
    font-size: 31px;
  }

  .guest-posting-services-quality__header h2 br {
    display: none;
  }

  .guest-posting-services-quality__header p {
    font-size: 14.5px;
  }

  .guest-posting-services-quality__table-wrap {
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .guest-posting-services-quality__table {
    min-width: 0;
    display: block;
  }

  .guest-posting-services-quality__table thead {
    display: none;
  }

  .guest-posting-services-quality__table tbody {
    display: grid;
    gap: 18px;
  }

  .guest-posting-services-quality__table tr {
    display: block;
    overflow: hidden;
    border: 1px solid #cfe1e2;
    border-radius: 16px;
    background: #ffffff;
    box-shadow:
      0 4px 0 rgba(43, 185, 31, 0.75),
      0 12px 24px rgba(17, 59, 81, 0.08);
  }

  .guest-posting-services-quality__table td {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 14px;
    align-items: center;
    padding: 13px 16px;
    text-align: left;
    border-bottom: 1px solid #e4ebee;
    background: #ffffff !important;
    font-size: 14px;
  }

  .guest-posting-services-quality__table td:first-child {
    display: block;
    padding: 18px 16px;
    background: #087a31 !important;
  }

  .guest-posting-services-quality__table td:first-child strong {
    color: #ffffff;
    font-size: 17px;
  }

  .guest-posting-services-quality__table td:first-child small {
    color: rgba(255, 255, 255, 0.82);
  }

  .guest-posting-services-quality__table td:not(:first-child)::before {
    content: attr(data-label);
    color: #10384f;
    font-size: 13px;
    font-weight: 800;
  }

  .guest-posting-services-quality__table td:last-child {
    border-bottom: 0;
  }

  .guest-posting-services-quality__badge {
    width: fit-content;
  }

  .guest-posting-services-quality__note {
    margin-top: 26px;
    padding: 16px 18px;
    font-size: 14px;
  }

  .guest-posting-services-quality__cta {
    gap: 12px;
  }

  .guest-posting-services-quality__cta .btn,
  .guest-posting-services-quality__secondary {
    width: 100%;
    min-width: 0;
  }
}

/* Small Mobile */
@media (max-width: 430px) {
  .guest-posting-services-quality__table td {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .guest-posting-services-quality__badge {
    width: 100%;
  }
}

/* ================================
   Guest Posting Services Benefits
================================ */

.guest-posting-services-benefits {
  background: #ffffff;
  padding-top: 112px;
  padding-bottom: 102px;
}

.guest-posting-services-benefits__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 86px;
  align-items: center;
}

.guest-posting-services-benefits__left {
  max-width: 430px;
}

.guest-posting-services-benefits__left h2 {
  margin: 0 0 30px;
  color: var(--navy);
  font-size: clamp(32px, 3.2vw, 38px);
  line-height: 1.13;
  font-weight: 400;
  letter-spacing: -1.5px;
}

.guest-posting-services-benefits__left p {
  margin: 0 0 34px;
  color: #53677e;
  font-size: 14px;
  line-height: 1.75;
}

.guest-posting-services-benefits__btn {
  min-width: 192px;
  justify-content: center;
  border-radius: 9px;
}

.guest-posting-services-benefits__list {
  display: grid;
  gap: 10px;
}

.guest-posting-services-benefits__item {
  border: 1.5px solid #b9e7bd;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(39, 185, 27, 0.08);
  overflow: hidden;
}

.guest-posting-services-benefits__item summary {
  min-height: 73px;
  display: flex;
  align-items: center;
  padding: 20px 38px;
  color: var(--navy);
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.25;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.guest-posting-services-benefits__item summary::-webkit-details-marker {
  display: none;
}

.guest-posting-services-benefits__item summary::after {
  content: "+";
  margin-left: auto;
  color: #25aa14;
  font-size: 20px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.guest-posting-services-benefits__item:hover summary::after {
  opacity: 1;
  transform: translateX(0);
}

.guest-posting-services-benefits__item[open] summary::after {
  content: "−";
  opacity: 1;
  transform: translateX(0);
}

.guest-posting-services-benefits__item p {
  margin: -2px 0 0;
  padding: 0 38px 28px;
  color: #53677e;
  font-size: 14px;
  line-height: 1.62;
}

.guest-posting-services-benefits__item[open] {
  padding-top: 0;
}

.guest-posting-services-benefits__item[open] summary {
  min-height: 72px;
  padding-top: 27px;
  padding-bottom: 14px;
}

/* Tablet */
@media (max-width: 1024px) {
  .guest-posting-services-benefits {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .guest-posting-services-benefits__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .guest-posting-services-benefits__left {
    max-width: 720px;
  }

  .guest-posting-services-benefits__left h2 br {
    display: none;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .guest-posting-services-benefits {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .guest-posting-services-benefits__left h2 {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .guest-posting-services-benefits__left p {
    font-size: 15px;
  }

  .guest-posting-services-benefits__btn {
    width: 100%;
  }

  .guest-posting-services-benefits__item summary {
    min-height: auto;
    padding: 18px 20px;
    font-size: 19px;
  }

  .guest-posting-services-benefits__item p {
    padding: 0 20px 22px;
  }

  .guest-posting-services-benefits__item[open] summary {
    padding-top: 22px;
    padding-bottom: 10px;
  }
}


/* ================================
   Guest Posting Services Comparison
================================ */

.guest-posting-services-compare {
  background: #eaf0f7;
  padding-top: 88px;
  padding-bottom: 72px;
}

.guest-posting-services-compare__header {
  max-width: 980px;
  margin: 0 auto 58px;
  text-align: center;
}

.guest-posting-services-compare__header h2 {
  margin: 0 0 28px;
  color: #113b51;
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -1px;
}

.guest-posting-services-compare__header p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.65;
}

.guest-posting-services-compare__table-wrap {
  max-width: 1150px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.guest-posting-services-compare__table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  table-layout: fixed;
}

.guest-posting-services-compare__table th {
  padding: 15px 28px;
  background: #087a31;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  text-align: left;
}

.guest-posting-services-compare__table th:first-child {
  width: 20%;
  text-align: center;
}

.guest-posting-services-compare__table th:nth-child(2) {
  width: 31%;
}

.guest-posting-services-compare__table th:nth-child(3) {
  width: 19%;
}

.guest-posting-services-compare__table th:nth-child(4) {
  width: 30%;
  text-align: center;
}

.guest-posting-services-compare__table th + th,
.guest-posting-services-compare__table td + td {
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.guest-posting-services-compare__table td {
  padding: 18px 28px;
  color: #53677e;
  font-size: 14px;
  line-height: 1.45;
  vertical-align: middle;
}

.guest-posting-services-compare__table td:first-child {
  text-align: center;
}

.guest-posting-services-compare__table td:nth-child(4) {
  text-align: center;
}

.guest-posting-services-compare__table td strong {
  color: #53677e;
  font-weight: 700;
}

.guest-posting-services-compare__table tbody tr:nth-child(odd) td {
  background: #dcebec;
}

.guest-posting-services-compare__table tbody tr:nth-child(even) td {
  background: #f8fafb;
}

.guest-posting-services-compare__pill {
  width: min(100%, 236px);
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
}

.guest-posting-services-compare__pill--green {
  background: #daf7ed;
  color: #047a55;
}

.guest-posting-services-compare__pill--yellow {
  background: #fff0d3;
  color: #9a4c00;
}

.guest-posting-services-compare__pill--red {
  background: #ffe5e5;
  color: #bd2727;
}

.guest-posting-services-compare__note {
  max-width: 850px;
  margin: 46px auto 0;
  text-align: center;
  color: #53677e;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 1024px) {
  .guest-posting-services-compare {
    padding-top: 68px;
    padding-bottom: 64px;
  }

  .guest-posting-services-compare__header {
    margin-bottom: 40px;
  }

  .guest-posting-services-compare__header h2 br,
  .guest-posting-services-compare__header p br,
  .guest-posting-services-compare__note br {
    display: none;
  }

  .guest-posting-services-compare__table-wrap {
    border-radius: 8px;
  }
}

/* Mobile: convert table rows into cards */
@media (max-width: 760px) {
  .guest-posting-services-compare {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .guest-posting-services-compare__header h2 {
    font-size: 31px;
    margin-bottom: 18px;
  }

  .guest-posting-services-compare__header p {
    font-size: 14.5px;
  }

  .guest-posting-services-compare__table-wrap {
    overflow: visible;
  }

  .guest-posting-services-compare__table {
    min-width: 0;
    display: block;
  }

  .guest-posting-services-compare__table thead {
    display: none;
  }

  .guest-posting-services-compare__table tbody {
    display: grid;
    gap: 16px;
  }

  .guest-posting-services-compare__table tr {
    display: block;
    border: 1px solid #cfe1e2;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(17, 59, 81, 0.08);
  }

  .guest-posting-services-compare__table td {
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-left: 0 !important;
    border-bottom: 1px solid #e4ebee;
    text-align: left !important;
    font-size: 14px;
    background: #ffffff !important;
  }

  .guest-posting-services-compare__table td:last-child {
    border-bottom: 0;
  }

  .guest-posting-services-compare__table td::before {
    content: attr(data-label);
    color: #10384f;
    font-size: 13px;
    font-weight: 800;
  }

  .guest-posting-services-compare__table td:first-child {
    background: #087a31 !important;
    color: #ffffff;
  }

  .guest-posting-services-compare__table td:first-child::before,
  .guest-posting-services-compare__table td:first-child strong {
    color: #ffffff;
  }

  .guest-posting-services-compare__pill {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .guest-posting-services-compare__note {
    margin-top: 30px;
    font-size: 14px;
  }
}

/* Small mobile */
@media (max-width: 430px) {
  .guest-posting-services-compare__table td {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .guest-posting-services-compare__pill {
    width: 100%;
  }
}

/* ================================
   Guest Posting Services Packages
   Uses existing: .section, .container
================================ */

.guest-posting-services-packages {
  background: #04742e;
  padding-top: 88px;
  padding-bottom: 102px;
  color: #ffffff;
}

.guest-posting-services-packages__header {
  max-width: 980px;
  margin: 0 auto 48px;
  text-align: center;
}

.guest-posting-services-packages__header h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -1px;
}

.guest-posting-services-packages__header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  line-height: 1.7;
}

.guest-posting-services-packages__grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.guest-posting-services-packages__card {
  min-height: 227px;
  padding: 38px 48px;
  border: 1px solid #77cf7a;
  border-radius: 4px;
  background: #e3f0e8;
  color: #10384f;
  box-shadow: 0 4px 8px rgba(0, 47, 18, 0.22);
}

.guest-posting-services-packages__card h3 {
  position: relative;
  margin: 0 0 24px;
  padding-left: 34px;
  color: #10384f;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.guest-posting-services-packages__card h3::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1.8px solid #058747;
  border-radius: 50%;
  color: #058747;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.guest-posting-services-packages__card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0 0 0 34px;
  list-style: none;
}

.guest-posting-services-packages__card li {
  position: relative;
  color: #53677e;
  font-size: 14px;
  line-height: 1.35;
}

.guest-posting-services-packages__card li::before {
  content: "✓";
  position: absolute;
  left: -22px;
  top: 1px;
  width: 13px;
  height: 13px;
  display: grid;
  place-items: center;
  border: 1.4px solid #058747;
  border-radius: 50%;
  color: #058747;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
}

.guest-posting-services-packages__card--wide {
  grid-column: 1 / -1;
  min-height: 185px;
  padding-top: 36px;
  padding-bottom: 42px;
  text-align: center;
}

.guest-posting-services-packages__card--wide h3 {
  display: inline-block;
  margin-bottom: 28px;
  text-align: left;
}

.guest-posting-services-packages__wide-list {
  max-width: 610px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  text-align: left;
}

.guest-posting-services-packages__wide-list ul {
  padding-left: 24px;
}

/* Tablet */
@media (max-width: 1024px) {
  .guest-posting-services-packages {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .guest-posting-services-packages__grid {
    max-width: 760px;
    grid-template-columns: 1fr;
  }

  .guest-posting-services-packages__card--wide {
    grid-column: auto;
  }

  .guest-posting-services-packages__wide-list {
    grid-template-columns: 1fr;
    gap: 11px;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .guest-posting-services-packages {
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .guest-posting-services-packages__header {
    margin-bottom: 34px;
  }

  .guest-posting-services-packages__header h2 {
    font-size: 31px;
  }

  .guest-posting-services-packages__header p {
    font-size: 14.5px;
  }

  .guest-posting-services-packages__header p br {
    display: none;
  }

  .guest-posting-services-packages__card {
    min-height: auto;
    padding: 30px 22px;
  }

  .guest-posting-services-packages__card h3 {
    font-size: 17px;
    padding-left: 32px;
  }

  .guest-posting-services-packages__card ul {
    padding-left: 32px;
  }

  .guest-posting-services-packages__card li {
    font-size: 14px;
  }

  .guest-posting-services-packages__card--wide {
    text-align: left;
  }

  .guest-posting-services-packages__card--wide h3 {
    display: block;
  }
}


/* ================================
   Guest Posting Services Who
================================ */

.guest-posting-services-who {
  background: linear-gradient(135deg, #178f3f 0%, #04742e 100%);
  padding-top: 100px;
  padding-bottom: 80px;
  color: #ffffff;
}

.guest-posting-services-who__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px 76px;
  align-items: start;
}

.guest-posting-services-who__content {
  max-width: 385px;
  padding-top: 12px;
}

.guest-posting-services-who__content h2 {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.16;
  font-weight: 400;
  letter-spacing: -1px;
}

.guest-posting-services-who__content p {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  line-height: 1.75;
}

.guest-posting-services-who__btn {
  min-width: 264px;
  min-height: 50px;
  justify-content: center;
  border-radius: 11px;
  background: #ffffff;
  color: #087d33;
  font-weight: 700;
}

.guest-posting-services-who__btn:hover {
  background: #ffffff;
  color: #087d33;
  transform: translateY(-2px);
}

.guest-posting-services-who__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.guest-posting-services-who__card,
.guest-posting-services-who__wide-card {
  border: 1px solid rgba(196, 245, 202, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
}

.guest-posting-services-who__card {
  min-height: 187px;
  padding: 31px 30px 28px;
}

.guest-posting-services-who__card h3,
.guest-posting-services-who__wide-card h3 {
  margin: 0 0 19px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
}

.guest-posting-services-who__card p,
.guest-posting-services-who__wide-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.guest-posting-services-who__wide-card {
  grid-column: 1 / -1;
  min-height: 107px;
  padding: 25px 42px 27px;
}

.guest-posting-services-who__wide-card h3 {
  margin-bottom: 12px;
}

/* Tablet */
@media (max-width: 1024px) {
  .guest-posting-services-who {
    padding-top: 76px;
    padding-bottom: 68px;
  }

  .guest-posting-services-who__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .guest-posting-services-who__content {
    max-width: 680px;
    padding-top: 0;
  }

  .guest-posting-services-who__content h2 br {
    display: none;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .guest-posting-services-who {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .guest-posting-services-who__content h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .guest-posting-services-who__content p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .guest-posting-services-who__btn {
    width: 100%;
    min-width: 0;
  }

  .guest-posting-services-who__cards {
    grid-template-columns: 1fr;
  }

  .guest-posting-services-who__card,
  .guest-posting-services-who__wide-card {
    min-height: auto;
    padding: 22px 22px;
  }

  .guest-posting-services-who__wide-card {
    grid-column: auto;
  }

  .guest-posting-services-who__card h3,
  .guest-posting-services-who__wide-card h3 {
    font-size: 18px;
  }

  .guest-posting-services-who__card p,
  .guest-posting-services-who__wide-card p {
    font-size: 14px;
  }
}

/* ================================
   Guest Posting Services Choose
================================ */

.guest-posting-services-choose {
  background: #ffffff;
  padding-top: 84px;
  padding-bottom: 84px;
}

.guest-posting-services-choose__header {
  max-width: 940px;
  margin: 0 auto 48px;
  text-align: center;
}

.guest-posting-services-choose__header h2 {
  margin: 0 0 24px;
  color: #113b51;
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.14;
  font-weight: 400;
  letter-spacing: -1px;
}

.guest-posting-services-choose__header h2 span {
  color: #54b957;
  font-weight: 700;
}

.guest-posting-services-choose__header p {
  margin: 0;
  color: #66778a;
  font-size: 14px;
  line-height: 1.65;
}

.guest-posting-services-choose__grid {
  max-width: 1145px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 17px;
}

.guest-posting-services-choose__card {
  min-height: 286px;
  padding: 43px 32px 34px;
  border: 1px solid #c5c5c5;
  border-radius: 14px;
  background: #ffffff;
  box-shadow:
    0 4px 0 rgba(17, 59, 81, 0.12),
    0 12px 24px rgba(17, 59, 81, 0.08);
}

.guest-posting-services-choose__card strong {
  display: block;
  margin-bottom: 5px;
  color: #10384f;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

.guest-posting-services-choose__card strong span {
  color: #02b54b;
}

.guest-posting-services-choose__card h3 {
  margin: 0 0 22px;
  color: #1d2b3a;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 500;
}

.guest-posting-services-choose__card p {
  margin: 0;
  color: #66778a;
  font-size: 14px;
  line-height: 1.65;
}

/* Tablet */
@media (max-width: 1024px) {
  .guest-posting-services-choose {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .guest-posting-services-choose__grid {
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 680px) {
  .guest-posting-services-choose {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .guest-posting-services-choose__header {
    margin-bottom: 34px;
  }

  .guest-posting-services-choose__header h2 {
    font-size: 31px;
  }

  .guest-posting-services-choose__header h2 br,
  .guest-posting-services-choose__header p br {
    display: none;
  }

  .guest-posting-services-choose__header p {
    font-size: 14.5px;
  }

  .guest-posting-services-choose__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .guest-posting-services-choose__card {
    min-height: auto;
    padding: 34px 24px 30px;
  }

  .guest-posting-services-choose__card strong {
    font-size: 38px;
  }

  .guest-posting-services-choose__card h3 {
    margin-bottom: 16px;
  }

  .guest-posting-services-choose__card p {
    font-size: 13.5px;
  }
}

/* ================================
   Guest Posting Services Results
================================ */

.guest-posting-services-results {
  background: #eaf0f7;
  padding-top: 76px;
  padding-bottom: 84px;
}

.guest-posting-services-results__header {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}

.guest-posting-services-results__header h2 {
  margin: 0 0 20px;
  color: #113b51;
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.16;
  font-weight: 400;
  letter-spacing: -1px;
}

.guest-posting-services-results__header p {
  margin: 0;
  color: #66778a;
  font-size: 14px;
  line-height: 1.65;
}

.guest-posting-services-results__grid {
  max-width: 1070px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.guest-posting-services-results__card {
  position: relative;
  min-height: 322px;
  padding: 28px 20px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 3px solid #2bb91b;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 0 rgba(43, 185, 31, 0.9);
}

.guest-posting-services-results__number {
  position: absolute;
  top: 15px;
  left: 15px;
  min-width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #29b51c;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.guest-posting-services-results__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ebf9ed;
}

.guest-posting-services-results__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.guest-posting-services-results__card h3 {
  margin: 0 0 17px;
  color: #10384f;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.guest-posting-services-results__card p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.45;
}

.guest-posting-services-results__card strong {
  display: block;
  margin: 8px 0 15px;
  color: #03b84d;
  font-size: clamp(30px, 3vw, 34px);
  line-height: 1;
  font-weight: 600;
}

.guest-posting-services-results__note {
  margin: 44px auto 0;
  text-align: center;
  color: #047a31;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 1024px) {
  .guest-posting-services-results {
    padding-top: 68px;
    padding-bottom: 70px;
  }

  .guest-posting-services-results__grid {
    max-width: 720px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .guest-posting-services-results {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .guest-posting-services-results__header {
    margin-bottom: 34px;
  }

  .guest-posting-services-results__header h2 {
    font-size: 31px;
  }

  .guest-posting-services-results__header p {
    font-size: 14.5px;
  }

  .guest-posting-services-results__header p br {
    display: none;
  }

  .guest-posting-services-results__grid {
    grid-template-columns: 1fr;
  }

  .guest-posting-services-results__card {
    min-height: auto;
    padding: 34px 22px 32px;
  }

  .guest-posting-services-results__note {
    margin-top: 32px;
    font-size: 14.5px;
  }
}

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

@media (max-width: 1100px) {
  .guest-posting-services-hero {
    padding-top: 72px;
  }

  .guest-posting-services-hero__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .guest-posting-services-hero__content {
    max-width: 760px;
  }

  .guest-posting-services-hero__form-card {
    max-width: 640px;
    width: 100%;
  }

  .guest-posting-services-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guest-posting-services-intro__content {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .guest-posting-services-hero {
    min-height: auto;
    padding: 56px 0 120px;
  }

  .guest-posting-services-hero__bg {
    object-position: 62% center;
  }

  .guest-posting-services-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(2, 13, 38, 0.96) 0%,
        rgba(3, 31, 71, 0.86) 62%,
        rgba(3, 21, 50, 0.68) 100%
      );
  }

  .guest-posting-services-hero__content h1 {
    font-size: clamp(36px, 3.8vw, 38px);
    line-height: 1.12;
  }

  .guest-posting-services-hero__content h1 br {
    display: none;
  }

  .guest-posting-services-hero__content p {
    font-size: 15px;
  }

  .guest-posting-services-hero__btn {
    width: 100%;
  }

  .guest-posting-services-hero__form-card {
    min-height: auto;
    padding: 30px 20px 36px;
  }

  .guest-posting-services-hero__form-row {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }

  .guest-posting-services-hero__form input,
  .guest-posting-services-hero__form textarea {
    font-size: 16px;
  }

  .guest-posting-services-hero__chart-bars {
    display: none;
  }

  .guest-posting-services-stats {
    bottom: -185px;
    grid-template-columns: 1fr;
    gap: 24px;
    width: calc(100% - 32px);
    padding: 28px 20px;
  }

  .guest-posting-services-intro {
    padding-top: 250px;
    padding-bottom: 58px;
  }

  .guest-posting-services-intro__left h2 br {
    display: none;
  }

  .guest-posting-services-intro__btn {
    width: 100%;
  }

  .guest-posting-services-intro__content p {
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .guest-posting-services-hero__submit {
    width: 100%;
    min-width: 0;
  }

  .guest-posting-services-intro {
    padding-top: 275px;
  }
}

    
     /* ============================
         Performance Marketing Page CSS
    ======================================== */
    
    /* ================================
                Hero
================================ */

.performance-marketing-hero {
  position: relative;
  min-height: 664px;
  padding: 82px 0 150px 0;
  overflow: visible;
  color: var(--white);
  background:
    radial-gradient(circle at 48% 65%, rgba(0, 92, 145, 0.18), transparent 24%),
    linear-gradient(180deg, #071d31 0%, #061a2d 100%);
}

.performance-marketing-hero::after {
  content: "";
  position: absolute;
  left: 43%;
  right: 0;
  bottom: 0;
  height: 210px;
  background: repeating-linear-gradient(
    90deg,
    rgba(6, 80, 124, 0.18) 0 38px,
    transparent 38px 68px
  );
  opacity: 0.42;
  pointer-events: none;
}

.performance-marketing-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 543px;
  align-items: start;
  gap: 74px;
}

.performance-marketing-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 21px;
  margin-bottom: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(100, 196, 107, 0.42), rgba(3, 117, 72, 0.33));
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  letter-spacing: 0.2px;
}

.performance-marketing-title {
  max-width: 570px;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 3.8vw, 38px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -2px;
}

.performance-marketing-title span {
  color: #0baa3f;
}

.performance-marketing-copy {
  width: min(610px, 100%);
  margin-top: 19px;
}

.performance-marketing-copy p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.72;
  letter-spacing: 0.05px;
}

.performance-marketing-copy p + p {
  margin-top: 14px;
}

.performance-marketing-copy .performance-marketing-green-text {
  color: #18e022;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.performance-marketing-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.performance-marketing-actions .btn {
  white-space: normal;
}

.performance-marketing-main-btn,
.performance-marketing-light-btn {
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  height: 60px;
  min-height: 60px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  border-radius: 9px;
  margin-top: 20px;
  box-sizing: border-box;
}

.performance-marketing-light-btn {
  color: #0a3048;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.performance-marketing-decor-line {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 528px;
  height: 190px;
  right: 389px;
  top: 242px;
  opacity: 0.55;
}

.performance-marketing-decor-line svg {
  width: 100%;
  height: 100%;
}

.performance-marketing-mini-bars {
  position: absolute;
  z-index: 1;
  left: 48.2%;
  bottom: 130px;
  width: 112px;
  height: 108px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  opacity: 0.85;
  pointer-events: none;
}

.performance-marketing-mini-bars span {
  display: block;
  width: 38px;
  background: linear-gradient(180deg, rgba(123, 230, 223, 0.9), rgba(0, 86, 128, 0));
}

.performance-marketing-mini-bars span:first-child {
  height: 56px;
  opacity: 0.45;
}

.performance-marketing-mini-bars span:last-child {
  height: 98px;
}

.performance-marketing-query-card {
  position: relative;
  overflow: hidden;
  min-height: 464px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 32% 95%, rgba(0, 177, 236, 0.45), transparent 36%),
    linear-gradient(135deg, rgba(1, 20, 66, 0.94), rgba(0, 88, 130, 0.88));
  box-shadow: 0 20px 60px rgba(1, 11, 31, 0.22);
  padding-left: 40px;
    padding-top: 20px;
}

.performance-marketing-query-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 20%, rgba(255, 255, 255, 0.07) 20.3%, transparent 20.7%),
    linear-gradient(90deg, transparent 0 70%, rgba(255, 255, 255, 0.045) 70% 78%, transparent 78%);
  pointer-events: none;
}

.performance-marketing-chart-bars {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 300px;
  opacity: 0.17;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  pointer-events: none;
}

.performance-marketing-chart-bars span {
  width: 38px;
  background: linear-gradient(180deg, rgba(74, 217, 255, 0.45), rgba(16, 104, 171, 0.06));
}

.performance-marketing-chart-bars span:nth-child(1) { height: 116px; }
.performance-marketing-chart-bars span:nth-child(2) { height: 132px; }
.performance-marketing-chart-bars span:nth-child(3) { height: 78px; }
.performance-marketing-chart-bars span:nth-child(4) { height: 132px; }
.performance-marketing-chart-bars span:nth-child(5) { height: 178px; }
.performance-marketing-chart-bars span:nth-child(6) { height: 226px; }
.performance-marketing-chart-bars span:nth-child(7) { height: 300px; }

.performance-marketing-form {
  position: relative;
  z-index: 2;
  padding: 36px 38px 34px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.performance-marketing-form h3 {
  margin: 0 0 22px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.performance-marketing-form p {
  
  color: #fff;
  text-align: left;
  
}

.performance-marketing-form .boost-form-row {
  gap: 24px;
  margin-bottom: 20px;
}

.performance-marketing-form .boost-field {
  margin-bottom: 20px;
}

.performance-marketing-form .boost-field input,
.performance-marketing-form .boost-field textarea {
  border-radius: 5px;
  border: 2px solid rgba(211, 229, 247, 0.48);
  background: rgba(3, 31, 63, 0.18);
  color: #fff;
  font-size: 18px;
  padding: 0 20px;
}

.performance-marketing-form .boost-field input {
  height: 50px;
}

.performance-marketing-form .boost-field textarea {
  min-height: 119px;
  padding-top: 13px;
  resize: vertical;
}

.performance-marketing-form .boost-field input::placeholder,
.performance-marketing-form .boost-field textarea::placeholder {
  color: rgba(226, 237, 248, 0.72);
}

.performance-marketing-submit {
  width: auto;
  min-width: 187px;
  min-height: 55px;
  margin: 1px auto 0;
  padding: 0 25px;
  border-radius: 5px;
  background: #2ec118;
  font-size: 18px;
}

.performance-marketing-stats-card {
  position: absolute;
  z-index: 5;
  left: 50%;
  
  transform: translateX(-50%);
  width: min(1064px, calc(100% - 72px));
  min-height: 164px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 21px 42px 24px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 3px 0 rgba(6, 47, 73, 0.12), 0 16px 35px rgba(4, 26, 43, 0.22);
  margin-top: 60px;
  
}

.performance-marketing-stat {
  text-align: center;
  color: #51637b;
  padding: 0 18px;
}

.performance-marketing-stat-icon {
  width: 37px;
  height: 37px;
  margin: 0 auto 7px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf2ff;
  border: 1px solid #a9c7ff;
  color: #0064ff;
}

.performance-marketing-stat-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.performance-marketing-stat:nth-child(2) .performance-marketing-stat-icon,
.performance-marketing-stat:nth-child(4) .performance-marketing-stat-icon {
  background: #e5fae9;
  border-color: #91e7aa;
  color: #09b64c;
}

.performance-marketing-stat strong {
  display: block;
  margin-bottom: 2px;
  font-size: 24px;
  line-height: 1;
  color: #0064ff;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.performance-marketing-stat:nth-child(2) strong,
.performance-marketing-stat:nth-child(4) strong {
  color: #06b74d;
}

.performance-marketing-stat p {
  max-width: 210px;
  margin: 0 auto;
  color: #51637b;
  font-size: 12.5px;
  line-height: 1.35;
}

.performance-marketing-brands {
  
  text-align: center;
  background: #fff;
  padding-top: 130px;
  padding-bottom: 55px;
}

.performance-marketing-brands h2 {
  margin: 0 0 34px;
  color: #113a52;
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -1.3px;
}

.performance-marketing-chips {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.performance-marketing-chips span {
  min-width: 126px;
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7ed76f 0%, #01823a 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 13px 19px rgba(20, 133, 69, 0.22);
}

@media (max-width: 1100px) {
  .performance-marketing-hero {
    min-height: auto;
    padding-bottom: 120px;
  }

  .performance-marketing-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .performance-marketing-query-card {
    width: min(640px, 100%);
    margin: 0 auto;
  }

  .performance-marketing-decor-line,
  .performance-marketing-mini-bars {
    display: none;
  }

}

@media (max-width: 768px) {
  .performance-marketing-hero {
    padding-top: 42px;
    padding-bottom: 210px;
  }

  .performance-marketing-title {
    font-size: 38px;
  }

 .performance-marketing-actions {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12px;
  width: 100%;
  text-align: center;
}

.performance-marketing-main-btn,
.performance-marketing-light-btn {
  flex: 0 0 auto;
  width: 280px;
  min-width: 280px;
  max-width: calc(100vw - 32px);
  height: 60px;
  min-height: 60px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 13px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

  .performance-marketing-form {
    padding: 29px 20px 28px;
  }

  .performance-marketing-form .boost-form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .performance-marketing-stats-card {
    width: calc(100% - 32px);
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 8px;
    padding: 27px 16px;
  }

  .performance-marketing-brands {
    margin-top: 45px;
    margin-bottom: 45px;
    padding-top: 225px;
    padding-bottom: 60px;
  }

  .performance-marketing-chips {
    gap: 14px;
  }
}

/* Only stack buttons on very small screens */
@media (max-width: 520px) {

  .performance-marketing-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    text-align: center;
  }

  .performance-marketing-main-btn,
  .performance-marketing-light-btn {
    width: 280px;
    min-width: 280px;
    max-width: calc(100vw - 32px);
    height: 60px;
    min-height: 60px;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .performance-marketing-title {
    font-size: 36px;
  }

  .performance-marketing-eyebrow {
    font-size: 12px;
    padding-inline: 14px;
  }

  .performance-marketing-stats-card {
    grid-template-columns: 1fr;
    bottom: -320px;
  }

  .performance-marketing-hero {
    padding-bottom: 315px;
  }

  .performance-marketing-brands {
    padding-top: 360px;
  }

  .performance-marketing-chips span {
    width: 100%;
  }
}
    
     /* ==========================================
             Clients Marquee Performance Marketing
   =================================================== */
    
    
.clients-p {
  padding: 120px 0 50px 0; /* reduced top-bottom space */
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
  background-color: #EEF6ED;
}

.clients-p__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #051A41;
  margin-bottom: 20px; /* 🔥 reduced spacing */
}

.marquee-outer-p {
  overflow: hidden;
}

/* Track */
.marquee-track-p {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: marquee 22s linear infinite;
  will-change: transform;
  backface-visibility: hidden; /* important */
  transform: translateZ(0);
  padding-top:20px;
}

.marquee-track-p:hover {
  animation-play-state: paused;
}

/* Logo container */
.marquee-item-p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  height: 100px;   
  width: auto;    

  opacity: 1;
  transition: opacity 0.3s ease;
}

.marquee-item-p:hover {
  opacity: 1;
}

/* 🔥 BIGGER LOGOS */
.marquee-item-p img {
  height: 140px;  
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* Animation */
@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .clients-p {
    padding: 380px 0 10px 0;
  }

  .marquee-track-p {
    gap: 15px;
    animation-duration: 18s;
    padding-top:20px;
  }

  .marquee-item-p {
    height: 55px;
  }

  .marquee-item-p img {
    height: 45px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .marquee-track-p {
    animation: none;
  }
}
    
    /* ==========================================
             Performance Marketing Matters Section
   =================================================== */

.performance-marketing-matters {
  margin-top: 55px;
  padding-top: 77px;
  padding-bottom: 95px;
  background: #eaf0f7;
}

.performance-marketing-matters__grid {
  grid-template-columns: 1.06fr 0.94fr;
  gap: 64px;
  align-items: start;
}

.performance-marketing-matters__content {
  max-width: 620px;
}

.performance-marketing-matters__title {
  margin: 0 0 27px;
  color: #123c52;
  font-size: clamp(32px, 3.25vw, 38px);
  line-height: 1.32;
  font-weight: 400;
  letter-spacing: 0.8px;
}

.performance-marketing-matters__title span {
  color: #209a43;
}

.performance-marketing-matters__content p {
  max-width: 610px;
  margin: 0;
  color: #56687f;
  line-height: 1.52;
}

.performance-marketing-matters__content p + p {
  margin-top: 25px;
}

.performance-marketing-matters__content u {
  text-underline-offset: 3px;
}

.performance-marketing-matters__right {
  width: 100%;
}

.performance-marketing-matters__revenue-card {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 33px 34px 28px;
  border-radius: 8px;
  background: #092946;
  color: #ffffff;
}

.performance-marketing-matters__revenue-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 8px;
  color: #008833;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.performance-marketing-matters__revenue-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

.performance-marketing-matters__revenue-card b {
  color: #ffffff;
  font-weight: 800;
}

.performance-marketing-matters__circle {
  position: absolute;
  top: -78px;
  right: -55px;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: rgba(31, 132, 75, 0.48);
}

.performance-marketing-matters__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
  margin-top: 24px;
}

.performance-marketing-matters__stat-card {
  min-height: 159px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 22px;
  text-align: center;
  border: 1px solid #d8dde4;
  border-radius: 8px;
  background: #ffffff;
}

.performance-marketing-matters__stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: #0863f7;
  font-size: clamp(42px, 4vw, 52px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.performance-marketing-matters__stat-card:nth-child(2) strong {
  color: #2ab528;
}

.performance-marketing-matters__stat-card p {
  margin: 0;
  color: #52647b;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .performance-marketing-matters {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .performance-marketing-matters__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .performance-marketing-matters__content {
    max-width: 100%;
  }

  .performance-marketing-matters__content p {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .performance-marketing-matters {
    margin-top: 35px;
    margin-bottom: 35px;
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .performance-marketing-matters__title {
    font-size: 30px;
    line-height: 1.25;
  }

  .performance-marketing-matters__title br {
    display: none;
  }

  .performance-marketing-matters__revenue-card {
    padding: 28px 22px;
  }

  .performance-marketing-matters__stats {
    grid-template-columns: 1fr;
  }

  .performance-marketing-matters__stat-card {
    min-height: 140px;
  }
}

  /* ==========================================
             Performance Marketing Services Section
   =================================================== */

/* =================================
   SEO-Friendly Services Cards
================================= */

.performance-marketing-services {
  --performance-marketing-services-count: 6;
  position: relative;
  min-height: 100vh;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 0;
  background: #eef7ed;
}

.performance-marketing-services__sticky {
   position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}

.performance-marketing-services__layout {
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 82px;
  align-items: center;
}

.performance-marketing-services__left {
  max-width: 470px;
}

.performance-marketing-services__left h2 {
  margin: 0 0 23px;
  color: #113b51;
  font-size: clamp(32px, 3vw, 38px);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -1.3px;
}

.performance-marketing-services__left p {
  max-width: 405px;
  margin: 0 0 35px;
  color: #5e6e6e;
  font-size: 12px;
  line-height: 1.85;
}

.performance-marketing-services__btn {
  min-width: 221px;
  justify-content: center;
  border-radius: 8px;
}

.performance-marketing-services__right {
  position: relative;
}

.performance-marketing-services__cards {
   position: relative;
  cursor: ns-resize;
}

.performance-marketing-services__card {
  position: relative;
  min-height: 620px;
  padding: 48px 51px 86px;
  overflow: hidden;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(11, 29, 58, 0.04);
}

/* JS enhanced mode: visually show one card */
.performance-marketing-services.is-enhanced .performance-marketing-services__cards {
  min-height: 620px;
}

.performance-marketing-services.is-enhanced .performance-marketing-services__card {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.performance-marketing-services.is-enhanced .performance-marketing-services__card.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.performance-marketing-services__card + .performance-marketing-services__card {
  margin-top: 24px;
}

.performance-marketing-services.is-enhanced .performance-marketing-services__card + .performance-marketing-services__card {
  margin-top: 0;
}

.performance-marketing-services__badge {
  position: absolute;
  top: 23px;
  right: 23px;
  min-width: 31px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #2fb51d;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
}

.performance-marketing-services__icon {
  width: 67px;
  height: 67px;
  margin-bottom: 11px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f7e8;
  color: #16833a;
}

.performance-marketing-services__icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.performance-marketing-services__card h3 {
  margin: 0 0 23px;
  color: #0d3850;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.performance-marketing-services__content {
  max-width: 565px;
}

.performance-marketing-services__content p,
.performance-marketing-services__content li {
  color: #54677f;
  font-size: 12px;
  line-height: 1.68;
}

.performance-marketing-services__content p {
  margin: 0;
}

.performance-marketing-services__content p + p {
  margin-top: 8px;
}

.performance-marketing-services__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.performance-marketing-services__content li {
  position: relative;
  margin-top: 18px;
  padding-left: 10px;
}

.performance-marketing-services__content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #54677f;
}

.performance-marketing-services__next {
  position: absolute;
  right: 28px;
  bottom: 27px;
  z-index: 5;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #2dbc17;
  transition: transform 0.2s ease, color 0.2s ease;
}

.performance-marketing-services__next:hover {
  color: #138f2f;
  transform: translateY(3px);
}

.performance-marketing-services__next svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.performance-marketing-services__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.performance-marketing-services__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 59, 81, 0.22);
  transition: width 0.2s ease, background 0.2s ease;
}

.performance-marketing-services__dot.is-active {
  width: 24px;
  background: #2fb51d;
}

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

  .performance-marketing-services__left {
    max-width: 100%;
    text-align: center;
  }

  .performance-marketing-services__left p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .performance-marketing-services__right {
    max-width: 720px;
    margin: 0 auto;
  }

  .performance-marketing-services__card,
  .performance-marketing-services.is-enhanced .performance-marketing-services__cards {
    min-height: 760px;
  }
}

@media (max-width: 768px) {
  .performance-marketing-services {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .performance-marketing-services__sticky {
    position: relative;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .performance-marketing-services__layout {
    gap: 32px;
  }

  .performance-marketing-services__left {
    text-align: left;
  }

  .performance-marketing-services__left h2 {
    font-size: 31px;
  }

  .performance-marketing-services__left p {
    margin-left: 0;
    margin-right: 0;
  }

.performance-marketing-services__btn {
  width: 220px;
  max-width: calc(100vw - 32px);
  margin-left: auto;
  margin-right: auto;
}

  .performance-marketing-services.is-enhanced .performance-marketing-services__cards {
    min-height: auto;
  }

  .performance-marketing-services.is-enhanced .performance-marketing-services__card {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

 .performance-marketing-services__card,
.performance-marketing-services.is-enhanced .performance-marketing-services__card {
  min-height: auto;
  height: auto;
  overflow: visible;
  padding: 34px 22px 42px;
}

  .performance-marketing-services__card + .performance-marketing-services__card,
  .performance-marketing-services.is-enhanced .performance-marketing-services__card + .performance-marketing-services__card {
    margin-top: 20px;
  }

  .performance-marketing-services__next,
  .performance-marketing-services__dots {
    display: none;
  }
}

/* ==========================================
             Performance Marketing Industries Section
   =================================================== */

.performance-marketing-industries {
  background: #eaf0f7;
  padding-top: 76px;
  padding-bottom: 90px;
}

.performance-marketing-industries__header {
  max-width: 930px;
  margin: 0 auto 42px;
  text-align: center;
}

.performance-marketing-industries__header h2 {
  margin: 0 0 8px;
  color: #113b51;
  font-size: clamp(32px, 3.4vw, 42px);
  font-weight: 400;
  letter-spacing: -1px;
}

.performance-marketing-industries__header p {
  color: #0f3950;
  line-height: 1.6;
}

.performance-marketing-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 26px;
}

.performance-marketing-industries__card {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 18px;
  min-height: 141px;
  padding: 24px 18px;
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  background: #ffffff;
}

.performance-marketing-industries__icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff1e6;
  color: #2bb91b;
}

.performance-marketing-industries__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.performance-marketing-industries__card h3 {
  margin: 8px 0 14px;
  color: #141b2a;
  font-size: 18px;
  font-weight: 600;
}

.performance-marketing-industries__card p {
  margin: 0;
  color: #53677e;
  line-height: 1.45;
}

.performance-marketing-industries__cta {
  margin-top: 42px;
  text-align: center;
}

.performance-marketing-industries__cta .btn {
  min-width: 222px;
  justify-content: center;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .performance-marketing-industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .performance-marketing-industries__header p br {
    display: none;
  }
}

@media (max-width: 680px) {
  .performance-marketing-industries {
    padding-top: 52px;
    padding-bottom: 60px;
  }

  .performance-marketing-industries__grid {
    grid-template-columns: 1fr;
  }

  .performance-marketing-industries__card {
    min-height: auto;
  }

  .performance-marketing-industries__cta .btn {
    width: 100%;
  }
}

/* ================================
   Performance Marketing Apart
   Uses existing: .section, .container, .btn
================================ */

.performance-marketing-apart {
  background: #f2fbf4;
  padding-top: 76px;
  padding-bottom: 88px;
}

.performance-marketing-apart__title {
  margin: 0 0 48px;
  text-align: center;
  color: #113b51;
  font-size: clamp(34px, 3.4vw, 42px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -1px;
}

.performance-marketing-apart__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: stretch;
}

.performance-marketing-apart__feature-card {
  min-height: 536px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 40px;
  border-radius: 22px;
  background: #047c33;
  color: #ffffff;
}

.performance-marketing-apart__feature-card h3 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(34px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -1px;
}

.performance-marketing-apart__feature-card p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.performance-marketing-apart__white-btn {
  width: fit-content;
  min-width: 173px;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  background: #ffffff;
  color: #047c33;
  font-size: 14px;
  font-weight: 800;
}

.performance-marketing-apart__white-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #047c33;
}

.performance-marketing-apart__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.performance-marketing-apart__card {
  min-height: 248px;
  padding: 24px 24px 28px;
  border: 1px solid #dce8e1;
  border-radius: 17px;
  background: #ffffff;
}

.performance-marketing-apart__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 17px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e7f5e9;
  color: #178844;
}

.performance-marketing-apart__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.performance-marketing-apart__card h3 {
  margin: 0 0 12px;
  color: #10384f;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.performance-marketing-apart__card p {
  margin: 0;
  color: #666666;
  font-size: 13px;
  line-height: 1.72;
}

@media (max-width: 1024px) {
  .performance-marketing-apart__grid {
    grid-template-columns: 1fr;
  }

  .performance-marketing-apart__feature-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .performance-marketing-apart {
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .performance-marketing-apart__title {
    margin-bottom: 32px;
  }

  .performance-marketing-apart__cards {
    grid-template-columns: 1fr;
  }

  .performance-marketing-apart__feature-card {
    padding: 34px 24px;
  }

  .performance-marketing-apart__white-btn {
    width: 100%;
  }
}

/* ================================
   Performance Marketing Tech Stack
================================ */

.performance-marketing-tech {
  background: #eaf0f7;
  padding-top: 96px;
  padding-bottom: 92px;
}

.performance-marketing-tech__header {
  max-width: 850px;
  margin: 0 auto 46px;
  text-align: center;
}

.performance-marketing-tech__header h2 {
  margin: 0 0 10px;
  color: #113b51;
  font-size: clamp(34px, 3.4vw, 42px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -1px;
}

.performance-marketing-tech__header p {
  margin: 0;
  color: #66778a;
  font-size: 16px;
  line-height: 1.65;
}

.performance-marketing-tech__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px 20px;
}

.performance-marketing-tech__card {
  position: relative;
  min-height: 152px;
  overflow: hidden;
  padding: 31px 40px 28px;
  border: 1.5px solid #27b622;
  border-radius: 17px;
  background: #ffffff;
}

.performance-marketing-tech__card h3 {
  margin: 0 0 8px;
  color: #10384f;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.performance-marketing-tech__card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #53677e;
  font-size: 12px;
  line-height: 1.45;
}

.performance-marketing-tech__mark {
  position: absolute;
  right: 15px;
  bottom: 6px;
  color: rgba(36, 154, 40, 0.12);
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
  pointer-events: none;
}

.performance-marketing-tech__card:nth-child(1) .performance-marketing-tech__mark {
  color: rgba(34, 111, 222, 0.12);
  font-size: 72px;
}

.performance-marketing-tech__card:nth-child(2) .performance-marketing-tech__mark {
  color: rgba(0, 105, 220, 0.16);
  font-size: 68px;
}

.performance-marketing-tech__card:nth-child(3) .performance-marketing-tech__mark {
  color: rgba(255, 143, 45, 0.18);
}

.performance-marketing-tech__card:nth-child(4) .performance-marketing-tech__mark {
  color: rgba(44, 117, 219, 0.12);
}

.performance-marketing-tech__card:nth-child(6) .performance-marketing-tech__mark,
.performance-marketing-tech__card:nth-child(7) .performance-marketing-tech__mark,
.performance-marketing-tech__card:nth-child(9) .performance-marketing-tech__mark {
  color: rgba(245, 120, 62, 0.16);
}

.performance-marketing-tech__card:nth-child(10) .performance-marketing-tech__mark {
  color: rgba(54, 181, 226, 0.18);
  font-size: 20px;
  bottom: 20px;
}

.performance-marketing-tech__card:nth-child(11) .performance-marketing-tech__mark,
.performance-marketing-tech__card:nth-child(12) .performance-marketing-tech__mark {
  color: rgba(123, 190, 58, 0.14);
}

@media (max-width: 1100px) {
  .performance-marketing-tech__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .performance-marketing-tech__card {
    padding-inline: 28px;
  }
}

@media (max-width: 820px) {
  .performance-marketing-tech {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .performance-marketing-tech__header p br {
    display: none;
  }

  .performance-marketing-tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .performance-marketing-tech__grid {
    grid-template-columns: 1fr;
  }

  .performance-marketing-tech__card {
    min-height: auto;
  }
}
    
    
    /* New Design CSS END */
    
    /* ══════════════════════════════
       CHALLENGES SECTION
    ══════════════════════════════ */
    .challenges-section { background: var(--navy); padding: 30px 0 }
    .challenges-section .section-label { background: background: rgba(52,183,26,0.15); color: #fff }
    .challenges-section .section-title { color: #fff }
    .challenges-section .section-subtitle { color: #fff }
    .challenges-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .challenge-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 16px;
      padding: 28px 24px;
      transition: all .25s;
    }
    .challenge-card:hover {
      background: rgba(255,255,255,.09);
      border-color: rgba(244,124,32,.4);
      transform: translateY(-4px);
    }
    .challenge-card__icon {
      width: 44px; height: 44px;
      background: var(--orange-light);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .challenge-card__icon svg { width: 22px; height: 22px; color: var(--Lime-Green) }
    .challenge-card h3 { color: #fff; font-size: .97rem; margin-bottom: 10px }
    .challenge-card p { color: rgba(255,255,255,.6); font-size: .84rem; line-height: 1.7 }

    /* ══════════════════════════════
       WHY US
    ══════════════════════════════ */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .why-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 32px 28px;
      text-align: center;
      transition: all .25s;
      position: relative;
    }
    .why-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #f47c20, #0b1d3a);
      border-radius: 0 0 20px 20px;
      transform: scaleX(0);
      transition: transform .3s;
    }
    .why-card:hover { box-shadow: 0 16px 48px rgba(11,29,58,.1); transform: translateY(-4px) }
    .why-card:hover::before { transform: scaleX(1) }
    .why-card__icon {
      width: 44px; height: 44px;
      margin: 0 auto 20px;
      background: var(--orange-light);
      border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
    }
    .why-card__icon svg { width: 30px; height: 30px; color: var(--Lime-Green) }
    .why-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: #0b1d3a }
    .why-card p { font-size: .84rem }
    
    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media(max-width:1024px){
      .why-grid { grid-template-columns: repeat(2,1fr) }
      .challenges-grid { grid-template-columns: repeat(2,1fr) }
    }
    @media(max-width:768px){
      .why-grid { grid-template-columns: 1fr }
      .challenges-grid { grid-template-columns: 1fr }
    }
    
/* ══════════════════════════════
    Social Media Optimization Page CSS 
══════════════════════════════════════════*/

/* Section */
.social-section {
  padding: 30px 20px;
  background: #224177;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Layout */
.social-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Content */
.social-content {
  flex: 1;
}

.social-content h2 {
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}

.social-content p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 500px;
}

/* Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px);
}

/* Brand Colors */
.fb { background: #3b5998; }
.ig { background: #333; }
.li { background: #0077b5; }
.tw { background: #1da1f2; }
.yt { background: #ff0000; }
.pi { background: #bd081c; }
.tt { background: #000; }

/* Right Image */
.social-image {
  flex: 1;
  text-align: center;
}

.social-image img {
  max-width: 100%;
  height: auto;
}

/* =====================================================
   SMO Agency Overview Section
===================================================== */

.smo-agency-overview {
  padding: 58px 0;
  background: #ffffff;
}

.smo-agency-overview__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: flex-start;
}

.smo-agency-overview__left {
  max-width: 380px;
}

.smo-agency-overview__title {
  margin: 0 0 24px;
  color: #113b51;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.smo-agency-overview__title span {
  color: #34B71A;
  font-weight: 700;
}

.smo-agency-overview__btn {
  min-width: 178px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  justify-content: center;
  gap: 8px;
}

.smo-agency-overview__right {
  max-width: 720px;
}

.smo-agency-overview__right p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.85;
}

.smo-agency-overview__right p + p {
  margin-top: 26px;
}

/* Tablet */
@media (max-width: 1024px) {
  .smo-agency-overview {
    padding: 52px 0;
  }

  .smo-agency-overview__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .smo-agency-overview__left,
  .smo-agency-overview__right {
    max-width: 100%;
  }

  .smo-agency-overview__left {
    text-align: center;
  }

  .smo-agency-overview__title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .smo-agency-overview__btn {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .smo-agency-overview {
    padding: 44px 0;
  }

  .smo-agency-overview__grid {
    gap: 24px;
  }

  .smo-agency-overview__title {
    font-size: 30px;
    line-height: 1.25;
  }

  .smo-agency-overview__right p {
    font-size: 13.5px;
    line-height: 1.75;
    text-align: left;
  }

  .smo-agency-overview__btn {
    width: 180px;
    max-width: calc(100vw - 32px);
  }
}


/* ================================
        SMO VS SMM Section
================================ */

.smo-agency {
  background: #eaf0f7;
  padding-top: 72px;
  padding-bottom: 72px;
}

.smo-agency__header {
  text-align: center;
  margin-bottom: 28px;
}

.smo-agency__header h2 {
  margin: 0 0 12px;
  color: #113b51;
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.8px;
}

.smo-agency__header p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.6;
}

.smo-agency__table-wrap {
  max-width: 970px;
  margin: 0 auto;
  overflow-x: auto;
}

.smo-agency__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
}

.smo-agency__table th {
  padding: 13px 34px;
  background: #087a31;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
  text-align: left;
}

.smo-agency__table th + th,
.smo-agency__table td + td {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.smo-agency__table td {
  padding: 11px 34px;
  color: #53677e;
  font-size: 13px;
  line-height: 1.45;
  background: #ffffff;
}

.smo-agency__table tbody tr:nth-child(odd) td {
  background: #dcebec;
}

.smo-agency__table tbody tr:nth-child(even) td {
  background: #f8fafb;
}

.smo-agency__note {
  margin: 39px auto 0;
  text-align: center;
  color: #53677e;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .smo-agency {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .smo-agency__table th,
  .smo-agency__table td {
    padding-left: 20px;
    padding-right: 20px;
  }

  .smo-agency__note {
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  .smo-agency__table {
    min-width: 640px;
  }

  .smo-agency__header h2 {
    font-size: 29px;
  }
}

/* ================================
   SMO Agency Include Section
   
================================ */

.smo-agency-include {
  background: #ffffff;
  padding-top: 40px;
  padding-bottom: 78px;
  overflow: hidden;
}

.smo-agency-include__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.smo-agency-include__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.smo-agency-include__image img {
  width: min(100%, 500px);
  height: auto;
  object-fit: contain;
}

.smo-agency-include__content {
  max-width: 620px;
}

.smo-agency-include__content h2 {
  margin: 0 0 24px;
  color: #113b51;
  font-size: clamp(34px, 3.4vw, 42px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -1px;
}

.smo-agency-include__content h2 span {
  color: #319948;
  font-weight: 700;
}

.smo-agency-include__content ul {
  display: grid;
  gap: 15px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.smo-agency-include__content li {
  position: relative;
  padding-left: 31px;
  color: #1b2534;
  font-size: 15px;
  line-height: 1.45;
}

.smo-agency-include__content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2fa84f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.smo-agency-include__btn {
  min-width: 164px;
  justify-content: center;
  border-radius: 9px;
}

@media (max-width: 1024px) {
  .smo-agency-include {
    padding-top: 62px;
    padding-bottom: 64px;
  }

  .smo-agency-include__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .smo-agency-include__content {
    max-width: 100%;
  }

  .smo-agency-include__image {
    order: 2;
  }

  .smo-agency-include__content {
    order: 1;
  }
}

@media (max-width: 680px) {
  .smo-agency-include {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .smo-agency-include__content h2 {
    font-size: 31px;
  }

  .smo-agency-include__content h2 br {
    display: none;
  }

  .smo-agency-include__content li {
    font-size: 14px;
  }

  .smo-agency-include__btn {
    width: 100%;
  }
}

/* ================================
         SMO Agency Stats
================================ */

.smo-agency-stats {
  background: #ffffff;
  padding-top: 48px;
  padding-bottom: 52px;
  border-top: 1px solid #e4e9ef;
}

.smo-agency-stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
  align-items: start;
}

.smo-agency-stats__item {
  text-align: center;
}

.smo-agency-stats__icon {
  width: 37px;
  height: 37px;
  margin: 0 auto 9px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf2ff;
  border: 1px solid #a9c7ff;
}

.smo-agency-stats__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.smo-agency-stats__item:nth-child(even) .smo-agency-stats__icon {
  background: #e5fae9;
  border-color: #91e7aa;
}

.smo-agency-stats__item strong {
  display: block;
  margin-bottom: 9px;
  color: #0064ff;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
}

.smo-agency-stats__item:nth-child(even) strong {
  color: #04b64c;
}

.smo-agency-stats__item p {
  margin: 0;
  color: #53677e;
  font-size: 10.5px;
  line-height: 1.45;
  text-transform: capitalize;
}

@media (max-width: 1100px) {
  .smo-agency-stats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 24px;
  }
}

@media (max-width: 680px) {
  .smo-agency-stats {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .smo-agency-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 18px;
  }

  .smo-agency-stats__item strong {
    font-size: 17px;
  }
}

@media (max-width: 420px) {
  .smo-agency-stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   SMO Agency Services
   Uses existing: .section, .container, .btn
================================ */

.smo-agency-services {
  background: #178f3f;
  padding-top: 68px;
  padding-bottom: 82px;
  color: #ffffff;
}

.smo-agency-services__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 28px;
}

.smo-agency-services__header h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 38px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.8px;
}

.smo-agency-services__header p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.65;
}

.smo-agency-services__header-btn {
  min-width: 190px;
  justify-content: center;
  border-radius: 7px;
  background: #ffffff;
  color: #087d33;
  font-size: 12px;
  font-weight: 800;
}

.smo-agency-services__header-btn:hover {
  background: #ffffff;
  color: #087d33;
  transform: translateY(-2px);
}

.smo-agency-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 22px;
}

.smo-agency-services__card {
  position: relative;
  min-height: 198px;
  padding: 22px 18px 24px;
  border: 2px solid #37bd20;
  border-radius: 11px;
  background: #ffffff;
  color: #10384f;
  box-shadow: 0 10px 22px rgba(0, 70, 25, 0.08);
}

.smo-agency-services__number {
  position: absolute;
  top: 11px;
  right: 11px;
  min-width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #29b51c;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.smo-agency-services__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ebf9ed;
}

.smo-agency-services__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.smo-agency-services__card h3 {
  margin: 0 0 13px;
  color: #10384f;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 800;
}

.smo-agency-services__card p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .smo-agency-services__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .smo-agency-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .smo-agency-services {
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .smo-agency-services__header h2 br {
    display: none;
  }

  .smo-agency-services__header-btn {
    width: 100%;
  }

  .smo-agency-services__grid {
    grid-template-columns: 1fr;
  }

  .smo-agency-services__card {
    min-height: auto;
  }
}

/* ================================
   SMO Agency AI Workflow
================================ */

.smo-agency-ai-workflow {
  background: #ffffff;
  padding-top: 82px;
  padding-bottom: 86px;
}

.smo-agency-ai-workflow__header {
  text-align: center;
  margin-bottom: 20px;
}

.smo-agency-ai-workflow__header h2 {
  margin: 0;
  color: #113b51;
  font-size: clamp(30px, 3.1vw, 38px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.8px;
}

.smo-agency-ai-workflow__header h2 span {
  color: #07823a;
  font-weight: 700;
}

.smo-agency-ai-workflow__quote {
  position: relative;
  max-width: 1460px;
  margin: 0 auto 48px;
  padding: 30px 70px;
  border: 1.5px solid #37bd20;
  border-radius: 10px;
  text-align: center;
}

.smo-agency-ai-workflow__quote p {
  margin: 0;
  color: #53677e;
  line-height: 1.6;
}

.smo-agency-ai-workflow__quote p + p {
  margin-top: 18px;
}

.smo-agency-ai-workflow__quote strong {
  color: #53677e;
  font-weight: 700;
}

.smo-agency-ai-workflow__quote-mark {
  position: absolute;
  color: rgba(22, 136, 68, 0.25);
  font-size: 60px;
  line-height: 1;
  font-weight: 700;
}

.smo-agency-ai-workflow__quote-mark--left {
  left: 48px;
  top: 15px;
}

.smo-agency-ai-workflow__quote-mark--right {
  right: 48px;
  bottom: 8px;
}

.smo-agency-ai-workflow__intro {
  max-width: 1460px;
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  gap: 48px;
  align-items: center;
}

.smo-agency-ai-workflow__intro-text span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #168844;
  font-size: 12px;
  font-weight: 700;
}

.smo-agency-ai-workflow__intro-text span::before {
  content: "";
  width: 25px;
  height: 1px;
  background: #168844;
}

.smo-agency-ai-workflow__intro-text p {
  margin: 0;
  color: #1d2b3a;
  font-size: 12.5px;
  line-height: 1.68;
}

.smo-agency-ai-workflow__intro-text strong {
  color: #07823a;
  font-weight: 700;
}

.smo-agency-ai-workflow__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.smo-agency-ai-workflow__orbit {
  position: relative;
  width: 230px;
  height: 230px;
  border: 1px dashed rgba(39, 185, 27, 0.45);
  border-radius: 50%;
}

.smo-agency-ai-workflow__chip {
  position: absolute;
  inset: 50%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #e8f7ec 100%);
  box-shadow:
    0 18px 0 #07823a,
    0 28px 22px rgba(0, 90, 34, 0.18);
}

.smo-agency-ai-workflow__chip span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #78d15e, #087d33);
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
}

.smo-agency-ai-workflow__orbit-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #7bd678;
  border-radius: 50%;
  background: #ffffff;
  color: #2ab528;
}

.smo-agency-ai-workflow__orbit-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.smo-agency-ai-workflow__orbit-icon--one {
  left: -8px;
  top: 75px;
}

.smo-agency-ai-workflow__orbit-icon--two {
  left: 91px;
  top: -25px;
}

.smo-agency-ai-workflow__orbit-icon--three {
  right: -10px;
  top: 75px;
}

.smo-agency-ai-workflow__orbit-icon--four {
  right: 16px;
  bottom: 18px;
}

.smo-agency-ai-workflow__orbit-icon--five {
  left: 20px;
  bottom: 14px;
}

.smo-agency-ai-workflow__subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0 auto 24px;
  text-align: center;
}

.smo-agency-ai-workflow__subheading span {
  width: 65px;
  height: 1px;
  background: #222;
  opacity: 0.75;
}

.smo-agency-ai-workflow__subheading h3 {
  margin: 0;
  color: #113b51;
  font-size: clamp(24px, 2.2vw, 29px);
  line-height: 1.3;
  font-weight: 400;
}

.smo-agency-ai-workflow__grid {
  max-width: 1460px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #45c43b;
  border-radius: 10px;
  overflow: hidden;
}

.smo-agency-ai-workflow__card {
  min-height: 260px;
  padding: 34px 28px;
  text-align: center;
  border-right: 1px solid #83dc80;
  border-bottom: 1px solid #83dc80;
  background: #fbfffc;
}

.smo-agency-ai-workflow__card:nth-child(4n) {
  border-right: 0;
}

.smo-agency-ai-workflow__card:nth-child(n + 5) {
  border-bottom: 0;
}

.smo-agency-ai-workflow__card-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  color: #2ab528;
}

.smo-agency-ai-workflow__card-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.smo-agency-ai-workflow__card h4 {
  margin: 0 0 18px;
  color: #123c52;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}

.smo-agency-ai-workflow__card p {
  margin: 0;
  color: #53677e;
  line-height: 1.55;
}

.smo-agency-ai-workflow__bottom {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #ffffff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
}

.smo-agency-ai-workflow__bottom-card {
  padding: 38px 72px 48px;
}

.smo-agency-ai-workflow__bottom-card + .smo-agency-ai-workflow__bottom-card {
  border-left: 1px solid #d9e2e2;
}

.smo-agency-ai-workflow__bottom-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
}

.smo-agency-ai-workflow__bottom-title img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.smo-agency-ai-workflow__bottom-title h3 {
  margin: 0;
  color: #113b51;
  line-height: 1.25;
  font-weight: 400;
}

.smo-agency-ai-workflow__bottom-title h3 span {
  color: #07823a;
  font-weight: 600;
}

.smo-agency-ai-workflow__bottom-card p {
  margin: 0;
  color: #1d2b3a;
  line-height: 1.75;
}

.smo-agency-ai-workflow__bottom-card p + p {
  margin-top: 24px;
}

.smo-agency-ai-workflow__cta {
  margin-top: 26px;
  text-align: center;
}

.smo-agency-ai-workflow__cta .btn {
  min-width: 260px;
  justify-content: center;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .smo-agency-ai-workflow__intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .smo-agency-ai-workflow__visual {
    order: -1;
  }

  .smo-agency-ai-workflow__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .smo-agency-ai-workflow__card:nth-child(4n) {
    border-right: 1px solid #83dc80;
  }

  .smo-agency-ai-workflow__card:nth-child(2n) {
    border-right: 0;
  }

  .smo-agency-ai-workflow__card:nth-child(n + 5) {
    border-bottom: 1px solid #83dc80;
  }

  .smo-agency-ai-workflow__card:nth-child(n + 7) {
    border-bottom: 0;
  }

  .smo-agency-ai-workflow__bottom-card {
    padding: 34px 36px 42px;
  }
}

@media (max-width: 768px) {
  .smo-agency-ai-workflow {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .smo-agency-ai-workflow__header h2 br {
    display: none;
  }

  .smo-agency-ai-workflow__quote {
    padding: 28px 24px;
  }

  .smo-agency-ai-workflow__quote-mark {
    display: none;
  }

  .smo-agency-ai-workflow__subheading {
    gap: 14px;
  }

  .smo-agency-ai-workflow__subheading span {
    display: none;
  }

  .smo-agency-ai-workflow__grid {
    grid-template-columns: 1fr;
  }

  .smo-agency-ai-workflow__card,
  .smo-agency-ai-workflow__card:nth-child(2n),
  .smo-agency-ai-workflow__card:nth-child(4n),
  .smo-agency-ai-workflow__card:nth-child(n + 5),
  .smo-agency-ai-workflow__card:nth-child(n + 7) {
    border-right: 0;
    border-bottom: 1px solid #83dc80;
  }

  .smo-agency-ai-workflow__card:last-child {
    border-bottom: 0;
  }

  .smo-agency-ai-workflow__bottom {
    grid-template-columns: 1fr;
  }

  .smo-agency-ai-workflow__bottom-card + .smo-agency-ai-workflow__bottom-card {
    border-left: 0;
    border-top: 1px solid #d9e2e2;
  }

  .smo-agency-ai-workflow__bottom-card {
    padding: 30px 24px 36px;
  }

  .smo-agency-ai-workflow__bottom-title {
    align-items: flex-start;
  }

  .smo-agency-ai-workflow__cta .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 460px) {
  .smo-agency-ai-workflow__orbit {
    width: 205px;
    height: 205px;
  }

  .smo-agency-ai-workflow__chip {
    width: 78px;
    height: 78px;
  }

  .smo-agency-ai-workflow__chip span {
    width: 50px;
    height: 50px;
    font-size: 23px;
  }

  .smo-agency-ai-workflow__orbit-icon {
    width: 42px;
    height: 42px;
  }

  .smo-agency-ai-workflow__orbit-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* ================================
   SMO Agency Platforms
================================ */

.smo-agency-platforms {
  background: #eaf0f7;
  padding-top: 72px;
  padding-bottom: 82px;
}

.smo-agency-platforms__header {
  max-width: 1460px;
  margin: 0 auto 36px;
  text-align: center;
}

.smo-agency-platforms__header h2 {
  margin: 0 0 12px;
  color: #113b51;
  font-size: clamp(32px, 3.4vw, 42px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -1px;
}

.smo-agency-platforms__header p {
  margin: 0;
  color: #66778a;
  font-size: 15px;
  line-height: 1.6;
}

.smo-agency-platforms__table-wrap {
  max-width: 1460px;
  margin: 0 auto 54px;
  overflow-x: auto;
}

.smo-agency-platforms__table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  table-layout: fixed;
}

.smo-agency-platforms__table th {
  padding: 13px 24px;
  background: #087a31;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

.smo-agency-platforms__table thead tr:first-child th {
  font-size: 15px;
  letter-spacing: 0.2px;
}

.smo-agency-platforms__table th + th,
.smo-agency-platforms__table td + td {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.smo-agency-platforms__table td {
  padding: 11px 22px;
  color: #53677e;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.smo-agency-platforms__table tbody tr:nth-child(odd) td {
  background: #dcebec;
}

.smo-agency-platforms__table tbody tr:nth-child(even) td {
  background: #f8fafb;
}

.smo-agency-platforms__cards {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 18px;
}

.smo-agency-platforms__card {
  position: relative;
  min-height: 205px;
  padding: 28px 20px 42px;
  overflow: hidden;
  border: 1.5px solid #28b61f;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 4px 0 rgba(43, 185, 31, 0.75);
}

.smo-agency-platforms__cards .smo-agency-platforms__card:nth-child(n + 5) {
  transform: translateX(calc(50% + 9px));
}

.smo-agency-platforms__card h3 {
  margin: 0 0 11px;
  color: #123c52;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.smo-agency-platforms__card p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.45;
}

.smo-agency-platforms__brand {
  position: absolute;
  right: 12px;
  bottom: 9px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  opacity: 0.72;
}

.smo-agency-platforms__brand img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  display: block;
}

.smo-agency-platforms__brand--instagram {
  background: #fde6ef;
}

.smo-agency-platforms__brand--tiktok {
  background: #e3e3e3;
}

.smo-agency-platforms__brand--linkedin {
  background: #d9f1fb;
}

.smo-agency-platforms__brand--facebook {
  background: #dceeff;
}

.smo-agency-platforms__brand--snapchat {
  background: #fff7bb;
}

.smo-agency-platforms__brand--youtube {
  background: #ffd6d6;
}

.smo-agency-platforms__brand--x {
  background: #dddddd;
}

.smo-agency-platforms__cta {
  margin-top: 54px;
  text-align: center;
}

.smo-agency-platforms__cta .btn {
  min-width: 280px;
  justify-content: center;
  border-radius: 8px;
}

@media (max-width: 1100px) {
  .smo-agency-platforms__cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .smo-agency-platforms__cards .smo-agency-platforms__card:nth-child(n + 5) {
    transform: none;
  }
}

@media (max-width: 820px) {
  .smo-agency-platforms {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .smo-agency-platforms__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .smo-agency-platforms__table-wrap {
    margin-bottom: 42px;
  }
}

@media (max-width: 560px) {
  .smo-agency-platforms__header h2 {
    font-size: 31px;
  }

  .smo-agency-platforms__header p {
    font-size: 14px;
  }

  .smo-agency-platforms__cards {
    grid-template-columns: 1fr;
  }

  .smo-agency-platforms__card {
    min-height: auto;
  }

  .smo-agency-platforms__cta .btn {
    width: 100%;
    min-width: 0;
  }
}

/* ================================
   SMO Agency Best Company Section
================================ */

.smo-agency-best {
  background: #ffffff;
  padding-top: 62px;
  padding-bottom: 58px;
}

.smo-agency-best__header {
  max-width: 1260px;
  margin: 0 auto 32px;
  text-align: center;
}

.smo-agency-best__header h2 {
  margin: 0 0 13px;
  color: #113b51;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.7px;
}

.smo-agency-best__header p {
  max-width: 760px;
  margin: 0 auto;
  color: #66778a;
  line-height: 1.6;
}

.smo-agency-best__grid {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.smo-agency-best__card {
  position: relative;
  min-height: 205px;
  padding: 42px 17px 22px;
  border: 2px solid #2bb91b;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 90, 34, 0.05);
}

.smo-agency-best__number {
  position: absolute;
  top: 11px;
  left: 11px;
  min-width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #27b91b;
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
}

.smo-agency-best__icon {
  width: 43px;
  height: 43px;
  margin: 0 auto 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9faec;
}

.smo-agency-best__icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  display: block;
}

.smo-agency-best__card h3 {
  margin: 0 0 12px;
  color: #10384f;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
}

.smo-agency-best__card p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.55;
}

.smo-agency-best__cta {
  margin-top: 31px;
  text-align: center;
}

.smo-agency-best__cta .btn {
  min-width: 177px;
  justify-content: center;
  border-radius: 8px;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .smo-agency-best__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }

  .smo-agency-best__card {
    min-height: 190px;
  }
}

@media (max-width: 620px) {
  .smo-agency-best {
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .smo-agency-best__header h2 br {
    display: none;
  }

  .smo-agency-best__grid {
    grid-template-columns: 1fr;
  }

  .smo-agency-best__card {
    min-height: auto;
  }

  .smo-agency-best__cta .btn {
    width: 100%;
  }
}

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

@media (max-width: 992px) {
  .social-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .social-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .social-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons {
    justify-content: center;
  }

  .social-image img {
    max-height: 350px;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .social-content h2 {
    font-size: 26px;
  }

  .social-content p {
    font-size: 14px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

 /* ══════════════════════════════
       About Us Page CSS
    ══════════════════════════════ */
/* ================================
   About Us - Digital Growth Partners
================================ */

.about-us-growth-partners {
  background: #ffffff;
  padding-top: 78px;
  padding-bottom: 64px;
}

.about-us-growth-partners__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.about-us-growth-partners__content {
  max-width: 520px;
}

.about-us-growth-partners__content h2 {
  margin: 0 0 24px;
  color: #113b51;
  font-size: clamp(32px, 3.2vw, 40px);
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -0.8px;
}

.about-us-growth-partners__content h2 strong {
  font-weight: 800;
}

.about-us-growth-partners__content p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.75;
}

.about-us-growth-partners__content p + p {
  margin-top: 24px;
}

.about-us-growth-partners__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 44px;
  margin-top: 30px;
  margin-bottom: 28px;
}

.about-us-growth-partners__checks span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #10384f;
  font-size: 13px;
  font-weight: 800;
}

.about-us-growth-partners__checks i {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2fa84f;
  color: #ffffff;
  font-style: normal;
  font-size: 10px;
  line-height: 1;
}

.about-us-growth-partners__btn {
  min-width: 158px;
  justify-content: center;
  border-radius: 8px;
}

.about-us-growth-partners__stats {
  display: grid;
  gap: 6px;
}

.about-us-growth-partners__hero-card {
  min-height: 213px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 44px;
  border-radius: 7px;
  background: #0d2d49;
  color: #ffffff;
}

.about-us-growth-partners__hero-card::after {
  content: "";
  position: absolute;
  top: -62px;
  right: -44px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(22, 143, 63, 0.45);
}

.about-us-growth-partners__hero-card span {
  position: relative;
  z-index: 2;
  font-size: clamp(29px, 3vw, 34px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.about-us-growth-partners__mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.about-us-growth-partners__mini-card {
  min-height: 162px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 24px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #ffffff;
  text-align: center;
}

.about-us-growth-partners__icon {
  width: 45px;
  height: 45px;
  margin-bottom: 14px;
  color: #2dbc17;
}

.about-us-growth-partners__icon svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-us-growth-partners__mini-card strong {
  color: #53677e;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
}

.about-us-growth-partners__number {
  display: block;
  color: #2dbc17 !important;
  font-size: 45px !important;
  line-height: 1 !important;
  margin-bottom: 12px;
}

.about-us-growth-partners__mini-card span {
  color: #53677e;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 800;
}

/* ================================
   About Us - Mission Vision
================================ */

.about-us-mission-vision {
  background: #eaf0f7;
  padding-top: 58px;
  padding-bottom: 78px;
}

.about-us-mission-vision__title {
  margin: 0 0 42px;
  text-align: center;
  color: #113b51;
  font-size: clamp(28px, 2.8vw, 34px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.about-us-mission-vision__title strong {
  font-weight: 800;
}

.about-us-mission-vision__card {
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #ffffff;
  box-shadow:
    0 4px 0 rgba(17, 59, 81, 0.16),
    0 10px 24px rgba(17, 59, 81, 0.08);
}

.about-us-mission-vision__item {
  padding: 50px 64px 62px;
}

.about-us-mission-vision__item + .about-us-mission-vision__item {
  border-left: 1px solid #d9e2e2;
}

.about-us-mission-vision__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.about-us-mission-vision__icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #74c768, #138d3b);
  color: #ffffff;
}

.about-us-mission-vision__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-us-mission-vision__item h3 {
  margin: 0;
  color: #10384f;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 800;
}

.about-us-mission-vision__item p {
  margin: 0;
  color: #1d2b3a;
  font-size: 13px;
  line-height: 1.75;
}

.about-us-mission-vision__item p + p {
  margin-top: 28px;
}

/* ================================
   About Us - Work In Numbers
================================ */

.about-us-work-numbers {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 54px;
}

.about-us-work-numbers__header {
  max-width: 960px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.about-us-work-numbers__header h2 {
  margin: 0;
  color: #10294f;
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.about-us-work-numbers__header h2 strong {
  font-weight: 800;
}

.about-us-work-numbers__header p {
  margin: 0;
  color: #1d2b3a;
  font-size: 14px;
  line-height: 1.65;
}

.about-us-work-numbers__line {
  max-width: 950px;
  height: 1px;
  margin: 0 auto;
  background: rgba(17, 35, 50, 0.75);
}

.about-us-work-numbers__grid {
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-us-work-numbers__item {
  min-height: 140px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 24px 18px;
}

.about-us-work-numbers__item + .about-us-work-numbers__item {
  border-left: 1px solid rgba(17, 35, 50, 0.75);
}

.about-us-work-numbers__item strong {
  display: block;
  margin-bottom: 20px;
  color: #02b54b;
  font-size: clamp(34px, 3.5vw, 43px);
  line-height: 1;
  font-weight: 800;
}

.about-us-work-numbers__item p {
  margin: 0;
  color: #53677e;
  font-size: 11px;
  line-height: 1.45;
}

/* ================================
   About Us - Inside Team
================================ */

.about-us-team-inside {
  background: #ffffff;
  padding-top: 76px;
  padding-bottom: 74px;
}

.about-us-team-inside__header {
  max-width: 970px;
  margin: 0 auto 50px;
  text-align: center;
}

.about-us-team-inside__header h2 {
  margin: 0 0 16px;
  color: #113b51;
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -0.6px;
}

.about-us-team-inside__header h2 strong {
  font-weight: 800;
}

.about-us-team-inside__header p {
  margin: 0 auto;
  color: #666666;
  font-size: 13.5px;
  line-height: 1.35;
}

.about-us-team-inside__grid {
  max-width: 930px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.about-us-team-inside__card {
  position: relative;
  min-height: 242px;
  padding: 66px 20px 27px;
  border: 2px solid #2bb91b;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 0 rgba(43, 185, 31, 0.9);
}

.about-us-team-inside__number {
  position: absolute;
  top: 14px;
  left: 14px;
  min-width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #29b51c;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.about-us-team-inside__icon {
  position: absolute;
  top: 31px;
  left: 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ebf9ed;
  transform: translateX(-50%);
}

.about-us-team-inside__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.about-us-team-inside__card h3 {
  margin: 25px 0 12px;
  color: #10384f;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.about-us-team-inside__card p {
  margin: 0;
  color: #53677e;
  font-size: 11.5px;
  line-height: 1.48;
}

/* Tablet */
@media (max-width: 1024px) {
  .about-us-team-inside {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-us-team-inside__grid {
    max-width: 720px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-us-team-inside__card {
    min-height: 220px;
  }
}

/* Mobile */
@media (max-width: 620px) {
  .about-us-team-inside {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .about-us-team-inside__header {
    margin-bottom: 34px;
  }

  .about-us-team-inside__header h2 {
    font-size: 30px;
  }

  .about-us-team-inside__header p {
    font-size: 13px;
  }

  .about-us-team-inside__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-us-team-inside__card {
    min-height: auto;
    padding: 62px 22px 28px;
  }
}

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

@media (max-width: 1024px) {
  .about-us-growth-partners__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-us-growth-partners__content {
    max-width: 720px;
  }

  .about-us-mission-vision__item {
    padding: 42px 36px 48px;
  }

  .about-us-work-numbers__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .about-us-growth-partners {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about-us-growth-partners__content h2 br {
    display: none;
  }

  .about-us-growth-partners__checks {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-us-growth-partners__btn {
    width: 100%;
  }

  .about-us-growth-partners__mini-grid {
    grid-template-columns: 1fr;
  }

  .about-us-growth-partners__hero-card {
    min-height: 170px;
    padding: 34px 28px;
  }

  .about-us-mission-vision {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .about-us-mission-vision__card {
    grid-template-columns: 1fr;
  }

  .about-us-mission-vision__item + .about-us-mission-vision__item {
    border-left: 0;
    border-top: 1px solid #d9e2e2;
  }

  .about-us-mission-vision__item {
    padding: 34px 24px 40px;
  }

  .about-us-mission-vision__heading {
    align-items: flex-start;
  }

  .about-us-work-numbers {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .about-us-work-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-us-work-numbers__item + .about-us-work-numbers__item {
    border-left: 0;
  }

  .about-us-work-numbers__item:nth-child(2n) {
    border-left: 1px solid rgba(17, 35, 50, 0.3);
  }

  .about-us-work-numbers__item:nth-child(n + 3) {
    border-top: 1px solid rgba(17, 35, 50, 0.3);
  }
}

@media (max-width: 460px) {
  .about-us-growth-partners__content h2,
  .about-us-mission-vision__title {
    font-size: 30px;
  }

  .about-us-work-numbers__grid {
    grid-template-columns: 1fr;
  }

  .about-us-work-numbers__item:nth-child(2n),
  .about-us-work-numbers__item + .about-us-work-numbers__item {
    border-left: 0;
  }

  .about-us-work-numbers__item + .about-us-work-numbers__item {
    border-top: 1px solid rgba(17, 35, 50, 0.3);
  }
}


/* ========================= */
/* Pricing Page CSS */
/* ========================= */

/* ===== HERO ===== */
.pc-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1f3a, #0f3c6e);
}

.pc-hero-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  position: relative;
}

.pc-hero-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

/* % Symbol */
.pc-percent {
  position: absolute;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
}

.pc-main {
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  color: rgba(255,255,255,0.15);
  text-shadow: 0 0 40px rgba(0,150,255,0.3);
}

.pc-sm {
  font-size: 60px;
  filter: blur(1px);
}

.p1 { right: 25%; top: 20%; }
.p2 { right: 20%; bottom: 20%; }

/* ===== CONTACT SECTION ===== */
.pricing-contact-section {
  background: #f5f6f8;
  padding: 80px 20px;
}

.pc-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
}

/* LEFT */
.pc-left { flex: 1; }

.pc-feature {
  display: flex;
  gap: 20px;
}

.pc-icon {
  font-size: 40px;
  color: #22c55e;
}

.pc-feature h3 {
  font-size: 22px;
  color: #4b5563;
}

.pc-feature p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.pc-divider {
  height: 1px;
  background: #ddd;
  margin: 30px 0;
}

/* FORM */
.pc-form-box {
  flex: 1;
  background: linear-gradient(135deg, #0b2c4d, #0e3a66);
  padding: 35px;
  border-radius: 16px;
  color: #fff;
}

.pc-form-title {
    text-align: center;
    color: #fff;
}

.pc-form-sub {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.pc-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.pc-form input,
.pc-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
}

.pc-form textarea {
  height: 100px;
}

.pc-form button {
  background: #22c55e;
  padding: 14px;
  border: none;
  color: #fff;
  border-radius: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .pc-container {
    flex-direction: column;
  }

  .pc-grid {
    grid-template-columns: 1fr;
  }

  .pc-main {
    font-size: 120px;
  }
}

@media (max-width: 600px) {
  .pc-hero-title {
    font-size: 28px;
  }

  .pc-main {
    font-size: 90px;
  }

  .pc-sm {
    display: none;
  }
}

/* ---------- AEO Services Page CSS ----------- */

.hero-form {
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 12px;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  border: none;
}

.stat-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.strategy-box {
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 10px;
  background: #043E69;
}

/* =========================
   RESPONSIVE TABLE (AEO)
========================= */

.custom-table-wrap {
  width: 100%;
  margin-top: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden; /* 🔥 FIX */
}

/* TABLE */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
  background: var(--white);
}

/* HEADER */
.custom-table thead {
  background: var(--navy);
}

.custom-table th {
  color: var(--white);
  text-align: left;
  padding: 16px 18px;
  font-family: var(--font-head);
  font-size: 0.9rem;
}

/* BODY */
.custom-table td {
  padding: 16px 18px;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

/* HOVER */
.custom-table tbody tr:hover {
  background: var(--orange-light);
}

/* FIRST COLUMN */
.custom-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

/* =========================
   AI PLATFORM TABS (PREMIUM)
========================= */

.platform-tabs {
  margin-top: 40px;
}

/* TAB NAV */
.platform-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* TAB BUTTON */
.platform-tab-btn {
  padding: 12px 22px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* ACTIVE */
.platform-tab-btn.active {
  background: var(--Lime-Green);
  color: #fff;
  border-color: var(--Lime-Green);
  box-shadow: 0 8px 25px rgba(52,183,26,0.35);
}

/* HOVER */
.platform-tab-btn:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* TAB CONTENT */
.platform-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.platform-tab-content.active {
  display: block;
}

/* INNER GRID */
.platform-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT */
.platform-content h3 {
  color: #fff;
  margin-bottom: 12px;
}

.platform-content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

/* FEATURES */
.platform-list {
  display: grid;
  gap: 10px;
}

.platform-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: #fff;
}

.platform-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--Lime-Green);
  border-radius: 50%;
}

/* IMAGE */
.platform-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   MOBILE VERSION (STACKED)
========================= */

@media (max-width: 768px) {

  .custom-table-wrap {
    box-shadow: none;
    overflow: visible;
    overflow-x: auto;  
      
  }
  
  .custom-table {
    min-width: 100%;
    border: none;
  }

  /* HIDE HEADER */
  .custom-table thead {
    display: none;
  }

  /* ROW AS CARD */
  .custom-table tr {
    display: block;
    margin-bottom: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  /* CELLS */
  .custom-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
  }

  .custom-table td:last-child {
    border-bottom: none;
  }

  /* LABEL (LEFT SIDE) */
  .custom-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--navy);
  }
  
   .platform-tabs-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .platform-tab-btn {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .platform-content-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .platform-image {
    order: -1; /* image first on mobile */
  }

}

/* write icon */

 .custom-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-bullets li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

/* Circle background */
.custom-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background-color: limegreen;
  border-radius: 50%;
}

/* White check icon */
.custom-bullets li::after {
  content: "✔";
  position: absolute;
  left: 5px;
  top: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}


/* ----------- Mobile SEO Services Page CSS -----------*/

/* Approach SEction */

/* Section */
.approach-section {
  background: #f5f7fa;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Title */
.section-title-c {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0a2a4a;
  margin-bottom: 15px;
}
.section-title-l {
  text-align: left;
  font-size: 36px;
  font-weight: 700;
  color: #0a2a4a;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: #6c7a89;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Card */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* Full width last card */
.card.full {
  grid-column: 1 / -1;   /* take full width */
  max-width: 520px;     /* control width */
  margin: 0 auto;       /* center horizontally */
}

/* Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-wrap h3 {
  font-size: 18px;
  color: #0a2a4a;
  margin: 0;
}

/* Check icon */
.check-icon {
  width: 22px;
  height: 22px;
  background: limegreen;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

/* Step badge */
.step {
  background: #1bb14c;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

/* Text */
.card p {
  color: #6c7a89;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .card.full {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 26px;
  }

  .card {
    padding: 20px;
  }

  .title-wrap h3 {
    font-size: 16px;
  }
}

/* ================================
   Website Analysis Page Common
================================ */

.website-analysis-page-container {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

/* =========================================
   Website Analysis Page Hero / Audit Section
========================================= */

.website-analysis-page-audit {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 100%, rgba(30, 185, 80, 0.09), transparent 34%),
    #ffffff;
  padding: 72px 0 78px;
}

.website-analysis-page-audit__grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 500px);
  gap: 90px;
  align-items: center;
  justify-content: center;
}

.website-analysis-page-audit__content {
  width: 100%;
  max-width: 540px;
}

.website-analysis-page-audit__content h1 {
  margin: 0 0 14px;
  color: #10294f;
  font-size: clamp(36px, 3.8vw, 38px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.1px;
}

.website-analysis-page-audit__content h1 span {
  color: #28bd19;
}

.website-analysis-page-audit__content > p {
  max-width: 500px;
  margin: 0 0 24px;
  color: #53677e;
  font-size: 15px;
  line-height: 1.8;
}

/* Review Card */
.website-analysis-page-audit__review {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 112px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid #dce4e8;
  border-radius: 9px;
  background: #ffffff;
  box-shadow:
    0 3px 0 rgba(17, 59, 81, 0.16),
    0 12px 24px rgba(17, 59, 81, 0.08);
}

.website-analysis-page-audit__avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ccf69, #168f3f);
  color: #ffffff;
  font-size: 23px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(22, 143, 63, 0.25);
}

.website-analysis-page-audit__review-content p {
  max-width: 360px;
  margin: 0 0 10px;
  color: #53677e;
  font-size: 11px;
  line-height: 1.45;
}

.website-analysis-page-audit__review-content strong {
  display: block;
  color: #10384f;
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 800;
}

.website-analysis-page-audit__review-content small {
  display: block;
  color: #66778a;
  font-size: 9px;
}

.website-analysis-page-audit__quote {
  position: absolute;
  top: -18px;
  right: 18px;
  color: #28bd19;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
}

.website-analysis-page-audit__brand {
  position: absolute;
  right: 18px;
  bottom: 22px;
  padding: 5px 8px;
  border-radius: 2px;
  background: #ff0000;
  color: #ffffff;
  font-size: 8px;
  line-height: 1;
  font-weight: 800;
}

/* Trusted Logo Auto Slider */
.website-analysis-page-audit__trusted {
  width: 100%;
  max-width: 500px;
  margin-top: 30px;
  text-align: center;
}

.website-analysis-page-audit__trusted h4 {
  margin: 0 0 20px;
  color: #10384f;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
}

.website-analysis-page-audit__logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 5px 0;
}

.website-analysis-page-audit__logo-slider::before,
.website-analysis-page-audit__logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 50px;
  height: 100%;
  pointer-events: none;
}

.website-analysis-page-audit__logo-slider::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.website-analysis-page-audit__logo-slider::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.website-analysis-page-audit__logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 42px;
  animation: websiteAnalysisPageLogoSlide 18s linear infinite;
  will-change: transform;
}

.website-analysis-page-audit__logo-slider:hover .website-analysis-page-audit__logo-track {
  animation-play-state: paused;
}

.website-analysis-page-audit__logo-item {
  width: 104px;
  height: 36px;
  flex: 0 0 104px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.website-analysis-page-audit__logo-item img {
  width: auto;
  height: auto;
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.95;
  filter: grayscale(0.1);
}

@keyframes websiteAnalysisPageLogoSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Form Card */
.website-analysis-page-audit__form-card {
  width: 100%;
  max-width: 500px;
  justify-self: center;
  padding: 30px 44px 36px;
  border-radius: 22px;
  background: #173957;
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(6, 25, 48, 0.2);
}

.website-analysis-page-audit__form-pill {
  display: inline-flex;
  margin-bottom: 11px;
  padding: 8px 19px;
  border-radius: 999px;
  background: rgba(98, 190, 92, 0.65);
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
}

.website-analysis-page-audit__form-card h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: clamp(26px, 2.5vw, 32px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.website-analysis-page-audit__form-card h2 span {
  color: #28bd19;
}

.website-analysis-page-audit__form {
  display: grid;
  gap: 10px;
}

.website-analysis-page-audit__field {
  width: 100%;
  min-height: 40px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(219, 231, 242, 0.75);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.26);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.website-analysis-page-audit__field:focus-within {
  border-color: #28bd19;
  box-shadow: 0 0 0 3px rgba(40, 189, 25, 0.16);
}

.website-analysis-page-audit__field span {
  display: grid;
  place-items: center;
  color: #22b651;
}

.website-analysis-page-audit__field svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.website-analysis-page-audit__field input {
  width: 100%;
  height: 40px;
  border: 0;
  outline: 0;
  background: transparent !important;
  color: #ffffff;
  font-size: 12px;
  box-shadow: none !important;
}

.website-analysis-page-audit__field input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.website-analysis-page-audit__submit {
  width: 100%;
  min-height: 43px;
  margin-top: 8px;
  border: 0;
  border-radius: 6px;
  background: #20c916;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.website-analysis-page-audit__submit:hover {
  transform: translateY(-2px);
  background: #18b60f;
  box-shadow: 0 12px 24px rgba(24, 182, 15, 0.22);
}

.website-analysis-page-audit__terms {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 8.8px;
  line-height: 1.75;
}

/* Autofill Fix */
.website-analysis-page-audit__field input:-webkit-autofill,
.website-analysis-page-audit__field input:-webkit-autofill:hover,
.website-analysis-page-audit__field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.01) inset !important;
  transition: background-color 9999s ease-in-out 0s;
}

/* Tablet */
@media (max-width: 1100px) {
  .website-analysis-page-audit {
    padding: 64px 0 68px;
  }

  .website-analysis-page-audit__grid {
    width: min(100%, 760px);
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .website-analysis-page-audit__content {
    max-width: 100%;
    text-align: center;
  }

  .website-analysis-page-audit__content > p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .website-analysis-page-audit__review,
  .website-analysis-page-audit__trusted,
  .website-analysis-page-audit__form-card {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .website-analysis-page-audit__review-content p {
    max-width: none;
  }

  .website-analysis-page-audit__logo-track {
    gap: 38px;
  }

  .website-analysis-page-audit__form-card {
    justify-self: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .website-analysis-page-container {
    width: min(100% - 28px, 1240px);
  }

  .website-analysis-page-audit {
    padding: 48px 0 54px;
  }

  .website-analysis-page-audit__grid {
    width: 100%;
    gap: 38px;
  }

  .website-analysis-page-audit__content h1 {
    font-size: 34px;
  }

  .website-analysis-page-audit__content > p {
    font-size: 14px;
    line-height: 1.7;
  }

  .website-analysis-page-audit__review {
    max-width: 100%;
    grid-template-columns: 46px 1fr;
    padding: 18px 16px;
    text-align: left;
  }

  .website-analysis-page-audit__avatar {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }

  .website-analysis-page-audit__review-content p {
    max-width: none;
    font-size: 10.5px;
  }

  .website-analysis-page-audit__brand {
    position: static;
    width: fit-content;
    margin-top: 8px;
  }

  .website-analysis-page-audit__logo-slider::before,
  .website-analysis-page-audit__logo-slider::after {
    width: 28px;
  }

  .website-analysis-page-audit__logo-track {
    gap: 28px;
    animation-duration: 16s;
  }

  .website-analysis-page-audit__logo-item {
    width: 86px;
    flex-basis: 86px;
    height: 32px;
  }

  .website-analysis-page-audit__logo-item img {
    max-width: 78px;
    max-height: 24px;
  }

  .website-analysis-page-audit__form-card {
    max-width: 100%;
    padding: 28px 22px 30px;
    border-radius: 18px;
  }

  .website-analysis-page-audit__form-card h2 {
    font-size: 27px;
  }

  .website-analysis-page-audit__field {
    min-height: 44px;
    grid-template-columns: 42px 1fr;
  }

  .website-analysis-page-audit__field input {
    height: 44px;
    font-size: 13px;
  }

  .website-analysis-page-audit__submit {
    min-height: 46px;
    font-size: 14px;
  }

  .website-analysis-page-audit__terms {
    font-size: 9px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .website-analysis-page-audit__content h1 {
    font-size: 31px;
  }

  .website-analysis-page-audit__quote {
    top: -14px;
    right: 12px;
    font-size: 52px;
  }

  .website-analysis-page-audit__logo-track {
    gap: 22px;
  }

  .website-analysis-page-audit__logo-item {
    width: 78px;
    flex-basis: 78px;
  }

  .website-analysis-page-audit__logo-item img {
    max-width: 70px;
  }
}


/* ================================
   Website Analysis Page - Process
================================ */

.website-analysis-page-process {
  background: #ffffff;
  padding: 76px 0 120px;
}

.website-analysis-page-process__header {
  margin-bottom: 78px;
  text-align: center;
}

.website-analysis-page-process__header h2 {
  margin: 0 0 11px;
  color: #113b51;
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.8px;
}

.website-analysis-page-process__header h2 strong {
  font-weight: 600;
}

.website-analysis-page-process__header p {
  margin: 0;
  color: #777;
  font-size: 14px;
  line-height: 1.5;
}

.website-analysis-page-process__timeline {
  position: relative;
  max-width: 970px;
  margin: 0 auto;
  display: grid;
  gap: 74px;
}

.website-analysis-page-process__line {
  position: absolute;
  top: 69px;
  bottom: 69px;
  left: 50%;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(47, 168, 79, 0.8) 0 3px,
    transparent 3px 7px
  );
  transform: translateX(-50%);
}

.website-analysis-page-process__row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 66px 1fr;
  gap: 24px;
  align-items: center;
}

.website-analysis-page-process__text-card {
  min-height: 171px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 31px 32px;
  border: 1px solid #e0ecd9;
  border-radius: 20px;
  background: #ffffff;
  box-shadow:
    0 4px 0 rgba(47, 168, 79, 0.14),
    0 10px 24px rgba(47, 168, 79, 0.08);
}

.website-analysis-page-process__text-card span {
  width: fit-content;
  margin-bottom: 17px;
  padding: 5px 17px;
  border-radius: 999px;
  background: #eaf5e4;
  color: #008c32;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
}

.website-analysis-page-process__text-card h3 {
  margin: 0 0 12px;
  color: #10384f;
  font-size: clamp(22px, 2.1vw, 26px);
  line-height: 1.25;
  font-weight: 800;
}

.website-analysis-page-process__text-card p {
  max-width: 335px;
  margin: 0;
  color: #53677e;
  font-size: 12px;
  line-height: 1.8;
}

.website-analysis-page-process__number {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 6px solid #edf7ed;
  border-radius: 50%;
  background: #ffffff;
  color: #113b51;
  font-size: 29px;
  line-height: 1;
  font-weight: 400;
}

.website-analysis-page-process__image-card {
  min-height: 171px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #e1f1d7;
}

.website-analysis-page-process__image-card svg {
  width: 88px;
  height: 88px;
  fill: none;
  stroke: #07823a;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

@media (max-width: 1024px) {
  
  .website-analysis-page-process__timeline {
    max-width: 760px;
  }

  .website-analysis-page-process__row {
    grid-template-columns: 1fr 58px 1fr;
    gap: 18px;
  }

  .website-analysis-page-process__number {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }
}

@media (max-width: 760px) {
  .website-analysis-page-container {
    width: min(100% - 28px, 1180px);
  }

  .website-analysis-page-process {
    padding: 58px 0 70px;
  }

  .website-analysis-page-process__header {
    margin-bottom: 42px;
  }

  .website-analysis-page-process__timeline {
    gap: 28px;
  }

  .website-analysis-page-process__line {
    display: none;
  }

  .website-analysis-page-process__row,
  .website-analysis-page-process__row--reverse {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .website-analysis-page-process__row--reverse .website-analysis-page-process__image-card {
    order: 3;
  }

  .website-analysis-page-process__row--reverse .website-analysis-page-process__number {
    order: 1;
  }

  .website-analysis-page-process__row--reverse .website-analysis-page-process__text-card {
    order: 2;
  }

  .website-analysis-page-process__number {
    justify-self: start;
    width: 54px;
    height: 54px;
    border-width: 5px;
    font-size: 22px;
  }

  .website-analysis-page-process__text-card,
  .website-analysis-page-process__image-card {
    min-height: auto;
  }

  .website-analysis-page-process__text-card {
    padding: 28px 22px;
  }

  .website-analysis-page-process__image-card {
    padding: 40px 20px;
  }

  .website-analysis-page-process__text-card p {
    max-width: none;
  }
}

/* ================================
   ESEO Content Marketing Process Section
   Unique CSS - No conflict
================================ */

.eseo-content-process-section {
  position: relative;
  width: 100%;
  padding: 95px 0 105px;
  background: #071a35;
  overflow: hidden;
  isolation: isolate;
}

.eseo-content-process-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 168, 76, 0.20), transparent 28%),
    radial-gradient(circle at 88% 75%, rgba(201, 168, 76, 0.13), transparent 30%),
    linear-gradient(135deg, #071a35 0%, #0a2244 50%, #06162c 100%);
}

.eseo-content-process-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.35;
}

.eseo-content-process-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.eseo-content-process-head {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.eseo-content-process-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.10);
  color: #d8b85f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eseo-content-process-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.eseo-content-process-subtitle {
  max-width: 760px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
}

.eseo-content-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.eseo-content-process-grid::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.75),
    transparent
  );
  z-index: 0;
}

.eseo-content-process-card {
  position: relative;
  z-index: 1;
  min-height: 320px;
  padding: 34px 30px 32px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 233, 0.98));
  border: 1px solid rgba(201, 168, 76, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.eseo-content-process-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.13);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.eseo-content-process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 168, 76, 0.65);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.30);
}

.eseo-content-process-card:hover::before {
  transform: scale(1.18);
  opacity: 0.9;
}

.eseo-content-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: #071a35;
  color: #d8b85f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.eseo-content-process-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 26px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.30);
}

.eseo-content-process-icon span {
  font-size: 32px;
  line-height: 1;
}

.eseo-content-process-card h3 {
  margin: 0 0 14px;
  color: #071a35;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.eseo-content-process-card p {
  margin: 0;
  color: rgba(7, 26, 53, 0.76);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
}

/* Tablet */
@media (max-width: 991px) {
  .eseo-content-process-section {
    padding: 78px 0 86px;
  }

  .eseo-content-process-container {
    width: min(100% - 36px, 760px);
  }

  .eseo-content-process-head {
    margin-bottom: 36px;
  }

  .eseo-content-process-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .eseo-content-process-grid::before {
    display: none;
  }

  .eseo-content-process-card {
    min-height: auto;
    padding: 30px 28px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .eseo-content-process-section {
    padding: 64px 0 70px;
  }

  .eseo-content-process-container {
    width: calc(100% - 28px);
  }

  .eseo-content-process-eyebrow {
    font-size: 12px;
    padding: 8px 14px;
    margin-bottom: 14px;
  }

  .eseo-content-process-title {
    font-size: 34px;
    line-height: 1.12;
  }

  .eseo-content-process-subtitle {
    font-size: 14px;
    line-height: 1.68;
    margin-top: 16px;
  }

  .eseo-content-process-card {
    padding: 26px 22px 28px;
    border-radius: 22px;
  }

  .eseo-content-process-number {
    min-width: 60px;
    height: 30px;
    font-size: 12px;
    margin-bottom: 20px;
  }

  .eseo-content-process-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    margin-bottom: 22px;
  }

  .eseo-content-process-icon span {
    font-size: 27px;
  }

  .eseo-content-process-card h3 {
    font-size: 21px;
  }

  .eseo-content-process-card p {
    font-size: 14px;
    line-height: 1.65;
  }
}

/* =====================================================
   Web Development Page Sections
   Unique CSS Classes - No Gold Color Used
===================================================== */

.wdx-approach-section,
.wdx-solutions-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.wdx-approach-section {
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.wdx-solutions-section {
  padding: 96px 0 106px;
  background:
    radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.16), transparent 30%),
    linear-gradient(135deg, #071a35 0%, #0a2d55 52%, #06172f 100%);
}

.wdx-approach-container,
.wdx-solutions-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.wdx-section-header {
  max-width: 850px;
  margin: 0 auto 56px;
  text-align: center;
}

.wdx-section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  color: #1769e0;
  border: 1px solid rgba(37, 99, 235, 0.18);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wdx-section-header h2 {
  margin: 0;
  color: #071a35;
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.wdx-section-header p {
  max-width: 780px;
  margin: 20px auto 0;
  color: rgba(7, 26, 53, 0.72);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
}

.wdx-section-header-light .wdx-section-label {
  background: rgba(14, 165, 233, 0.14);
  color: #7dd3fc;
  border-color: rgba(125, 211, 252, 0.26);
}

.wdx-section-header-light h2 {
  color: #ffffff;
}

.wdx-section-header-light p {
  color: rgba(255, 255, 255, 0.76);
}

/* Approach Layout */

.wdx-approach-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.45fr;
  gap: 34px;
  align-items: start;
}

.wdx-approach-intro {
  position: sticky;
  top: 110px;
  padding: 38px 34px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, #071a35 0%, #0b3765 100%);
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(7, 26, 53, 0.22);
}

.wdx-approach-small {
  display: inline-flex;
  margin-bottom: 18px;
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wdx-approach-intro h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 30px);
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.wdx-approach-intro p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.75;
}

.wdx-approach-btn {
    
  background: linear-gradient(135deg, #7bc46a 0%, #00732f 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 115, 47, 0.25);
  padding:14px 22px;
  display: inline-flex;
  min-height: 40px;

  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 48px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.wdx-approach-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 115, 47, 0.35);
  background: linear-gradient(135deg, #8fd97a 0%, #008a38 100%);
}

.wdx-approach-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 115, 47, 0.2);
}

.wdx-approach-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.2),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.2)
  );
  transform: skewX(-20deg);
  transition: 0.5s;
}

.wdx-approach-btn:hover::after {
  left: 120%;
}

.wdx-approach-steps {
  position: relative;
  display: grid;
  gap: 18px;
}

.wdx-approach-steps::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  background: linear-gradient(180deg, #2563eb, #06b6d4);
  opacity: 0.28;
}

.wdx-approach-step {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 20px;
  padding: 26px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 18px 48px rgba(7, 26, 53, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.wdx-approach-step:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.34);
  box-shadow: 0 26px 64px rgba(7, 26, 53, 0.13);
}

.wdx-step-number {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.26);
}

.wdx-step-content h3 {
  margin: 0 0 10px;
  color: #071a35;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.wdx-step-content p {
  margin: 0;
  color: rgba(7, 26, 53, 0.70);
  font-size: 14px;
  line-height: 1.7;
}

/* Solutions Section */

.wdx-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.wdx-solution-card {
  position: relative;
  min-height: 345px;
  padding: 28px 24px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(125, 211, 252, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.20);
  overflow: hidden;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.wdx-solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 35%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.wdx-solution-card:hover {
  transform: translateY(-10px);
  border-color: rgba(125, 211, 252, 0.40);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.wdx-solution-card:hover::before {
  opacity: 1;
}

.wdx-solution-top,
.wdx-solution-card h3,
.wdx-solution-card p {
  position: relative;
  z-index: 1;
}

.wdx-solution-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.wdx-solution-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
}

.wdx-solution-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.14));
  display: flex;
  align-items: center;
  justify-content: center;
}

.wdx-solution-icon svg {
  width: 30px;
  height: 30px;
  fill: #0b63ce;
}

.wdx-solution-card h3 {
  margin: 0 0 14px;
  color: #071a35;
  font-size: 23px;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.wdx-solution-card p {
  margin: 0;
  color: rgba(7, 26, 53, 0.72);
  font-size: 15.8px;
  line-height: 1.72;
}

/* Responsive */

@media (max-width: 1180px) {
  .wdx-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wdx-solution-card {
    min-height: 300px;
  }
}

@media (max-width: 991px) {
  .wdx-approach-section,
  .wdx-solutions-section {
    padding: 76px 0 84px;
  }

  .wdx-approach-container,
  .wdx-solutions-container {
    width: min(100% - 36px, 780px);
  }

  .wdx-section-header {
    margin-bottom: 42px;
  }

  .wdx-approach-layout {
    grid-template-columns: 1fr;
  }

  .wdx-approach-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 680px) {
  .wdx-approach-section,
  .wdx-solutions-section {
    padding: 64px 0 70px;
  }

  .wdx-approach-container,
  .wdx-solutions-container {
    width: calc(100% - 28px);
  }

  .wdx-section-label {
    font-size: 11.5px;
    padding: 8px 14px;
    margin-bottom: 14px;
  }

  .wdx-section-header h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .wdx-section-header p {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .wdx-approach-intro {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .wdx-approach-intro h3 {
    font-size: 28px;
  }

  .wdx-approach-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 22px;
    border-radius: 22px;
  }

  .wdx-approach-steps::before {
    display: none;
  }

  .wdx-step-number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 15px;
  }

  .wdx-step-content h3 {
    font-size: 20px;
  }

  .wdx-step-content p {
    font-size: 15px;
  }

  .wdx-solutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wdx-solution-card {
    min-height: auto;
    padding: 26px 22px 28px;
    border-radius: 24px;
  }

  .wdx-solution-top {
    margin-bottom: 24px;
  }

  .wdx-solution-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .wdx-solution-icon svg {
    width: 27px;
    height: 27px;
  }

  .wdx-solution-card h3 {
    font-size: 21px;
  }

  .wdx-solution-card p {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* =========================================
   AI Search Era Final Section
   Reference Screenshot Matching CSS
   - Card overlaps between green and white sections
   - No absolute positioning
   - Responsive floating card
========================================= */

/* Reduce the old green section bottom gap so the floating card starts closer,
   matching the reference screenshot. */
.seo-services-agency-difference {
  padding-bottom: 40px;
  overflow: visible;
}

.eseo-ai-era-final {
  position: relative;
  z-index: 3;
  background: #16953a;
  padding: 44px 0 0;
  overflow: visible;
}

.eseo-ai-era-final > .container,
.eseo-ai-cover-final > .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 72px;
  padding-right: 72px;
}

.eseo-ai-era-final__floating-card {
  position: relative;
  z-index: 5;
  width: min(100%, 970px);
  margin: 0 auto -64px;
  padding: 33px 48px 36px;
  text-align: center;
  background: #f7f7f7;
  border: 1.5px solid rgba(52, 183, 26, 0.68);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(17, 59, 81, 0.08);
}

.eseo-ai-era-final__floating-card h3 {
  margin: 0 0 14px;
  color: #113b51;
  font-family: var(--font-head);
  font-size: clamp(22px, 2.1vw, 27px);
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.45px;
}

.eseo-ai-era-final__floating-card p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
}

.eseo-ai-cover-final {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  padding: 50px 0 82px;
  background: #ffffff;
}

.eseo-ai-cover-final__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(330px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.eseo-ai-cover-final__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.eseo-ai-cover-final__media img {
  width: min(100%, 355px);
  max-width: 355px;
  height: auto;
  object-fit: contain;
  display: block;
}

.eseo-ai-cover-final__content {
  max-width: 610px;
  padding-top: 0;
}

.eseo-ai-cover-final__content h2 {
  margin: 0 0 20px;
  color: #113b51;
  font-family: var(--font-head);
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.9px;
}

.eseo-ai-cover-final__heading-top {
  display: block;
  color: #113b51;
  font-weight: 500;
}

.eseo-ai-cover-final__heading-accent {
  display: block;
  color: #1fa43f;
  font-weight: 700;
}

.eseo-ai-cover-final__list {
  display: grid;
  gap: 10px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.eseo-ai-cover-final__list li {
  position: relative;
  margin: 0;
  padding-left: 21px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
}

.eseo-ai-cover-final__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #229b3c;
}

.eseo-ai-cover-final__list li::after {
  content: "✓";
  position: absolute;
  left: 2.5px;
  top: -1px;
  color: #ffffff;
  font-size: 7px;
  font-weight: 800;
  line-height: 20px;
}

.eseo-ai-cover-final__btn {
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  height: 60px;
  min-height: 60px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 17px rgba(0, 115, 47, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 30px auto 0;
  white-space: normal;
  box-sizing: border-box;
}

.eseo-ai-cover-final__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Reference screenshot width: keeps the exact two-column composition */
@media (max-width: 900px) {
  .seo-services-agency-difference {
    padding-bottom: 0;
  }

  .eseo-ai-era-final {
    padding-top: 44px;
  }

  .eseo-ai-era-final > .container,
  .eseo-ai-cover-final > .container {
    max-width: 760px;
    padding-left: 72px;
    padding-right: 72px;
  }

  .eseo-ai-era-final__floating-card {
    width: 100%;
    margin: 0 auto -64px;
    padding: 26px 34px 28px;
    border-radius: 15px;
  }

  .eseo-ai-era-final__floating-card h3 {
    font-size: 19px;
    line-height: 1.24;
    white-space: nowrap;
  }

  .eseo-ai-era-final__floating-card p {
    max-width: 500px;
    font-size: 7px;
    line-height: 1.75;
  }

  .eseo-ai-cover-final {
    padding: 106px 0 70px;
  }

  .eseo-ai-cover-final__grid {
    grid-template-columns: minmax(210px, 0.9fr) minmax(255px, 1.1fr);
    gap: 42px;
    align-items: center;
  }

  .eseo-ai-cover-final__media img {
    width: min(100%, 285px);
    max-width: 285px;
  }

  .eseo-ai-cover-final__content h2 {
    margin-bottom: 17px;
    font-size: 28px;
    line-height: 1.08;
  }

  .eseo-ai-cover-final__list li {
    padding-left: 17px;
    font-size: 8px;
    line-height: 1.55;
  }

  .eseo-ai-cover-final__list li::before {
    top: 4px;
    width: 9px;
    height: 9px;
  }

  .eseo-ai-cover-final__list li::after {
    left: 2px;
    top: -2px;
    font-size: 6px;
  }

  .eseo-ai-cover-final__btn {
    min-height: 34px;
    padding: 9px 16px;
    font-size: 8px;
  }
}

/* Tablet / small laptop: still keeps the card between both sections */
@media (max-width: 767px) {
  .eseo-ai-era-final {
    padding-top: 36px;
  }

  .eseo-ai-era-final > .container,
  .eseo-ai-cover-final > .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .eseo-ai-era-final__floating-card {
    width: 100%;
    margin: 0 auto -52px;
    padding: 24px 18px 26px;
    border-radius: 17px;
  }

  .eseo-ai-era-final__floating-card h3 {
    font-size: 21px;
    white-space: normal;
  }

  .eseo-ai-era-final__floating-card p {
    font-size: 11px;
  }

  .eseo-ai-cover-final {
    padding: 92px 0 56px;
  }

  .eseo-ai-cover-final__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .eseo-ai-cover-final__media {
    order: 1;
  }

  .eseo-ai-cover-final__content {
    order: 2;
    max-width: 100%;
  }

  .eseo-ai-cover-final__media img {
    width: min(100%, 330px);
    max-width: 330px;
  }

  .eseo-ai-cover-final__content h2 {
    font-size: 30px;
  }

  .eseo-ai-cover-final__list li {
    padding-left: 22px;
    font-size: 13px;
  }

  .eseo-ai-cover-final__list li::before {
    width: 12px;
    height: 12px;
  }

  .eseo-ai-cover-final__list li::after {
    left: 2.5px;
    top: 0;
    font-size: 8px;
  }

 .eseo-ai-cover-final__btn {
  width: 280px;
  min-width: 280px;
  max-width: calc(100vw - 32px);
  height: 60px;
  min-height: 60px;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  margin-left: auto;
  margin-right: auto;
}
}

@media (max-width: 480px) {
  .eseo-ai-era-final {
    padding-top: 30px;
  }

  .eseo-ai-era-final__floating-card {
    margin-bottom: -42px;
    padding: 22px 16px 24px;
    border-radius: 15px;
  }

  .eseo-ai-era-final__floating-card h3 {
    font-size: 19px;
    line-height: 1.28;
  }

  .eseo-ai-era-final__floating-card p {
    font-size: 10px;
    line-height: 1.65;
  }

  .eseo-ai-cover-final {
    padding-top: 78px;
  }

  .eseo-ai-cover-final__media img {
    max-width: 285px;
  }

  .eseo-ai-cover-final__content h2 {
    font-size: 27px;
  }
}


/* =========================================================
   FINAL FIX - Guest Posting Hero + Stats Mobile Cut Issue
   Add this at the VERY BOTTOM of your CSS
========================================================= */

/* ---------- Desktop keep as is ---------- */
.guest-posting-services-hero {
  overflow: visible;
}

.guest-posting-services-stats {
  z-index: 5;
}

/* ---------- Tablet ---------- */
@media (max-width: 1100px) {
  .guest-posting-services-hero {
    min-height: auto !important;
    padding: 72px 0 40px !important;
    overflow: visible !important;
  }

  .guest-posting-services-hero__inner {
    width: min(100% - 40px, 780px) !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    justify-items: center;
    text-align: center;
  }

  .guest-posting-services-hero__content {
    max-width: 760px !important;
  }

  .guest-posting-services-hero__content h1,
  .guest-posting-services-hero__content h2,
  .guest-posting-services-hero__content p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .guest-posting-services-hero__btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .guest-posting-services-hero__form-card {
    width: 100% !important;
    max-width: 620px !important;
    justify-self: center !important;
  }

  .guest-posting-services-stats {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: min(100% - 40px, 760px) !important;
    margin: 34px auto 0 !important;
    padding: 26px 28px !important;
    min-height: auto !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
    border-radius: 26px !important;
  }

  .guest-posting-services-hero + section {
    padding-top: 70px !important;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 760px) {
  .guest-posting-services-hero {
    min-height: auto !important;
    padding: 54px 0 34px !important;
    overflow: visible !important;
  }

  .guest-posting-services-hero__inner {
    width: min(100% - 24px, 560px) !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .guest-posting-services-hero__content {
    max-width: 100% !important;
    text-align: left !important;
  }

  .guest-posting-services-hero__content h1 {
    font-size: clamp(31px, 8.2vw, 42px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.8px !important;
    max-width: 100% !important;
  }

  .guest-posting-services-hero__content h1 br {
    display: none !important;
  }

  .guest-posting-services-hero__content h2 {
    font-size: 15px !important;
    line-height: 1.45 !important;
    max-width: 100% !important;
  }

  .guest-posting-services-hero__content p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
  }

  .guest-posting-services-hero__btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .guest-posting-services-hero__form-card {
    width: 100% !important;
    max-width: 100% !important;
    justify-self: center !important;
  }

  .guest-posting-services-hero__chart-bars {
    display: none !important;
  }

  .guest-posting-services-stats {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: min(100% - 24px, 420px) !important;
    margin: 24px auto 0 !important;
    padding: 22px 16px !important;
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    border-radius: 22px !important;
  }

  .guest-posting-services-stats__item {
    text-align: center !important;
  }

  .guest-posting-services-stats__item strong {
    font-size: 22px !important;
    margin-bottom: 6px !important;
  }

  .guest-posting-services-stats__item p {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
  }

  .guest-posting-services-stats__item p br {
    display: none !important;
  }

  .guest-posting-services-hero + section {
    padding-top: 52px !important;
  }
}

/* ---------- Small Mobile ---------- */
@media (max-width: 430px) {
  .guest-posting-services-hero__inner {
    width: min(100% - 20px, 390px) !important;
  }

  .guest-posting-services-hero__content h1 {
    font-size: 29px !important;
  }

  .guest-posting-services-stats {
    width: min(100% - 20px, 360px) !important;
    padding: 20px 14px !important;
    gap: 16px !important;
  }

  .guest-posting-services-stats__item strong {
    font-size: 21px !important;
  }

  .guest-posting-services-stats__item p {
    font-size: 12px !important;
  }
}

/* =========================================
   SEO Services Agency Compare Section
========================================= */

.seo-services-agency-compare {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 52%, rgba(47, 184, 27, 0.12), transparent 25%),
    #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.seo-services-agency-compare__header {
  max-width: 920px;
  margin: 0 auto 76px;
  text-align: center;
}

.seo-services-agency-compare__eyebrow {
  display: inline-flex;
  margin-bottom: 15px;
  color: #087d33;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seo-services-agency-compare__header h2 {
  margin: 0 0 18px;
  color: #113b51;
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -1.3px;
}

.seo-services-agency-compare__header h2 span {
  color: #07823a;
}

.seo-services-agency-compare__header p {
  margin: 0;
  color: #66778a;
  font-size: 14px;
  line-height: 1.65;
}

.seo-services-agency-compare__layout {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.seo-services-agency-compare__card {
  position: relative;
  min-height: 855px;
  padding: 55px 34px 38px;
  border-radius: 22px;
  background: #ffffff;
}

.seo-services-agency-compare__card--eseo {
  border: 1.5px solid #1f9b56;
  box-shadow: 0 22px 55px rgba(8, 125, 51, 0.12);
}

.seo-services-agency-compare__card--typical {
  border: 1.5px solid #d5d5d5;
  box-shadow: 0 18px 42px rgba(17, 59, 81, 0.05);
}

.seo-services-agency-compare__badge {
  position: absolute;
  top: -18px;
  left: 50%;
  min-width: 170px;
  height: 37px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  background: #087d33;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(8, 125, 51, 0.18);
}

.seo-services-agency-compare__badge svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-services-agency-compare__card h3 {
  margin: 0 0 35px;
  text-align: center;
  font-size: clamp(32px, 3.3vw, 32px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1px;
}

.seo-services-agency-compare__card--eseo h3 {
  color: #07823a;
}

.seo-services-agency-compare__card--typical h3 {
  color: #667085;
}

.seo-services-agency-compare__card h3::after {
  content: "";
  width: 48px;
  height: 3px;
  display: block;
  margin: 11px auto 0;
  border-radius: 999px;
}

.seo-services-agency-compare__card--eseo h3::after {
  background: #07823a;
}

.seo-services-agency-compare__card--typical h3::after {
  background: #667085;
}

.seo-services-agency-compare__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-services-agency-compare__list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid #e3e7ea;
}

.seo-services-agency-compare__list li:last-child {
  border-bottom: 0;
}

.seo-services-agency-compare__icon {
  width: 25px;
  height: 25px;
  margin-top: 2px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
}

.seo-services-agency-compare__icon--check {
  background: #26ba17;
}

.seo-services-agency-compare__icon--cross {
  background: #9a9a9a;
}

.seo-services-agency-compare__list strong {
  display: block;
  margin-bottom: 4px;
  color: #10384f;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
}

.seo-services-agency-compare__card--typical .seo-services-agency-compare__list strong {
  color: #1d2b3a;
}

.seo-services-agency-compare__list p {
  margin: 0;
  color: #66778a;
  font-size: 14px;
  line-height: 1.35;
}

/* Middle Column */
.seo-services-agency-compare__middle {
  position: relative;
  min-height: 700px;
  display: grid;
  align-content: space-between;
  justify-items: center;
}

.seo-services-agency-compare__middle::before {
  content: "";
  position: absolute;
  top: 46px;
  bottom: 46px;
  left: 50%;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(17, 59, 81, 0.15) 0 8px,
    transparent 8px 18px
  );
  transform: translateX(-50%);
}

.seo-services-agency-compare__vs,
.seo-services-agency-compare__middle-item span {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1.5px solid #bde7c4;
  border-radius: 50%;
  background: #ffffff;
  color: #1d2b3a;
  box-shadow: 0 12px 24px rgba(8, 125, 51, 0.12);
}

.seo-services-agency-compare__vs {
  font-size: 21px;
  font-weight: 800;
}

.seo-services-agency-compare__middle-item {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.seo-services-agency-compare__middle-item span {
  color: #087d33;
}

.seo-services-agency-compare__middle-item svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-services-agency-compare__middle-item strong {
  color: #1d2b3a;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
}

.seo-services-agency-compare__cta {
  margin-top: 76px;
  text-align: center;
}

.seo-services-agency-compare__cta .btn {
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  height: 60px;
  min-height: 60px;
  padding-left: 16px;
  padding-right: 16px;
  justify-content: center;
  text-align: center;
  border-radius: 9px;
  line-height: 1.2;
  white-space: normal;
  box-shadow: 0 16px 30px rgba(8, 125, 51, 0.22);
}

/* Tablet */
@media (max-width: 1100px) {
  .seo-services-agency-compare {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .seo-services-agency-compare__header {
    margin-bottom: 54px;
  }

  .seo-services-agency-compare__layout {
    max-width: 760px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .seo-services-agency-compare__card {
    min-height: auto;
  }

  .seo-services-agency-compare__middle {
    min-height: auto;
    grid-template-columns: repeat(4, minmax(0, auto));
    justify-content: center;
    align-items: center;
    gap: 22px;
    order: 2;
  }

  .seo-services-agency-compare__card--typical {
    order: 3;
  }

  .seo-services-agency-compare__middle::before {
    display: none;
  }

  .seo-services-agency-compare__vs,
  .seo-services-agency-compare__middle-item span {
    width: 58px;
    height: 58px;
  }

  .seo-services-agency-compare__middle-item svg {
    width: 27px;
    height: 27px;
  }

  .seo-services-agency-compare__cta {
    margin-top: 46px;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .seo-services-agency-compare {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .seo-services-agency-compare__header {
    margin-bottom: 42px;
  }

  .seo-services-agency-compare__header h2 {
    font-size: 31px;
  }

  .seo-services-agency-compare__header p {
    font-size: 14.5px;
  }

  .seo-services-agency-compare__card {
    padding: 48px 22px 26px;
    border-radius: 18px;
  }

  .seo-services-agency-compare__badge {
    min-width: 150px;
    height: 34px;
    font-size: 12px;
  }

  .seo-services-agency-compare__card h3 {
    font-size: 34px;
    margin-bottom: 25px;
  }

  .seo-services-agency-compare__list li {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    padding: 15px 0;
  }

  .seo-services-agency-compare__icon {
    width: 23px;
    height: 23px;
    font-size: 16px;
  }

  .seo-services-agency-compare__list strong {
    font-size: 15.5px;
  }

  .seo-services-agency-compare__list p {
    font-size: 12.5px;
  }

  .seo-services-agency-compare__middle {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 6px 0;
  }

  .seo-services-agency-compare__vs {
    grid-column: 1 / -1;
    width: 56px;
    height: 56px;
    justify-self: center;
  }

  .seo-services-agency-compare__middle-item span {
    width: 54px;
    height: 54px;
  }

  .seo-services-agency-compare__middle-item:last-child {
    grid-column: 1 / -1;
  }

  .seo-services-agency-compare__cta {
    margin-top: 38px;
  }

.seo-services-agency-compare__cta .btn {
  width: 280px;
  min-width: 280px;
  max-width: calc(100vw - 32px);
  height: 60px;
  min-height: 60px;
}
}

/* Small Mobile */
@media (max-width: 420px) {
  .seo-services-agency-compare__middle {
    grid-template-columns: 1fr;
  }

  .seo-services-agency-compare__middle-item:last-child {
    grid-column: auto;
  }
}

/* =========================================================
   SEO Services Agency - How We Compare You with Competitors Section
========================================================= */

.seo-services-agency-methodology {
  padding: 60px 0 60px;
  background: #f8f8f8;
}

.seo-services-agency-methodology__header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.seo-services-agency-methodology__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.seo-services-agency-methodology__eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #7bd38a;
}

.seo-services-agency-methodology__title {
  margin: 0 0 16px;
  color: #113b51;
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -1.4px;
}

.seo-services-agency-methodology__title span {
  color: #15803d;
}

.seo-services-agency-methodology__subtitle {
  max-width: 650px;
  margin: 0 auto;
  color: #5f7283;
  font-size: 14px;
  line-height: 1.7;
}

.seo-services-agency-methodology__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid #e2e8e4;
  background: #ffffff;
}

.seo-services-agency-methodology__card {
  min-height: 210px;
  padding: 26px 20px 22px;
  background: #ffffff;
  border-right: 1px solid #e2e8e4;
  border-bottom: 1px solid #e2e8e4;
  transition: all 0.25s ease;
}

.seo-services-agency-methodology__card:nth-child(4),
.seo-services-agency-methodology__card:nth-child(8) {
  border-right: 0;
}

.seo-services-agency-methodology__card:nth-last-child(-n+4) {
  border-bottom: 0;
}

.seo-services-agency-methodology__card:hover {
  background: #fcfffc;
}

.seo-services-agency-methodology__number {
  display: inline-block;
  margin-bottom: 22px;
  color: #cad5cd;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.seo-services-agency-methodology__card h3 {
  margin: 0 0 10px;
  color: #113b51;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.seo-services-agency-methodology__card p {
  margin: 0;
  color: #5f7283;
  font-size: 14px;
  line-height: 1.7;
}

.seo-services-agency-methodology__card--highlight {
  background: #eef7ed;
}

.seo-services-agency-methodology__card--highlight:hover {
  background: #e8f4e7;
}

.seo-services-agency-methodology__flag-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 18px;
  color: #b8c5ba;
}

.seo-services-agency-methodology__flag-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-services-agency-methodology__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.seo-services-agency-methodology__btn {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 48px;
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: normal;
}

.seo-services-agency-methodology__btn--primary {
  background: linear-gradient(135deg, #108235 0%, #0a9b3c 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 130, 53, 0.25);
}

.seo-services-agency-methodology__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(16, 130, 53, 0.32);
}

.seo-services-agency-methodology__btn--secondary {
  background: #ffffff;
  color: #15803d;
  border: 1px solid #dbe3dc;
}

.seo-services-agency-methodology__btn--secondary:hover {
  background: #f6fbf6;
  border-color: #15803d;
}

/* =========================
   Tablet
========================= */
@media (max-width: 1100px) {
  .seo-services-agency-methodology {
    padding: 75px 0 70px;
  }

  .seo-services-agency-methodology__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .seo-services-agency-methodology__card {
    min-height: 200px;
  }

  .seo-services-agency-methodology__card:nth-child(4),
  .seo-services-agency-methodology__card:nth-child(8) {
    border-right: 1px solid #e2e8e4;
  }

  .seo-services-agency-methodology__card:nth-child(even) {
    border-right: 0;
  }

  .seo-services-agency-methodology__card:nth-last-child(-n+4) {
    border-bottom: 1px solid #e2e8e4;
  }

  .seo-services-agency-methodology__card:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

/* =========================
   Mobile
========================= */
@media (max-width: 767px) {
  .seo-services-agency-methodology {
    padding: 58px 0 58px;
  }

  .seo-services-agency-methodology__header {
    margin-bottom: 30px;
  }

  .seo-services-agency-methodology__title {
    font-size: 34px;
    line-height: 1.1;
  }

  .seo-services-agency-methodology__title br {
    display: none;
  }

  .seo-services-agency-methodology__subtitle {
    font-size: 14px;
    line-height: 1.65;
  }

  .seo-services-agency-methodology__grid {
    grid-template-columns: 1fr;
  }

  .seo-services-agency-methodology__card {
    min-height: auto;
    padding: 22px 18px 20px;
    border-right: 0 !important;
    border-bottom: 1px solid #e2e8e4 !important;
  }

  .seo-services-agency-methodology__card:last-child {
    border-bottom: 0 !important;
  }

  .seo-services-agency-methodology__number {
    margin-bottom: 16px;
    font-size: 30px;
  }

  .seo-services-agency-methodology__card h3 {
    font-size: 18px;
  }

  .seo-services-agency-methodology__card p {
    font-size: 13.5px;
  }

  .seo-services-agency-methodology__actions {
    gap: 12px;
    margin-top: 26px;
  }

 .seo-services-agency-methodology__btn {
  width: 220px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  height: 48px;
  min-height: 48px;
  font-size: 14px;
}
}


/* =========================================================
   SEO Services Agency - Problems Section
========================================================= */

.seo-services-agency-problems {
  position: relative;
  overflow: hidden;
  padding: 60px 0 60px;
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 184, 27, 0.08), transparent 28%),
    #ffffff;
}

.seo-services-agency-problems__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.seo-services-agency-problems__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #15803d;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.seo-services-agency-problems__eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #7bd38a;
}

.seo-services-agency-problems__header h2 {
  margin: 0 0 18px;
  color: #10384f;
  font-size: clamp(34px, 3.6vw, 36x);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -1.2px;
}

.seo-services-agency-problems__header h2 span {
  color: #07823a;
}

.seo-services-agency-problems__header p {
  max-width: 620px;
  margin: 0 auto;
  color: #53677e;
  font-size: 14px;
  line-height: 1.7;
}

.seo-services-agency-problems__grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #e3e9e7;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 59, 81, 0.04);
}

.seo-services-agency-problems__card {
  position: relative;
  min-height: 176px;
  padding: 26px 22px 24px;
  border-right: 1px solid #e3e9e7;
  border-bottom: 1px solid #e3e9e7;
  background: #ffffff;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}

.seo-services-agency-problems__card:nth-child(4),
.seo-services-agency-problems__card:nth-child(8) {
  border-right: 0;
}

.seo-services-agency-problems__card:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.seo-services-agency-problems__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(236, 132, 34, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 251, 244, 0.75));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.seo-services-agency-problems__card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #f28c28, #07823a);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.seo-services-agency-problems__card:hover {
  z-index: 3;
  transform: translateY(-7px);
  border-color: rgba(7, 130, 58, 0.28);
  box-shadow: 0 20px 42px rgba(17, 59, 81, 0.12);
}

.seo-services-agency-problems__card:hover::before,
.seo-services-agency-problems__card:hover::after {
  opacity: 1;
}

.seo-services-agency-problems__card:hover::after {
  transform: scaleX(1);
}

.seo-services-agency-problems__icon,
.seo-services-agency-problems__card h3,
.seo-services-agency-problems__card p {
  position: relative;
  z-index: 2;
}

.seo-services-agency-problems__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #f3d8bc;
  border-radius: 50%;
  background: #ffffff;
  color: #e98422;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.seo-services-agency-problems__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-services-agency-problems__card:hover .seo-services-agency-problems__icon {
  transform: translateY(-3px) scale(1.05);
  background: #fff6ec;
  border-color: #f28c28;
  color: #07823a;
}

.seo-services-agency-problems__card h3 {
  margin: 0 0 9px;
  color: #10384f;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
}

.seo-services-agency-problems__card p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.6;
}

.seo-services-agency-problems__card p strong {
  color: #007c34;
  font-weight: 700;
}

.seo-services-agency-problems__cta {
  margin-top: 44px;
  text-align: center;
}

.seo-services-agency-problems__btn {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 48px;
  min-height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  line-height: 1.2;
  white-space: normal;
  box-shadow: 0 14px 28px rgba(8, 125, 51, 0.22);
}

/* Tablet */
@media (max-width: 1100px) {
  .seo-services-agency-problems {
    padding: 72px 0 68px;
  }

  .seo-services-agency-problems__grid {
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-services-agency-problems__card {
    min-height: 170px;
  }

  .seo-services-agency-problems__card:nth-child(4),
  .seo-services-agency-problems__card:nth-child(8) {
    border-right: 1px solid #e3e9e7;
  }

  .seo-services-agency-problems__card:nth-child(even) {
    border-right: 0;
  }

  .seo-services-agency-problems__card:nth-last-child(-n + 4) {
    border-bottom: 1px solid #e3e9e7;
  }

  .seo-services-agency-problems__card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .seo-services-agency-problems {
    padding: 56px 0 58px;
  }

  .seo-services-agency-problems__header {
    margin-bottom: 34px;
  }

  .seo-services-agency-problems__header h2 {
    font-size: 31px;
  }

  .seo-services-agency-problems__header h2 br {
    display: none;
  }

  .seo-services-agency-problems__header p {
    font-size: 14px;
  }

  .seo-services-agency-problems__grid {
    grid-template-columns: 1fr;
    border-radius: 14px;
    overflow: hidden;
  }

  .seo-services-agency-problems__card {
    min-height: auto;
    padding: 24px 20px 22px;
    border-right: 0 !important;
    border-bottom: 1px solid #e3e9e7 !important;
  }

  .seo-services-agency-problems__card:last-child {
    border-bottom: 0 !important;
  }

  .seo-services-agency-problems__card:hover {
    transform: translateY(-4px);
  }

  .seo-services-agency-problems__icon {
    margin-bottom: 18px;
  }

  .seo-services-agency-problems__card h3 {
    font-size: 16px;
  }

  .seo-services-agency-problems__card p {
    font-size: 13px;
  }

  .seo-services-agency-problems__cta {
    margin-top: 30px;
  }

.seo-services-agency-problems__btn {
  width: 220px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  height: 48px;
  min-height: 48px;
}
}


/* =========================================================
   SEO Services Agency - Service Areas Section
========================================================= */

.seo-services-agency-areas {
  position: relative;
  overflow: hidden;
  padding: 60px 0 60px;
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 184, 27, 0.07), transparent 28%),
    #ffffff;
}

.seo-services-agency-areas__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.seo-services-agency-areas__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #15803d;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.seo-services-agency-areas__eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #7bd38a;
}

.seo-services-agency-areas__header h2 {
  margin: 0 0 18px;
  color: #10384f;
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -1.2px;
}

.seo-services-agency-areas__header h2 span {
  color: #07823a;
}

.seo-services-agency-areas__header p {
  max-width: 620px;
  margin: 0 auto;
  color: #53677e;
  font-size: 14px;
  line-height: 1.7;
}

.seo-services-agency-areas__grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #e4eae7;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 59, 81, 0.04);
}

.seo-services-agency-areas__card {
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 22px;
  border-right: 1px solid #e4eae7;
  border-bottom: 1px solid #e4eae7;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}

.seo-services-agency-areas__card:nth-child(4),
.seo-services-agency-areas__card:nth-child(8) {
  border-right: 0;
}

.seo-services-agency-areas__card:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.seo-services-agency-areas__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(21, 128, 61, 0.13), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 240, 0.75));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.seo-services-agency-areas__card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #7bd38a, #07823a);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.seo-services-agency-areas__card:hover {
  z-index: 3;
  transform: translateY(-7px);
  border-color: rgba(7, 130, 58, 0.3);
  box-shadow: 0 20px 42px rgba(17, 59, 81, 0.12);
}

.seo-services-agency-areas__card:hover::before,
.seo-services-agency-areas__card:hover::after {
  opacity: 1;
}

.seo-services-agency-areas__card:hover::after {
  transform: scaleX(1);
}

.seo-services-agency-areas__card div,
.seo-services-agency-areas__arrow {
  position: relative;
  z-index: 2;
}

.seo-services-agency-areas__card h3 {
  margin: 0 0 8px;
  color: #10384f;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  transition: color 0.28s ease;
}

.seo-services-agency-areas__card p {
  margin: 0;
  color: #53677e;
  font-size: 14px;
  line-height: 1.45;
}

.seo-services-agency-areas__card:hover h3 {
  color: #07823a;
}

.seo-services-agency-areas__arrow {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border: 1px solid #dce9df;
  border-radius: 50%;
  background: #ffffff;
  color: #07823a;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.seo-services-agency-areas__arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-services-agency-areas__card:hover .seo-services-agency-areas__arrow {
  transform: translateX(4px);
  background: #07823a;
  color: #ffffff;
  border-color: #07823a;
  box-shadow: 0 10px 20px rgba(7, 130, 58, 0.24);
}

/* Tablet */
@media (max-width: 1100px) {
  .seo-services-agency-areas {
    padding: 72px 0 68px;
  }

  .seo-services-agency-areas__grid {
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-services-agency-areas__card:nth-child(4),
  .seo-services-agency-areas__card:nth-child(8) {
    border-right: 1px solid #e4eae7;
  }

  .seo-services-agency-areas__card:nth-child(even) {
    border-right: 0;
  }

  .seo-services-agency-areas__card:nth-last-child(-n + 4) {
    border-bottom: 1px solid #e4eae7;
  }

  .seo-services-agency-areas__card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .seo-services-agency-areas {
    padding: 56px 0 58px;
  }

  .seo-services-agency-areas__header {
    margin-bottom: 34px;
  }

  .seo-services-agency-areas__header h2 {
    font-size: 31px;
  }

  .seo-services-agency-areas__header h2 br {
    display: none;
  }

  .seo-services-agency-areas__header p {
    font-size: 14px;
  }

  .seo-services-agency-areas__grid {
    grid-template-columns: 1fr;
    border-radius: 14px;
    overflow: hidden;
  }

  .seo-services-agency-areas__card {
    min-height: auto;
    padding: 23px 20px;
    border-right: 0 !important;
    border-bottom: 1px solid #e4eae7 !important;
  }

  .seo-services-agency-areas__card:last-child {
    border-bottom: 0 !important;
  }

  .seo-services-agency-areas__card:hover {
    transform: translateY(-4px);
  }

  .seo-services-agency-areas__card h3 {
    font-size: 16px;
  }

  .seo-services-agency-areas__card p {
    font-size: 13px;
  }

  .seo-services-agency-areas__arrow {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

/* =================================================
   SEO Services Agency - SEO Types Section
=================================================== */

.seo-services-agency-types {
  position: relative;
  overflow: hidden;
  padding: 60px 0 60px;
  background:
    radial-gradient(circle at 10% 20%, rgba(47, 184, 27, 0.07), transparent 28%),
    #ffffff;
}

.seo-services-agency-types__header {
  max-width: 860px;
  margin: 0 auto 74px;
  text-align: center;
}

.seo-services-agency-types__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #15803d;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.seo-services-agency-types__eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #7bd38a;
}

.seo-services-agency-types__header h2 {
  margin: 0 0 22px;
  color: #10384f;
  font-size: clamp(34px, 3.6vw, 36px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -1.4px;
}

.seo-services-agency-types__header h2 span {
  color: #07823a;
}

.seo-services-agency-types__header p {
  max-width: 780px;
  margin: 0 auto;
  color: #66778a;
  font-size: 14px;
  line-height: 1.7;
}

.seo-services-agency-types__grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 110px;
  row-gap: 0;
}

.seo-services-agency-types__item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid #d9e0df;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.seo-services-agency-types__item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.seo-services-agency-types__item::before {
  content: "";
  position: absolute;
  inset: 12px -18px;
  z-index: 0;
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(21, 128, 61, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(239,248,241,0.78));
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.seo-services-agency-types__item::after {
  content: "";
  position: absolute;
  left: 62px;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7bd38a, #07823a);
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: left;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.seo-services-agency-types__item:hover {
  z-index: 2;
  transform: translateY(-6px);
  border-color: transparent;
}

.seo-services-agency-types__item:hover::before {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 42px rgba(17, 59, 81, 0.1);
}

.seo-services-agency-types__item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.seo-services-agency-types__number,
.seo-services-agency-types__icon,
.seo-services-agency-types__item div {
  position: relative;
  z-index: 2;
}

.seo-services-agency-types__number {
  margin-top: 22px;
  color: #07823a;
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  transition: transform 0.28s ease, color 0.28s ease;
}

.seo-services-agency-types__item:hover .seo-services-agency-types__number {
  color: #20b84b;
  transform: translateX(4px);
}

.seo-services-agency-types__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #b8c4c3;
  border-radius: 50%;
  background: #ffffff;
  color: #07823a;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.seo-services-agency-types__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-services-agency-types__item:hover .seo-services-agency-types__icon {
  transform: translateY(-3px) scale(1.06);
  background: #07823a;
  color: #ffffff;
  border-color: #07823a;
  box-shadow: 0 12px 24px rgba(7, 130, 58, 0.24);
}

.seo-services-agency-types__item h3 {
  margin: 0 0 10px;
  color: #10384f;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.3px;
  transition: color 0.28s ease;
}

.seo-services-agency-types__item:hover h3 {
  color: #07823a;
}

.seo-services-agency-types__item p {
  margin: 0;
  color: #66778a;
  font-size: 14px;
  line-height: 1.55;
}

.seo-services-agency-types .btn,
.seo-services-agency-types .btn-primary {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  margin-left: auto;
  margin-right: auto;
}

/* Tablet */
@media (max-width: 1100px) {
  .seo-services-agency-types {
    padding: 74px 0 72px;
  }

  .seo-services-agency-types__header {
    margin-bottom: 54px;
  }

  .seo-services-agency-types__grid {
    max-width: 760px;
    column-gap: 50px;
  }

  .seo-services-agency-types__item {
    grid-template-columns: 34px 52px 1fr;
    gap: 14px;
  }

  .seo-services-agency-types__item h3 {
    font-size: 21px;
  }

  .seo-services-agency-types__item p {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .seo-services-agency-types {
    padding: 56px 0 58px;
  }

  .seo-services-agency-types__header {
    margin-bottom: 34px;
  }

  .seo-services-agency-types__header h2 {
    font-size: 31px;
  }

  .seo-services-agency-types__header p {
    font-size: 14.5px;
  }

  .seo-services-agency-types__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .seo-services-agency-types__item,
  .seo-services-agency-types__item:nth-last-child(-n + 2) {
    grid-template-columns: 34px 48px 1fr;
    gap: 13px;
    padding: 24px 0;
    border-bottom: 1px solid #d9e0df;
  }

  .seo-services-agency-types__item:last-child {
    border-bottom: 0;
  }

  .seo-services-agency-types__item::before {
    inset: 10px -10px;
  }

  .seo-services-agency-types__item:hover {
    transform: translateY(-4px);
  }

  .seo-services-agency-types__number {
    margin-top: 18px;
    font-size: 15px;
  }

  .seo-services-agency-types__icon {
    width: 44px;
    height: 44px;
  }

  .seo-services-agency-types__icon svg {
    width: 22px;
    height: 22px;
  }

  .seo-services-agency-types__item h3 {
    font-size: 18px;
  }

  .seo-services-agency-types__item p {
    font-size: 13.5px;
  }
  
 .seo-services-agency-hero__actions {
  align-items: center;
  justify-content: center;
}

.seo-services-agency-hero__primary-btn,
.seo-services-agency-hero__secondary-btn {
  width: 220px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  height: 48px;
  min-height: 48px;
}
}

/* Small Mobile */
@media (max-width: 420px) {
  .seo-services-agency-types__item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .seo-services-agency-types__number {
    margin-top: 0;
  }

  .seo-services-agency-types__item::after {
    left: 0;
  }
  
  @media (max-width: 420px) {
  .seo-services-agency-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    text-align: center;
  }

  .seo-services-agency-hero__primary-btn,
  .seo-services-agency-hero__secondary-btn {
    width: 220px;
    min-width: 220px;
    max-width: calc(100vw - 32px);
    height: 48px;
    min-height: 48px;
    padding-left: 14px;
    padding-right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
    margin-left: auto;
    margin-right: auto;
  }
}
}