 *,
 *::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: #fff;
     --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 {
     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;
     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-size: 21px;
     font-weight: 800;
     color: var(--white);
     letter-spacing: -.5px
 }

 .logo-max-pill {
     background: var(--blue);
     color: #fff;
     font-size: 12px;
     font-weight: 800;
     padding: 3px 9px 3px 8px;
     border-radius: 7px;
     margin-left: 2px;
     letter-spacing: .8px
 }

 .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 */
 }

 @keyframes up {
     from {
         opacity: 0;
         transform: translateY(24px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 /* MAIN */
 .main {
     min-height: 100vh;
     padding: 110px 52px 80px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: start;
     position: relative;
     overflow: hidden
 }

 .hbg {
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, #050710 0%, #080c1a 45%, #060912 100%);
     pointer-events: none
 }

 .hbg-orb {
     position: absolute;
     top: -180px;
     right: -180px;
     width: 860px;
     height: 860px;
     border-radius: 50%;
     background: radial-gradient(ellipse at 40% 40%, rgba(38, 136, 232, .15) 0%, rgba(20, 80, 160, .07) 35%, transparent 70%);
     filter: blur(60px)
 }

 .hbg-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)
 }

 /* LEFT */
 .contact-left {
     position: relative;
     z-index: 2;
     padding-top: 40px
 }

 .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;
     margin-bottom: 28px;
     opacity: 0;
     animation: up .6s .1s ease forwards
 }

 .h1 {
     font-family: 'Fraunces', serif;
     font-size: clamp(44px, 5.5vw, 80px);
     font-weight: 700;
     line-height: .93;
     letter-spacing: -2.5px;
     margin-bottom: 20px;
     opacity: 0;
     animation: up .7s .2s ease forwards
 }

 .h1 .blue {
     color: var(--blue)
 }

 .h1 .dim {
     color: rgba(255, 255, 255, .2);
     font-style: italic;
     font-weight: 300
 }

 .sub {
     font-size: 16px;
     line-height: 1.8;
     color: var(--muted2);
     max-width: 480px;
     margin-bottom: 40px;
     opacity: 0;
     animation: up .7s .35s ease forwards
 }

 .sub b {
     color: var(--white)
 }

 .what-included {
     background: var(--ink3);
     border: 1px solid var(--border-d);
     border-radius: 16px;
     padding: 24px 28px;
     opacity: 0;
     animation: up .7s .45s ease forwards
 }

 .wi-title {
     font-size: 11px;
     font-weight: 800;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--muted);
     margin-bottom: 16px
 }

 .wi-items {
     display: flex;
     flex-direction: column;
     gap: 10px
 }

 .wi-row {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 13.5px;
     color: var(--muted2)
 }

 .wi-check {
     color: var(--blue-v);
     font-weight: 800;
     font-size: 14px;
     flex-shrink: 0
 }

 .proof {
     display: flex;
     align-items: center;
     gap: 16px;
     margin-top: 24px;
     opacity: 0;
     animation: up .6s .55s ease forwards
 }

 .pavs {
     display: flex
 }

 .pav {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: var(--ink3);
     border: 2px solid var(--ink);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 10px;
     font-weight: 800;
     color: var(--blue-v);
     margin-left: -8px
 }

 .pav:first-child {
     margin-left: 0
 }

 .proof-text {
     font-size: 13px;
     color: var(--muted);
     line-height: 1.5
 }

 .proof-text b {
     color: var(--white)
 }

 .pstars {
     color: #f59e0b;
     font-size: 11px;
     margin-bottom: 2px
 }
  .pstars1 {
     color: #898785de;
     font-size: 11px;
     margin-bottom: 2px
 }

 /* FORM */
 .form-card {
     background: rgba(22, 24, 32, .96);
     border: 1px solid var(--border-d);
     border-radius: 20px;
     padding: 36px;
     position: relative;
     z-index: 2;
     backdrop-filter: blur(20px);
     box-shadow: 0 32px 80px rgba(0, 0, 0, .4);
     opacity: 0;
     animation: up .8s .3s ease forwards;
     margin-top: 40px
 }

 .form-hd {
     font-size: 18px;
     font-weight: 700;
     color: var(--white);
     margin-bottom: 6px
 }

 .form-sub {
     font-size: 13px;
     color: var(--muted2);
     margin-bottom: 28px
 }

 .form-group {
     margin-bottom: 16px
 }

 .form-label {
     display: block;
     font-size: 12px;
     font-weight: 700;
     color: var(--muted);
     letter-spacing: .5px;
     text-transform: uppercase;
     margin-bottom: 7px
 }

 .form-input,
 .form-select,
 .form-textarea {
     width: 100%;
     background: var(--ink4);
     border: 1px solid var(--border-d);
     color: var(--white);
     font-family: 'Manrope', sans-serif;
     font-size: 14px;
     padding: 13px 16px;
     border-radius: 10px;
     outline: none;
     transition: border-color .2s;
     cursor: none
 }

 .form-input::placeholder,
 .form-textarea::placeholder {
     color: var(--muted)
 }

 .form-input:focus,
 .form-select:focus,
 .form-textarea:focus {
     border-color: rgba(38, 136, 232, .5)
 }

 .form-select {
     appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8499' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 14px center;
     padding-right: 40px
 }

 .form-select option {
     background: var(--ink3)
 }

 .form-textarea {
     resize: vertical;
     min-height: 90px;
     line-height: 1.6
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px
 }

 .form-checks {
     display: flex;
     flex-direction: column;
     gap: 8px;
     margin-bottom: 20px
 }

 .fc-row {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 13px;
     color: var(--muted2);
     cursor: none
 }

 .fc-box {
     width: 18px;
     height: 18px;
     border-radius: 5px;
     background: var(--ink4);
     border: 1px solid var(--border-d);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     transition: all .2s
 }

 .fc-row.checked .fc-box {
     background: var(--blue);
     border-color: var(--blue)
 }

 .fc-row.checked .fc-box::after {
     content: '✓';
     font-size: 10px;
     color: #fff;
     font-weight: 800
 }

 .submit-btn {
     width: 100%;
     padding: 15px;
     border-radius: 10px;
     border: none;
     background: var(--blue);
     color: #fff;
     font-family: 'Manrope', sans-serif;
     font-size: 15px;
     font-weight: 700;
     cursor: none;
     transition: all .25s;
     box-shadow: 0 8px 24px rgba(38, 136, 232, .35)
 }

 .submit-btn:hover {
     background: var(--blue-v);
     transform: translateY(-1px);
     box-shadow: 0 12px 32px rgba(38, 136, 232, .45)
 }

 .form-note {
     font-size: 11.5px;
     color: var(--muted);
     text-align: center;
     margin-top: 12px
 }

 /* SUCCESS */
 .success-state {
     display: none;
     text-align: center;
     padding: 20px 0
 }

 .success-ico {
     font-size: 52px;
     margin-bottom: 16px
 }

 .success-h {
     font-size: 22px;
     font-weight: 700;
     color: var(--white);
     margin-bottom: 8px
 }

 .success-p {
     font-size: 14px;
     color: var(--muted2);
     line-height: 1.7
 }

 /* 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
 }

 .fbl {
     display: flex;
     align-items: center;
     margin-bottom: 14px
 }

 .fbl-e {
     font-size: 20px;
     font-weight: 800;
     color: var(--white)
 }

 .fbl-m {
     background: var(--blue);
     color: #fff;
     font-size: 11px;
     font-weight: 800;
     padding: 3px 8px;
     border-radius: 6px;
     margin-left: 2px;
     letter-spacing: .8px
 }

 .ftag {
     font-size: 13.5px;
     color: var(--muted2);
     line-height: 1.65;
     margin-bottom: 20px;
     max-width: 280px
 }

 .fsocs {
     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)
 }

 .fcol h5 {
     font-size: 11px;
     font-weight: 800;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--muted);
     margin-bottom: 16px
 }

 .fcol ul {
     list-style: none
 }

 .fcol li {
     margin-bottom: 9px
 }

 .fcol a {
     color: var(--muted2);
     text-decoration: none;
     font-size: 13.5px;
     cursor: none;
     transition: color .2s
 }

 .fcol a:hover {
     color: var(--blue-v)
 }

 .fbot {
     border-top: 1px solid var(--border-d);
     padding-top: 24px;
     display: flex;
     justify-content: space-between;
     align-items: center
 }

 .fbot p {
     font-size: 12.5px;
     color: var(--muted)
 }

 .fbot a {
     color: var(--muted);
     text-decoration: none
 }

 /* 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;
     }

     .dropdown {
         display: flex;
         flex-direction: column;
         align-items: center;
         gap: 2px;
     }
     .hamburger {
    display: block;
    margin-top: -30px;
    /* show hamburger */
  }

  .logo-estgo {
    font-size: 18px;
    margin-top: 10px;
  }
 .logo-max-pill
  {
    margin-top: 10px;
  }
     .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;
     }

     .nav-links.show {
         display: flex;
         /* show vertically when toggled */
     }

     nav {
         padding: 0 20px;
         height: 60px;
     }

     .c-dot,
     .c-ring {
         display: none;
     }

     .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;
 }