/*
 * Theme Name: Google's SEO
 * Description: Custom SEO Agency Theme
 * Version: 2.0
 *
 * ============================================================
 * GOOGLE'sSEO — MAIN STYLESHEET (FIXED)
 * All variable conflicts resolved, missing classes added,
 * WordPress wrapper overrides corrected.
 * ============================================================
 */

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── CSS VARIABLES ──
   SINGLE SOURCE OF TRUTH.
   header.php uses these same values inline — keep in sync.
── */
:root {
  /* FIX #1: was #0a0a0a in global.css but #07080a in header.php — unified here */
  --black:        #07080a;
  --white:        #ffffff;
  --accent:       #d4ff00;
  --accent2:      #0041ff;
  --muted:        #6b6b6b;
  --border:       rgba(255, 255, 255, 0.08);
  --card-bg:      #111111;
  --card-bg2:     #0d0d0d;
  --radius:       16px;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-h:        72px;
  --max:          1200px;
  --ease:         cubic-bezier(.16, 1, .3, 1);
  --font-size-base: 16px;

  /* Font weights */
  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-black:    800;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.8125rem;
  --text-md:   0.9375rem;
  --text-base: 1rem;
  --text-lg:   1.0625rem;
  --text-xl:   1.125rem;
  --text-2xl:  1.25rem;
  --text-3xl:  1.5rem;
}

/* ── HTML & BODY ── */
html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
  background: var(--black);
}

body {
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  /* FIX #2: was var(--black) which resolved differently before variable loaded */
  background: #07080a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── FIX #3: WordPress wrapper transparency ──
   Only inner content wrappers go transparent — NOT body.
   Using more specific selectors to win against theme defaults.
── */
body #page,
body .site,
body #wrapper,
body .site-content,
body #content,
body main,
body #main {
  background: transparent !important;
}

/* ── HEADINGS ── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: var(--fw-black);
  line-height: 1.05;
  letter-spacing: -2px;
  color: #ffffff;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #ffffff;
}
h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #ffffff;
}
h4 {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 2vw, 1.5rem);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  color: #ffffff;
}
h5, h6 {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: #ffffff;
}

a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }
p   { color: rgba(255, 255, 255, 0.65); }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease);
  will-change: transform;
}
.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
  transform: translate(-50%, -50%);
  transition: all 0.18s var(--ease);
  will-change: transform;
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  background: rgba(7, 8, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}
.site-logo span { color: var(--accent); }

/* Desktop nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li > a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a[aria-current] {
  color: #ffffff;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a[aria-current]::after {
  width: 100%;
}

/* Nav CTA */
.nav-cta {
  background: var(--accent) !important;
  color: #07080a !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
  padding: 10px 22px !important;
  border-radius: 99px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: transform 0.2s var(--ease), box-shadow 0.2s !important;
  flex-shrink: 0;
  text-decoration: none !important;
}
.nav-cta:hover {
  transform: scale(1.04) !important;
  box-shadow: 0 0 24px rgba(212, 255, 0, 0.4) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 501;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Desktop dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.dropdown-arrow {
  display: inline-block;
  font-size: 0.65em;
  line-height: 1;
  transition: transform 0.3s;
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px;
  background: transparent;
}
.dropdown-menu {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 260px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s, visibility 0s linear 0.22s;
  z-index: 99999;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 11px;
  height: 11px;
  background: #0d0d0d;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.22s, transform 0.22s, visibility 0s linear 0s;
}
.nav-dropdown.is-open .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin: 2px 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  border-radius: 7px;
  transition: color 0.18s, background 0.18s, padding-left 0.18s;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  padding-left: 24px;
}
.dropdown-menu > li > a .svc-icon { font-size: 1rem; flex-shrink: 0; }

/* Flyout */
.has-flyout { position: relative; }
.flyout-chevron {
  margin-left: auto;
  padding-left: 8px;
  font-size: 0.58em;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.18s, transform 0.2s;
  flex-shrink: 0;
}
.has-flyout:hover .flyout-chevron,
.has-flyout.flyout-open .flyout-chevron {
  color: var(--accent);
  transform: translateX(3px);
}
.has-flyout:hover > a,
.has-flyout.flyout-open > a {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.07) !important;
  padding-left: 18px !important;
}
.flyout-menu {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  position: absolute;
  top: -8px;
  left: calc(100% + 10px);
  min-width: 290px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0s linear 0.2s;
  z-index: 100000;
}
.flyout-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -14px;
  width: 14px;
  height: 100%;
  background: transparent;
}
.has-flyout.flyout-open .flyout-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(0);
  transition: opacity 0.2s, transform 0.2s, visibility 0s linear 0s;
}
.flyout-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212, 255, 0, 0.45);
  padding: 4px 26px 8px;
}
.flyout-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin: 2px 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  border-radius: 7px;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s, padding-left 0.18s;
}
.flyout-menu li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  padding-left: 24px;
}
.flyout-menu li a .svc-icon { font-size: 1rem; flex-shrink: 0; }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 8, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 499;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 24px;
  overflow-y: auto;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile > a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s;
}
.nav-mobile > a:hover { color: var(--accent); }

/* Mobile services accordion */
.mobile-services-group { display: flex; flex-direction: column; width: 100%; }
.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 0;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
  transition: color 0.2s;
}
.mobile-services-toggle:hover { color: var(--accent); }
.mobile-dropdown-arrow {
  display: inline-block;
  font-size: 0.75em;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.3s;
  margin-left: 6px;
}
.mobile-services-group.open .mobile-dropdown-arrow { transform: rotate(180deg); }
.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  padding: 6px 0 4px 14px;
  margin-top: 6px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  gap: 2px;
}
.mobile-services-group.open .mobile-dropdown-menu { display: flex; }
.mobile-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.mobile-dropdown-menu a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
}
.mobile-seo-group { display: flex; flex-direction: column; width: 100%; }
.mobile-seo-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 9px 10px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 0.875rem;
  border-radius: 6px;
  text-align: left;
  transition: color 0.18s, background 0.18s;
}
.mobile-seo-toggle:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.mobile-seo-toggle-inner { display: flex; align-items: center; gap: 9px; }
.mobile-seo-arrow {
  font-size: 0.62em;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.25s, color 0.18s;
  flex-shrink: 0;
}
.mobile-seo-group.open .mobile-seo-arrow { transform: rotate(90deg); color: var(--accent); }
.mobile-seo-submenu {
  display: none;
  flex-direction: column;
  padding: 2px 0 4px 14px;
  margin-top: 2px;
  border-left: 2px solid rgba(212, 255, 0, 0.15);
  gap: 1px;
}
.mobile-seo-group.open .mobile-seo-submenu { display: flex; }
.mobile-seo-submenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 0.825rem;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.mobile-seo-submenu a:hover {
  color: var(--accent) !important;
  background: rgba(212, 255, 0, 0.05);
}

/* ── ANNOUNCEMENT BAR ── */
.hero-announce-bar {
  background: #111a0e;
  border-bottom: 1px solid #2a3d1a;
  overflow: hidden;
  width: 100%;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  height: 38px;
}
.hero-announce-spacer { display: block; height: 38px; width: 100%; }
.hero-announce-inner { display: flex; align-items: center; padding: 9px 0; }
.hero-announce-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ha-marquee 32s linear infinite;
  width: max-content;
  /* FIX #4: will-change removed — it broke stacking context on the bar */
}
.hero-announce-bar:hover .hero-announce-track { animation-play-state: paused; }
.hero-announce-item {
  font-size: 13px;
  color: #c8d8b8;
  letter-spacing: 0.02em;
  padding: 0 28px;
  font-family: var(--font-body);
}
.hero-announce-item strong {
  color: #b8f050;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero-announce-sep { color: #3a5a2a; font-size: 15px; flex-shrink: 0; user-select: none; }
@keyframes ha-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── TRUST MARQUEE BAR ── */
.trust-bar {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before { left: 0;  background: linear-gradient(to right, #07080a, transparent); }
.trust-bar::after  { right: 0; background: linear-gradient(to left,  #07080a, transparent); }

/* FIX #5: Removed will-change from .marquee-track — it created a new stacking
   context that broke the ::before/::after pseudo-element fade overlays */
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.trust-bar:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { 100% { transform: translateX(-50%); } }

.marquee-item {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.marquee-item .dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTION UTILITIES ── */

/* FIX #6: section no longer gets a blanket padding —
   inline styles on individual sections win cleanly now.
   Only pages that need a generic fallback use .section-pad. */
section {
  position: relative;
}
.section-pad {
  padding: 112px 48px;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  /* FIX #7: Added side padding so content never slams edges on mobile */
  padding-inline: 48px;
}
.section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 3.8vw, 3.125rem);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #ffffff;
}
.section-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent);
  color: #07080a;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 32px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 16px 40px rgba(212, 255, 0, 0.32);
  color: #07080a;
}
.btn-ghost {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  text-decoration: none;
  transition: border-color 0.2s, gap 0.25s;
}
.btn-ghost:hover { border-color: var(--accent); gap: 14px; }

/* ── CARDS ── */
.card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.card:hover {
  border-color: rgba(212, 255, 0, 0.2);
  transform: translateY(-4px);
}

/* ── GRID DIVIDER ── */
.grid-divider {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
}
.grid-divider > * {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.grid-divider > *:last-child { border-right: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 80px) 48px 72px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
.page-hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(212, 255, 0, 0.07);
  border-radius: 50%;
  filter: blur(100px);
  top: -100px;
  right: -100px;
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.page-eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(212, 255, 0, 0.08);
  border: 1px solid rgba(212, 255, 0, 0.18);
  padding: 5px 14px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 24px;
  animation: fadeUp 0.7s var(--ease) 0.1s both;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  letter-spacing: -2.5px;
  line-height: 1.0;
  color: #ffffff;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.page-title .outline { -webkit-text-stroke: 2px #ffffff; color: transparent; }
.page-title .hi      { color: var(--accent); }
.page-desc {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 20px;
  animation: fadeUp 0.8s var(--ease) 0.35s both;
}

/* ── FOOTER ── */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 72px 48px 36px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .site-logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.social-btn:hover {
  background: rgba(212, 255, 0, 0.08);
  border-color: rgba(212, 255, 0, 0.2);
  color: var(--accent);
}
.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ── ANIMATIONS ── */
@keyframes gridShift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(60px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scroll-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── HERO SECTION ── */
.hero-section {
  width: 100%;
  min-height: calc(100vh - var(--nav-h, 70px) - 38px); /* 38px = announce bar */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 48px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

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

/* ── TOOLS MARQUEE ── */
#tools-marquee {
  background: var(--black);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.tools-header { text-align: center; margin-bottom: 30px; }
.tools-header span {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.marquee {
  position: relative;
  overflow: hidden;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(to right, var(--black), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--black), transparent); }
/* Note: .marquee-track inside tools uses scroll-marquee, not marquee keyframe */
#tools-marquee .marquee-track {
  gap: 80px;
  animation: scroll-marquee 28s linear infinite;
}
#tools-marquee .marquee:hover .marquee-track { animation-play-state: paused; }
.tool-item {
  width: 120px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.tool-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.4) contrast(1.1);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.tool-item:hover { opacity: 1; }
.tool-item:hover img { filter: none; transform: scale(1.1); }

/* ── WHY CHOOSE US ── */
#why-choose-us { background: #0d0d0d; padding: 120px 0; }
.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.why-image { position: relative; }
.why-image img { width: 100%; border-radius: 20px; display: block; }
.why-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.15), transparent 70%);
  filter: blur(60px);
  z-index: -1;
}
.why-content { max-width: 600px; }
.why-text { color: rgba(255, 255, 255, 0.55); line-height: 1.9; margin-bottom: 18px; font-size: 15px; }
.why-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.why-highlights span {
  background: rgba(212, 255, 0, 0.08);
  border: 1px solid rgba(212, 255, 0, 0.2);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12px;
}
.why-cta { margin-top: 30px; display: inline-block; }

/* ── LSEO SLIDER ── */
#lseo-section { padding: 80px 0; overflow: hidden; }
.lseo-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 56px;
}
.lseo-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 100%;
  margin-top: 14px;
}
.lseo-progress-wrap { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lseo-progress-track { width: 120px; height: 3px; background: rgba(255, 255, 255, 0.1); border-radius: 3px; overflow: hidden; }
.lseo-progress-fill { height: 100%; width: 10%; background: var(--accent); border-radius: 3px; transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.lseo-progress-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: var(--accent); min-width: 36px; }
.lseo-layout { display: grid; grid-template-columns: 280px 1fr; gap: 0; align-items: start; }
.lseo-left {
  position: sticky;
  top: 80px;
  height: calc(100vh - 100px);
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 24px 0 40px;
  overflow: hidden;
}
.lseo-vtrack { width: 3px; flex-shrink: 0; background: rgba(255, 255, 255, 0.07); border-radius: 3px; position: relative; margin-right: 16px; align-self: stretch; }
.lseo-vfill { position: absolute; top: 0; left: 0; right: 0; height: 10%; background: var(--accent); border-radius: 3px; transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1); box-shadow: 0 0 10px rgba(212, 255, 0, 0.5); }
.lseo-vtick { position: absolute; left: -2px; width: 7px; height: 1px; background: rgba(255, 255, 255, 0.15); transform: translateY(-50%); }
.lseo-tabs { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; flex: 1; overflow-y: auto; scrollbar-width: none; }
.lseo-tabs::-webkit-scrollbar { display: none; }
.lseo-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  font-weight: 400;
  user-select: none;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
}
.lseo-tab-icon { font-size: 15px; flex-shrink: 0; transition: transform 0.3s ease; }
.lseo-tab-label { overflow: hidden; text-overflow: ellipsis; flex: 1; transition: color 0.2s; }
.lseo-tab-arrow { font-size: 12px; opacity: 0; transform: translateX(-6px); transition: opacity 0.2s, transform 0.2s; color: var(--accent); flex-shrink: 0; }
.lseo-tab.is-active { color: var(--white); background: rgba(212, 255, 0, 0.06); border-color: rgba(212, 255, 0, 0.18); transform: translateX(6px); box-shadow: inset 3px 0 0 var(--accent); font-weight: 500; }
.lseo-tab.is-active .lseo-tab-icon { transform: scale(1.15); }
.lseo-tab.is-active .lseo-tab-label { color: rgba(255, 255, 255, 0.9); }
.lseo-tab.is-active .lseo-tab-arrow { opacity: 1; transform: translateX(0); }
.lseo-tab:hover:not(.is-active) { color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.04); transform: translateX(3px); }
.lseo-right { display: flex; flex-direction: column; gap: 0; padding-left: 52px; min-height: 520px; }
.lseo-slider-viewport { overflow: hidden; position: relative; border-left: 1px solid rgba(255, 255, 255, 0.06); }
.lseo-slider-viewport::before,
.lseo-slider-viewport::after { content: ''; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 2; pointer-events: none; }
.lseo-slider-viewport::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.lseo-slider-viewport::after  { right: 0; background: linear-gradient(to left, var(--black), transparent); }
.lseo-slider-track { display: flex; flex-direction: row; width: 100%; transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1); cursor: grab; }
.lseo-slider-track.is-dragging { cursor: grabbing; transition: none; }
.lseo-panel {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 48px 52px 32px;
  position: relative;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.lseo-panel.enter-from-left { transform: translateX(-40px); }
.lseo-panel.is-active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.lseo-panel-step { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--accent); opacity: 0.55; margin-bottom: 20px; display: block; }
.lseo-panel-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.lseo-panel-icon { font-size: 32px; flex-shrink: 0; line-height: 1; filter: drop-shadow(0 0 12px rgba(212, 255, 0, 0.3)); transition: filter 0.4s; }
.lseo-panel.is-active .lseo-panel-icon { filter: drop-shadow(0 0 20px rgba(212, 255, 0, 0.55)); }
.lseo-panel-title { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 38px); font-weight: 800; letter-spacing: -0.8px; line-height: 1.1; color: #fff; margin: 0; }
.lseo-panel-line { width: 0; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); border-radius: 2px; margin-bottom: 22px; transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s; }
.lseo-panel.is-active .lseo-panel-line { width: 80px; }
.lseo-panel-desc { font-size: 15px; font-weight: 300; color: rgba(255, 255, 255, 0.52); line-height: 1.9; max-width: 910px; margin-bottom: 26px; }
.lseo-panel-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.lseo-tag { font-size: 12px; font-weight: 500; color: var(--accent); background: rgba(212, 255, 0, 0.07); border: 1px solid rgba(212, 255, 0, 0.18); padding: 5px 14px; border-radius: 99px; transition: background 0.2s, border-color 0.2s; }
.lseo-tag:hover { background: rgba(212, 255, 0, 0.14); border-color: rgba(212, 255, 0, 0.35); }
.lseo-cta { display: inline-flex; align-self: flex-start; opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s; }
.lseo-panel.is-active .lseo-cta { opacity: 1; transform: translateY(0); }
.lseo-panel-watermark { position: absolute; right: 24px; bottom: 16px; font-family: var(--font-display); font-size: 120px; font-weight: 900; color: rgba(212, 255, 0, 0.03); line-height: 1; letter-spacing: -6px; user-select: none; pointer-events: none; transition: color 0.4s; }
.lseo-panel.is-active .lseo-panel-watermark { color: rgba(212, 255, 0, 0.055); }

/* ── SEM CTA ── */
#sem-cta { padding: 120px 0; background: var(--black); }
.sem-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.glass-card {
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: visible;
}
.glass-card::before { content: ''; position: absolute; inset: -50%; background: radial-gradient(circle, rgba(212, 255, 0, 0.15), transparent 60%); animation: glowMove 8s linear infinite; }
.glass-card::after  { content: ''; position: absolute; inset: 0; background: url('https://www.transparenttextures.com/patterns/noise.png'); opacity: 0.05; }
.glass-card * { position: relative; z-index: 2; }
@keyframes glowMove { 0%{transform:translate(0,0)} 50%{transform:translate(20%,20%)} 100%{transform:translate(0,0)} }
.highlight { color: var(--accent); }
.form-step { display: none; flex-direction: column; gap: 15px; position: relative; z-index: 1; }
.form-step.active { display: flex; }
.floating-group { position: relative; }
.floating-group input,
.floating-group textarea { width: 100%; padding: 14px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 10px; color: #fff; box-sizing: border-box; font-family: var(--font-body); }
.floating-group label { position: absolute; left: 12px; top: 14px; color: #aaa; transition: 0.2s; pointer-events: none; font-family: var(--font-body); }
.floating-group input:focus + label,
.floating-group input:not(:placeholder-shown) + label,
.floating-group textarea:focus + label,
.floating-group textarea:not(:placeholder-shown) + label { top: -8px; font-size: 11px; color: var(--accent); }
.next-btn, .prev-btn { background: var(--accent); color: #000; padding: 12px; border: none; border-radius: 8px; cursor: pointer; z-index: 1; font-weight: 500; font-family: var(--font-body); }
.form-progress { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.step { width: 30px; height: 30px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.5); }
.step.active { background: var(--accent); color: #000; }
.line { flex: 1; height: 2px; background: #333; }
.custom-select { position: relative; z-index: 50; }
.select-selected { padding: 12px; background: rgba(255, 255, 255, 0.04); border-radius: 10px; cursor: pointer; border: 1px solid rgba(255, 255, 255, 0.08); color: rgba(255,255,255,0.7); font-family: var(--font-body); }
.select-dropdown { position: absolute; width: 100%; top: 110%; left: 0; background: #111; border-radius: 10px; opacity: 0; transform: translateY(10px); pointer-events: none; transition: 0.25s ease; z-index: 999; border: 1px solid rgba(255,255,255,0.08); }
.custom-select.active .select-dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.select-search { width: 100%; padding: 10px; background: #111; border: none; color: #fff; border-radius: 10px 10px 0 0; box-sizing: border-box; font-family: var(--font-body); }
.select-options { max-height: 180px; overflow-y: auto; }
.select-options div { padding: 10px; cursor: pointer; color: rgba(255,255,255,0.7); font-family: var(--font-body); }
.select-options div:hover,
.select-options div.active { background: rgba(212, 255, 0, 0.15); color: var(--accent); }
.form-success { display: none; text-align: center; padding: 20px 0; }
.checkmark { font-size: 40px; color: var(--accent); animation: pop 0.4s ease; }
@keyframes pop { from{transform:scale(0.7);opacity:0} to{transform:scale(1);opacity:1} }

/* ── SEO CONSULTATION ── */
#seo-consultation-minimal { padding: 80px 0; background: #0d0d0d; }
.consult-minimal-wrapper { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.consult-minimal-content h4 { font-size: 26px; margin-bottom: 15px; font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
.consult-minimal-content p { color: rgba(255, 255, 255, 0.6); margin-bottom: 12px; font-size: 15px; line-height: 1.75; }
.consult-list { margin: 15px 0; padding-left: 18px; color: rgba(255, 255, 255, 0.6); font-size: 15px; }
.consult-list li { margin-bottom: 8px; list-style: none; }
.consult-note { font-size: 14px; color: rgba(255, 255, 255, 0.4) !important; }
.consult-minimal-right { text-align: center; }
.consult-minimal-right img { width: 100%; max-width: 520px; border-radius: 10px; margin-bottom: 20px; }
.consult-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; }
.consult-form input { padding: 12px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.03); color: #fff; box-sizing: border-box; width: 100%; font-family: var(--font-body); }
.consult-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.trust-badges { display: flex; justify-content: center; gap: 15px; font-size: 13px; color: rgba(255, 255, 255, 0.5); flex-wrap: wrap; }
.calendly-modal { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); display: none; justify-content: center; align-items: center; z-index: 9999; }
.calendly-content { width: 90%; max-width: 700px; background: #111; padding: 20px; border-radius: 10px; position: relative; }
.close-modal { position: absolute; right: 15px; top: 10px; font-size: 22px; cursor: pointer; color: #fff; }

/* ── UTILITY CLASSES ── */
.text-xs   { font-size: var(--text-xs); }
.text-sm   { font-size: var(--text-sm); }
.text-md   { font-size: var(--text-md); }
.text-base { font-size: var(--text-base); }
.text-lg   { font-size: var(--text-lg); }
.text-xl   { font-size: var(--text-xl); }
.fw-light    { font-weight: var(--fw-light); }
.fw-regular  { font-weight: var(--fw-regular); }
.fw-medium   { font-weight: var(--fw-medium); }
.fw-semibold { font-weight: var(--fw-semibold); }
.fw-bold     { font-weight: var(--fw-bold); }
.fw-black    { font-weight: var(--fw-black); }
.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; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .lseo-layout { grid-template-columns: 220px 1fr; }
  .lseo-right  { padding-left: 36px; }
}

@media (max-width: 1024px) {
  .nav-menu { gap: 16px; }
  .nav-menu > li > a { font-size: 0.8125rem; }
}

@media (max-width: 960px) {
  .site-nav { padding: 0 20px; }
  .nav-menu { display: none !important; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .site-footer { padding: 48px 24px 28px; }
}

@media (max-width: 900px) {
  .lseo-layout { grid-template-columns: 180px 1fr; }
  .lseo-tab-icon { display: none; }
  .lseo-right { padding-left: 20px; }
  .lseo-panel { padding: 40px 24px 40px 20px; }
}

@media (max-width: 768px) {
  .container { padding-inline: 20px; }

  .hero-section { padding: 40px 20px 48px; min-height: auto; padding-top: calc(var(--nav-h, 70px) + 24px); }
  .hero-section h1 { letter-spacing: -1px !important; }

  #lseo-section { padding: 60px 0; overflow: hidden; }
  .lseo-header { padding-bottom: 28px; }
  .lseo-progress-wrap { display: none; }
  .lseo-layout { grid-template-columns: 1fr; gap: 0; }
  .lseo-left { position: relative; top: auto; height: auto; flex-direction: row; padding: 0 0 20px 0; gap: 0; overflow: visible; }
  .lseo-vtrack { display: none; }
  .lseo-tabs { flex-direction: row; flex-wrap: nowrap; overflow-x: auto; gap: 8px; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .lseo-tabs::-webkit-scrollbar { display: none; }
  .lseo-tab { flex-shrink: 0; border-radius: 99px; padding: 7px 16px; font-size: 12px; transform: none !important; box-shadow: none !important; white-space: nowrap; }
  .lseo-tab.is-active { transform: none !important; box-shadow: none !important; }
  .lseo-tab-arrow { display: none; }
  .lseo-right { padding-left: 0; min-height: 480px; }
  .lseo-panel { padding: 32px 16px; }
  .lseo-panel-title { font-size: 20px !important; }
  .lseo-panel-watermark { display: none; }
  .lseo-cta { width: 100%; text-align: center; justify-content: center; align-self: stretch; }

  #why-choose-us { padding: 60px 0 !important; }
  .why-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .why-content { max-width: 100%; }

  #tools-marquee { padding: 48px 0; }
  #tools-marquee .marquee-track { gap: 40px; animation-duration: 20s; }
  .tool-item { width: 90px; height: 40px; }
  .marquee::before, .marquee::after { width: 40px; }

  #sem-cta { padding: 60px 0 !important; }
  .sem-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .glass-card { padding: 28px 20px !important; }

  #seo-consultation-minimal { padding: 60px 0; }
  .consult-minimal-wrapper { grid-template-columns: 1fr; text-align: left; }
  .consult-minimal-right { text-align: left; }
  .trust-badges { justify-content: flex-start; }

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

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .btn-primary, .btn-ghost { display: block !important; width: 100% !important; text-align: center !important; }
  .sem-wrapper { grid-template-columns: 1fr; }
}

@media (hover: none) {
  * { cursor: auto !important; }
  .btn-primary, .btn-ghost, .next-btn, .prev-btn { cursor: pointer !important; }
}

html, body { max-width: 100%; overflow-x: hidden; }