/* =====================================================================
   VersaForge - Core PHP rebuild
   Hand-written stylesheet (no inline CSS). Reproduces the original
   Tailwind design tokens: primary #B91202, primary-light #DF2A19,
   accent palette, Rubik / Rajdhani / Inter typography.
   ===================================================================== */

/* ---------- Fonts (Google Fonts loaded via <link> in header) ---------- */
:root {
  --font-primary: 'Rubik', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-secondary: 'Rajdhani', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-inter: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --primary: #B91202;
  --primary-light: #DF2A19;

  --accent-100: #F5F4FA;
  --accent-200: #E3E3E3;
  --accent-300: #FBF3F2;
  --accent-700: #1A1A1C;
  --accent-800: #616670;
  --accent-900: #141416;
  --body-color: #BEBEBE;

  --container-2xl: 1290px;

  --shadow-1: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  --shadow-3: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.875;
  color: var(--accent-800);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-secondary); line-height: 1.2; color: var(--accent-900); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
svg { display: inline-block; vertical-align: middle; }
address { font-style: normal; }

::selection { background: var(--primary); color: #fff; text-shadow: none; }

/* ---------- Helpers ---------- */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 16px;
  max-width: calc(var(--container-2xl) + 32px);
}
.section-padding-primary { padding-block: 3.75rem; }
@media (min-width: 768px) { .section-padding-primary { padding-block: 6.25rem; } }
@media (min-width: 1280px) { .section-padding-primary { padding-block: 7.5rem; } }

.h1 { font-size: 2rem; font-weight: 700; line-height: 1.15; }
.h2 { font-size: 2rem; font-weight: 700; line-height: 1.25; }
.h3 { font-size: 1.125rem; font-weight: 700; line-height: 1.25; }
@media (min-width: 768px) {
  .h1 { font-size: 4.25rem; }
  .h2 { font-size: 3rem; }
  .h3 { font-size: 1.5rem; }
}

.text-primary { color: var(--primary); }
.bg-primary { background-color: var(--primary); }
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.125rem;
  font-family: var(--font-primary);
}
.eyebrow-caps {
  display: block;
  margin-bottom: .625rem;
  font-family: var(--font-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  line-height: 1.5;
  color: var(--primary);
  font-size: 1.125rem;
}

/* AOS-like reveal (transform/opacity only, IntersectionObserver-driven) */
[data-aos] { opacity: 0; transition: opacity .7s ease, transform .7s ease; will-change: transform, opacity; }
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-down"]  { transform: translateY(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="zoom-in"]    { transform: scale(.9); }
[data-aos].aos-animate  { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =====================================================================
   HEADER (desktop v1)
   ===================================================================== */
.site-header {
  position: absolute;
  left: 0; right: 0; top: 0;
  z-index: 99;
  width: 100%;
  margin-inline: auto;
  padding-block: 26px;
  border-radius: .5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.10);
  box-shadow: 0px 0px 15px 10px rgba(223,42,25,.1);
  display: none;
}
@media (min-width: 1024px) { .site-header { display: block; } }
.site-header.is-sticky {
  position: fixed;
  top: 0; left: 0;
  background: rgba(255,255,255,0.85);
  animation: fadeInDown 1s both;
}
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; }
.brand-logo { flex: none; display: inline-block; }
.brand-logo img { width: 10rem; height: auto; }

/* primary nav */
.primary-nav > ul { display: flex; align-items: center; gap: 1.5rem; }
.menu-item { position: relative; }
.menu-link {
  font-size: 1rem; line-height: 1.3; text-transform: capitalize;
  padding-block: 1rem; min-height: 3.5rem; font-weight: 500;
  color: var(--accent-900);
  display: inline-flex; align-items: center; justify-content: center; gap: .375rem;
  transition: color .2s; cursor: pointer;
}
.menu-link:hover, .menu-item:hover > .menu-link, .menu-link:focus { color: var(--primary); }
.menu-link .chev { font-size: 10px; }
.submenu {
  position: absolute; left: 0; top: 100%; z-index: 40; width: 230px;
  overflow: hidden; background: var(--accent-700); box-shadow: 0 10px 15px rgba(0,0,0,.2);
  transform-origin: 0 0; transform: scaleY(0); transition: transform .35s;
}
.menu-item:hover .submenu { transform: scaleY(1); }
.submenu ul { display: grid; }
.submenu li + li { border-top: 1px solid rgba(255,255,255,.05); }
.submenu a {
  display: flex; min-height: 50px; align-items: center; padding: .5rem 1.5rem .5rem 1rem;
  font-size: 15px; font-weight: 400; text-transform: capitalize; color: #fff; transition: background .2s;
}
.submenu a:hover { background: var(--primary); }

/* contact box */
.contact-box { display: none; flex: none; align-items: center; gap: 1rem; color: var(--accent-900); }
@media (min-width: 1280px) { .contact-box { display: flex; } }
.contact-box p { margin: 0; }
.contact-box a { font-family: var(--font-secondary); font-size: 1.5rem; font-weight: 700; line-height: 1.3; display: block; }

/* hamburger / off-canvas trigger */
.offcanvas-trigger { color: var(--accent-900); transition: color .3s; }
.offcanvas-trigger:hover { color: var(--primary); }

/* =====================================================================
   MOBILE HEADER
   ===================================================================== */
.mobile-header-wrap { position: relative; display: block; }
@media (min-width: 1024px) { .mobile-header-wrap { display: none; } }
.mobile-header-spacer { height: 64px; }
.mobile-header {
  position: fixed; left: 0; top: 0; z-index: 111; width: 100%;
  background: #fff; box-shadow: var(--shadow-1);
}
.mobile-bar {
  display: flex; height: 64px; align-items: center; justify-content: space-between;
  gap: 1rem; border-bottom: 1px solid var(--accent-900);
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px); padding-block: .5rem;
}
.mobile-bar-inner { width: 100%; max-width: 100%; padding-inline: 1rem; }
.mobile-bar-flex { display: flex; align-items: center; justify-content: space-between; }
.mobile-brand { max-width: 8.5rem; flex: none; }
.mobile-brand img { width: 100%; }

/* =====================================================================
   OFF-CANVAS PANEL (rendered as direct <body> child)
   ===================================================================== */
.offcanvas-overlay {
  position: fixed; inset: 0; z-index: 443; background: rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.offcanvas-overlay.open { opacity: 1; visibility: visible; }
.offcanvas {
  position: fixed; top: 0; right: 0; z-index: 444; height: 100vh; width: 320px; max-width: 85vw;
  background: var(--accent-100); transform: translateX(100%); transition: transform .35s ease;
  overflow-y: auto;
}
.offcanvas.open { transform: translateX(0); }
.offcanvas-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; }
.offcanvas-close { color: var(--accent-900); }
.offcanvas-close svg { width: 2.25rem; height: 2.25rem; }

/* filter / mobile nested menu */
.filter-menu { width: 100%; max-width: 28rem; margin-inline: auto; padding-bottom: 2rem; }
.filter-menu ul { display: grid; }
.filter-menu li {
  border-bottom: 1px solid rgba(227,227,227,.7);
  padding: .5rem 1rem;
}
.filter-menu .row {
  display: flex; width: 100%; cursor: pointer; align-items: center; justify-content: space-between;
  font-weight: 600; color: #111827; transition: color .2s;
}
.filter-menu .row:hover { color: var(--primary); }
.filter-menu a { font-weight: 600; color: #1f2937; transition: color .2s; display: block; }
.filter-menu a:hover { color: var(--primary); text-decoration: underline; }
.filter-back {
  margin: 0 0 1rem .5rem; display: flex; align-items: center; gap: .25rem;
  padding: .5rem; font-weight: 600; color: #111827; transition: color .2s;
}
.filter-back:hover { color: var(--primary); }
.filter-sub { display: none; }
.filter-sub.active { display: grid; }

/* =====================================================================
   HERO (v6)
   ===================================================================== */
.hero { position: relative; overflow: hidden; }
.hero-slide {
  display: none;
  position: relative; overflow: hidden; padding-top: 50px;
}
.hero-slide.active { display: block; animation: heroFade .6s ease; }
@keyframes heroFade { from { opacity: .3; } to { opacity: 1; } }
@media (min-width: 1024px) { .hero-slide { min-height: 100vh; } }

.hero-grid {
  display: grid; gap: 1.875rem; text-align: center; color: var(--accent-900);
}
@media (min-width: 1280px) {
  .hero-grid { grid-template-columns: repeat(12, 1fr); height: 100vh; align-items: center; text-align: left; }
}
.hero-content { grid-column: span 12; }
@media (min-width: 1280px) { .hero-content { grid-column: span 7; } }
.hero-content h1 { margin-bottom: 20px; }
.hero-content p.lead { margin-bottom: 40px; color: var(--accent-800); }

.hero-meta { display: flex; align-items: center; gap: 1rem; justify-content: center; }
@media (min-width: 1280px) { .hero-meta { justify-content: flex-start; } }
.hero-avatars { display: flex; align-items: center; }
.avatar {
  height: 54px; width: 54px; overflow: hidden; border-radius: 9999px;
  border: 2px solid rgba(190,190,190,.4); background: var(--accent-900);
  display: grid; place-items: center; color: var(--primary); font-size: 25px; margin-right: -17px;
}
.avatar img { height: 54px; width: 54px; object-fit: cover; }
.hero-counter { margin-left: 17px; text-align: start; color: #3F444B; }
.hero-counter h6 { font-size: 1.5rem; font-weight: 700; color: var(--accent-900); }

.hero-image-wrap {
  grid-column: span 12; position: relative; z-index: 1; margin-inline: auto;
  width: 100%; max-width: 410px; padding-top: 85px; text-align: center;
}
@media (min-width: 1280px) { .hero-image-wrap { grid-column: span 4; } }
.hero-image-bg {
  position: absolute; inset: 0; z-index: -1; border-radius: 205px 205px 0 0; background: var(--accent-700);
}
.hero-image-glow {
  position: absolute; inset: 0; bottom: -1.25rem; right: -1.25rem; z-index: -2;
  border-radius: 205px 205px .3125rem .3125rem;
  background: linear-gradient(180deg, rgba(185,18,2,0) 0%, #B91202 100%);
}
.hero-image-wrap img { margin-inline: auto; width: 100%; max-width: 100%; height: auto; object-fit: contain; }

.hero-nav { position: absolute; right: 0; top: 50%; z-index: 50; width: 100%; transform: translateY(-50%); display: none; }
@media (min-width: 1024px) { .hero-nav { display: block; } }
.hero-nav-inner { margin-left: auto; display: grid; max-width: max-content; gap: .625rem; padding-inline: 1rem; }
.hero-nav-btn {
  width: 60px; height: 60px; display: grid; place-items: center; font-size: 1.25rem;
  background: var(--accent-900); color: #fff; border-radius: 9999px; transition: background .3s;
}
.hero-nav-btn:hover { background: var(--primary); }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  position: relative; z-index: 2; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
  min-height: 3.5rem; padding: .5rem 1.5rem;
  font-size: 1rem; line-height: 1.1; font-weight: 700; font-family: var(--font-secondary);
  letter-spacing: .05em; text-transform: uppercase;
  background: var(--primary); color: #fff; border-radius: .3125rem;
  transition: all .3s linear;
}
@media (min-width: 768px) { .btn { min-height: 3.75rem; padding: .75rem 1.75rem; } }
.btn::after {
  content: ""; position: absolute; bottom: 0; right: 0; height: 100%; width: 0;
  background: rgba(0,0,0,.15); z-index: -1; transition: all .3s ease-in-out;
}
.btn:hover::after { width: 100%; left: 0; }
.btn:hover { color: #fff; }
.btn svg { position: relative; z-index: 1; }

.btn-fill {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: .375rem; border: 1px solid transparent; background: var(--primary);
  padding: .75rem 1.75rem; text-align: center; font-size: 1rem; font-weight: 500; color: #fff;
  transition: background .2s;
}
.btn-fill:hover { background: rgba(185,18,2,.9); }
.btn-black { background: #000; }
.btn-black:hover { background: rgba(0,0,0,.9); }

hr { border: 0; border-top: 1px solid var(--accent-200); }

/* =====================================================================
   CONTENT OPTIMIZATION / ZIGZAG (About VersaForge)
   ===================================================================== */
.content-section { overflow: hidden; text-align: center; font-family: var(--font-inter); }
@media (min-width: 768px) { .content-section { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .content-section { padding-inline: 5rem; text-align: left; } }
.content-row { display: block; }
@media (min-width: 1024px) {
  .content-row { display: flex; align-items: center; margin-inline: -1.5rem; }
}
.content-img { width: 100%; border-radius: .5rem; object-fit: cover; object-position: center; }
@media (min-width: 1024px) { .content-img { margin-inline: 1rem; width: 40%; } }
.content-body { margin-top: 2rem; }
@media (min-width: 1024px) { .content-body { margin-top: 0; width: 60%; padding-inline: 1rem; } }
.content-body h2 { color: var(--accent-900); margin-bottom: 1.25rem; font-size: 48px; line-height: 58px; font-weight: 700; }
.content-body p { margin: .75rem 0 1.25rem; }
@media (min-width: 1024px) { .content-body p { text-align: justify; } }

/* =====================================================================
   REVIEW STATS BAR
   ===================================================================== */
.review-stats { padding-block: 3rem; background: var(--primary); }
.review-wrap { max-width: 72rem; margin-inline: auto; padding-inline: 1rem; }
@media (min-width: 640px) { .review-wrap { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .review-wrap { padding-inline: 2rem; } }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
@media (min-width: 768px) { .review-grid { grid-template-columns: repeat(4, 1fr); } }
.review-item { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.review-item img { width: 150px; height: 40px; object-fit: contain; background: #fff; padding: 10px; border-radius: .375rem; }
.review-item h6 { font-size: 1.125rem; font-weight: 600; color: #fff; }

/* =====================================================================
   SECTION HEADING (centered eyebrow + title)
   ===================================================================== */
.section-head { margin-inline: auto; text-align: center; }
.section-head h2 { color: var(--accent-900); margin-bottom: 10px; font-size: 48px; line-height: 58px; font-weight: 700; }
.head-narrow { max-width: 680px; }
.head-left { max-width: 680px; margin-right: 1.875rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .head-left { margin-bottom: 3.75rem; } }

/* =====================================================================
   COMPREHENSIVE DIGITAL MARKETING SERVICES (3 cards)
   ===================================================================== */
.cards-row { display: flex; flex-wrap: wrap; justify-content: center; margin-inline: -1rem; row-gap: 1.875rem; }
.col-3 { width: 100%; padding-inline: 1rem; }
@media (min-width: 768px) { .col-3 { width: 33.3333%; padding-inline: 15px; } }
.col-2 { width: 100%; padding-inline: 1rem; }
@media (min-width: 768px) { .col-2 { width: 50%; padding-inline: 15px; } }

.service-tile { }
.service-tile img { border-radius: .3125rem .3125rem 0 0; object-fit: cover; mix-blend-mode: luminosity; width: 100%; }
.service-tile-body { border-radius: 0 0 .3125rem .3125rem; background: var(--accent-100); padding: .875rem; text-align: center; }
.service-tile-body h5 { font-size: 1.125rem; font-weight: 700; color: var(--accent-900); }
.service-tile-body p { padding-bottom: .625rem; color: var(--accent-900); }

/* =====================================================================
   DIGITAL MARKETING SERVICES (carousel)
   ===================================================================== */
.dms-section { overflow: hidden; background: #f6f6f6; }

/* generic carousel */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; gap: 30px; transition: transform .5s ease; }
.carousel-slide { flex: 0 0 auto; }
.carousel-controls { display: flex; gap: .625rem; margin-top: 1.875rem; }
.carousel-btn {
  width: 50px; height: 50px; border-radius: 9999px; display: grid; place-items: center;
  background: rgba(223,42,25,.1); color: var(--primary-light); transition: all .3s; font-size: 1.1rem;
}
.carousel-btn:hover { background: var(--primary-light); color: #fff; }
.carousel-progress { margin-top: 1.25rem; height: 4px; width: 100%; background: var(--accent-200); border-radius: 9999px; overflow: hidden; }
.carousel-progress span { display: block; height: 100%; background: var(--primary); width: 0; transition: width .4s ease; }

/* seo service card */
.seo-card img { border-radius: .3125rem .3125rem 0 0; object-fit: cover; mix-blend-mode: luminosity; width: 100%; }
.seo-card-body { border-radius: 0 0 .3125rem .3125rem; background: var(--accent-100); padding: .875rem; text-align: center; }
.seo-card-body h5 { font-size: 1.125rem; font-weight: 700; color: var(--accent-900); }
.seo-card-body p { padding-bottom: .625rem; color: var(--accent-900); }

/* =====================================================================
   TOOLS / CLIENTS MARQUEE
   ===================================================================== */
.logo-marquee { width: 100%; overflow: hidden; }
.tools-marquee { padding-block: 1rem; }
.clients-marquee { padding-bottom: 2.5rem; }
.marquee-track { display: flex; align-items: center; gap: 30px; width: max-content; animation: marqueeScroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tools-marquee .marquee-item img { height: auto; max-width: 100%; margin-inline: auto; }
.clients-marquee .marquee-item img { padding: 10px; border-radius: .375rem; background: #fff; margin-inline: auto; }
.marquee-item { flex: 0 0 auto; }
.tools-marquee .marquee-item { width: 160px; }
.clients-marquee .marquee-item { width: 150px; }

/* =====================================================================
   CTA SECTION (form)
   ===================================================================== */
.cta-section { position: relative; overflow: hidden; background: var(--primary); padding-block: 5rem; }
.cta-grid { position: relative; z-index: 10; display: grid; align-items: center; gap: 1.875rem; }
@media (min-width: 1280px) { .cta-grid { grid-template-columns: repeat(12, 1fr); } }
.cta-copy { color: #fff; }
@media (min-width: 1280px) { .cta-copy { grid-column: span 5; } }
.cta-copy h2 { max-width: 410px; font-family: var(--font-secondary); text-transform: capitalize; line-height: 1.25; color: #fff; }
.cta-copy p { margin-top: 1.25rem; font-size: 1rem; line-height: 1.875; }
.cta-form-wrap { }
@media (min-width: 1280px) { .cta-form-wrap { grid-column: span 7; } }
.cta-form { display: grid; grid-template-columns: 1fr; gap: 1.875rem; }
@media (min-width: 768px) { .cta-form { grid-template-columns: 1fr 1fr; max-width: 630px; } }
.cta-form .full { grid-column: 1 / -1; }
.cta-form .inline-row { display: flex; flex-direction: column; align-items: stretch; gap: 1rem; }
@media (min-width: 768px) { .cta-form .inline-row { flex-direction: row; align-items: center; } }
.cta-input {
  width: 100%; min-height: 3.5rem; padding: .75rem 1.25rem; background: transparent;
  border: 1px solid rgba(255,255,255,.6); color: #fff; border-radius: .3125rem;
  font-family: var(--font-primary); font-size: 1rem;
}
.cta-input::placeholder { color: #fff; opacity: .9; }
.cta-input:focus { outline: none; border-color: #fff; }
.cta-input.error { border-color: #dc2626 !important; }
.cta-error { color: #fff; margin-top: .25rem; font-size: .9rem; }
.cta-submit { min-width: 190px; flex: none; background: var(--primary-light); }
.cta-pattern { pointer-events: none; position: absolute; bottom: 0; right: 0; z-index: 1; }
@media (max-width: 1650px) { .cta-pattern { display: none; } }
.form-status { margin-top: 1rem; color: #fff; font-weight: 600; }

/* =====================================================================
   ABOUT v3 (Specialized SEO Services / Rank #1 on Google Map)
   ===================================================================== */
.about-v3 { overflow: hidden; }
.about-grid { display: grid; align-items: center; gap: 3rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: .92fr 1fr; } }
@media (min-width: 1536px) { .about-grid { gap: 5rem; } }
.about-content { text-align: left; }
.about-content h3 {
  font-family: var(--font-secondary); font-size: 35px; line-height: 45px; font-weight: 700;
  color: var(--accent-900);
}
.about-content > p { margin-top: .75rem; color: #000; }
@media (min-width: 1024px) { .about-content > p { text-align: justify; } }
.about-list { margin-top: 15px; }
@media (min-width: 1024px) { .about-list { text-align: justify; } }
.about-list li { margin-bottom: 15px; display: flex; gap: .5rem; }
.about-list li:last-child { margin-bottom: 0; }
.about-list .check { position: relative; top: 5px; font-size: 20px; line-height: 30px; color: var(--primary); flex: none; }
.about-list .txt { display: block; line-height: 1.5; color: var(--accent-900); }

.about-images { margin-inline: auto; text-align: center; }
.about-collage { position: relative; margin-inline: auto; max-width: 580px; display: grid; grid-template-columns: 1fr 1fr; gap: .625rem; }
.about-cell { position: relative; /*overflow: hidden; */}


.about-cell.end { display: flex; justify-content: flex-end; }
.about-img-1-wrap { position: relative; z-index: 2; margin-top: auto; }
.about-img-1-bg { position: absolute; left: -.625rem; top: -.625rem; z-index: -1; height: 100%; width: 100%; border-radius: 60px 0 0 0; background: var(--primary-light); }
.about-img-1 { position: relative; z-index: 4; border-radius: 60px 0 0 0; object-fit: cover; object-position: top; }
.about-img-2 { border-radius: 80px 10px 80px 10px; object-fit: cover; }
.about-img-3 { border-radius: 50px 10px 50px 10px; object-fit: cover; }
.about-img-4 { border-radius: 10px 10px 80px 10px; object-fit: cover; }
.about-pattern { position: absolute; bottom: -55%; left: 42px; z-index: 1; }
.about-cell.ml-auto { margin-left: auto; max-width: 250px; justify-content: flex-end; }
.about-center {
  position: absolute; left: 50%; top: 50%; z-index: 4; transform: translate(-50%, -50%);
}
.about-center span {
  display: grid; height: 100px; width: 100px; place-items: center; border-radius: 9999px;
  border: 12px solid #fff; background: var(--primary); font-size: 30px; color: #fff;
}

/* =====================================================================
   WHY CHOOSE (service v3)
   ===================================================================== */
.why-title { text-align: center; font-size: 38px; line-height: 48px; font-weight: 700; color: var(--accent-900); }
.why-content { margin-inline: auto; max-width: 630px; text-align: center; margin-bottom: 1.25rem; }
.service-card {
  position: relative; z-index: 1; display: block; height: 100%; overflow: hidden;
  border-radius: .3125rem; padding: 1.5rem; background: #fff; color: var(--accent-900);
  box-shadow: var(--shadow-3); transition: transform .35s;
}
@media (min-width: 768px) { .service-card { padding: 2.5rem; } }
.service-card:hover { transform: translateY(-.5rem); }
.service-card .head { display: flex; align-items: center; gap: 1.25rem; }
.service-card .icon { flex: none; font-size: 2.5rem; transition: all .3s; }
@media (min-width: 768px) { .service-card .icon { font-size: 4rem; } }
.service-card:hover .icon { transform: scale(.9); color: var(--primary); }
.service-card h3 { font-size: 1.125rem; font-weight: 700; line-height: 1.25; }
@media (min-width: 768px) { .service-card h3 { font-size: 1.5rem; } }
.service-card > p { color: var(--accent-800); margin-top: 1.5rem; }
.service-card .underline {
  position: absolute; bottom: 0; left: 0; height: 2px; width: 100%; transform: scaleX(.3);
  background: var(--primary); opacity: 0; transition: all .4s;
}
.service-card:hover .underline { transform: scaleX(1); opacity: 1; }
.service-card .body { margin-top: 1.5rem; }

/* 102-style (icon left, text right) */
.service-card.row-card .head { align-items: flex-start; }
.service-card.row-card h5 { margin-bottom: .5rem; font-size: 1.125rem; font-weight: 700; line-height: 1.25; }
@media (min-width: 768px) { .service-card.row-card h5 { font-size: 1.5rem; } }
.service-card.row-card p { color: var(--accent-800); }

/* =====================================================================
   STATISTICS
   ===================================================================== */
.stats-grid { display: grid; gap: 1.875rem; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { position: relative; min-height: 155px; overflow: hidden; border-radius: .3125rem; background: var(--accent-100); padding: 1.875rem; }
.stat-icon { position: absolute; right: 1.875rem; top: 0; display: inline-grid; height: 64px; width: 64px; place-items: center; border-radius: 0 0 .3125rem .3125rem; background: var(--primary); color: #fff; }
.stat-icon .ic { font-size: 2.5rem; color: #fff; transition: all .5s ease; }
.stat-card:hover .stat-icon .ic { transform: rotateY(180deg); }
.stat-value {
  padding-right: 5rem; font-family: var(--font-secondary); font-size: 1.5rem; font-weight: 700; line-height: 1.25;
  color: transparent; -webkit-text-fill-color: transparent; -webkit-text-stroke: 1px #1A1A1C;
}
@media (min-width: 768px) { .stat-value { font-size: 3rem; } }
.stat-card p { margin-top: .3125rem; }

/* =====================================================================
   BULLET POINTS BLACK BG (Recover Suspended GMB)
   ===================================================================== */
.bullets-section { position: relative; overflow: hidden; font-family: var(--font-inter); }
@media (min-width: 768px) { .bullets-section { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .bullets-section { padding-inline: 5rem; text-align: left; } }
.bullets-row { display: block; }
@media (min-width: 1024px) { .bullets-row { display: flex; flex-direction: row-reverse; align-items: center; margin-inline: -1.5rem; } }
.bullets-body { }
@media (min-width: 1024px) { .bullets-body { width: 60%; padding-inline: 1rem; } }
.bullets-body h2 { color: var(--accent-900); margin-bottom: 1.25rem; font-size: 48px; line-height: 58px; font-weight: 700; }
.bullets-list { margin-top: 0; }
@media (min-width: 1024px) { .bullets-list { text-align: justify; } }
.bullets-list li { margin-bottom: 12px; display: flex; gap: .75rem; }
@media (min-width: 1024px) { .bullets-list li { gap: 1rem; } }
.bullets-list li:last-child { margin-bottom: 0; }
.bullets-list .check { position: relative; top: 5px; font-size: 1.125rem; color: var(--accent-900); flex: none; }
.bullets-list .txt { display: block; font-size: 1.125rem; line-height: 1.5; color: var(--accent-900); }
.bullets-img { margin-top: 2rem; width: 100%; border-radius: .5rem; object-fit: cover; object-position: center; }
@media (min-width: 1024px) { .bullets-img { margin-top: 0; margin-inline: 1rem; width: 40%; } }

/* =====================================================================
   PAID ADS MASTERY (rectangle box gray, 4 cards x 2)
   ===================================================================== */
.paidads-section { overflow: hidden; background: #f6f6f6; }
.paidads-section .section-head h3 { margin-bottom: 1.25rem; font-size: 38px; line-height: 48px; font-weight: 700; color: #000; }

/* =====================================================================
   MEET ZAMMY (red bg right img)
   ===================================================================== */
.zammy-section { overflow: hidden; background: var(--primary); text-align: center; font-family: var(--font-inter); }
@media (min-width: 768px) { .zammy-section { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .zammy-section { padding-inline: 5rem; text-align: left; } }
.zammy-row { display: block; }
@media (min-width: 1024px) { .zammy-row { display: flex; flex-direction: row-reverse; align-items: center; margin-inline: -1.5rem; } }
.zammy-img { width: 100%; border-radius: .5rem; object-fit: cover; object-position: center; }
@media (min-width: 1024px) { .zammy-img { margin-inline: 1rem; width: 50%; } }
.zammy-body { margin-top: 2rem; }
@media (min-width: 1024px) { .zammy-body { margin-top: 0; width: 50%; padding-inline: 1rem; } }
.zammy-body .eyebrow { color: #fff; }
.zammy-body h3 { margin-bottom: 1.25rem; font-size: 38px; line-height: 48px; font-weight: 700; color: #fff; }
.zammy-body p { margin: .75rem 0 1.25rem; color: #fff; }
@media (min-width: 1024px) { .zammy-body p { text-align: justify; } }

/* =====================================================================
   TEAM
   ===================================================================== */
.team-section { overflow: hidden; background: var(--accent-100); }
.team-card { }
.team-card .imgwrap {
  position: relative; z-index: 1; margin-right: 1.875rem; overflow: hidden; border-radius: .3125rem;
}
.team-card .imgwrap img { object-fit: cover; transition: transform .5s; transform: scale(1.05); width: 100%; }
.team-card:hover .imgwrap img { transform: scale(1); }
.team-card .body {
  margin-top: -70px; border-radius: .3125rem; background: #fff; padding: 1.25rem 50px 1.25rem 1.25rem;
  padding-top: 93px; text-align: center; position: relative;
}
.team-card .body h5 { font-size: 1.5rem; font-weight: 700; }
.team-card .body p { color: var(--accent-800); }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonial-section { overflow: hidden; }
.testimonial-card {
  border-radius: .3125rem; background: #fff; padding: 1.5rem; box-shadow: var(--shadow-3);
  transition: transform .35s; height: 100%;
}
@media (min-width: 640px) { .testimonial-card { padding: 50px; } }
@media (min-width: 1024px) { .testimonial-card { padding: 25px; } }
.testimonial-card:hover { transform: translateY(-.5rem); }
.testimonial-card h3 { font-size: 1.125rem; font-weight: 700; line-height: 1.25; color: var(--accent-900); }
@media (min-width: 768px) { .testimonial-card h3 { font-size: 1.5rem; } }
.testimonial-card .role { margin-top: .25rem; }
.testimonial-card .stars { margin-top: .5rem; min-height: 30px; color: var(--primary); display: flex; gap: 2px; }
.testimonial-card .speech { margin-top: 1.25rem; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-section { overflow: hidden; }
@media (min-width: 768px) { .faq-section { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .faq-section { padding-inline: 5rem; } }
.faq-row { display: block; }
@media (min-width: 1024px) { .faq-row { display: flex; flex-direction: row-reverse; align-items: center; margin-inline: -1.5rem; } }
.faq-map { width: 100%; }
@media (min-width: 1024px) { .faq-map { margin-inline: 1rem; width: 40%; } }
.faq-map img { width: 100%; border-radius: .5rem; object-fit: cover; object-position: center; }
.faq-body { margin-top: 2rem; }
@media (min-width: 1024px) { .faq-body { margin-top: 0; width: 60%; padding-inline: 1rem; } }
.faq-body h3 { color: var(--accent-900); margin-bottom: 1.25rem; font-size: 38px; line-height: 48px; font-weight: 700; }
.accordion { display: grid; gap: .75rem; width: 100%; }
@media (min-width: 1024px) { .accordion { gap: 1.25rem; } }
.accordion-item { border: none; }
.accordion-trigger {
  display: flex; min-height: 70px; align-items: center; justify-content: flex-start; gap: .75rem;
  border-radius: .3125rem; background: var(--accent-100); padding: .75rem 1.5rem; text-align: left;
  color: var(--accent-900); width: 100%; font-family: var(--font-secondary); font-size: 1.125rem; font-weight: 700;
}
@media (min-width: 768px) { .accordion-trigger { font-size: 1.5rem; gap: 1.25rem; } }
@media (min-width: 1024px) { .accordion-trigger { padding: 1rem 1.875rem; } }
.accordion-trigger .q { flex: 1; }
.accordion-trigger .icon { flex: none; color: var(--primary); font-size: 1.25rem; align-self: baseline; position: relative; }
.accordion-trigger .icon-minus { display: none; }
.accordion-item.open .accordion-trigger .icon-plus { display: none; }
.accordion-item.open .accordion-trigger .icon-minus { display: inline-block; }
.accordion-content { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.accordion-item.open .accordion-content { max-height: 500px; }
.accordion-content p { padding: 1rem 0 .5rem; }
@media (min-width: 1024px) { .accordion-content p { padding: 1.5rem 0 .75rem; } }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { overflow: hidden; background: var(--accent-100); color: var(--accent-800); }
.footer-top { padding-block: 4rem; }
@media (min-width: 768px) { .footer-top { padding-block: 5rem; } }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-about p { margin: .75rem 0 1.75rem; }
.footer-socials { display: inline-flex; min-height: 50px; align-items: center; border-radius: .3125rem; background: var(--primary); color: #fff; }
.footer-socials li + li { border-left: 1px solid rgba(255,255,255,.3); }
.footer-socials a { display: block; padding-inline: 1rem; font-size: 1rem; line-height: 1.75; transition: transform .35s; }
.footer-socials a:hover { transform: translateY(-.25rem); }
.footer-title { color: var(--accent-900); font-size: 1.125rem; font-weight: 700; line-height: 1.25; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .footer-title { font-size: 1.5rem; margin-bottom: 1.875rem; } }
.footer-links { display: grid; gap: .5rem; }
.footer-links li { display: flex; align-items: center; gap: .625rem; }
.footer-links .chev { flex: none; font-size: .875rem; color: var(--accent-900); }
.footer-links a { transition: color .3s; }
.footer-links a:hover { color: var(--primary); }
.footer-addr { display: grid; gap: 1.25rem; }
.footer-addr li { display: flex; align-items: center; gap: 1.25rem; }
.footer-addr .ic { width: 40px; height: 40px; border-radius: .3125rem; display: inline-grid; place-items: center; border: 1px solid var(--accent-800); color: var(--primary); flex: none; }
.footer-addr a { transition: color .3s; display: block; }
.footer-addr a:hover { color: var(--primary); }
.footer-blogs { display: grid; gap: 1.5rem; }
.footer-blog { display: flex; align-items: center; gap: 1rem; color: var(--accent-800); }
.footer-blog .thumb { flex: none; overflow: hidden; border-radius: .3125rem; }
.footer-blog .thumb img { width: 80px; height: 80px; object-fit: cover; transition: transform .7s; }
.footer-blog:hover .thumb img { transform: scale(1.05); }
.footer-blog .date { display: flex; align-items: center; gap: .625rem; }
.footer-blog .date .cal { color: var(--primary); }
.footer-blog h5 { font-size: 1.125rem; font-weight: 700; line-height: normal; }
.footer-blog h5 a:hover { color: var(--primary); }
.footer-bottom { display: flex; min-height: 90px; align-items: center; padding-block: 1.25rem; border-top: 1px solid rgba(97,102,112,.2); }
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2.5rem; width: 100%; }
.footer-bottom-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .footer-bottom-links { gap: 1.75rem; } }
.footer-bottom-links a { transition: color .3s; }
.footer-bottom-links a:hover { color: var(--primary); }

/* =====================================================================
   SCROLL TO TOP
   ===================================================================== */
.scroll-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 99; width: 48px; height: 48px;
  display: grid; place-items: center; border-radius: 9999px; background: var(--primary); color: #fff;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-light); }

/* ---------- page-specific helpers (home) ---------- */
.hero-btn { margin-top: 30px; }
.dms-title { font-size: 48px; line-height: 58px; font-weight: 700; color: #000; }
@media (max-width: 767px) { .dms-title { font-size: 32px; line-height: 1.2; } }
.cta-form .flex-1-input { flex: 1; width: 100%; }
.about-head { padding-bottom: 20px; }
.main-services-section { overflow: hidden; }
@media (max-width: 767px) {
  .content-body h2, .bullets-body h2 { font-size: 32px; line-height: 1.2; }
  .section-head h2 { font-size: 32px; line-height: 1.2; }
}

/* =====================================================================
   INNER-PAGE HERO BANNER (hero v3) — title + breadcrumb over image
   ===================================================================== */
.page-hero {
  position: relative;
  display: flex;
  min-height: 550px;
  align-items: center;
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none; z-index: 0;
}
.page-hero .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #ffffff 100%);
}
.page-hero .container { position: relative; z-index: 4; }
.page-hero-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 2rem 5rem; justify-content: space-between; color: var(--accent-900);
}
@media (min-width: 1024px) { .page-hero-inner { padding-top: 137px; } }
.page-hero h1 {
  font-family: var(--font-secondary); font-weight: 700;
  font-size: 38px; line-height: 1.15;
}
@media (min-width: 1024px) { .page-hero h1 { font-size: 58px; line-height: 68px; } }
.breadcrumb ol { display: inline-flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.breadcrumb li { font-family: var(--font-secondary); font-weight: 700; font-size: 1.125rem; }
@media (min-width: 768px) { .breadcrumb li { font-size: 1.5rem; } }
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { margin-left: 1.25rem; }

/* =====================================================================
   ZIGZAG RIGHT IMAGE (image on the right, 1/2 width)
   ===================================================================== */
.zigzag-section { overflow: hidden; text-align: center; font-family: var(--font-inter); }
@media (min-width: 768px) { .zigzag-section { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .zigzag-section { padding-inline: 5rem; text-align: left; } }
.zigzag-row { display: block; }
@media (min-width: 1024px) {
  .zigzag-row { display: flex; flex-direction: row-reverse; align-items: center; margin-inline: -1.5rem; }
}
.zigzag-img { width: 100%; border-radius: .5rem; object-fit: cover; object-position: center; }
@media (min-width: 1024px) { .zigzag-img { margin-inline: 1rem; width: 50%; } }
.zigzag-body { margin-top: 2rem; }
@media (min-width: 1024px) { .zigzag-body { margin-top: 0; width: 50%; padding-inline: 1rem; } }
.zigzag-body h2 { color: var(--accent-900); margin-bottom: .75rem; font-size: 48px; line-height: 58px; font-weight: 700; }
.zigzag-body p { margin: .75rem 0 1.25rem; }
@media (min-width: 1024px) { .zigzag-body p { text-align: justify; } }
.zigzag-body p a { color: var(--primary); text-decoration: underline; }
@media (max-width: 767px) { .zigzag-body h2 { font-size: 32px; line-height: 1.2; } }

/* Website SEO band (image left, 1/2) — light gray friendly */
.split-left-section { position: relative; overflow: hidden; text-align: center; font-family: var(--font-inter); }
@media (min-width: 768px) { .split-left-section { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .split-left-section { padding-inline: 5rem; text-align: left; } }
.split-row { display: block; }
@media (min-width: 1024px) { .split-row { display: flex; align-items: center; margin-inline: -1.5rem; } }
.split-img-half { width: 100%; border-radius: .5rem; object-fit: cover; object-position: center; }
@media (min-width: 1024px) { .split-img-half { margin-inline: 1rem; width: 50%; } }
.split-img-2-5 { width: 100%; border-radius: .5rem; object-fit: cover; object-position: center; }
@media (min-width: 1024px) { .split-img-2-5 { margin-inline: 1rem; width: 40%; } }
.split-body-half { margin-top: 2rem; }
@media (min-width: 1024px) { .split-body-half { margin-top: 0; width: 50%; padding-inline: 1rem; } }
.split-body-3-5 { margin-top: 2rem; }
@media (min-width: 1024px) { .split-body-3-5 { margin-top: 0; width: 60%; padding-inline: 1rem; } }
.split-body-half h2, .split-body-3-5 h2 { color: var(--accent-900); margin-bottom: .75rem; font-size: 48px; line-height: 58px; font-weight: 700; }
.split-body-half h3, .split-body-3-5 h3 { color: var(--accent-900); margin-bottom: 1.25rem; font-size: 38px; line-height: 48px; font-weight: 700; }
.split-body-half p, .split-body-3-5 p { margin: .75rem 0 1.25rem; }
@media (min-width: 1024px) { .split-body-half p, .split-body-3-5 p { text-align: justify; } }
@media (max-width: 767px) { .split-body-half h2, .split-body-3-5 h2 { font-size: 32px; line-height: 1.2; } }

/* red band variant for split section (Best Rated SEO Company) */
.split-red { background: var(--primary); }
.split-red .eyebrow, .split-red h2, .split-red h3, .split-red p { color: #fff; }
.split-red .split-img-2-5 { border-radius: 9999px; }

/* gray strategy band */
.strategy-section { overflow: hidden; background: #f6f6f6; }

/* strategy / inner-page centered h3 heading (matches paid-ads heading sizing) */
.strategy-section .section-head h3,
.section-head h3.paidads-head-h3 { margin-bottom: 1.25rem; font-size: 38px; line-height: 48px; font-weight: 700; color: #000; }

/* =====================================================================
   EXPERT PAGES (Zammy / Samira / Shalini) shared components
   ===================================================================== */

/* generic split rows used across expert pages */
.exp-section { overflow: hidden; font-family: var(--font-inter); }
@media (min-width: 768px) { .exp-section { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .exp-section { padding-inline: 5rem; text-align: left; } }
.exp-section.center { text-align: center; }
@media (min-width: 1024px) { .exp-section.center { text-align: left; } }
.exp-gray { background: var(--accent-100); }
.exp-red  { background: var(--primary); }
.exp-red .eyebrow, .exp-red h2, .exp-red h3, .exp-red p { color: #fff; }

.exp-row { display: block; }
@media (min-width: 1024px) { .exp-row { display: flex; align-items: center; margin-inline: -1.5rem; } }
.exp-row.reverse { }
@media (min-width: 1024px) { .exp-row.reverse { flex-direction: row-reverse; } }

.exp-h2 { color: var(--accent-900); margin-bottom: 10px; font-size: 45px; line-height: 55px; font-weight: 700; }
.exp-h2-lg { color: var(--accent-900); margin-bottom: 10px; font-size: 48px; line-height: 58px; font-weight: 700; }
.exp-h3 { color: var(--accent-900); margin-bottom: 10px; font-size: 38px; line-height: 48px; font-weight: 700; }
.exp-h5 { color: var(--accent-900); margin: 15px 0 10px; font-size: 22px; line-height: 32px; font-weight: 700; }
@media (max-width: 767px) {
  .exp-h2, .exp-h2-lg { font-size: 32px; line-height: 1.2; }
  .exp-h3 { font-size: 28px; line-height: 1.2; }
}
.exp-body p { margin: .75rem 0 1.25rem; }
@media (min-width: 1024px) { .exp-body p { text-align: justify; } }

/* column-width helpers for split rows */
@media (min-width: 1024px) {
  .w-2-6 { width: 33.333%; margin-inline: 1rem; }
  .w-4-6 { width: 66.666%; padding-inline: 1rem; }
  .w-3-5 { width: 60%; padding-inline: 1rem; }
  .w-2-5 { width: 40%; margin-inline: 1rem; }
  .w-half { width: 50%; padding-inline: 1rem; }
  .w-half-img { width: 50%; margin-inline: 1rem; }
  .w-3-12 { width: 25%; margin-inline: 1rem; }
  .w-9-12 { width: 75%; padding-inline: 1rem; }
  .w-4-12 { width: 33.333%; margin-inline: 1rem; }
  .w-8-12 { width: 66.666%; padding-inline: 1rem; }
}
.exp-img {  border-radius: .5rem; object-fit: cover; object-position: center; margin-top: 2rem; }
@media (min-width: 1024px) { .exp-img { margin-top: 0; } }
.exp-body { margin-top: 2rem; }
@media (min-width: 1024px) { .exp-body { margin-top: 0; } }

/* check bullet list (FaCircleCheck) with bold title */
.exp-checklist { margin-top: 0; }
@media (min-width: 1024px) { .exp-checklist { text-align: justify; } }
.exp-checklist li { margin-bottom: 12px; display: flex; gap: .75rem; }
@media (min-width: 1024px) { .exp-checklist li { gap: 1rem; } }
.exp-checklist li:last-child { margin-bottom: 0; }
.exp-checklist .ck { position: relative; top: 5px; font-size: 1.125rem; color: var(--primary); flex: none; }
.exp-checklist .tx { display: block; line-height: 1.8; letter-spacing: .2px; color: var(--accent-900); }

/* about stats (dl) */
.exp-stats { margin-top: 0; display: grid; max-width: 24rem; gap: 2rem; text-align: center; grid-template-columns: 1fr 1fr; }
.exp-stat { display: flex; flex-direction: column; gap: .75rem; padding-left: .25rem; }
.exp-stat + .exp-stat { border-left: 1px solid rgba(17,24,39,.1); }
.exp-stat dt { font-family: var(--font-inter); font-size: 1.125rem; color: #4b5563; }
@media (min-width: 1024px) { .exp-stat dt { font-size: .875rem; } }
.exp-stat dd { order: -1; font-family: var(--font-secondary); font-size: 1.125rem; font-weight: 600; line-height: 1; letter-spacing: -.01em; color: #111827; }
@media (min-width: 1024px) { .exp-stat dd { font-size: 1.5rem; } }

/* highlight image card (senior analyst / analyst) */
.exp-highlight { position: relative; display: flex; flex-direction: column; overflow: hidden; }
.exp-highlight .badge { position: absolute; left: 0; top: 0; display: flex; flex-direction: column; justify-content: center; border-radius: .75rem; background: var(--primary); padding: 1rem .75rem; }
.exp-highlight .badge span { display: block; font-weight: 700; color: #fff; font-size: .875rem; }
@media (min-width: 1024px) { .exp-highlight .badge span { font-size: 1.125rem; } }
.exp-highlight .pic { overflow: hidden; border-radius: .75rem; }
.exp-highlight .pic img { width: 100%; }

/* GMB profile points grid + rotated image */
.exp-points-grid { margin-top: .75rem; display: grid; gap: .25rem 5rem; }
@media (min-width: 640px) { .exp-points-grid { grid-template-columns: 1fr 1fr; } }
.exp-points-grid li { display: flex; align-items: center; gap: .75rem; }
@media (min-width: 1024px) { .exp-points-grid li { gap: 1rem; } }
.exp-points-grid .ck { color: var(--primary); font-size: 1rem; flex: none; }
.exp-points-grid .tx { display: block; font-size: 16px; font-weight: 500; line-height: 1.5; color: var(--accent-900); }
.exp-rotated { position: relative; z-1: 1; margin-inline: auto; }
.exp-rotated img { height: auto; width: 100%; border-radius: .5rem; box-shadow: 0 10px 15px rgba(0,0,0,.1); position: relative; z-index: 1; }
.exp-rotated .shape { position: absolute; left: 0; top: 0; z-index: 0; height: 100%; width: 100%; transform: rotate(5deg); border-radius: .3125rem; background: var(--primary); transition: transform .35s; }
.exp-rotated:hover .shape { transform: rotate(2deg); }

/* two-card off-page (strategy / challenges) */
.exp-twocards { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .exp-twocards { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.exp-twocard { border: 1px solid var(--accent-200); background: var(--accent-100); border-radius: .75rem; padding: 18px; transition: all .3s; }
.exp-twocard:hover { background: var(--primary); color: #fff; }
.exp-twocard:hover .ck { color: #fff; }
.exp-twocard h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: .5rem; text-align: center; }
.exp-twocard ul { margin-bottom: 1rem; }
.exp-twocard li { display: flex; gap: .5rem; align-items: center; }
.exp-twocard .ck { color: var(--primary); font-size: 1rem; flex: none; }

/* icon-step list (on-page technique) */
.exp-steps .step { margin-top: 10px; display: flex; align-items: flex-start; gap: 1.25rem; }
.exp-step-ic { display: flex; height: 2rem; width: 2rem; align-items: center; justify-content: center; border-radius: 9999px; border: 1px dashed var(--primary); background: #000; color: #fff; flex: none; }
.exp-step-ic svg { width: 18px; height: 18px; }
.exp-steps .step p { font-size: 1rem; color: var(--accent-900); margin: 0; }

/* strategic process / GMB issues big cards (2-col) */
.exp-process-grid { display: flex; flex-wrap: wrap; justify-content: center; margin-inline: -1rem; }
.exp-process-col { width: 100%; padding-inline: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .exp-process-col { width: 50%; } }
.exp-process-card { background: #fff; box-shadow: 0 10px 15px rgba(0,0,0,.08); border-radius: .75rem; padding: 30px; transition: transform .7s, background .3s, color .3s; text-align: center; }
.exp-process-card:hover { transform: scale(1.05); background: var(--primary); color: #fff; }
.exp-process-card .pic { color: #000; font-size: 2.5rem; margin-bottom: 15px; display: grid; place-items: center; }
@media (min-width: 768px) { .exp-process-card .pic { font-size: 4rem; } }
.exp-process-card:hover .pic { color: #fff; }
.exp-process-card h4 { font-size: 22px; font-weight: 700; color: var(--accent-900); line-height: 1.25; }
.exp-process-card:hover h4 { color: #fff; }
.exp-process-card p { margin-top: .75rem; }

/* 4-up small card grid (gmb issues faced - three-cards style) */
.exp-4grid { display: flex; flex-wrap: wrap; justify-content: center; margin-inline: -1rem; row-gap: 1.875rem; }
.exp-4grid .col { width: 100%; padding-inline: 1rem; }
@media (min-width: 768px) { .exp-4grid .col { width: 50%; padding-inline: 15px; } }
@media (min-width: 1024px) { .exp-4grid .col { width: 25%; } }
.exp-smallcard { background: #fff; border-radius: .3125rem; padding: 1.5rem; box-shadow: var(--shadow-3); height: 100%; text-align: center; transition: transform .35s; }
.exp-smallcard:hover { transform: translateY(-.5rem); }
.exp-smallcard .pic { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; display: grid; place-items: center; }
.exp-smallcard h5 { font-size: 1.125rem; font-weight: 700; color: var(--accent-900); margin-bottom: .5rem; }
.exp-smallcard p { color: var(--accent-800); }

/* dotted career/skills two-column lists */
.exp-dotted-cols { display: block; }
@media (min-width: 1024px) { .exp-dotted-cols { display: flex; align-items: flex-start; margin-inline: -1.5rem; } }
.exp-dotted-col { margin-top: 2rem; }
@media (min-width: 1024px) { .exp-dotted-col { margin-top: 0; width: 50%; padding-inline: 1rem; } .exp-dotted-col.first { margin-top: 2rem; } .exp-dotted-col.first { margin-top: 0; } }
.exp-dotted { margin-top: 0; }
.exp-dotted li { margin-bottom: 12px; border: 1px dotted var(--primary); border-radius: 5px; padding: 1rem; text-align: center; }
.exp-dotted li span { display: block; font-size: 16px; line-height: 1.5; color: var(--accent-900); }
.exp-narrow-head { margin-inline: auto; max-width: 800px; text-align: center; }
.exp-wide-head { margin-inline: auto; max-width: 930px; text-align: center; }

/* image collage reused (experiences / career journey) — reuse about-collage classes */

/* =====================================================================
   PRICING
   ===================================================================== */
.pricing-toggle { margin-bottom: 2rem; display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; }
.pricing-toggle button { padding: .5rem 1rem; border-radius: 9999px; font-size: .875rem; font-weight: 500; border: 1px solid var(--primary); background: #fff; color: var(--primary); transition: all .2s; }
.pricing-toggle button.active { background: var(--primary); color: #fff; }
.pricing-card { border-radius: .3125rem; background: #fff; padding: 2.5rem; padding-bottom: 50px; text-align: center; box-shadow: var(--shadow-3); height: 100%; }
.pricing-card h3 { margin-bottom: .625rem; font-size: 1.5rem; font-weight: 700; line-height: 1.3; color: var(--accent-900); }
@media (min-width: 1024px) { .pricing-card h3 { font-size: 2rem; } }
.pricing-price { position: relative; z-index: 1; margin: 1.25rem auto 1.875rem; display: flex; min-height: 80px; max-width: 274px; align-items: center; justify-content: center; border-radius: .3125rem; background: var(--accent-300); font-family: var(--font-secondary); font-size: 1.5rem; font-weight: 700; line-height: 1.25; color: var(--accent-900); overflow: hidden; transition: color .3s; }
@media (min-width: 1024px) { .pricing-price { font-size: 2rem; } }
.pricing-price::after { content: ""; position: absolute; bottom: 0; left: 0; z-index: -1; height: 0; width: 100%; border-radius: inherit; background: var(--primary); transition: all .5s ease-in-out; }
.pricing-card:hover .pricing-price::after { bottom: auto; top: 0; height: 100%; }
.pricing-card:hover .pricing-price { color: #fff; }
.pricing-price sub { position: relative; bottom: 0; margin-left: .375rem; display: inline-block; font-size: 1rem; }
@media (min-width: 1024px) { .pricing-price sub { font-size: 1.125rem; } }
.pricing-feats { margin-bottom: 50px; display: grid; gap: .25rem; }
@media (min-width: 768px) { .pricing-feats { gap: .75rem; } }
.pricing-feats li { display: flex; align-items: center; gap: .75rem; font-family: var(--font-secondary); font-size: 1.125rem; font-weight: 700; line-height: 1.5; color: var(--accent-800); }
@media (min-width: 1024px) { .pricing-feats li { gap: 1rem; } }
.pricing-feats .yes { color: var(--primary-light); flex: none; }
.pricing-feats .no { color: #ef4444; flex: none; }
.pricing-feats .lbl { text-align: left; }
.pricing-card .btn { width: 100%; border: 2px solid var(--primary); background: transparent; color: var(--accent-900); }
.pricing-card .btn::after { background: var(--primary); }
.pricing-card .btn:hover { color: #fff; }

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-section .contact-grid { display: flex; flex-direction: column; gap: 50px; }
@media (min-width: 768px) { .contact-section .contact-grid { flex-direction: row; } }
.contact-form-col { } 
@media (min-width: 768px) { .contact-form-col { width: 50%; } }
@media (min-width: 1024px) { .contact-form-col { width: 66.666%; } }
.contact-info-col { }
@media (min-width: 768px) { .contact-info-col { width: 50%; } }
@media (min-width: 1024px) { .contact-info-col { width: 33.333%; } }
.contact-head { margin-bottom: 30px; }
.contact-head h2 { font-family: var(--font-secondary); font-size: 1.25rem; font-weight: 700; line-height: 1.25; color: var(--accent-900); }
@media (min-width: 768px) { .contact-head h2 { font-size: 1.5rem; } }
.contact-head .eyebrow { margin-bottom: 10px; }
.contact-head p { margin-top: 1.25rem; color: #000; }

.contact-form { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 1024px) { .contact-form { grid-template-columns: 1fr 1fr; gap: 30px; } }
.contact-form .full { grid-column: 1 / -1; }
.contact-field input,
.contact-field textarea {
  width: 100%; background: var(--accent-100); border: none; border-radius: 5px;
  padding: 1rem 1.25rem; font-family: var(--font-inter); font-size: 1rem; color: var(--accent-900);
}
.contact-field textarea { min-height: 140px; padding-top: 1rem; resize: vertical; }
@media (min-width: 768px) { .contact-field textarea { min-height: 200px; } }
.contact-field input:focus,
.contact-field textarea:focus { outline: 2px solid var(--primary); outline-offset: 0; }
.contact-field .cta-error { color: #ef4444; margin-top: .25rem; font-size: .875rem; min-height: 1em; }

.contact-info-list { display: grid; gap: 1.25rem; }
.contact-info-item { display: flex; gap: 30px; }
.contact-info-item .ic {
  width: 50px; height: 50px; position: relative; top: 4px; font-size: 1.125rem;
  border-radius: 9999px; display: inline-grid; place-items: center; color: #fff; background: var(--primary); flex: none;
}
.contact-info-item h3 { font-size: 1.125rem; font-weight: 700; line-height: 1.5; margin-bottom: 6px; color: var(--accent-900); }
.contact-info-item address { font-style: normal; }
.contact-info-item a { color: var(--accent-800); }
.contact-info-item a:hover { color: var(--primary); }

.map-embed { overflow: hidden; }
.map-embed iframe { min-height: 450px; width: 100%; border: none; display: block; }

/* =====================================================================
   GOOGLE MAPS SEO page extras
   ===================================================================== */
/* GMB process: 4 white rounded cards, centered heading */
.gmb-process-head { margin-inline: auto; max-width: 66.66%; text-align: center; }
@media (max-width: 1023px) { .gmb-process-head { max-width: 100%; } }
.gmb-process-grid { display: flex; flex-wrap: wrap; margin: 25px -12.5px 0; }
.gmb-process-col { width: 100%; padding: 0 12.5px; margin-top: 25px; }
@media (min-width: 768px) { .gmb-process-col { width: 50%; } }
@media (min-width: 1280px) { .gmb-process-col { width: 25%; } }
.gmb-process-card { background: #fff; border-radius: 2.5rem; box-shadow: 0 .25rem 1.75rem rgba(30,34,40,.07); height: 100%; }
.gmb-process-card .body { padding: 30px; border-radius: 2.5rem; }
.gmb-process-card .ic { display: flex; justify-content: center; color: var(--primary); }
.gmb-process-card .ic svg { width: 2.5rem; height: 2.5rem; }
.gmb-process-card h4 { margin-top: 1rem; font-size: 1.125rem; font-weight: 700; color: var(--accent-900); }
.gmb-process-card p { color: #4b5563; margin-top: .25rem; }

/* boost business: red band, 3-image collage left, content right */
.boost-section { background: var(--primary); overflow: hidden; font-family: var(--font-inter); }
@media (min-width: 768px) { .boost-section { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .boost-section { padding-inline: 5rem; } }
.boost-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; margin-inline: -1rem; }
.boost-imgs, .boost-copy { width: 100%; padding-inline: 1rem; }
@media (min-width: 1024px) { .boost-imgs { width: 41.666%; } .boost-copy { width: 58.333%; } }
.boost-imgs .grid2 { display: flex; align-items: center; margin-inline: -.75rem; }
.boost-imgs .colA, .boost-imgs .colB { width: 100%; padding-inline: .75rem; }
@media (min-width: 1280px) { .boost-imgs .colA, .boost-imgs .colB { width: 50%; } }
.boost-imgs img { width: 100%; border-radius: 1rem; display: block; }
.boost-imgs .stack { padding: .75rem 0; }
.boost-copy .eyebrow { color: #000; }
.boost-copy h2 { color: #fff; font-size: 48px; line-height: 58px; font-weight: 700; margin-bottom: .75rem; }
@media (max-width: 767px) { .boost-copy h2 { font-size: 32px; line-height: 1.2; } }
.boost-copy p { color: #fff; margin: .75rem 0 1.25rem; }
@media (min-width: 1024px) { .boost-copy p { text-align: justify; } }
.boost-copy { margin-top: 2.5rem; }
@media (min-width: 1024px) { .boost-copy { margin-top: 0; } }

/* local-search-rankings bulleted checklist (single col, copy-check icon) */
.lsr-list { margin-top: 1.25rem; display: grid; gap: .75rem; }
.lsr-list li { display: flex; align-items: center; gap: .75rem; }
@media (min-width: 1024px) { .lsr-list li { gap: 1rem; } }
.lsr-list .ck { color: var(--primary); font-size: 1.125rem; flex: none; }
.lsr-list p { color: var(--accent-900); line-height: 1.5; margin: 0; }

/* optimize-gmb image collage */
.gmb-imgs .main { width: 100%; border-radius: .5rem; display: block; }
.gmb-imgs .sec { margin-top: .75rem; display: grid; gap: .75rem; grid-template-columns: 1fr 1fr; }
.gmb-imgs .sec img { width: 100%; border-radius: .5rem; display: none; }
@media (min-width: 1024px) { .gmb-imgs .sec img { display: block; } }

/* =====================================================================
   CAREERS PAGE
   ===================================================================== */
/* centered hero title variant (alignTitleCenter) */
.page-hero-inner.center { justify-content: center; }
.page-hero-inner.center h1 { width: 100%; text-align: center; max-width: 600px; line-height: 1.1; }

.careers-wrap { background: #f8fafc; padding: 2.5rem; }
@media (min-width: 768px) { .careers-wrap { padding-block: 4rem; } }
@media (min-width: 1024px) { .careers-wrap { padding-block: 6rem; } }
.careers-card {
  margin-inline: auto; max-width: 24rem; border-radius: 1rem; border: 1px solid #e2e8f0;
  background: #fff; padding: 3rem; box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
@media (min-width: 640px) { .careers-card { max-width: 28rem; } }
@media (min-width: 768px) { .careers-card { max-width: 36rem; } }
@media (min-width: 1024px) { .careers-card { max-width: 48rem; } }
.careers-job { display: flex; justify-content: space-between; align-items: center; gap: 2rem; border-bottom: 1px solid #e5e7eb; padding-block: 1.25rem; }
.careers-job h3 { font-size: 1.125rem; font-weight: 500; line-height: 2; color: #111827; }
.careers-apply {
  height: 2.25rem; min-width: 5rem; padding-inline: 1rem; border-radius: 9999px; border: none;
  background: var(--accent-800); color: #fff; font-size: .75rem; font-weight: 600; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all .5s; white-space: nowrap; text-decoration: none;
}
.careers-apply:hover { background: #e0e7ff; color: var(--primary); }

/* =====================================================================
   DESIGN PAGE
   ===================================================================== */
/* categorized: 4-up cards (icon + title + points + proposal button) on accent-300 */
.design-cat-section { background: var(--accent-300); }
.design-cat-grid { display: flex; flex-wrap: wrap; justify-content: center; margin-inline: -1rem; row-gap: 1.875rem; }
.design-cat-grid .col { width: 100%; padding-inline: 1rem; }
@media (min-width: 768px) { .design-cat-grid .col { width: 50%; } }
@media (min-width: 1024px) { .design-cat-grid .col { width: 25%; } }
.design-cat-card { background: #fff; color: var(--accent-900); box-shadow: var(--shadow-3); border-radius: .3125rem; padding: 1.25rem; height: 100%; display: flex; flex-direction: column; gap: 1.25rem; transition: transform .35s; }
.design-cat-card:hover { transform: translateY(-.5rem); }
.design-cat-card .head { display: flex; align-items: center; gap: 1.25rem; }
.design-cat-card .head .ic { flex: none; font-size: 2.5rem; color: var(--accent-900); }
@media (min-width: 768px) { .design-cat-card .head .ic { font-size: 4rem; } }
.design-cat-card:hover .head .ic { color: var(--primary); }
.design-cat-card .head h4 { font-size: 1.125rem; font-weight: 700; line-height: 1.25; color: var(--accent-900); }
.design-cat-card ul { display: grid; gap: .5rem; margin-left: .25rem; }
.design-cat-card li { display: flex; gap: .5rem; }
.design-cat-card li .ck { position: relative; top: 4px; color: var(--primary); flex: none; }
.design-cat-card li span.tx { display: block; line-height: 1.5; color: var(--accent-900); }
.design-cat-card .proposal { margin-top: auto; display: inline-flex; align-items: center; gap: .5rem; align-self: flex-start; border: 1px solid currentColor; border-radius: .3125rem; padding: .6rem 1.25rem; color: var(--accent-900); font-weight: 600; transition: color .3s, border-color .3s; }
.design-cat-card:hover .proposal { border-color: var(--primary); color: var(--primary); }
.design-cat-card .proposal .pl { color: var(--primary); }

/* web-presence: image card carousel */
.webpresence-head { max-width: 680px; margin-bottom: 2rem; }
.webpresence-head h2 { font-size: 48px; line-height: 58px; font-weight: 700; color: var(--accent-900); }
@media (max-width: 767px) { .webpresence-head h2 { font-size: 32px; line-height: 1.2; } }
.wp-card { }
.wp-card img { width: 100%; border-top-left-radius: .3125rem; border-top-right-radius: .3125rem; object-fit: cover; display: block; }
.wp-card .body { border-bottom-left-radius: 1.25rem; border-bottom-right-radius: 1.25rem; background: #fff; padding: .875rem; text-align: center; }
.wp-card .body h5 { font-size: 1.125rem; font-weight: 700; color: var(--accent-900); }
.wp-card .body p { padding-bottom: .625rem; color: var(--accent-900); margin-top: .25rem; }

/* =====================================================================
   GROWTH + IMPACT page extras
   ===================================================================== */
/* case-studies / boost reuse .boost-imgs grid; provide a neutral (non-red) variant */
.collage3-imgs .grid2 { display: flex; align-items: center; margin-inline: -.75rem; }
.collage3-imgs .colA, .collage3-imgs .colB { width: 100%; padding-inline: .75rem; }
@media (min-width: 1280px) { .collage3-imgs .colA, .collage3-imgs .colB { width: 50%; } }
.collage3-imgs img { width: 100%; border-radius: 1rem; display: block; }
.collage3-imgs .stack { padding: .75rem 0; }

/* google-algorithm: 2-image overlap cluster */
.algo-imgs { position: relative; }
.algo-imgs .img1 { border-radius: .4rem; display: block; }
.algo-imgs .img2 { width: 60%; border-radius: .4rem; display: none; margin-top: -30%; margin-left: auto; box-shadow: 0 10px 25px rgba(0,0,0,.15); position: relative; }
@media (min-width: 1024px) { .algo-imgs .img2 { display: block; } }

/* feature list as 2-col with double-check icon */
.feat-2col { display: grid; grid-template-columns: 1fr; gap: .5rem; margin-top: .5rem; }
@media (min-width: 1280px) { .feat-2col { grid-template-columns: 1fr 1fr; } }
.feat-2col li { display: flex; align-items: center; gap: .75rem; }
.feat-2col .ck { color: var(--primary); flex: none; }
.feat-2col span.tx { color: var(--accent-900); line-height: 1.5; }
