*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --ink: #09090f;
  --ink2: #0f1018;
  --ink3: #161820;
  --ink4: #1d2030;
  --blue: #2688e8;
  --blue-v: #3399ff;
  --blue-glow: rgba(38, 136, 232, .22);
  --blue-soft: rgba(38, 136, 232, .08);
  --white: #ffffff;
  --off: #f6f8fc;
  --muted: #7a8499;
  --muted2: #a0aabb;
  --border-d: rgba(255, 255, 255, .06);
  --border-b: rgba(38, 136, 232, .2);
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
  cursor: none
}

.c-dot {
  position: fixed;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s
}

.c-ring {
  position: fixed;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: .3;
  transition: width .28s, height .28s, opacity .25s
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 7000;
  opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E")
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  transition: background .35s, border-color .35s;
  background: rgba(9, 9, 15, .01);
  border-bottom: 1px solid transparent
}

nav.scrolled {
  background: rgba(9, 9, 15, .92);
  backdrop-filter: blur(20px);
  border-color: var(--border-d)
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: none
}

.logo-estgo {
  font-family: 'Manrope', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px
}


.logo-max-pill {
  background: var(--blue);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 9px 3px 8px;
  border-radius: 7px;
  margin-left: 2px;
  letter-spacing: .8px;
  line-height: 1
}

.logo-sub {
  font-size: 8.5px;
  letter-spacing: 2.8px;
  color: var(--muted);
  text-transform: uppercase;
  margin-left: 11px;
  font-weight: 600
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px
}

.nav-links a {
  text-decoration: none;
  color: var(--muted2);
  font-size: 13.5px;
  font-weight: 500;
  transition: color .2s;
  cursor: none
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white)
}

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px !important;
  font-weight: 700 !important;
  transition: transform .2s, box-shadow .2s !important
}

.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px var(--blue-glow) !important
}

.hamburger {
  font-size: 22px;
  color: var(--white);
  cursor: pointer;
  margin-left: auto;
  display: none;
  /* hidden on desktop */
}


/* HERO */
.hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 52px 80px;
  position: relative;
  overflow: hidden;
  text-align: center
}

.hero-bg-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #050710 0%, #080c1a 40%, #060912 100%)
}

.hero-aurora {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 40%, rgba(38, 136, 232, .15) 0%, rgba(20, 80, 160, .06) 35%, transparent 70%);
  filter: blur(60px)
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent)
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-b);
  background: var(--blue-soft);
  color: var(--blue-v);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .6s .1s ease forwards
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .7s .2s ease forwards;
  position: relative;
  z-index: 2
}

.hero-title .blue {
  color: var(--blue)
}

.hero-title .dim {
  color: rgba(255, 255, 255, .22);
  font-style: italic;
  font-weight: 300
}

.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted2);
  max-width: 620px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: fadeUp .7s .35s ease forwards;
  position: relative;
  z-index: 2
}

.hero-sub b {
  color: var(--white)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* SERVICES GRID */
.svcs-sec {
  padding: 80px 52px 100px;
  position: relative;
  z-index: 2
}

.svcs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto
}

.svc-card {
  background: var(--ink3);
  border: 1px solid var(--border-d);
  border-radius: 20px;
  padding: 44px 36px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  cursor: none;
  position: relative;
  overflow: hidden
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, var(--blue-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(38, 136, 232, .35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4)
}

.svc-card:hover::before {
  opacity: 1
}

.svc-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--blue-v);
  opacity: .6;
  margin-bottom: 20px;
  text-transform: uppercase
}

.svc-icon {
  font-size: 44px;
  margin-bottom: 20px;
  display: block
}

.svc-name {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 14px
}

.svc-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted2);
  margin-bottom: 28px;
  flex: 1
}

.svc-metrics {
  display: flex;
  gap: 16px;
  margin-bottom: 28px
}

.sm {
  background: var(--ink4);
  border: 1px solid var(--border-d);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center
}

.sm-n {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-v);
  line-height: 1
}

.sm-l {
  font-size: 9.5px;
  color: var(--muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px
}

.tag {
  background: var(--blue-soft);
  border: 1px solid var(--border-b);
  color: var(--blue-v);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .2px
}

.svc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue-v);
  transition: gap .2s
}

.svc-card:hover .svc-link {
  gap: 14px
}

/* CROSS CHANNEL */
.cross-sec {
  padding: 80px 52px;
  background: var(--ink2)
}

.cross-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.cross-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-v);
  margin-bottom: 16px
}

.cross-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px
}

.cross-h2 .blue {
  color: var(--blue)
}

.cross-p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted2);
  margin-bottom: 32px
}

.cross-items {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ci {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.ci-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-soft);
  border: 1px solid var(--border-b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue-v);
  flex-shrink: 0
}

.ci-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px
}

.ci-text p {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.6
}

.cross-card {
  background: var(--ink3);
  border: 1px solid var(--border-d);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.cc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--ink4);
  border-radius: 12px;
  border: 1px solid var(--border-d)
}

.cc-ico {
  font-size: 22px
}

.cc-content h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px
}

.cc-content p {
  font-size: 12px;
  color: var(--muted2)
}

.cc-badge {
  margin-left: auto;
  background: var(--blue-soft);
  border: 1px solid var(--border-b);
  color: var(--blue-v);
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap
}

/* WHY */
.why-sec {
  padding: 80px 52px 100px
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto
}

.sec-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-v);
  margin-bottom: 16px
}

.sec-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 16px
}

.sec-h2 .blue {
  color: var(--blue)
}

.sec-h2 .dim {
  color: rgba(255, 255, 255, .22);
  font-style: italic;
  font-weight: 300
}

.sec-p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted2);
  max-width: 560px;
  margin-bottom: 56px
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.why-card {
  background: var(--ink3);
  border: 1px solid var(--border-d);
  border-radius: 16px;
  padding: 28px
}

.why-n {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue-v);
  letter-spacing: 2px;
  margin-bottom: 12px
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px
}

.why-card p {
  font-size: 13.5px;
  color: var(--muted2);
  line-height: 1.65
}

/* CTA */
.cta-sec {
  padding: 100px 52px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(38, 136, 232, .12) 0%, transparent 65%);
  pointer-events: none
}

.cta-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -2px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2
}

.cta-h2 .blue {
  color: var(--blue)
}

.cta-h2 .dim {
  color: rgba(255, 255, 255, .22);
  font-style: italic;
  font-weight: 300
}

.cta-sub {
  font-size: 16px;
  color: var(--muted2);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
  position: relative;
  z-index: 2
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 2
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 15px 32px;
  border-radius: 10px;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: none;
  transition: all .25s;
  box-shadow: 0 8px 32px rgba(38, 136, 232, .35);
  text-decoration: none;
  display: inline-block
}

.btn-primary:hover {
  background: var(--blue-v);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(38, 136, 232, .45)
}

.btn-secondary {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  padding: 15px 28px;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: none;
  transition: all .2s;
  text-decoration: none;
  display: inline-block
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .1)
}

/* FOOTER */
footer {
  background: var(--ink2);
  border-top: 1px solid var(--border-d);
  padding: 60px 52px 32px
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 48px
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  margin-bottom: 14px
}

.fbl-estgo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white)
}

.fbl-max {
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 2px;
  letter-spacing: .8px
}

.footer-tagline {
  font-size: 13.5px;
  color: var(--muted2);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 280px
}

.footer-socs {
  display: flex;
  gap: 10px
}

.fsoc {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ink3);
  border: 1px solid var(--border-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted2);
  text-decoration: none;
  cursor: none;
  transition: border-color .2s, color .2s
}

.fsoc:hover {
  border-color: var(--blue);
  color: var(--blue-v)
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px
}

.footer-col ul {
  list-style: none
}

.footer-col ul li {
  margin-bottom: 9px
}

.footer-col ul li a {
  color: var(--muted2);
  text-decoration: none;
  font-size: 13.5px;
  cursor: none;
  transition: color .2s
}

.footer-col ul li a:hover {
  color: var(--blue-v)
}

.footer-bottom {
  border-top: 1px solid var(--border-d);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.footer-bottom p {
  font-size: 12.5px;
  color: var(--muted)
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: none
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

/* MOBILE RESPONSIVE - INJECTED */

/* ================================================
   ESTGOMAX — COMPLETE MOBILE RESPONSIVE CSS
   Inject before 
/* === MOBILE RESPONSIVE === */
/* ============================================
   ESTGOMAX — GLOBAL MOBILE RESPONSIVE CSS
   Paste before 
/* WhatsApp Floating Button */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  text-decoration: none;
  cursor: none;
  transition: transform .25s, box-shadow .25s;
  animation: waPop .5s .8s ease both;
}

.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .6)
}

@keyframes waPop {
  from {
    opacity: 0;
    transform: scale(0.5)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff
}

.wa-tooltip {
  position: fixed;
  bottom: 36px;
  right: 90px;
  z-index: 7999;
  background: #25d366;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left-color: #25d366;
  border-right: none
}

.wa-btn:hover+.wa-tooltip,
.wa-tooltip:hover {
  opacity: 1
}

@media(max-width:680px) {
  .wa-btn {
    bottom: 18px;
    right: 16px;
    width: 48px;
    height: 48px
  }

  .wa-btn svg {
    width: 24px;
    height: 24px
  }

  .wa-tooltip {
    display: none
  }
}











/* Prevent horizontal scroll globally */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

*,
*::before,
*::after {
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {

  /* ── NAV ── */
  nav {
    padding: 0 20px !important;
    height: 60px !important;
    flex-wrap: wrap;
  }

  .logo-sub {
    display: none !important;
  }

  .nav-links {
    gap: 14px !important;
  }

  .nav-links a {
    font-size: 12px !important;
  }
}

@media (max-width: 680px) {

  /* ── NAV ── */
  nav {
    padding: 0 16px !important;
    height: auto !important;
    min-height: 60px;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    background: rgba(9, 9, 15, .97) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
  }

  .logo-sub {
    display: none !important;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px !important;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links a {
    font-size: 11px !important;
    padding: 6px 10px;
  }

  .nav-cta {
    padding: 7px 14px !important;
    font-size: 11px !important;
  }

  /* ── HERO ── */
  .hero {
    padding: 110px 20px 60px !important;
    min-height: auto !important;
  }

  .hero-title,
  .h1 {
    font-size: clamp(36px, 10vw, 56px) !important;
    letter-spacing: -1.5px !important;
    max-width: 100% !important;
  }

  .hero-subline {
    font-size: clamp(28px, 8vw, 44px) !important;
    letter-spacing: -1px !important;
  }

  .hero-sub-title {
    font-size: clamp(28px, 8vw, 44px) !important;
  }

  .hero-desc,
  .hero-sub,
  .sub {
    font-size: 15px !important;
    max-width: 100% !important;
  }

  /* Hide floating cards on mobile — they overlap content */
  .hero-card,
  .notif-pop {
    display: none !important;
  }

  /* ── BUTTONS ── */
  .hero-ctas,
  .cta-btns {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100%;
  }

  .btn-primary,
  .btn-p,
  .btn-s,
  .btn-secondary {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
    padding: 14px 20px !important;
    font-size: 14px !important;
  }

  /* ── PROOF ROW ── */
  .hero-proof,
  .proof {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  /* ── STATS BAR ── */
  .stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }

  .stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
  }

  /* ── GENERIC SECTIONS ── */
  .svcs-sec,
  .why-sec,
  .mc-sec,
  .process-sec,
  .pricing-sec,
  .testi-sec,
  .faq-sec,
  .cta-sec,
  .cs-sec,
  .cross-sec,
  .values-sec,
  .approach-sec,
  .team-sec,
  .story-sec,
  .other-svcs,
  .free-sec,
  .compare-sec {
    padding: 56px 20px !important;
  }

  /* ── ALL GRIDS → SINGLE COLUMN ── */
  .svcs-grid,
  .svc-grid,
  .pc-grid,
  .tgrid,
  .why-grid,
  .values-grid,
  .team-grid,
  .other-grid,
  .cross-inner,
  .why-inner,
  .mc-inner,
  .story-inner,
  .approach-inner {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* ── CASE STUDY CARD ── */
  .cs-card {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 28px 20px !important;
  }

  /* ── FOOTER ── */
  footer {
    padding: 48px 20px 28px !important;
  }

  .footer-top,
  .fbl,
  .fcol {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .footer-bottom,
  .fbot {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }

  /* ── PRICING TABS ── */
  .tabs {
    flex-wrap: wrap !important;
    width: 100% !important;
    justify-content: center;
  }

  .tab {
    font-size: 12px !important;
    padding: 8px 14px !important;
  }

  /* ── CONTACT FORM ── */
  .main {
    grid-template-columns: 1fr !important;
    padding: 90px 16px 60px !important;
    gap: 40px !important;
  }

  .form-card {
    padding: 24px 16px !important;
    margin-top: 0 !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .contact-left {
    padding-top: 0 !important;
  }

  /* ── CTA SECTION ── */
  .cta-form {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 10px !important;
  }

  .cta-input {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .cta-h2,
  .free-h2 {
    font-size: clamp(32px, 9vw, 54px) !important;
    letter-spacing: -1.5px !important;
  }

  /* ── FREE AUDIT STRIP ── */
  .free-inner {
    grid-template-columns: 1fr !important;
    padding: 28px 20px !important;
    gap: 24px !important;
  }

  .free-cta {
    align-items: stretch !important;
  }

  .free-cta .btn-p {
    width: 100% !important;
    text-align: center !important;
  }

  /* ── SEC HEADERS ── */
  .sec-h2 {
    font-size: clamp(28px, 8vw, 46px) !important;
    letter-spacing: -1px !important;
  }

  /* ── CROSS CHANNEL CARD ── */
  .cross-card,
  .why-card,
  .approach-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ── MERCHANT CENTER CARD ── */
  .mc-card {
    width: 100% !important;
  }

  /* ── PROCESS STEPS ── */
  .step {
    grid-template-columns: 40px 1fr !important;
    gap: 16px !important;
  }

  /* ── HERO CARD INNER ── */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* ── CASE STUDY PAGE ── */
  .hero-grid .hero-right {
    display: none !important;
  }

  /* ── MARQUEE ── */
  .marquee-inner {
    gap: 12px !important;
  }

  .mi {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }

  /* ── FUNNEL STEPS ── */
  .funnel-steps {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .fs {
    width: 100% !important;
  }

  /* ── WHYUS GRID ── */
  .whyus-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .whyus-right {
    gap: 14px !important;
  }

  /* ── AD FORMAT GRID ── */
  .fmt-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* ── GENERAL TEXT ── */
  .sec-p {
    font-size: 14.5px !important;
    max-width: 100% !important;
  }

  p {
    max-width: 100% !important;
  }
}




/* ── GLOBAL OVERFLOW FIX ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

section,
.hero,
.main,
footer {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

nav {
  width: 100%;
  max-width: 100vw;
}

/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  nav {
    padding: 0 24px;
  }

  .hero,
  section,
  .main {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .hero-card,
  .notif-pop {
    display: none !important;
  }

  .hero-title {
    font-size: clamp(40px, 6vw, 72px) !important;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px;
  }

  .svcs-grid,
  .svc-grid,
  .svcs-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .why-inner,
  .mc-inner,
  .cross-inner,
  .story-inner,
  .approach-inner {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .pc-grid,
  .tgrid,
  .values-grid,
  .why-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px;
  }

  .cs-card {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .main {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .free-inner {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #111;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ── MOBILE (max 768px) ── */
@media (max-width: 768px) {

  /* NAV — hide links, show hamburger icon */
  .nav-links {
    display: none;
    /* hidden initially */
    flex-direction: column;
    width: 100%;
    margin-top: 12px;
  }

  .nav-links.show {
    display: flex;
    /* show vertically when toggled */
  }

.hamburger {
    display: block;
    margin-top: -30px;
    /* show hamburger */
  }

  .logo-estgo {
    font-size: 18px;
    margin-top: 10px;
  }
  .logo-max-pill
  {
    margin-top: 10px;
  }
  .dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .dropbtn {
    margin-bottom: -8px;
  }

  .dropdown-content {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    position: static !important;
    background: transparent;
    box-shadow: none;
    padding-left: 90px;
    gap: 2px;
    margin-top: 0;
  }

  .dropdown-content a {
    padding: 2px 0;
    line-height: 1.2;
    text-align: left;
  }

  .c-dot,
  .c-ring {
    display: none;
  }

  nav {
    padding: 0 20px;
    height: 60px;
  }

  .logo-sub {
    display: none;
  }

  .logo-estgo {
    font-size: 18px;
  }

  .logo-max-pill {
    font-size: 11px;
    padding: 2px 7px;
  }

  /* Hamburger button */
  .hamburger {
    display: block;
    /* show hamburger */
  }

  /* HERO SECTIONS */
  .hero,
  section,
  .main {
    padding: 90px 20px 60px !important;
  }

  .hero-card,
  .notif-pop {
    display: none !important;
  }

  .hero-title {
    font-size: 34px !important;
    line-height: 1.15 !important;
    letter-spacing: -1px !important;
    max-width: 100% !important;
  }

  .hero-subline {
    font-size: 26px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
  }

  .hero-sub-title {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }

  .hero-desc,
  .hero-sub {
    font-size: 15px !important;
    line-height: 1.75 !important;
    max-width: 100% !important;
  }

  /* CTAs — stack vertically */
  .hero-ctas,
  .cta-btns {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .btn-primary,
  .btn-secondary,
  .btn-p,
  .btn-s {
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    /* NOT fixed/sticky — avoid covering content */
    position: static !important;
  }

  /* ALL GRIDS → single column */
  .svcs-grid,
  .svc-grid,
  .pc-grid,
  .tgrid,
  .values-grid,
  .why-grid,
  .team-grid,
  .other-grid,
  .footer-top,
  .why-inner,
  .mc-inner,
  .cross-inner,
  .story-inner,
  .approach-inner,
  .testi-head,
  .cross-inner,
  .cs-card,
  .main,
  .hero-grid,
  .form-row,
  .free-inner {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* STATS BAR — 2 per row on mobile */
  .stats {
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 45% !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-d);
    padding: 20px 10px !important;
  }

  .stat-n {
    font-size: 32px !important;
  }

  /* SECTION HEADINGS */
  .sec-h2,
  .cross-h2,
  .cta-h2,
  .free-h2,
  .hero-title {
    font-size: clamp(28px, 7vw, 40px) !important;
    letter-spacing: -1px !important;
    line-height: 1.1 !important;
  }

  .sec-p,
  .cross-p,
  .cta-sub {
    font-size: 14.5px !important;
    max-width: 100% !important;
  }

  /* PRICING CARDS */
  .pc {
    padding: 24px 20px !important;
  }

  .pc-price {
    font-size: 44px !important;
  }

  .pricing-tabs .tabs {
    flex-wrap: wrap !important;
    width: 100% !important;
  }

  .tab {
    flex: 1 1 45% !important;
    text-align: center;
  }

  /* SERVICE CARDS */
  .svc-card,
  .svc {
    padding: 28px 22px !important;
  }

  .svc-name {
    font-size: 24px !important;
  }

  .svc-metrics {
    flex-wrap: wrap;
    gap: 8px;
  }

  .sm {
    flex: 1 1 30%;
  }

  /* TESTIMONIALS */
  .tc {
    padding: 22px !important;
  }

  /* CONTACT FORM */
  .contact-left {
    padding-top: 0 !important;
  }

  .form-card {
    padding: 24px 20px !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  /* MERCHANT CENTER CARD */
  .mc-card {
    margin-top: 0 !important;
  }

  .mc-product {
    flex-wrap: wrap;
    gap: 10px;
  }

  .mc-prod-score {
    margin-left: 0 !important;
  }

  /* CASE STUDY */
  .cs-card {
    padding: 28px 20px !important;
  }

  .cs-metrics {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .csm-n {
    font-size: 20px !important;
  }

  /* FAQ */
  .faq-q {
    font-size: 14px !important;
    padding: 18px 0 !important;
  }

  .faq-wrap,
  .faq-inner {
    padding: 0 !important;
  }

  /* PROCESS STEPS */
  .step {
    grid-template-columns: 40px 1fr !important;
    gap: 14px !important;
  }

  /* FOOTER */
  .footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }

  footer {
    padding: 48px 20px 28px !important;
  }

  .footer-bottom,
  .fbot {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
  }

  /* CROSS CHANNEL CARD ROWS */
  .cc-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .cc-badge {
    margin-left: 0 !important;
  }

  /* WHY CARD */
  .wc-row {
    flex-wrap: wrap;
  }

  .wc-badge {
    margin-left: 0 !important;
    margin-top: 4px;
  }

  /* APPROACH AI-ITEM */
  .ai-item {
    grid-template-columns: 40px 1fr !important;
  }

  .ai-item .ai-text.h4 {
    /* fix typo in about.html */
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blue-soft);
    border: 1px solid var(--border-b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--blue-v);
    flex-shrink: 0;
  }

  /* PROOF STRIP */
  .hero-proof,
  .proof {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  .proof-div,
  .pdiv {
    display: none !important;
  }
}

/* ── SMALL PHONES (max 480px) ── */
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px !important;
    letter-spacing: -0.5px !important;
  }

  .hero-subline,
  .hero-sub-title {
    font-size: 20px !important;
  }

  .sec-h2,
  .cross-h2,
  .cta-h2 {
    font-size: 26px !important;
  }

  .c-dot,
  .c-ring {
    display: none;
  }

  .hero-badge,
  .hero-eyebrow,
  .eyebrow {
    font-size: 10.5px !important;
    padding: 6px 12px !important;
  }

  .stat-n {
    font-size: 28px !important;
  }

  .cs-metrics {
    grid-template-columns: 1fr 1fr 1fr !important;
  }

  .csm-n {
    font-size: 18px !important;
  }

  .mc-footer {
    flex-wrap: wrap;
    gap: 12px;
  }

  .free-checks {
    gap: 8px !important;
  }

  .fc {
    font-size: 12px !important;
  }

  .logo-estgo {
    font-size: 17px !important;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr !important;
  }

  .fbl-e {
    font-size: 17px !important;
  }

  .pc-price {
    font-size: 40px !important;
  }

  .cta-sec {
    padding: 70px 20px !important;
  }

  /* Approach card rows on very small screens */
  .ac-row {
    padding: 12px !important;
  }

  .ac-text {
    font-size: 12px !important;
  }

  /* Services overview cards */
  .svc-metrics {
    gap: 6px;
  }

  .sm-n {
    font-size: 17px !important;
  }

  .sm-l {
    font-size: 8.5px !important;
  }
}

/* ── PREVENT HORIZONTAL SCROLL (SAFETY NET) ── */
.hero-aurora,
.hero-aurora2,
.hbg-orb,
.hbg-orb2 {
  max-width: 100vw;
  overflow: hidden;
}