/* ============================================
   GrowthForge Solution – Main Stylesheet
   ============================================ */



:root {
  --primary: #1163FB;
  --primary-dark: #0a4fd4;
  --primary-glow: rgba(17,99,251,0.18);
  --gold: #C9A84C;
  --gold-light: #e8c97a;
  --black: #000000;
  --white: #FFFFFF;
  --gray-100: #f8f8f8;
  --gray-200: #e8e8e8;
  --gray-600: #555555;
  --gray-800: #222222;
  --font-display: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
  --font-impact: 'Bebas Neue', sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-sans); background: var(--white); color: var(--gray-800); overflow-x: hidden; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── TOP BAR ── */
.topbar {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  font-size: .78rem;
  letter-spacing: .04em;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .4rem; }
.topbar a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.top-info { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.top-info span { display: flex; align-items: center; gap: .35rem; }
.top-info i { color: var(--gold); font-size: .75rem; }
.top-social { display: flex; gap: .7rem; }
.top-social a {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(201,168,76,0.3);
  font-size: .65rem; transition: all .2s;
}
.top-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17,99,251,0.08);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
  transition: box-shadow .3s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: .8rem 0; }
.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--primary); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.logo-icon::before {
  content: ''; position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; background: var(--gold); border-radius: 50%;
}
.logo-icon i { color: #fff; font-size: 1rem; position: relative; z-index: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .brand { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--black); letter-spacing: -.01em; }
.logo-text .tagline { font-size: .58rem; letter-spacing: .18em; color: var(--primary); text-transform: uppercase; font-weight: 600; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--gray-800); font-size: .88rem;
  font-weight: 500; letter-spacing: .02em; transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--primary); transition: width .25s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.has-dropdown { position: relative; }
.dropdown-menu-custom {
  position: absolute; top: calc(100% + 12px); left: -16px;
  background: #fff; border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  padding: 1rem; min-width: 240px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s; border: 1px solid rgba(17,99,251,0.1);
  display: grid; grid-template-columns: 1fr 1fr; gap: .15rem;
}
.has-dropdown:hover .dropdown-menu-custom { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu-custom a {
  display: flex; align-items: center; gap: .5rem;
  padding: .45rem .7rem; border-radius: 6px;
  font-size: .82rem; color: var(--gray-800);
  text-decoration: none; transition: all .2s; white-space: nowrap;
}
.dropdown-menu-custom a i { color: var(--primary); font-size: .8rem; width: 16px; }
.dropdown-menu-custom a:hover { background: rgba(17,99,251,0.06); color: var(--primary); }
.dropdown-menu-custom a::after { display: none; }
.nav-cta {
  background: var(--primary); color: #fff;
  padding: .55rem 1.3rem; border-radius: 6px;
  font-size: .83rem; font-weight: 600; letter-spacing: .03em;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 4px 16px rgba(17,99,251,0.3);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(17,99,251,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); transition: all .3s; }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: var(--black); z-index: 10000; padding: 2rem 1.5rem;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  background: none; border: none; color: #fff; font-size: 1.4rem;
  cursor: pointer; margin-bottom: 2rem; display: block;
}
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav ul li a {
  display: block; color: rgba(255,255,255,0.85); text-decoration: none;
  padding: .9rem 0; font-size: .95rem; font-weight: 500; transition: color .2s;
}
.mobile-nav ul li a:hover { color: var(--gold); }
.mobile-sub { padding-left: 1rem; max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.mobile-sub.open { max-height: 500px; }
.toggle-icon.rotated { transform: rotate(180deg); display: inline-block; transition: transform .3s; }
.mobile-sub a { font-size: .85rem !important; color: rgba(255,255,255,0.6) !important; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 9999; display: none;
}
.mobile-overlay.show { display: block; }
.mobile-cta-group { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.5rem; }
.mobile-cta-group a {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem 1rem; border-radius: 8px;
  font-size: .88rem; font-weight: 600; text-decoration: none; transition: all .2s;
}
.mobile-cta-group .m-consult { background: var(--primary); color: #fff; justify-content: center; }
.mobile-cta-group .m-wa { background: #25D366; color: #fff; justify-content: center; }
.mobile-cta-group .m-call { background: rgba(255,255,255,0.1); color: #fff; justify-content: center; }

/* ── BUTTONS ── */
.btn-primary-luxury {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary); color: #fff;
  padding: .85rem 2rem; border-radius: 6px;
  font-weight: 600; font-size: .9rem; letter-spacing: .04em;
  text-decoration: none; transition: all .3s;
  box-shadow: 0 8px 30px rgba(17,99,251,0.4);
}
.btn-primary-luxury:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(17,99,251,0.5); }
.btn-outline-luxury {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: rgba(255,255,255,0.85);
  padding: .85rem 2rem; border-radius: 6px;
  font-weight: 500; font-size: .9rem; letter-spacing: .04em;
  text-decoration: none; transition: all .3s;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline-luxury:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--black);
  padding: .85rem 2rem; border-radius: 6px;
  font-weight: 700; font-size: .9rem; letter-spacing: .04em;
  text-decoration: none; transition: all .3s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── SECTION UTILITIES ── */
.section-label {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(17,99,251,0.07); color: var(--primary);
  padding: .25rem .7rem; border-radius: 20px;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--black); line-height: 1.1;
  letter-spacing: -.02em; margin-bottom: .8rem;
}
.section-title strong { font-weight: 700; }
.section-sub { color: var(--gray-600); font-size: .95rem; line-height: 1.75; max-width: 560px; }
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }
section { padding: 5rem 0; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--black); padding: 6rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 60% 50%, rgba(17,99,251,0.22) 0%, transparent 70%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(17,99,251,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(17,99,251,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; position: relative; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: .78rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: .78rem; }
.breadcrumb .current { color: var(--gold); font-size: .78rem; }
.page-hero-content { position: relative; z-index: 2; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); padding: .35rem .85rem; border-radius: 20px;
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.2rem;
}

.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300; color: #fff; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 1rem;
}
.page-hero h1 strong { font-weight: 700; color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 500px; line-height: 1.75; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(135deg, #1163FB 0%, #000000 100%);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: .88rem; line-height: 1.8; margin: 1rem 0 1.4rem; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); font-size: .85rem; transition: all .2s;
  text-decoration: none;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.footer-col h4 {
  color: #fff; font-size: .88rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.2rem;
  padding-bottom: .6rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: .875rem; transition: color .2s;
  display: flex; align-items: center; gap: .4rem;
}
.footer-col ul li a::before { content: '→'; font-size: .7rem; opacity: 0; transition: opacity .2s, transform .2s; transform: translateX(-4px); }
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact li { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: .8rem; }
.footer-contact li i { color: var(--gold); font-size: .85rem; margin-top: .2rem; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: .875rem; }
.footer-contact li a:hover { color: #fff; }
.footer-contact li a::before { display: none; }
.footer-contact li span { color: rgba(255,255,255,0.6); font-size: .875rem; line-height: 1.5; }
.footer-map { margin-top: 1rem; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.footer-map iframe { display: block; width: 100%; height: 150px; border: 0; filter: grayscale(30%) invert(10%); }
.footer-bottom {
  padding: 1.2rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ── FLOATING BUTTONS ── */
.float-whatsapp {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .25s, box-shadow .25s;
  animation: float-pulse 3s ease-in-out infinite;
}
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.float-call {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(17,99,251,0.4);
  transition: transform .25s, box-shadow .25s;
}
.float-call:hover { transform: scale(1.1); }
.scroll-top {
  position: fixed; bottom: 9.5rem; right: 1.5rem; z-index: 900;
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(0,0,0,0.7); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s; border: none;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary); }
@keyframes float-pulse { 0%,100%{transform:translateY(0);}50%{transform:translateY(-5px);} }

/* ── FORM STYLES ── */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-800); margin-bottom: .4rem; letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem; box-sizing: border-box;
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-family: var(--font-sans); font-size: .9rem; color: var(--gray-800);
  background: #fff; transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(17,99,251,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.alert { padding: 1rem 1.2rem; border-radius: 8px; font-size: .9rem; margin-bottom: 1rem; }
.alert-success { background: rgba(37,211,102,0.1); color: #1a7a40; border: 1px solid rgba(37,211,102,0.3); }
.alert-error { background: rgba(231,76,60,0.08); color: #c0392b; border: 1px solid rgba(231,76,60,0.2); }

/* ── HERO (home) ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--black); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(17,99,251,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(201,168,76,0.1) 0%, transparent 60%),
    linear-gradient(135deg, #000 0%, #0a0f1e 50%, #000 100%);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(17,99,251,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,99,251,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; padding: 6rem 0 4rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); padding: .35rem .85rem; border-radius: 20px;
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.5rem;
}
h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 300; color: #fff;
  line-height: 1.05; letter-spacing: -.02em; margin-bottom: 1.5rem;
}
h1.hero-title strong { font-weight: 700; color: var(--gold); }
h1.hero-title .blue-word { color: var(--primary); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 540px; line-height: 1.75; margin-bottom: 2.5rem; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-impact); font-size: 2.4rem; color: #fff;
  letter-spacing: .05em; line-height: 1;
}
.hero-stat .num span { color: var(--gold); }
.hero-stat .lbl { font-size: .72rem; color: rgba(255,255,255,0.45); letter-spacing: .15em; text-transform: uppercase; margin-top: .2rem; }
.hero-badge-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badge {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: .35rem .8rem; border-radius: 20px; font-size: .72rem;
  color: rgba(255,255,255,0.7); letter-spacing: .05em;
}
.hero-badge i { color: var(--gold); font-size: .7rem; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 14px; padding: 2rem;
  transition: all .3s; position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,99,251,0.03) 0%, transparent 100%);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: rgba(17,99,251,0.2); }
.service-card:hover::before { opacity: 1; }
.svc-icon {
  width: 52px; height: 52px;
  background: rgba(17,99,251,0.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; transition: background .3s;
}
.svc-icon i { color: var(--primary); font-size: 1.3rem; }
.service-card:hover .svc-icon { background: var(--primary); }
.service-card:hover .svc-icon i { color: #fff; }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--black); margin-bottom: .5rem; }
.service-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.7; }
.svc-link { display: inline-flex; align-items: center; gap: .3rem; color: var(--primary); font-size: .8rem; font-weight: 600; margin-top: 1rem; text-decoration: none; transition: gap .2s; }
.svc-link:hover { gap: .6rem; }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.why-card {
  background: var(--black); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 1.8rem 1.5rem;
  text-align: center; transition: all .3s;
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(17,99,251,0.4); box-shadow: 0 0 30px rgba(17,99,251,0.12); }
.why-icon { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.why-card h4 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.why-card p { color: rgba(255,255,255,0.5); font-size: .83rem; line-height: 1.65; }

/* ── STATS SECTION ── */
.stats-section { background: var(--primary); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item .num {
  font-family: var(--font-impact); font-size: 3.5rem; color: #fff;
  letter-spacing: .05em; line-height: 1;
}
.stat-item .lbl { color: rgba(255,255,255,0.7); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .4rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.2); }

/* ── PROCESS ── */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 3rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 30px; left: 10%; width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: #fff; border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-impact); font-size: 1.4rem; color: var(--primary);
  position: relative;
}
.step-num::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(17,99,251,0.2);
}
.process-step h4 { font-size: .9rem; font-weight: 600; color: var(--black); margin-bottom: .4rem; }
.process-step p { font-size: .78rem; color: var(--gray-600); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--gray-100); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: #fff; border-radius: 14px;
  padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all .3s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.t-stars { color: var(--gold); margin-bottom: .8rem; font-size: .9rem; }
.t-text { font-size: .9rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: .8rem; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
}
.t-author-info .name { font-weight: 600; font-size: .88rem; color: var(--black); }
.t-author-info .role { font-size: .78rem; color: var(--gray-600); }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item { border: 1px solid var(--gray-200); border-radius: 10px; margin-bottom: .7rem; overflow: hidden; }
.faq-q {
  padding: 1.1rem 1.4rem; font-weight: 600; font-size: .92rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: background .2s; color: var(--black);
}
.faq-q:hover { background: rgba(17,99,251,0.04); }
.faq-item.open .faq-q { color: var(--primary); background: rgba(17,99,251,0.04); }
.faq-q i { transition: transform .3s; font-size: .8rem; color: var(--gray-600); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 1.4rem 1.1rem; font-size: .88rem; color: var(--gray-600); line-height: 1.75; }

/* ── FINAL CTA ── */
.final-cta {
  background: var(--black); text-align: center;
  padding: 6rem 0; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(17,99,251,0.18) 0%, transparent 70%);
}
.final-cta h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff; font-weight: 300; line-height: 1.15; margin-bottom: 1rem;
}
.final-cta h2 strong { font-weight: 700; color: var(--gold); }
.final-cta p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PORTFOLIO ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-card {
  border-radius: 12px; overflow: hidden;
  position: relative; aspect-ratio: 4/3;
  background: var(--gray-200);
  cursor: pointer; transition: transform .3s;
}
.portfolio-card:hover { transform: scale(1.02); }
.portfolio-thumb {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .4s;
}
.portfolio-card:hover .portfolio-thumb { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0; opacity: 0;
  background: rgba(0,0,0,0.75);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .3s; padding: 1.5rem; text-align: center;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { color: #fff; font-size: 1.1rem; font-weight: 600; margin-bottom: .3rem; }
.portfolio-overlay p { color: rgba(255,255,255,0.7); font-size: .8rem; }
.portfolio-tag {
  position: absolute; top: .8rem; left: .8rem;
  background: var(--primary); color: #fff;
  font-size: .65rem; font-weight: 600; letter-spacing: .08em;
  padding: .25rem .65rem; border-radius: 20px; text-transform: uppercase;
}

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--gray-200); transition: all .3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: var(--gray-200); }
.blog-img-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(17,99,251,0.1), rgba(17,99,251,0.05));
  display: flex; align-items: center; justify-content: center;
}
.blog-img-placeholder i { font-size: 2rem; color: rgba(17,99,251,0.3); }
.blog-body { padding: 1.5rem; }
.blog-meta { display: flex; gap: .8rem; font-size: .75rem; color: var(--gray-600); margin-bottom: .7rem; align-items: center; flex-wrap: wrap; }
.blog-cat { background: rgba(17,99,251,0.08); color: var(--primary); padding: .2rem .6rem; border-radius: 20px; font-weight: 600; }
.blog-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--black); margin-bottom: .6rem; line-height: 1.3; }
.blog-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; }
.blog-card a.read-more { color: var(--primary); font-size: .82rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
.blog-card a.read-more:hover { gap: .6rem; }

/* ══════════════════════════════════════════════
   SERVICE PAGES — SHARED COMPONENTS
   (seo, google-ads, smm, web-dev, va pages)
   ══════════════════════════════════════════════ */

/* ── PLATFORM / ENGINE STRIP ── */
.engines-bar, .tech-strip {
  background: var(--gray-100);
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.engines-inner, .tech-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.engines-label, .tech-label {
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray-600); font-weight: 600; margin-right: .5rem;
}
.engine-pill, .tech-pill {
  display: flex; align-items: center; gap: .5rem;
  padding: .45rem 1rem; border-radius: 30px;
  border: 1px solid var(--gray-200); background: #fff;
  font-size: .8rem; font-weight: 600; color: var(--gray-800);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: all .2s;
}
.engine-pill:hover, .tech-pill:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(17,99,251,0.12);
}
.tech-pill i { color: var(--primary); font-size: .85rem; }
.engine-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.engine-icon svg { width: 18px; height: 18px; }
.engine-icon.google { background: #fff; }
.engine-icon.chatgpt { background: #10a37f; border-radius: 8px; }
.engine-icon.chatgpt svg { width: 14px; height: 14px; }
.engine-icon.gemini { background: linear-gradient(135deg,#4285f4,#9c27b0); }
.engine-icon.gemini svg { width: 14px; height: 14px; }
.engine-icon.perplexity { background: #20b2aa; }
.engine-icon.voice { background: linear-gradient(135deg,var(--primary),var(--primary-dark)); }
.engine-icon.voice i { color: #fff; font-size: .75rem; }

/* ── INTRO SECTION ── */
.seo-intro, .web-intro { padding: 5rem 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-visual {
  background: linear-gradient(135deg, var(--primary) 0%, #0a2a7a 100%);
  border-radius: 20px; padding: 2.5rem; color: #fff;
  position: relative; overflow: hidden;
}
.intro-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
/* Metric cards inside intro visual */
.seo-metric-cards, .web-metric-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; position: relative; z-index: 1;
}
.seo-metric, .web-metric {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 1.2rem; text-align: center; transition: all .3s;
}
.seo-metric:hover, .web-metric:hover { background: rgba(255,255,255,0.18); }
.seo-metric .m-icon, .web-metric .m-icon { font-size: 1.5rem; margin-bottom: .5rem; display: block; }
.seo-metric .m-num, .web-metric .m-num {
  font-family: var(--font-impact); font-size: 1.8rem;
  color: var(--gold); letter-spacing: .04em;
}
.seo-metric .m-label, .web-metric .m-label { font-size: .72rem; opacity: .7; margin-top: .2rem; letter-spacing: .04em; }
.seo-metric.wide, .web-metric.wide {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 1rem; text-align: left;
}
.seo-metric.wide .m-num, .web-metric.wide .m-num { font-size: 2.5rem; }

/* Features list inside intro content */
.intro-content .features-list { list-style: none; margin-top: 1.5rem; }
.intro-content .features-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .65rem 0; border-bottom: 1px solid var(--gray-200);
  font-size: .9rem; line-height: 1.5;
}
.intro-content .features-list li:last-child { border-bottom: none; }
.intro-content .features-list li .fi {
  width: 28px; height: 28px; background: rgba(17,99,251,0.1);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: .75rem; flex-shrink: 0; margin-top: .1rem;
}
.intro-content .features-list li strong { display: block; font-weight: 600; color: var(--black); }
.intro-content .features-list li span { color: var(--gray-600); font-size: .82rem; }

/* ── SERVICE CARDS (used in service grids) ── */
.seo-services { padding: 5rem 0; background: var(--gray-100); }
.web-services  { padding: 5rem 0; background: var(--gray-100); }
.seo-services-grid, .ppc-services-grid, .smo-services-grid, .web-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.seo-service-card, .service-card {
  background: #fff; border-radius: 14px; padding: 2rem;
  border: 1px solid var(--gray-200); transition: all .35s;
  position: relative; overflow: hidden;
}
.seo-service-card::before, .service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0a2a7a 100%);
  opacity: 0; transition: opacity .35s;
}
.seo-service-card:hover, .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(17,99,251,0.15);
  border-color: transparent;
}
.seo-service-card:hover::before, .service-card:hover::before { opacity: 1; }
.seo-service-card *, .service-card * { position: relative; z-index: 1; }
.seo-service-card:hover .sc-icon,
.seo-service-card:hover .sc-title,
.seo-service-card:hover .sc-desc,
.service-card:hover .sc-icon,
.service-card:hover .sc-title,
.service-card:hover .sc-desc { color: #fff; }
.seo-service-card:hover .sc-icon,
.service-card:hover .sc-icon { background: rgba(255,255,255,0.2); }
.seo-service-card:hover .sc-tags span,
.service-card:hover .sc-tags span { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
.sc-icon {
  width: 52px; height: 52px; background: rgba(17,99,251,0.1);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; color: var(--primary);
  margin-bottom: 1.2rem; transition: all .3s;
}
.sc-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: .6rem; color: var(--black); transition: color .3s; }
.sc-desc  { font-size: .83rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1.2rem; transition: color .3s; }
.sc-tags  { display: flex; flex-wrap: wrap; gap: .35rem; }
.sc-tags span { font-size: .68rem; padding: .2rem .55rem; border-radius: 20px; background: rgba(17,99,251,0.07); color: var(--primary); letter-spacing: .04em; transition: all .3s; }

/* ── PRICING SECTION (shared) ── */
.pricing-section { padding: 5rem 0; }
.trial-banner {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(135deg, rgba(17,99,251,0.08), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.3); border-radius: 10px;
  padding: .9rem 1.5rem; max-width: 600px; margin: 0 auto 2.5rem; font-size: .88rem; color: var(--gray-800);
}
.trial-banner i { color: var(--gold); font-size: 1rem; }
.trial-banner strong { color: var(--primary); }

/* Billing toggle */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin: 2rem 0 3rem; }
.toggle-label { font-size: .88rem; font-weight: 600; color: var(--gray-600); }
.toggle-label.active { color: var(--black); }
.switch-wrap { position: relative; width: 52px; height: 28px; }
.switch-wrap input { opacity: 0; width: 0; height: 0; position: absolute; }
.slider { position: absolute; cursor: pointer; inset: 0; background: var(--gray-200); border-radius: 28px; transition: .3s; }
.slider::before { content: ''; position: absolute; width: 22px; height: 22px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: .3s; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
input:checked ~ .slider { background: var(--primary); }
input:checked ~ .slider::before { transform: translateX(24px); }
.save-badge { background: rgba(17,99,251,0.1); color: var(--primary); font-size: .72rem; font-weight: 700; padding: .2rem .6rem; border-radius: 20px; letter-spacing: .06em; }
.annual-msg {
  text-align: center; margin: 0 auto 2.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(17,99,251,0.05), rgba(201,168,76,0.05));
  border: 1px solid rgba(17,99,251,0.1); border-radius: 10px;
  max-width: 640px; display: none;
}
.annual-msg.show { display: block; }
.annual-msg strong { color: var(--primary); }

/* Pricing grid & cards */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pricing-card {
  background: #fff; border-radius: 20px; padding: 2rem;
  border: 1px solid var(--gray-200); position: relative;
  transition: all .35s; display: flex; flex-direction: column;
}
.pricing-card:hover { box-shadow: 0 24px 60px rgba(17,99,251,0.12); transform: translateY(-4px); }
.pricing-card.best {
  background: linear-gradient(135deg, var(--primary) 0%, #0a2a7a 100%);
  border-color: transparent; color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(17,99,251,0.35);
}
.best-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black);
  font-size: .65rem; font-weight: 800; letter-spacing: .12em;
  padding: .3rem .9rem; border-radius: 20px; text-transform: uppercase; white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: .3rem; }
.plan-tagline { font-size: .78rem; color: var(--gray-600); margin-bottom: .6rem; }
.pricing-card.best .plan-tagline { color: rgba(255,255,255,0.65); }
.setup-fee, .hours-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  padding: .2rem .6rem;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); border-radius: 20px; margin-bottom: 1rem;
}
.pricing-card.best .setup-fee,
.pricing-card.best .hours-badge { background: rgba(201,168,76,0.2); border-color: rgba(201,168,76,0.4); }
.price-row { display: flex; align-items: baseline; gap: .3rem; margin-bottom: .2rem; }
.price-strike { font-size: .9rem; text-decoration: line-through; color: var(--gray-600); }
.pricing-card.best .price-strike { color: rgba(255,255,255,0.4); }
.price-curr { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.pricing-card.best .price-curr { color: var(--gold); }
.price-amount { font-family: var(--font-impact); font-size: 2.8rem; color: var(--primary); line-height: 1; }
.pricing-card.best .price-amount { color: #fff; }
.price-mo { font-size: .8rem; color: var(--gray-600); }
.pricing-card.best .price-mo { color: rgba(255,255,255,0.6); }
.price-note, .price-annual { font-size: .75rem; color: var(--gray-600); margin-bottom: 1.5rem; }
.pricing-card.best .price-note,
.pricing-card.best .price-annual { color: rgba(255,255,255,0.5); }
.plan-divider { height: 1px; background: var(--gray-200); margin: 1.2rem 0; }
.pricing-card.best .plan-divider { background: rgba(255,255,255,0.15); }
.plan-highlights { list-style: none; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.plan-highlights li { display: flex; align-items: center; gap: .6rem; font-size: .83rem; }
.plan-highlights li i { font-size: .75rem; flex-shrink: 0; }
.plan-highlights li .check { color: #22c55e; }
.pricing-card.best .plan-highlights li { color: rgba(255,255,255,0.9); }
.pricing-card.best .plan-highlights li .check { color: #86efac; }
.plan-highlights li .cross { color: var(--gray-200); }
.pricing-card.best .plan-highlights li .cross { color: rgba(255,255,255,0.2); }
.plan-cta { margin-top: 2rem; display: block; text-align: center; padding: .85rem; border-radius: 8px; font-weight: 700; font-size: .88rem; letter-spacing: .04em; text-decoration: none; transition: all .3s; }
.plan-cta-outline { border: 1.5px solid var(--primary); color: var(--primary); }
.plan-cta-outline:hover { background: var(--primary); color: #fff; }
.plan-cta-solid { background: var(--gold); color: var(--black); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.plan-cta-solid:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── COMPARISON / TABS ── */
.comparison-section { padding: 5rem 0; background: var(--gray-100); }
.tabs-wrapper { background: #fff; border-radius: 16px; border: 1px solid var(--gray-200); overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.06); }
.tabs-nav {
  display: flex; flex-wrap: wrap;
  background: var(--gray-100); border-bottom: 1px solid var(--gray-200);
}
.tab-btn {
  flex: 1; min-width: 120px; padding: .85rem 1rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  text-align: center; cursor: pointer; color: var(--gray-600);
  border: none; background: transparent; transition: all .25s;
  border-bottom: 2px solid transparent; white-space: nowrap;
  font-family: var(--font-sans);
}
.tab-btn:hover { color: var(--primary); background: rgba(17,99,251,0.04); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); background: #fff; }
.tab-pane, .tab-panel { display: none; }
.tab-pane.active, .tab-panel.active { display: block; }
.tab-pane-inner { padding: 2rem; }
.tab-pane-inner h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--black); margin-bottom: 1.5rem; display: flex; align-items: center; gap: .6rem; }
.tab-pane-inner h3 i { color: var(--primary); font-size: 1.1rem; }
.table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--gray-200); background: #fff; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.compare-table thead th { padding: 1rem 1.2rem; font-weight: 700; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; text-align: center; }
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th.th-essential { background: var(--gray-100); color: var(--gray-600); }
.compare-table thead th.th-advanced { background: rgba(17,99,251,0.04); color: var(--primary); }
.compare-table thead th.th-professional { background: rgba(17,99,251,0.08); color: var(--primary); }
.compare-table thead th.th-enterprise { background: linear-gradient(135deg, var(--primary), #0a2a7a); color: #fff; }
.compare-table tbody tr { border-top: 1px solid var(--gray-200); }
.compare-table tbody tr:hover { background: rgba(17,99,251,0.02); }
.compare-table tbody tr.highlight-row { background: rgba(201,168,76,0.05); }
.compare-table tbody tr.highlight-row:hover { background: rgba(201,168,76,0.1); }
.compare-table td { padding: .85rem 1.2rem; text-align: center; color: var(--gray-800); }
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table .icon-yes { color: #22c55e; font-size: .95rem; }
.compare-table .icon-no  { color: var(--gray-200); font-size: .95rem; }
.compare-table .val { font-weight: 600; color: var(--primary); }
.compare-table .tag-new { font-size: .62rem; background: var(--gold); color: var(--black); padding: .1rem .45rem; border-radius: 10px; font-weight: 700; vertical-align: middle; margin-left: .3rem; }
.compare-table td.highlight-row-label { font-weight: 600; color: var(--gold); }
.note-box { margin: 1.5rem 2rem; padding: 1rem 1.2rem; background: rgba(17,99,251,0.05); border-left: 4px solid var(--primary); border-radius: 6px; font-size: .83rem; color: var(--gray-600); line-height: 1.6; }
.note-box strong { color: var(--primary); }

/* ── WHY US (dark section on service pages) ── */
.why-seo, .why-web {
  padding: 5rem 0; background: var(--black);
  position: relative; overflow: hidden;
}
.why-seo::before, .why-web::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(17,99,251,0.15) 0%, transparent 70%);
}
.why-seo .section-title, .why-seo .section-label,
.why-web .section-title, .why-web .section-label { color: #fff; }
.why-seo .section-sub, .why-web .section-sub { color: rgba(255,255,255,0.55); }
.why-seo .section-label, .why-web .section-label { background: rgba(201,168,76,0.15); color: var(--gold); }
.why-seo .section-divider, .why-web .section-divider { background: var(--gold); }
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 2rem; transition: all .3s; }
.why-card:hover { background: rgba(17,99,251,0.12); border-color: rgba(17,99,251,0.3); }
.why-card-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(17,99,251,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--gold); margin-bottom: 1.2rem; }
.why-card h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.why-card p  { color: rgba(255,255,255,0.5); font-size: .83rem; line-height: 1.65; }

/* ── COUNTER STRIP ── */
.counter-section { padding: 4rem 0; background: var(--primary); }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.counter-item .num { font-family: var(--font-impact); font-size: 3.5rem; color: #fff; letter-spacing: .04em; }
.counter-item .plus { color: var(--gold); }
.counter-item .label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: .25rem; }

/* ── PROCESS SECTION (service pages version) ── */
.process-section { padding: 5rem 0; }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 3.5rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--gold), var(--primary), transparent);
  z-index: 0;
}
.process-step { text-align: center; position: relative; padding: .5rem; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; position: relative; z-index: 1;
  font-family: var(--font-impact); font-size: 1.4rem;
  border: 2px solid var(--primary); background: #fff; color: var(--primary);
  transition: all .3s;
}
.process-step:hover .step-num { background: var(--primary); color: #fff; }
.step-icon {
  position: absolute; bottom: -6px; right: -6px;
  width: 24px; height: 24px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: var(--black);
}
.step-title { font-weight: 700; font-size: .9rem; margin-bottom: .4rem; color: var(--black); }
.step-desc  { font-size: .78rem; color: var(--gray-600); line-height: 1.5; }

/* ── TESTIMONIALS (service pages version) ── */
.testimonials { padding: 5rem 0; background: var(--gray-100); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: #fff; border-radius: 16px; padding: 2rem;
  border: 1px solid var(--gray-200); position: relative; transition: all .3s;
}
.testimonial-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.08); transform: translateY(-4px); }
.testimonial-card::before {
  content: '"'; font-family: var(--font-display); font-size: 7rem;
  color: var(--primary); opacity: .08;
  position: absolute; top: -.5rem; left: 1rem; line-height: 1;
}
.stars { color: var(--gold); font-size: .85rem; margin-bottom: .8rem; }
.testimonial-card p { font-size: .88rem; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #0a2a7a);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .88rem; color: var(--black); }
.author-biz  { font-size: .75rem; color: var(--gray-600); }

/* ── FAQ (service pages version) ── */
.faq-section { padding: 5rem 0; background: var(--gray-100); }
.faq-list { max-width: 780px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0; cursor: pointer; font-weight: 600;
  font-size: .95rem; color: var(--black); transition: color .2s;
}
.faq-q:hover { color: var(--primary); }
.faq-q i { color: var(--primary); font-size: .85rem; transition: transform .3s; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding-bottom: 1.2rem; color: var(--gray-600); font-size: .88rem; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-item.open .faq-q i { transform: rotate(180deg); }

/* ── HERO BTNS (ghost style in hero) ── */
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #fff;
  padding: .85rem 2rem; border-radius: 6px;
  font-weight: 500; font-size: .9rem; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25); transition: all .3s;
}
.hero-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── SERVICE DETAIL (old generic layout) ── */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-benefits { list-style: none; }
.service-benefits li { display: flex; align-items: flex-start; gap: .8rem; margin-bottom: 1rem; }
.service-benefits li i { color: var(--primary); font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }
.service-benefits li span { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }
.service-benefits li strong { color: var(--black); font-weight: 600; }

/* ── ABOUT PAGE ── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 14px; padding: 2rem 1.5rem; text-align: center;
  transition: all .3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
}
.team-card h4 { font-weight: 600; color: var(--black); margin-bottom: .25rem; }
.team-card .role { font-size: .8rem; color: var(--primary); margin-bottom: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.team-card p { font-size: .82rem; color: var(--gray-600); line-height: 1.65; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  background: var(--gray-100); border-radius: 14px; padding: 2rem;
  border-left: 4px solid var(--primary);
}
.value-card h4 { font-weight: 700; color: var(--black); margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.value-card h4 i { color: var(--primary); }
.value-card p { font-size: .88rem; color: var(--gray-600); line-height: 1.7; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.8rem; }
.ci-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(17,99,251,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--primary); font-size: 1.1rem; }
.ci-body h4 { font-weight: 600; color: var(--black); margin-bottom: .25rem; font-size: .9rem; }
.ci-body p, .ci-body a { color: var(--gray-600); font-size: .875rem; line-height: 1.6; text-decoration: none; }
.ci-body a:hover { color: var(--primary); }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--black); margin: 2rem 0 .8rem; }
.legal-content h3 { font-weight: 600; color: var(--black); margin: 1.5rem 0 .5rem; font-size: 1.05rem; }
.legal-content p { font-size: .9rem; color: var(--gray-600); line-height: 1.8; margin-bottom: .8rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: .9rem; color: var(--gray-600); line-height: 1.8; margin-bottom: .3rem; }

/* ══════════════════════════════════════════════
   RESPONSIVE — ALL PAGES
   Breakpoints: 1024px | 768px | 480px | 360px
   ══════════════════════════════════════════════ */

/* ── TABLET (≤ 1024px) ── */
@media (max-width: 1024px) {

  /* Global section padding */
  section { padding: 4rem 0; }

  /* ── HOME — HERO ── */
  .hero { min-height: auto; }
  .hero-content { padding: 5rem 0 3rem; }
  h1.hero-title { font-size: clamp(2.4rem, 6vw, 4.5rem); }
  .hero-stats { gap: 2rem; }

  /* ── HOME — GRIDS ── */
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── PROCESS ── */
  .process-steps        { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .process-steps::before { display: none; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* ── ABOUT ── */
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── PORTFOLIO / BLOG ── */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid      { grid-template-columns: repeat(2, 1fr); }

  /* ── CONTACT ── */
  .contact-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-grid { grid-template-columns: 1fr; }

  /* ── SERVICE PAGES — INTRO ── */
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* ── SERVICE PAGES — CARDS ── */
  .seo-services-grid,
  .ppc-services-grid,
  .smo-services-grid,
  .web-services-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── SERVICE PAGES — PRICING ── */
  .pricing-grid           { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.best      { transform: none; }

  /* ── SERVICE PAGES — WHY / COUNTER / TESTIMONIALS ── */
  .why-cards        { grid-template-columns: repeat(2, 1fr); }
  .counter-grid     { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── TABS ── */
  .tabs-nav { overflow-x: auto; }
  .tab-btn  { min-width: 100px; padding: .7rem .8rem; font-size: .75rem; }

  /* ── DROPDOWN ── */
  .dropdown-menu-custom { grid-template-columns: 1fr; min-width: 200px; }
}

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

  /* Global */
  section { padding: 3rem 0; }
  .container { padding: 0 1rem; }

  /* ── TOPBAR ── */
  .top-info { display: none; }
  .topbar { display: none; } /* hide full topbar on mobile to save space */

  /* ── NAVBAR ── */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: .7rem 0; }

  /* ── HOME — HERO ── */
  .hero { min-height: auto; }
  .hero-content { padding: 4rem 0 2.5rem; }
  h1.hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: .95rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .hero-btns .btn-primary-luxury,
  .hero-btns .btn-outline-luxury { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat .num { font-size: 1.8rem; }
  .hero-badge-row { gap: .5rem; }

  /* ── HOME — GRIDS ── */
  .services-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }

  /* ── PROCESS ── */
  .process-steps         { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .process-steps::before { display: none; }
  .step-num { width: 56px; height: 56px; font-size: 1.2rem; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 4rem 0 2.5rem; min-height: auto; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .page-hero p, .page-hero-sub { font-size: .9rem; }
  .page-hero-stats { gap: 1.5rem; }
  .page-hero-stat .num { font-size: 1.6rem; }
  .hero-btns, .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-primary-luxury,
  .hero-btns .hero-btn-ghost,
  .cta-btns .btn-primary-luxury,
  .cta-btns .btn-white,
  .cta-btns .btn-outline-white { width: 100%; max-width: 320px; justify-content: center; }

  /* ── SERVICE PAGES — INTRO ── */
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .seo-metric-cards,
  .web-metric-cards { grid-template-columns: 1fr 1fr; }

  /* ── SERVICE PAGES — CARDS ── */
  .seo-services-grid,
  .ppc-services-grid,
  .smo-services-grid,
  .web-services-grid { grid-template-columns: 1fr; }

  /* ── SERVICE PAGES — PRICING ── */
  .pricing-grid      { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.best { transform: none; }
  .billing-toggle    { flex-wrap: wrap; gap: .75rem; }

  /* ── SERVICE PAGES — WHY / COUNTER / TESTIMONIALS ── */
  .why-cards         { grid-template-columns: 1fr; }
  .counter-grid      { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .counter-item .num { font-size: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* ── COMPARISON TABS ── */
  .tabs-nav { flex-direction: row; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tab-btn  { flex: 0 0 auto; }
  .tab-pane-inner { padding: 1rem; }
  .compare-table { font-size: .78rem; }
  .compare-table td, .compare-table thead th { padding: .6rem .8rem; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-map  { display: none; }
  .footer-social { gap: .5rem; }
  .final-cta { padding: 3.5rem 0; }
  .final-cta h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .cta-btns { flex-direction: column; align-items: center; gap: .75rem; }

  /* ── ABOUT ── */
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }

  /* ── PORTFOLIO / BLOG ── */
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }

  /* ── CONTACT ── */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }

  /* ── FLOATING BUTTONS ── */
  .float-whatsapp { width: 46px; height: 46px; font-size: 1.2rem; bottom: 5rem; right: 1rem; }
  .float-call     { width: 46px; height: 46px; font-size: 1rem; bottom: 1rem; right: 1rem; }
  .scroll-top     { bottom: 9rem; right: 1rem; }

  /* ── SECTIONS — TYPOGRAPHY ── */
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .final-cta h2  { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .cta-strip h2  { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}

/* ── SMALL MOBILE (≤ 480px) ── */
@media (max-width: 480px) {

  /* Global */
  section { padding: 2.5rem 0; }

  /* ── HERO ── */
  h1.hero-title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero-btns { align-items: stretch; }
  .hero-stats { gap: 1rem; justify-content: space-between; }
  .hero-stat .num { font-size: 1.6rem; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 3.5rem 0 2rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .page-hero-stats { gap: 1rem; }

  /* ── GRIDS → 1 col ── */
  .why-grid         { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .team-grid        { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: 1fr; }
  .why-cards        { grid-template-columns: 1fr; }
  .counter-grid     { grid-template-columns: repeat(2, 1fr); }
  .seo-metric-cards,
  .web-metric-cards { grid-template-columns: 1fr; }

  /* ── PRICING ── */
  .pricing-grid { max-width: 100%; }

  /* ── BUTTONS ── */
  .btn-primary-luxury,
  .btn-outline-luxury,
  .btn-white,
  .btn-outline-white,
  .btn-gold { padding: .75rem 1.5rem; font-size: .85rem; }

  /* ── FOOTER ── */
  .footer-bottom { flex-direction: column; text-align: center; gap: .4rem; }
  .footer-social  { justify-content: center; }

  /* ── TOPBAR SOCIAL ── */
  .top-social { display: none; }

  /* ── FAQ ── */
  .faq-q { font-size: .88rem; padding: 1rem 0; }

  /* ── COMPARE TABLE ── */
  .compare-table { font-size: .72rem; }
  .compare-table td, .compare-table thead th { padding: .5rem .6rem; }

  /* ── SECTION LABEL ── */
  .section-label { font-size: .65rem; }
}

/* ── VERY SMALL (≤ 360px) ── */
@media (max-width: 360px) {
  .container { padding: 0 .75rem; }
  h1.hero-title  { font-size: 1.7rem; }
  .page-hero h1  { font-size: 1.7rem; }
  .stats-grid    { grid-template-columns: 1fr; }
  .counter-grid  { grid-template-columns: 1fr 1fr; }
  .hero-badge-row { display: none; }
  .pricing-grid  { max-width: 100%; }
}

/* ── CTA STRIP – Base Styles ── */
.cta-strip {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0a2a7a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M40 40L0 0h80z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.cta-strip h2 strong { font-weight: 700; color: var(--gold); }
.cta-strip p {
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  position: relative;
  font-size: .98rem;
  line-height: 1.75;
}
.cta-strip .cta-btns { position: relative; }
.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--primary);
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: .9rem;
  text-decoration: none; transition: all .2s;
  border: 2px solid transparent;
}
.btn-white:hover { background: var(--gold); color: #000; }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #fff;
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  text-decoration: none; transition: all .2s;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }


/* ============================================================
   RESPONSIVE – CLEAN FIX  (all devices)
   ============================================================ */

/* ── Prevent horizontal scroll globally ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100vw; }
img, video, iframe, embed { max-width: 100%; }

/* ── Table horizontal scroll ── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { min-width: 600px; }

/* ================================================================
   TABLET (≤ 1024px) – already in original, keeping as-is
   ================================================================ */

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

  /* ── Nav ── */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: .7rem 0; }

  /* ── Hero ── */
  .hero-content { padding: 4rem 0 2.5rem; }
  h1.hero-title { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero-sub { font-size: .93rem; max-width: 100%; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-btns a { width: 100%; justify-content: center; text-align: center; }
  .hero-stats { gap: 1.2rem; flex-wrap: wrap; }
  .hero-stat .num { font-size: 1.7rem; }
  .hero-badge-row { gap: .5rem; flex-wrap: wrap; }

  /* ── Page hero ── */
  .page-hero { padding: 4.5rem 0 2.5rem; min-height: auto; }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .page-hero-sub, .page-hero p { font-size: .9rem; }
  .page-hero-stats { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
  .page-hero-stat .num { font-size: 1.5rem; }

  /* ── Buttons ── */
  .hero-btns .btn-primary-luxury,
  .hero-btns .hero-btn-ghost,
  .hero-btns .btn-outline-luxury { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; gap: .75rem; }
  .cta-btns a { width: 100%; max-width: 320px; justify-content: center; }

  /* ── Section typography ── */
  .section-title { font-size: clamp(1.55rem, 5.5vw, 2.1rem); }
  h2.section-title { font-size: clamp(1.55rem, 5.5vw, 2.1rem); }
  .section-sub { font-size: .92rem; }

  /* ── Grids ── */
  .services-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .portfolio-grid   { grid-template-columns: 1fr; }
  .blog-grid        { grid-template-columns: 1fr; }
  .why-cards        { grid-template-columns: 1fr; }
  .counter-grid     { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
  .values-grid      { grid-template-columns: 1fr; }

  /* ── Service page grids ── */
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .seo-services-grid,
  .ppc-services-grid,
  .smo-services-grid,
  .web-services-grid { grid-template-columns: 1fr; }
  .seo-metric-cards,
  .web-metric-cards { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .web-metric.wide { grid-column: span 2; }

  /* ── Pricing ── */
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.best { transform: none; }
  .billing-toggle { flex-wrap: wrap; justify-content: center; gap: .75rem; }

  /* ── Comparison table ── */
  .compare-table { font-size: .76rem; }
  .compare-table td,
  .compare-table thead th { padding: .55rem .7rem; }

  /* ── Industries ── */
  .ind-cards-grid { grid-template-columns: 1fr; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-map { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; }
  .footer-social { justify-content: center; flex-wrap: wrap; }

  /* ── Forms ── */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Float buttons ── */
  .float-whatsapp,
  .float-call { width: 44px; height: 44px; font-size: 1.1rem; }

  /* ── CTA Strip ── */
  .cta-strip { padding: 3rem 0; }
  .cta-strip h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .final-cta h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

/* ================================================================
   SMALL MOBILE (≤ 480px)
   ================================================================ */
@media (max-width: 480px) {

  .container { padding: 0 .9rem; }
  section { padding: 2.5rem 0; }

  /* ── Typography ── */
  h1.hero-title { font-size: clamp(1.7rem, 9vw, 2.3rem); }
  .page-hero h1 { font-size: clamp(1.65rem, 8.5vw, 2.1rem); }
  .section-title, h2.section-title { font-size: clamp(1.35rem, 7vw, 1.8rem); }

  /* ── Grids → 1 col ── */
  .why-grid,
  .team-grid,
  .process-steps,
  .why-cards,
  .portfolio-grid,
  .blog-grid,
  .ind-cards-grid,
  .values-grid { grid-template-columns: 1fr; }

  /* ── 2 col stays ── */
  .stats-grid,
  .counter-grid,
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Metric cards ── */
  .seo-metric-cards,
  .web-metric-cards { grid-template-columns: repeat(2, 1fr); }
  .web-metric.wide { grid-column: span 2; }

  /* ── Pricing ── */
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 1.5rem 1.2rem; }

  /* ── Table ── */
  .compare-table { font-size: .7rem; min-width: 500px; }
  .compare-table td,
  .compare-table thead th { padding: .45rem .5rem; }

  /* ── Page hero stats ── */
  .page-hero-stats { gap: .9rem; }
  .page-hero-stat .num { font-size: 1.3rem; }

  /* ── Buttons ── */
  .btn-primary-luxury,
  .btn-outline-luxury,
  .btn-white,
  .btn-outline-white { padding: .72rem 1.3rem; font-size: .83rem; }

  /* ── Intro content buttons ── */
  .intro-content .btn-primary-luxury,
  .intro-content .btn-outline-luxury { width: 100%; justify-content: center; }

  /* ── Footer ── */
  .footer-bottom { font-size: .75rem; }
  .footer-social a { width: 32px; height: 32px; font-size: .8rem; }

  /* ── Tech strip ── */
  .tech-inner { gap: .4rem; }
  .tech-pill { font-size: .68rem; padding: .25rem .55rem; }

  /* ── Float buttons ── */
  .float-whatsapp { bottom: 5rem; right: .75rem; width: 42px; height: 42px; }
  .float-call { bottom: 1rem; right: .75rem; width: 42px; height: 42px; }
  .scroll-top { bottom: 9rem; right: .75rem; }

  /* ── VA page ── */
  .va-pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .va-services-grid,
  .va-why-grid,
  .va-process-steps { grid-template-columns: 1fr; }
  .va-stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── FAQ ── */
  .faq-q { font-size: .87rem; }
}

/* ================================================================
   VERY SMALL (≤ 360px)
   ================================================================ */
@media (max-width: 360px) {
  .container { padding: 0 .7rem; }
  h1.hero-title { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.55rem; }
  .section-title, h2.section-title { font-size: 1.3rem; }
  .stats-grid,
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badge-row { display: none; }
  .pricing-grid { max-width: 100%; }
  .compare-table { min-width: 420px; font-size: .65rem; }
  .page-hero-stats { flex-direction: column; align-items: center; gap: .7rem; }
}

/* ============================================================
   ABOUT PAGE – Responsive Grid Classes
   ============================================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.about-story-btns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.certs-flex {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ============================================================
   HOME PAGE – Contact Section Grid
   ============================================================ */
.contact-grid-home {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* ============================================================
   RESPONSIVE – About + Home Contact
   ============================================================ */
@media (max-width: 900px) {
  .about-story-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid-home   { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .about-story-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats-inner   { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-story-btns    { gap: .75rem; }
  .about-story-btns a  { width: 100%; justify-content: center; text-align: center; }
  .certs-flex          { gap: 1rem; }
  .certs-flex > div    { min-width: 110px; padding: 1rem 1.2rem !important; }
  .contact-grid-home   { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .about-stats-inner   { gap: .75rem; }
  .about-stats-inner > div { padding: 1rem !important; }
  .about-stats-inner > div div:first-child { font-size: 2.2rem !important; }
  .certs-flex > div    { min-width: calc(50% - .5rem); }
}

/* ============================================================
   INLINE GRID FIXES – All Pages
   ============================================================ */

/* services.php – Why Choose section */
.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* services.php – Each service alternating rows */
.service-row-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--gray-200);
}
.service-row-grid:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* portfolio.php – Case study metrics */
.portfolio-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* testimonials.php – Video reviews */
.video-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* industries.php – Pricing 3-col */
.ind-pricing-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 980px;
  margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-intro-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-row-grid         { grid-template-columns: 1fr !important; gap: 2rem; padding-bottom: 3rem; margin-bottom: 3rem; }
  .portfolio-metrics-grid   { grid-template-columns: repeat(2, 1fr); }
  .video-reviews-grid       { grid-template-columns: repeat(2, 1fr); }
  .ind-pricing-grid         { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
  .services-intro-grid      { gap: 2rem; }
  .service-row-grid         { gap: 1.5rem; padding-bottom: 2.5rem; margin-bottom: 2.5rem; }
  .portfolio-metrics-grid   { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .video-reviews-grid       { grid-template-columns: 1fr; }
  .ind-pricing-grid         { grid-template-columns: 1fr !important; max-width: 400px !important; }
}

@media (max-width: 480px) {
  .portfolio-metrics-grid   { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .ind-pricing-grid         { max-width: 100% !important; }
}
