/* ═══════════════════════════════════════════════════════════
   THE ECOM GROWTH — Master Stylesheet
   Paste the contents of this file into:
   WP Admin → Appearance → Customize → Additional CSS
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --black:       #09090b;
  --off-black:   #111113;
  --card-bg:     #16161a;
  --border:      rgba(255, 255, 255, 0.08);
  --accent:      #22c55e;
  --accent-dim:  rgba(34, 197, 94, 0.12);
  --accent-mid:  rgba(34, 197, 94, 0.25);
  --white:       #f8f8f2;
  --muted:       rgba(248, 248, 242, 0.50);
  --font-display:'Bricolage Grotesque', sans-serif;
  --font-body:   'Plus Jakarta Sans', sans-serif;
  --max-w:       1440px;
  --radius:      12px;
}

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

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  background:  var(--black);
  color:       var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size:   16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
em  { font-style: normal; color: var(--accent); }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ── Section spacing ──────────────────────────────────────── */
.section { padding: 100px 0; }

/* ── Section Header (centered) ───────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-mid);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background:     var(--accent);
  color:          #000;
  font-family:    var(--font-display);
  font-weight:    700;
  font-size:      15px;
  padding:        14px 28px;
  border-radius:  8px;
  border:         none;
  cursor:         pointer;
  transition:     opacity 0.2s, transform 0.15s;
  white-space:    nowrap;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-outline {
  display:        inline-flex;
  align-items:    center;
  gap:            8px;
  background:     transparent;
  color:          var(--white);
  font-family:    var(--font-display);
  font-weight:    600;
  font-size:      15px;
  padding:        13px 27px;
  border-radius:  8px;
  border:         1px solid var(--border);
  cursor:         pointer;
  transition:     border-color 0.2s, transform 0.15s;
}
.btn-outline:hover {
  border-color: var(--accent);
  color:        var(--accent);
  transform:    translateY(-2px);
}

.btn-whatsapp {
  display:        inline-flex;
  align-items:    center;
  gap:            9px;
  background:     #25d366;
  color:          #fff;
  font-family:    var(--font-display);
  font-weight:    700;
  font-size:      15px;
  padding:        13px 26px;
  border-radius:  8px;
  border:         none;
  cursor:         pointer;
  transition:     background 0.2s, transform 0.15s;
  white-space:    nowrap;
  text-decoration: none;
}
.btn-whatsapp:hover {
  background:  #1ebe5d;
  transform:   translateY(-2px);
  color:       #fff;
}
.btn-whatsapp svg { flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   SECTION 1 — NAVIGATION
   ════════════════════════════════════════════════════════════ */
.site-header {
  position:   fixed;
  top:        0;
  left:       0;
  right:      0;
  z-index:    1000;
  padding:    0;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.site-header.scrolled {
  background:     rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:     0 1px 0 var(--border);
}

.header-inner {
  display:      flex;
  align-items:  center;
  gap:          40px;
  padding-top:  20px;
  padding-bottom: 20px;
}

.logo {
  font-family:  var(--font-display);
  font-weight:  800;
  font-size:    22px;
  color:        var(--white);
  flex-shrink:  0;
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

.nav-links {
  display:     flex;
  align-items: center;
  gap:         36px;
  margin-left: auto;
}

.nav-links a {
  font-family:  var(--font-body);
  font-size:    14px;
  font-weight:  400;
  color:        var(--muted);
  transition:   color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.site-header .btn-primary {
  padding:   10px 22px;
  font-size: 14px;
}

/* Hamburger (mobile) */
.hamburger {
  display:        none;
  flex-direction: column;
  gap:            5px;
  background:     none;
  border:         none;
  cursor:         pointer;
  padding:        4px;
  margin-left:    auto;
}
.hamburger span {
  display:    block;
  width:      24px;
  height:     2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
.mobile-nav {
  display:        none;
  flex-direction: column;
  gap:            4px;
  padding:        16px 24px 24px;
  background:     rgba(9, 9, 11, 0.97);
  border-top:     1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size:   16px;
  font-weight: 400;
  color:       var(--muted);
  padding:     10px 0;
  border-bottom: 1px solid var(--border);
  transition:  color 0.2s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav a:last-child { border-bottom: none; }

/* ════════════════════════════════════════════════════════════
   SECTION 2 — HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position:        relative;
  min-height:      100vh;
  display:         flex;
  flex-direction:  column;
  overflow:        hidden;
}

/* ── Video background ──────────────────────────────────── */
.hero-video-bg {
  position:            absolute;
  inset:               0;
  z-index:             0;
  overflow:            hidden;
  background-color:    var(--black);
  background-image:    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=85');
  background-size:     cover;
  background-position: center;
}

/* Animated ambient glow – visible until/without a video */
.hero-video-bg::before {
  content:    '';
  position:   absolute;
  inset:      0;
  z-index:    0;
  background:
    radial-gradient(ellipse 90% 70% at 75% 50%, rgba(34,197,94,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 55% 55% at 15% 25%, rgba(34,197,94,0.04) 0%, transparent 55%);
  animation:  hero-ambient 10s ease-in-out infinite alternate;
}

@keyframes hero-ambient {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.06) translateX(-1%); }
}

.hero-video {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  z-index:    1;
}

/* Gradient overlay — deep on left (readable text), fades to transparent right */
.hero-video-overlay {
  position:   absolute;
  inset:      0;
  z-index:    2;
  background: linear-gradient(
    105deg,
    rgba(9,9,11,0.92) 0%,
    rgba(9,9,11,0.75) 38%,
    rgba(9,9,11,0.35) 65%,
    rgba(9,9,11,0.10) 100%
  );
}

/* ── Left-aligned content area ─────────────────────────── */
.hero > .container {
  position:    relative;
  z-index:     3;
  flex:        1;
  display:     flex;
  align-items: center;
  padding-top: 140px;
}

.hero-content-left {
  max-width:      760px;
  padding-bottom: 32px;
}

/* ── Stats strip pinned to hero bottom ─────────────────── */
.hero-stats-strip {
  position:      relative;
  z-index:       3;
  padding:       0 0 52px;
}

/* Legacy alias */
.hero-inner { position: relative; z-index: 3; }

.tag-pill {
  display:       inline-block;
  font-family:   var(--font-display);
  font-size:     12px;
  font-weight:   600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:         var(--accent);
  border:        1px solid var(--accent-mid);
  background:    var(--accent-dim);
  padding:       8px 18px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.hero-heading {
  font-family:    var(--font-display);
  font-size:      clamp(64px, 9vw, 116px);
  font-weight:    800;
  line-height:    0.95;
  letter-spacing: -0.03em;
  color:          var(--white);
  margin-bottom:  28px;
  text-align:     left;
}

.hero-sub {
  font-size:     21px;
  font-weight:   300;
  color:         var(--muted);
  line-height:   1.65;
  margin-bottom: 44px;
  text-align:    left;
  max-width:     520px;
}

.hero-cta-row {
  display:         flex;
  align-items:     center;
  justify-content: flex-start;
  gap:             16px;
  flex-wrap:       wrap;
  margin-bottom:   0;
}

/* Stats Bar */
.stats-bar {
  display:       flex;
  align-items:   center;
  justify-content: center;
  gap:           0;
  border:        1px solid var(--border);
  border-radius: var(--radius);
  background:    var(--off-black);
  padding:       0;
  overflow:      hidden;
  flex-wrap:     wrap;
}

.stat-item {
  display:       flex;
  flex-direction: column;
  align-items:   center;
  padding:       24px 36px;
  gap:           4px;
}

.stat-num {
  font-family:   var(--font-display);
  font-size:     28px;
  font-weight:   800;
  color:         var(--white);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size:   12px;
  font-weight: 400;
  color:       var(--muted);
  white-space: nowrap;
}

.stat-divider {
  width:      1px;
  height:     48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   SECTION 3 — MARQUEE TICKER
   ════════════════════════════════════════════════════════════ */
.marquee-wrap {
  overflow:      hidden;
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding:       18px 0;
  background:    var(--off-black);
}

.marquee-track {
  display:    flex;
  gap:        48px;
  animation:  marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family:    var(--font-display);
  font-size:      13px;
  font-weight:    700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          var(--muted);
  flex-shrink:    0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   SECTION 4 — SERVICES GRID
   ════════════════════════════════════════════════════════════ */
.services-section { background: var(--black); }

.services-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   24px;
}

.service-card {
  position:   relative;
  overflow:   hidden;
  background: var(--card-bg);
  border:     1px solid var(--border);
  border-radius: var(--radius);
  padding:    36px 32px;
  transition: background 0.25s;
}

/* Gold top border on hover */
.service-card::after {
  content:          '';
  position:         absolute;
  top:              0;
  left:             0;
  width:            100%;
  height:           2px;
  background:       var(--accent);
  transform:        scaleX(0);
  transform-origin: left;
  transition:       transform 0.3s ease;
}
.service-card:hover { background: #1c1c21; }
.service-card:hover::after { transform: scaleX(1); }

/* Special accent card */
.service-card--accent {
  background: var(--accent-dim);
  border-color: var(--accent-mid);
}
.service-card--accent::after { background: var(--accent); }
.service-card--accent:hover { background: rgba(34,197,94,0.18); }

.service-icon {
  width:         52px;
  height:        52px;
  border-radius: 10px;
  background:    rgba(255,255,255,0.05);
  border:        1px solid var(--border);
  display:       flex;
  align-items:   center;
  justify-content: center;
  color:         var(--muted);
  margin-bottom: 20px;
}

.service-icon--accent {
  background:  var(--accent-dim);
  border-color: var(--accent-mid);
  color:       var(--accent);
}

.service-card h3 {
  font-family:   var(--font-display);
  font-size:     18px;
  font-weight:   700;
  color:         var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size:   14px;
  color:       var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-link {
  font-family:  var(--font-display);
  font-size:    13px;
  font-weight:  700;
  color:        var(--accent);
  letter-spacing: 0.02em;
  display:      inline-flex;
  align-items:  center;
  gap:          4px;
  transition:   gap 0.2s;
}
.card-link:hover { gap: 8px; }

/* ════════════════════════════════════════════════════════════
   SECTION 5 — RESULTS / WHY US
   ════════════════════════════════════════════════════════════ */
.results-section {
  background: var(--off-black);
  position:   relative;
  overflow:   hidden;
}

/* Decorative radial glow behind metrics */
.results-glow {
  position:   absolute;
  top:        50%;
  right:      -80px;
  transform:  translateY(-50%);
  width:      540px;
  height:     540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.13) 0%, transparent 70%);
  pointer-events: none;
  z-index:    0;
}

.results-inner {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   80px;
  align-items:           center;
  position:              relative;
  z-index:               1;
}

.results-left .section-title { text-align: left; }
.results-left .section-tag   { margin-bottom: 16px; }

/* ── Benefit list ──────────────────────────────────── */
.benefit-list {
  list-style:     none;
  display:        flex;
  flex-direction: column;
  gap:            20px;
  margin-top:     32px;
}

.benefit-item {
  display:     flex;
  gap:         16px;
  align-items: flex-start;
}

.benefit-icon-wrap {
  width:          40px;
  height:         40px;
  border-radius:  10px;
  background:     var(--accent-dim);
  border:         1px solid var(--accent-mid);
  color:          var(--accent);
  display:        flex;
  align-items:    center;
  justify-content: center;
  flex-shrink:    0;
  transition:     background 0.25s, transform 0.25s;
}

.benefit-item:hover .benefit-icon-wrap {
  background:  rgba(34,197,94,0.22);
  transform:   scale(1.08);
}

.benefit-content strong {
  font-family:   var(--font-display);
  font-weight:   700;
  font-size:     15px;
  color:         var(--white);
  display:       block;
  margin-bottom: 4px;
}

.benefit-content p {
  font-size: 13.5px;
  color:     var(--muted);
  margin:    0;
  line-height: 1.6;
}

/* ── Metrics grid ──────────────────────────────────── */
/* ── Metrics grid ──────────────────────────────────── */
.metrics-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows:    auto auto auto;
  gap:                   14px;
}

.metric-card {
  position:       relative;
  background:     linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border:         1px solid rgba(255,255,255,0.09);
  border-radius:  18px;
  padding:        28px 26px;
  display:        flex;
  flex-direction: column;
  gap:            12px;
  overflow:       hidden;
  backdrop-filter: blur(8px);
  transition:     border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

/* Glowing top edge on every card */
.metric-card::before {
  content:    '';
  position:   absolute;
  top:        0; left: 16px; right: 16px;
  height:     1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  border-radius: 0 0 4px 4px;
}

.metric-card:hover {
  border-color: rgba(34,197,94,0.28);
  box-shadow:   0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(34,197,94,0.06);
  transform:    translateY(-4px);
}

/* ── Hero card: spans 2 rows ─────────────────────── */
.metric-card--hero {
  grid-row:     1 / 3;
  background:   linear-gradient(160deg, #1c4230 0%, #102a1c 50%, #0c1f15 100%);
  border-color: rgba(34,197,94,0.35);
  box-shadow:   0 0 40px rgba(34,197,94,0.10), inset 0 1px 0 rgba(34,197,94,0.2);
  justify-content: flex-end;
  padding:      32px 28px;
}

.metric-card--hero::before {
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.3), transparent);
}

/* Decorative circle glow inside hero card */
.metric-card--hero::after {
  content:       '';
  position:      absolute;
  top:           -60px;
  right:         -60px;
  width:         220px;
  height:        220px;
  border-radius: 50%;
  background:    radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.metric-card--hero:hover {
  border-color: rgba(34,197,94,0.6);
  box-shadow:   0 0 64px rgba(34,197,94,0.18), inset 0 1px 0 rgba(34,197,94,0.3);
  transform:    translateY(-5px);
}

.metric-card--hero .metric-num {
  font-size: 56px;
  color: #22c55e;
  text-shadow: 0 0 40px rgba(34,197,94,0.4);
}

.metric-card--hero .metric-label {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* ── Wide bottom card ────────────────────────────── */
.metric-card--wide {
  grid-column:    1 / -1;
  flex-direction: row;
  align-items:    center;
  gap:            20px;
  padding:        24px 28px;
  background:     linear-gradient(105deg, rgba(245,158,11,0.06) 0%, rgba(255,255,255,0.025) 60%);
  border-color:   rgba(245,158,11,0.2);
}

.metric-card--wide::before {
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.25), transparent);
}

.metric-card--wide:hover {
  border-color: rgba(245,158,11,0.45);
  box-shadow:   0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,158,11,0.08);
}

.metric-card--wide .metric-card-top { flex-shrink: 0; }
.metric-card--wide .metric-num      { font-size: 44px; flex: 1; }
.metric-card--wide .metric-label    { font-size: 13px; max-width: 160px; text-align: right; }

/* ── Card top row ────────────────────────────────── */
.metric-card-top {
  display:     flex;
  align-items: center;
  gap:         10px;
  flex-wrap:   wrap;
}

/* ── Icon box ────────────────────────────────────── */
.metric-icon-box {
  width:           38px;
  height:          38px;
  border-radius:   10px;
  background:      rgba(255,255,255,0.06);
  border:          1px solid rgba(255,255,255,0.10);
  color:           rgba(255,255,255,0.45);
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  transition:      background 0.25s, color 0.25s;
}

.metric-card:hover .metric-icon-box {
  background: rgba(255,255,255,0.09);
  color:      rgba(255,255,255,0.7);
}

.metric-icon-box--accent {
  background:   rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.35);
  color:        #22c55e;
  box-shadow:   0 0 12px rgba(34,197,94,0.15);
}

.metric-card--hero:hover .metric-icon-box--accent {
  background:  rgba(34,197,94,0.25);
  box-shadow:  0 0 20px rgba(34,197,94,0.25);
}

/* ── Trend badge ─────────────────────────────────── */
.metric-trend {
  display:        inline-flex;
  align-items:    center;
  gap:            4px;
  font-size:      10.5px;
  font-weight:    600;
  letter-spacing: 0.03em;
  color:          var(--accent);
  background:     rgba(34,197,94,0.1);
  border:         1px solid rgba(34,197,94,0.22);
  border-radius:  99px;
  padding:        4px 10px;
  white-space:    nowrap;
}

.metric-trend--gold {
  color:        #f59e0b;
  background:   rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.28);
}

/* ── Number ──────────────────────────────────────── */
.metric-num {
  font-family:    var(--font-display);
  font-size:      46px;
  font-weight:    800;
  color:          var(--white);
  letter-spacing: -0.03em;
  line-height:    1;
}

/* ── Label ───────────────────────────────────────── */
.metric-label {
  font-size:   13px;
  font-weight: 400;
  color:       rgba(255,255,255,0.45);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* ════════════════════════════════════════════════════════════
   SECTION 6 — PROCESS
   ════════════════════════════════════════════════════════════ */
.process-section { background: var(--black); }

.process-timeline {
  display:   flex;
  gap:       0;
  position:  relative;
  margin-top: 0;
}

.process-line {
  position:   absolute;
  top:        40px;
  left:       calc(12.5% + 20px);
  right:      calc(12.5% + 20px);
  height:     1px;
  background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
  z-index:    0;
}

.process-step {
  flex:       1;
  display:    flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position:   relative;
  z-index:    1;
  padding:    0 16px;
}

.step-number {
  width:         80px;
  height:        80px;
  border-radius: 50%;
  background:    var(--card-bg);
  border:        1px solid var(--border);
  font-family:   var(--font-display);
  font-size:     20px;
  font-weight:   800;
  color:         var(--accent);
  display:       flex;
  align-items:   center;
  justify-content: center;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  position:      relative;
  z-index:       1;
}

.step-content h3 {
  font-family:   var(--font-display);
  font-size:     18px;
  font-weight:   700;
  color:         var(--white);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color:     var(--muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   SECTION 7 — CASE STUDIES
   ════════════════════════════════════════════════════════════ */
.case-studies-section { background: var(--off-black); }

.case-studies-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   24px;
}

.case-card {
  background:    var(--card-bg);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       40px 36px;
  transition:    border-color 0.25s, transform 0.2s;
}
.case-card:hover {
  border-color: var(--accent-mid);
  transform:    translateY(-4px);
}

.case-card-top {
  display:       flex;
  align-items:   center;
  gap:           10px;
  margin-bottom: 20px;
}

.case-badge {
  font-family:    var(--font-display);
  font-size:      11px;
  font-weight:    700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          var(--accent);
  background:     var(--accent-dim);
  border:         1px solid var(--accent-mid);
  padding:        5px 12px;
  border-radius:  99px;
}

.case-type {
  font-size:   12px;
  color:       var(--muted);
  font-weight: 400;
}

.case-headline {
  font-family:   var(--font-display);
  font-size:     20px;
  font-weight:   700;
  color:         var(--white);
  line-height:   1.3;
  margin-bottom: 14px;
}

.case-desc {
  font-size:     14px;
  color:         var(--muted);
  line-height:   1.65;
  margin-bottom: 24px;
}

.case-stats {
  display: flex;
  gap:     24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.case-stat-num {
  font-family:   var(--font-display);
  font-size:     22px;
  font-weight:   800;
  color:         var(--white);
  letter-spacing: -0.01em;
}

.case-stat-label {
  font-size:   11px;
  color:       var(--muted);
  margin-top:  2px;
}

/* ════════════════════════════════════════════════════════════
   SECTION 8 — TESTIMONIALS SLIDER
   ════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--black); }

.testimonials-slider-outer {
  position: relative;
  margin-top: 40px;
}
.testimonials-slider-viewport {
  overflow: hidden;
}
.testimonials-slider-track {
  display:         flex;
  gap:             24px;
  transition:      transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change:     transform;
}

.testimonial-card {
  flex:          0 0 calc((100% - 48px) / 3);
  background:    var(--card-bg);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       36px 30px;
  display:       flex;
  flex-direction: column;
  gap:           20px;
  transition:    border-color 0.25s;
}
.testimonial-card:hover { border-color: var(--accent-mid); }

.stars {
  color:     var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size:   15px;
  color:       var(--muted);
  line-height: 1.7;
  font-weight: 300;
  flex:        1;
}

.testimonial-author {
  display:     flex;
  align-items: center;
  gap:         12px;
  margin-top:  auto;
}

.author-avatar {
  width:            44px;
  height:           44px;
  border-radius:    50%;
  background:       var(--accent-dim);
  border:           1px solid var(--accent-mid);
  font-family:      var(--font-display);
  font-size:        13px;
  font-weight:      700;
  color:            var(--accent);
  display:          flex;
  align-items:      center;
  justify-content:  center;
  flex-shrink:      0;
}

.author-name {
  font-family:  var(--font-display);
  font-weight:  700;
  font-size:    14px;
  color:        var(--white);
}

.author-company {
  font-size: 12px;
  color:     var(--muted);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════
   SECTION 9 — CTA BANNER
   ════════════════════════════════════════════════════════════ */
.cta-banner {
  position:   relative;
  overflow:   hidden;
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding:    120px 0;
  text-align: center;
}

.cta-glow {
  position:       absolute;
  bottom:         -100px;
  left:           50%;
  transform:      translateX(-50%);
  width:          600px;
  height:         400px;
  border-radius:  50%;
  background:     radial-gradient(circle, rgba(34,197,94,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-heading {
  font-family:   var(--font-display);
  font-size:     clamp(38px, 6vw, 64px);
  font-weight:   800;
  letter-spacing: -0.02em;
  line-height:   1.1;
  color:         var(--white);
  margin-bottom: 16px;
}

.cta-sub {
  font-size:     18px;
  color:         var(--muted);
  font-weight:   300;
  margin-bottom: 40px;
}

/* ════════════════════════════════════════════════════════════
   SECTION 10 — FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background:  var(--black);
  border-top:  1px solid var(--border);
  padding-top: 72px;
}

.footer-top {
  display:   grid;
  grid-template-columns: 1fr 2fr;
  gap:       80px;
  padding-bottom: 60px;
  border-bottom:  1px solid var(--border);
}

.footer-tagline {
  font-size:   14px;
  color:       var(--muted);
  line-height: 1.7;
  max-width:   280px;
}

/* ── Shopify Partner Badge ── */
.shopify-partner-badge {
  display:         inline-flex;
  align-items:     center;
  background:      #ffffff;
  border-radius:   10px;
  padding:         10px 16px;
  margin-top:      28px;
  text-decoration: none;
  transition:      opacity 0.2s, transform 0.15s;
}
.shopify-partner-badge:hover {
  opacity:   0.88;
  transform: translateY(-2px);
}
.shopify-partner-badge img {
  display: block;
  height:  32px;
  width:   auto;
}

.footer-links-group {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   40px;
}

.footer-col h4 {
  font-family:    var(--font-display);
  font-size:      12px;
  font-weight:    700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color:          var(--white);
  margin-bottom:  20px;
}

.footer-col a {
  display:       block;
  font-size:     14px;
  color:         var(--muted);
  margin-bottom: 12px;
  transition:    color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color:     var(--muted);
}

.footer-legal {
  display: flex;
  gap:     24px;
}

.footer-legal a {
  font-size:  13px;
  color:      var(--muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--accent); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-inner { grid-template-columns: 1fr; gap: 60px; }
  .results-left .section-title { text-align: center; }
  .results-left .section-tag  { display: block; text-align: center; }
  .results-left .section-sub  { text-align: center !important; }
  .results-left .btn-primary  { display: flex !important; width: fit-content; margin-left: auto; margin-right: auto; }
  .benefit-list { max-width: 560px; margin: 32px auto 0; }
  .metrics-grid { max-width: 480px; margin: 0 auto; }
  .results-glow { right: -200px; width: 380px; height: 380px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-tagline { max-width: 100%; }
  .testimonial-card { flex: 0 0 calc((100% - 24px) / 2); }
  .work-card { flex: 0 0 calc((100% - 28px) / 2); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-title  { font-size: clamp(26px, 7vw, 38px); }

  /* Nav */
  .nav-links                   { display: none; }
  .site-header .btn-primary    { display: none; }
  .hamburger                   { display: flex; }

  /* Hero */
  .hero > .container { padding-top: 110px; padding-bottom: 0; }
  .hero-content-left { max-width: 100%; }
  .hero-heading      { font-size: clamp(42px, 11vw, 68px); }
  .hero-sub          { font-size: 16px; max-width: 100%; }
  .hero-cta-row      { gap: 12px; flex-wrap: wrap; }
  .hero-video-overlay {
    background: linear-gradient(150deg, rgba(9,9,11,0.92) 0%, rgba(9,9,11,0.72) 100%);
  }

  /* Stats bar */
  .stats-bar        { flex-direction: column; border-radius: 10px; }
  .stat-divider     { width: 80%; height: 1px; }
  .stat-item        { padding: 18px 28px; }
  .stat-num         { font-size: 22px; }

  /* Trusted by */
  .trusted-by-section { padding: 20px 0; }
  .trusted-label      { font-size: 10px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card  { padding: 28px 24px; }

  /* Results */
  .metrics-grid             { gap: 10px; }
  .metric-card              { padding: 22px 18px; border-radius: 14px; }
  .metric-card--hero        { grid-row: auto; grid-column: 1 / -1; justify-content: flex-start; }
  .metric-card--hero .metric-num  { font-size: 44px; }
  .metric-num               { font-size: 32px; }
  .metric-card--wide        { flex-direction: column; gap: 10px; padding: 20px 18px; }
  .metric-card--wide .metric-num   { font-size: 36px; flex: unset; }
  .metric-card--wide .metric-label { max-width: 100%; text-align: left; }

  /* Process */
  .process-timeline { flex-direction: column; align-items: center; gap: 8px; }
  .process-line     { display: none; }
  .process-step     { flex-direction: row; text-align: left; gap: 16px; align-items: flex-start; padding: 0; width: 100%; max-width: 360px; }
  .step-number      { margin-bottom: 0; flex-shrink: 0; width: 56px; height: 56px; font-size: 16px; }

  /* Work slider */
  .work-slider-track { gap: 16px; }
  .work-card         { flex: 0 0 85%; }
  .work-image-wrap   { height: 220px; }
  .work-content      { padding: 20px; }
  .case-headline     { font-size: 16px; }

  /* Testimonials slider */
  .testimonials-slider-track { gap: 16px; }
  .testimonial-card          { flex: 0 0 86%; padding: 28px 22px; }
  #testiNavRow               { display: flex !important; }

  /* Blog slider */
  .blog-grid  { gap: 16px; }
  .blog-card  { flex: 0 0 85%; }
  #blogNavRow { display: flex !important; }

  /* FAQ */
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .accordion-header { font-size: 16px; }

  /* CTA */
  .cta-heading     { font-size: clamp(28px, 8vw, 44px); }
  .cta-heading br  { display: none; }
  .cta-sub         { font-size: 14px; }

  /* Footer */
  .footer-links-group { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom      { flex-direction: column; gap: 12px; text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .footer-links-group { grid-template-columns: 1fr; }
  .case-stats         { flex-wrap: wrap; gap: 12px; }

  /* Hero CTA: stack buttons vertically */
  .hero-cta-row {
    flex-direction: column;
    align-items:    stretch;
  }
  .btn-primary,
  .btn-outline,
  .btn-whatsapp { justify-content: center; width: 100%; }

  .hero-heading { font-size: clamp(38px, 12vw, 56px); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Stats: 2-col grid on small */
  .stats-bar       { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-divider    { display: none; }
  .stat-item       { border-bottom: 1px solid var(--border); padding: 16px; }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stat-item:nth-child(n+5)  { border-bottom: none; }
  .stat-num  { font-size: 20px; }
  .stat-label{ font-size: 11px; }

  /* Slider cards: slightly wider on tiny screens */
  .work-card        { flex: 0 0 92%; }
  .testimonial-card { flex: 0 0 92%; }
  .blog-card        { flex: 0 0 92%; }
  #blogNavRow       { display: flex !important; }

  /* Footer */
  .footer-links-group { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   NEW REDESIGN ADDITIONS (PHASE 1 & 2)
   ════════════════════════════════════════════════════════════ */

/* ── Preloader ── */
.preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.preloader-content {
  text-align: center;
}
.preloader .logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}
.progress-bar {
  width: 200px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
}
body.loading {
  overflow: hidden;
}

/* ── Custom Cursor ── */
body {
  cursor: none; /* Hide default cursor */
}
a, button, input, textarea, select, .accordion-header {
  cursor: none;
}
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background-color: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}
.cursor-hover {
  width: 60px; height: 60px;
  background-color: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0);
  backdrop-filter: blur(2px);
}
@media (max-width: 768px) {
  body, a, button, input, textarea, select, .accordion-header { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

/* ── Utilities & Animations ── */
.glassmorphism {
  background: rgba(22, 22, 26, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.tilt-card {
  transition: transform 0.3s ease;
}
.tilt-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.gradient-text {
  background: linear-gradient(90deg, #22c55e, #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}
.btn-glow:hover {
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.hover-underline {
  position: relative;
  display: inline-block;
}
.hover-underline::after {
  content: '';
  position: absolute;
  width: 0; height: 1px;
  bottom: -2px; left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}
.hover-underline:hover::after {
  width: 100%;
}

/* Base scroll animation classes */
[data-animate] {
  opacity: 0;
  animation-fill-mode: forwards;
}

[data-animate="fade-up"].is-visible {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
[data-animate="fade-in"].is-visible {
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
[data-animate="fade-right"].is-visible {
  animation: fadeRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
[data-animate="fade-left"].is-visible {
  animation: fadeLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
[data-animate="scale-in"].is-visible {
  animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Hero Specific Animations */
.hero-heading .split-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotate(2deg);
  transform-origin: bottom left;
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.hero-heading .split-line.slide-up-text {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}
.hero-particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ── Trusted By Section ── */
.trusted-by-section {
  padding: 40px 0;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}
.trusted-label {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.logo-placeholder {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
.logo-placeholder:hover {
  color: var(--white);
}

/* Marquee Pause */
.marquee-hover-pause:hover .marquee-track {
  animation-play-state: paused;
}

/* ── Featured Work Section ── */
.work-section {
  background: var(--black);
}

/* ── Work Slider ── */
.work-slider-container {
  position: relative;
  margin-top: 40px;
}
.work-slider-viewport {
  overflow: hidden;
  border-radius: 16px;
}
.work-slider-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.work-card {
  flex: 0 0 calc((100% - 56px) / 3);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}
.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: var(--accent-mid);
}

/* Slider nav buttons */
.slider-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: scale(1.06);
}
.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.slider-dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* Legacy alias kept for old 2-col layout */
.work-grid {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: var(--accent-mid);
}
.work-image-wrap {
  width: 100%;
  height: 320px;
  background: #1a1a20;
  overflow: hidden;
  position: relative;
}
.work-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  transition: transform 0.8s ease;
}
.work-card:hover .work-placeholder {
  transform: scale(1.05);
}
.work-img-1 {
  background: linear-gradient(135deg, #0d1f12 0%, #142d1c 50%, #081408 100%);
}
.work-img-2 {
  background: linear-gradient(135deg, #0d1220 0%, #152040 50%, #0a1530 100%);
}
.work-img-stat {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.work-img-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-display);
  font-weight: 600;
}
.work-content {
  padding: 32px;
}

/* ── FAQ Section ── */
.faq-section {
  background: var(--off-black);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.accordion-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.accordion-header {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s;
}
.accordion-header:hover {
  color: var(--accent);
}
.accordion-header .icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}
.accordion-content p {
  padding-top: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.accordion-item.active .accordion-content {
  max-height: 800px;
  transition: max-height 0.5s ease-in-out;
}
.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .work-card {
    flex: 0 0 calc(100% - 28px);
  }
}

/* ════════════════════════════════════════════════════════════
   BLOG SECTION
   ════════════════════════════════════════════════════════════ */
.blog-section {
  background: var(--off-black);
}

.blog-slider-outer {
  position: relative;
  margin-top: 40px;
}
.blog-slider-viewport {
  overflow: hidden;
}
.blog-grid {
  display:     flex;
  flex-wrap:   nowrap;
  gap:         24px;
  margin-top:  0;
  transition:  transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
/* Desktop: 3 cards visible */
@media (min-width: 769px) {
  .blog-card { flex: 0 0 calc((100% - 48px) / 3); }
}
#blogNavRow   { display: none; }
#testiNavRow  { display: none; }
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: var(--accent-mid);
}
.blog-image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.blog-image-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-image-placeholder {
  transform: scale(1.05);
}
.blog-img-1 {
  background: linear-gradient(135deg, #0f2027 0%, #1a3a2a 50%, #0a1a10 100%);
}
.blog-img-2 {
  background: linear-gradient(135deg, #0d1117 0%, #0f2942 50%, #0a1628 100%);
}
.blog-img-3 {
  background: linear-gradient(135deg, #1a0533 0%, #1a2040 50%, #0a1530 100%);
}
.blog-category {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(9,9,11,0.85);
  border: 1px solid var(--accent-mid);
  padding: 5px 12px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
}
.blog-content {
  padding: 28px 28px 32px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.blog-date, .blog-read {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.blog-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
/* blog-grid is flex-based — grid-template overrides removed */

/* ════════════════════════════════════════════════════════════
   IMAGES & MEDIA
   ════════════════════════════════════════════════════════════ */

/* ── Work card real images ── */
.work-img {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
  transition: transform 0.8s ease;
}
.work-card:hover .work-img { transform: scale(1.05); }

.work-img-overlay-info {
  position:   absolute;
  bottom:     0;
  left:       0;
  right:      0;
  padding:    20px 24px;
  background: linear-gradient(to top, rgba(9,9,11,0.92) 0%, rgba(9,9,11,0.5) 50%, transparent 100%);
  z-index:    2;
}

/* ── Blog card real images ── */
.blog-img {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img { transform: scale(1.05); }

/* ── Testimonial avatar with photo ── */
.author-avatar {
  overflow: hidden;
  padding:  0;
}
.author-avatar img {
  width:         100%;
  height:        100%;
  object-fit:    cover;
  border-radius: 50%;
  display:       block;
}

/* ════════════════════════════════════════════════════════════
   TECHNOLOGY PARTNER LOGOS
   ════════════════════════════════════════════════════════════ */
.trusted-by-section .marquee-track {
  gap:         72px;
  align-items: center;
}
.partner-logo {
  display:     flex;
  align-items: center;
  gap:         10px;
  opacity:     0.65;
  transition:  opacity 0.3s, transform 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.partner-logo:hover { opacity: 1; transform: scale(1.05); }
.p-icon {
  display:     flex;
  align-items: center;
  flex-shrink: 0;
}
.p-icon svg { display: block; }
.p-name {
  font-family:    var(--font-display);
  font-size:      16px;
  font-weight:    700;
  color:          var(--white);
  letter-spacing: -0.02em;
}

/* ════════════════════════════════════════════════════════════
   SERVICES PAGE — PAGE HERO
   ════════════════════════════════════════════════════════════ */
.nav-active { color: var(--accent) !important; }

.page-hero {
  position:         relative;
  background:       var(--black);
  padding:          160px 0 80px;
  overflow:         hidden;
  border-bottom:    1px solid var(--border);
}

.page-hero-glow {
  position:   absolute;
  width:      500px;
  height:     500px;
  border-radius: 50%;
  pointer-events: none;
  z-index:    0;
}
.page-hero-glow--left {
  top:        -100px;
  left:       -150px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 65%);
}
.page-hero-glow--right {
  top:        -60px;
  right:      -100px;
  background: radial-gradient(circle, rgba(34,197,94,0.05) 0%, transparent 65%);
}

.page-hero-inner {
  position: relative;
  z-index:  1;
}

/* Breadcrumb */
.breadcrumb {
  display:     flex;
  align-items: center;
  gap:         8px;
  font-size:   13px;
  color:       var(--muted);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); font-size: 11px; }

/* Hero content */
.page-hero-content { max-width: 780px; }

.page-hero-heading {
  font-family:    var(--font-display);
  font-size:      clamp(40px, 6vw, 76px);
  font-weight:    800;
  line-height:    1.06;
  letter-spacing: -0.03em;
  color:          var(--white);
  margin-bottom:  20px;
}

.page-hero-sub {
  font-size:    clamp(16px, 1.8vw, 18px);
  color:        var(--muted);
  line-height:  1.7;
  max-width:    600px;
  margin-bottom: 36px;
}

/* Stats strip below hero content */
.page-hero-stats {
  display:       flex;
  align-items:   center;
  gap:           0;
  margin-top:    56px;
  padding:       28px 32px;
  background:    rgba(255,255,255,0.03);
  border:        1px solid var(--border);
  border-radius: 16px;
  max-width:     680px;
  backdrop-filter: blur(8px);
}

.phs-item {
  display:        flex;
  flex-direction: column;
  gap:            4px;
  padding:        0 28px;
  flex:           1;
}
.phs-item:first-child { padding-left: 0; }

.phs-num {
  font-family:    var(--font-display);
  font-size:      28px;
  font-weight:    800;
  color:          var(--accent);
  letter-spacing: -0.02em;
  line-height:    1;
}

.phs-label {
  font-size:   12px;
  color:       var(--muted);
  font-weight: 400;
  white-space: nowrap;
}

.phs-divider {
  width:      1px;
  height:     36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   SERVICES PAGE — SERVICE CARDS
   ════════════════════════════════════════════════════════════ */
.svc-section { background: var(--off-black); }

.svc-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   20px;
  margin-bottom:         20px;
}

.svc-card {
  position:       relative;
  background:     linear-gradient(155deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
  border:         1px solid rgba(255,255,255,0.08);
  border-radius:  20px;
  padding:        32px 28px;
  display:        flex;
  flex-direction: column;
  gap:            0;
  overflow:       hidden;
  transition:     border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.svc-card::before {
  content:    '';
  position:   absolute;
  top:        0; left: 20px; right: 20px;
  height:     1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.svc-card:hover {
  border-color: rgba(34,197,94,0.3);
  box-shadow:   0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(34,197,94,0.06);
  transform:    translateY(-5px);
}

.svc-card-top {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  margin-bottom:   24px;
}

.svc-num {
  font-family:    var(--font-display);
  font-size:      12px;
  font-weight:    700;
  letter-spacing: 0.10em;
  color:          rgba(255,255,255,0.2);
}
.svc-num--accent { color: var(--accent); }

.svc-icon-box {
  width:           48px;
  height:          48px;
  border-radius:   12px;
  background:      rgba(255,255,255,0.05);
  border:          1px solid rgba(255,255,255,0.09);
  color:           rgba(255,255,255,0.5);
  display:         flex;
  align-items:     center;
  justify-content: center;
  transition:      background 0.25s, color 0.25s, border-color 0.25s;
}

.svc-card:hover .svc-icon-box {
  background:   rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.3);
  color:        var(--accent);
}

.svc-icon-box--accent {
  background:   rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.35);
  color:        var(--accent);
  width:  56px;
  height: 56px;
  border-radius: 14px;
}

.svc-title {
  font-family:    var(--font-display);
  font-size:      18px;
  font-weight:    700;
  color:          var(--white);
  letter-spacing: -0.01em;
  margin-bottom:  10px;
  line-height:    1.3;
}
.svc-title--lg { font-size: 26px; margin-bottom: 14px; letter-spacing: -0.02em; }

.svc-desc {
  font-size:    14px;
  color:        var(--muted);
  line-height:  1.65;
  margin-bottom: 22px;
}
.svc-desc--wide { font-size: 15px; max-width: 440px; }

.svc-divider {
  width:        100%;
  height:       1px;
  background:   var(--border);
  margin-bottom: 20px;
}

.svc-deliverables {
  list-style:     none;
  display:        flex;
  flex-direction: column;
  gap:            10px;
  flex:           1;
  margin-bottom:  28px;
}

.svc-deliverables li {
  font-size:   13.5px;
  color:       rgba(255,255,255,0.55);
  padding-left: 22px;
  position:    relative;
  line-height: 1.5;
  transition:  color 0.2s;
}

.svc-deliverables li::before {
  content:     '✓';
  position:    absolute;
  left:        0;
  top:         0;
  color:       var(--accent);
  font-size:   12px;
  font-weight: 700;
  line-height: 1.5;
}

.svc-card:hover .svc-deliverables li { color: rgba(255,255,255,0.7); }

.svc-deliverables--featured li {
  font-size:  14.5px;
  color:      rgba(255,255,255,0.7);
  gap:        12px;
}

.svc-card-footer {
  margin-top:  auto;
  display:     flex;
  gap:         12px;
  align-items: center;
  flex-wrap:   wrap;
}

.svc-cta {
  font-size: 13.5px;
  padding:   11px 22px;
}

/* ── Featured Growth Retainer Card ─────────────────── */
.svc-card--featured {
  background:   linear-gradient(135deg, rgba(34,197,94,0.08) 0%, rgba(14,27,20,0.95) 40%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(34,197,94,0.3);
  box-shadow:   0 0 60px rgba(34,197,94,0.08);
  padding:      40px 36px;
}

.svc-card--featured::before {
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.25), transparent);
}

.svc-card--featured:hover {
  border-color: rgba(34,197,94,0.5);
  box-shadow:   0 0 80px rgba(34,197,94,0.14), 0 16px 48px rgba(0,0,0,0.5);
  transform:    translateY(-5px);
}

.svc-featured-badge {
  position:     absolute;
  top:          20px;
  right:        24px;
  font-size:    10.5px;
  font-weight:  700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:        #09090b;
  background:   var(--accent);
  border-radius: 99px;
  padding:      5px 12px;
}

.svc-featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:     48px;
  align-items: flex-start;
}

.svc-featured-tags {
  display:   flex;
  flex-wrap: wrap;
  gap:       8px;
  margin-top: 20px;
}

.svc-featured-tags span {
  font-size:    11px;
  font-weight:  500;
  color:        rgba(34,197,94,0.9);
  background:   rgba(34,197,94,0.1);
  border:       1px solid rgba(34,197,94,0.2);
  border-radius: 99px;
  padding:      4px 12px;
}

.svc-featured-right-label {
  font-size:    11px;
  font-weight:  700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:        var(--muted);
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════════════════════
   SERVICES PAGE — HOW WE WORK
   ════════════════════════════════════════════════════════════ */
.hww-section { background: var(--black); }

.hww-grid {
  display:     flex;
  align-items: flex-start;
  gap:         0;
  margin-top:  8px;
}

.hww-step {
  flex:         1;
  display:      flex;
  flex-direction: column;
  align-items:  center;
  text-align:   center;
  padding:      0 20px;
}

.hww-connector {
  width:        60px;
  flex-shrink:  0;
  height:       1px;
  background:   linear-gradient(90deg, var(--accent), var(--border));
  margin-top:   52px;
  opacity:      0.4;
}

.hww-num {
  font-family:    var(--font-display);
  font-size:      11px;
  font-weight:    700;
  letter-spacing: 0.12em;
  color:          var(--accent);
  margin-bottom:  14px;
}

.hww-icon {
  width:           52px;
  height:          52px;
  border-radius:   14px;
  background:      rgba(34,197,94,0.08);
  border:          1px solid rgba(34,197,94,0.2);
  color:           var(--accent);
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-bottom:   18px;
  transition:      background 0.25s, box-shadow 0.25s;
}
.hww-step:hover .hww-icon {
  background: rgba(34,197,94,0.15);
  box-shadow: 0 0 20px rgba(34,197,94,0.15);
}

.hww-title {
  font-family:   var(--font-display);
  font-size:     16px;
  font-weight:   700;
  color:         var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.hww-desc {
  font-size:   13.5px;
  color:       var(--muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   SERVICES PAGE — TRUST / PLATFORMS STRIP
   ════════════════════════════════════════════════════════════ */
.svc-trust-strip {
  padding:       32px 0;
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:    var(--off-black);
}

.svc-trust-label {
  font-size:    11px;
  font-weight:  600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:        var(--muted);
  text-align:   center;
  margin-bottom: 20px;
}

.svc-trust-logos {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             40px;
  flex-wrap:       wrap;
  opacity:         0.5;
  filter:          grayscale(1) brightness(1.5);
}

/* ════════════════════════════════════════════════════════════
   SERVICES PAGE — RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-featured-inner { grid-template-columns: 1fr; gap: 32px; }
  .hww-connector { width: 32px; }
}

@media (max-width: 768px) {
  .page-hero { padding: 130px 0 60px; }
  .page-hero-heading { font-size: clamp(34px, 10vw, 52px); }
  .page-hero-stats {
    flex-direction: column;
    align-items:    flex-start;
    padding:        24px;
    max-width:      100%;
    gap:            16px;
  }
  .phs-item  { padding: 0; }
  .phs-divider { width: 100%; height: 1px; }
  .phs-num   { font-size: 24px; }

  .svc-section .section-header { margin-bottom: 40px; }
  .svc-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-card { padding: 28px 22px; }
  .svc-card--featured { padding: 30px 22px; }
  .svc-featured-badge { top: 16px; right: 16px; }

  .hww-grid { flex-direction: column; align-items: center; gap: 8px; }
  .hww-connector { width: 1px; height: 32px; background: linear-gradient(180deg, var(--accent), var(--border)); margin-top: 0; }
  .hww-step { width: 100%; max-width: 340px; }

  .svc-trust-logos { gap: 24px; }
}

/* ════════════════════════════════════════════════════════════
   INNER SERVICE PAGES — SHARED
   ════════════════════════════════════════════════════════════ */

/* Section background helpers */
.sp-bg-black { background: var(--black); }
.sp-bg-off   { background: var(--off-black); }

/* ── Inner Page Hero ─────────────────────────────── */
.inner-hero {
  position:   relative;
  background: var(--black);
  padding:    150px 0 80px;
  overflow:   hidden;
  border-bottom: 1px solid var(--border);
}

.inner-hero--shopify .inner-hero-glow {
  position:   absolute;
  top:        -80px;
  right:      -80px;
  width:      600px;
  height:     600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.inner-hero--seo .inner-hero-glow--seo-l {
  position:   absolute;
  top:        -60px;
  left:       -120px;
  width:      500px;
  height:     500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.inner-hero--seo .inner-hero-glow--seo-r {
  position:   absolute;
  bottom:     -80px;
  right:      -80px;
  width:      400px;
  height:     400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.inner-hero-inner {
  position: relative;
  z-index:  1;
}

.inner-hero-content { max-width: 860px; }

.inner-hero-heading {
  font-family:    var(--font-display);
  font-size:      clamp(38px, 5.5vw, 72px);
  font-weight:    800;
  line-height:    1.06;
  letter-spacing: -0.03em;
  color:          var(--white);
  margin-bottom:  18px;
}

.inner-hero-sub {
  font-size:    clamp(15px, 1.7vw, 17px);
  color:        var(--muted);
  line-height:  1.75;
  max-width:    640px;
  margin-bottom: 0;
}

/* ── Hero KPI row ────────────────────────────────── */
.hero-kpi-row {
  display:     flex;
  align-items: center;
  gap:         0;
  margin-top:  36px;
  padding:     22px 28px;
  background:  rgba(255,255,255,0.03);
  border:      1px solid var(--border);
  border-radius: 14px;
  width:       fit-content;
  max-width:   100%;
  backdrop-filter: blur(8px);
}

.hero-kpi {
  display:        flex;
  flex-direction: column;
  gap:            4px;
  padding:        0 26px;
}
.hero-kpi:first-child { padding-left: 0; }
.hero-kpi:last-child  { padding-right: 0; }

.hero-kpi-value {
  font-family:    var(--font-display);
  font-size:      26px;
  font-weight:    800;
  color:          var(--accent);
  letter-spacing: -0.02em;
  line-height:    1;
}

.hero-kpi-label {
  font-size:   11px;
  color:       var(--muted);
  white-space: nowrap;
}

.hero-kpi-sep {
  width:      1px;
  height:     32px;
  background: var(--border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   SHOPIFY PAGE — WHAT WE BUILD
   ════════════════════════════════════════════════════════════ */
.build-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   16px;
}

.build-card {
  position:       relative;
  background:     linear-gradient(155deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border:         1px solid rgba(255,255,255,0.08);
  border-radius:  18px;
  padding:        28px 24px;
  display:        flex;
  flex-direction: column;
  gap:            12px;
  overflow:       hidden;
  transition:     border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.build-card::before {
  content: '';
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.build-card:hover {
  border-color: rgba(34,197,94,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.build-card-icon {
  width:           44px;
  height:          44px;
  border-radius:   11px;
  background:      rgba(34,197,94,0.1);
  border:          1px solid rgba(34,197,94,0.2);
  color:           var(--accent);
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  transition:      background 0.25s;
}
.build-card:hover .build-card-icon { background: rgba(34,197,94,0.18); }

.build-num {
  font-family:    var(--font-display);
  font-size:      11px;
  font-weight:    700;
  letter-spacing: 0.1em;
  color:          rgba(255,255,255,0.18);
  position:       absolute;
  top:            22px;
  right:          22px;
}

.build-card-title {
  font-family:   var(--font-display);
  font-size:     17px;
  font-weight:   700;
  color:         var(--white);
  letter-spacing: -0.01em;
  line-height:   1.3;
  margin-top:    4px;
}

.build-card-desc {
  font-size:   13.5px;
  color:       var(--muted);
  line-height: 1.65;
}

.build-card-points {
  list-style:  none;
  display:     flex;
  flex-direction: column;
  gap:         8px;
  margin-top:  4px;
}
.build-card-points li {
  font-size:    12.5px;
  color:        rgba(255,255,255,0.5);
  padding-left: 18px;
  position:     relative;
  line-height:  1.4;
}
.build-card-points li::before {
  content:   '→';
  position:  absolute;
  left:      0;
  color:     var(--accent);
  font-size: 11px;
}

/* ════════════════════════════════════════════════════════════
   SHOPIFY PAGE — PROCESS
   ════════════════════════════════════════════════════════════ */
.sp-process-grid {
  display:               grid;
  grid-template-columns: repeat(6, 1fr);
  gap:                   16px;
  position:              relative;
  margin-top:            8px;
}

.sp-process-item {
  display:        flex;
  flex-direction: column;
  gap:            12px;
}

.sp-process-head {
  display:     flex;
  align-items: center;
  gap:         0;
  margin-bottom: 4px;
}

.sp-process-num {
  width:           36px;
  height:          36px;
  border-radius:   50%;
  background:      rgba(34,197,94,0.12);
  border:          1px solid rgba(34,197,94,0.3);
  color:           var(--accent);
  font-family:     var(--font-display);
  font-size:       13px;
  font-weight:     700;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
}

.sp-process-line {
  flex:       1;
  height:     1px;
  background: linear-gradient(90deg, rgba(34,197,94,0.3), rgba(255,255,255,0.06));
  margin-left: 6px;
}

.sp-process-week {
  font-size:    10.5px;
  font-weight:  600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:        var(--accent);
  opacity:      0.7;
}

.sp-process-title {
  font-family:   var(--font-display);
  font-size:     14px;
  font-weight:   700;
  color:         var(--white);
  letter-spacing: -0.01em;
  line-height:   1.3;
}

.sp-process-desc {
  font-size:   13px;
  color:       var(--muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   SHOPIFY & SEO PAGES — INCLUSIONS & FEATURES GRID
   ════════════════════════════════════════════════════════════ */
.inclusions-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   20px;
}

.inclusion-block {
  background:     linear-gradient(155deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border:         1px solid rgba(255,255,255,0.08);
  border-radius:  18px;
  padding:        28px 24px;
  transition:     border-color 0.3s, transform 0.3s;
  position:       relative;
  overflow:       hidden;
}
.inclusion-block::before {
  content: '';
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.inclusion-block:hover {
  border-color: rgba(34,197,94,0.25);
  transform: translateY(-3px);
}

.inclusion-icon {
  width:           42px;
  height:          42px;
  border-radius:   10px;
  background:      rgba(34,197,94,0.1);
  border:          1px solid rgba(34,197,94,0.2);
  color:           var(--accent);
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-bottom:   18px;
}

.inclusion-title {
  font-family:   var(--font-display);
  font-size:     16px;
  font-weight:   700;
  color:         var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.inclusion-list {
  list-style:  none;
  display:     flex;
  flex-direction: column;
  gap:         10px;
}
.inclusion-list li {
  font-size:    13px;
  color:        rgba(255,255,255,0.55);
  padding-left: 20px;
  position:     relative;
  line-height:  1.5;
}
.inclusion-list li::before {
  content:   '✓';
  position:  absolute;
  left:      0;
  color:     var(--accent);
  font-size: 12px;
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════
   SHARED — APP INTEGRATIONS STRIP
   ════════════════════════════════════════════════════════════ */
.apps-section {
  padding:       32px 0 36px;
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:    var(--black);
}
.apps-label {
  font-size:    11px;
  font-weight:  600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:        var(--muted);
  text-align:   center;
  margin-bottom: 20px;
}
.apps-grid {
  display:         flex;
  flex-wrap:       wrap;
  gap:             10px;
  justify-content: center;
}
.app-pill {
  font-size:    12.5px;
  font-weight:  500;
  color:        rgba(255,255,255,0.45);
  background:   rgba(255,255,255,0.04);
  border:       1px solid rgba(255,255,255,0.08);
  border-radius: 99px;
  padding:      6px 16px;
  white-space:  nowrap;
  transition:   color 0.2s, border-color 0.2s;
}
.app-pill:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }

/* ════════════════════════════════════════════════════════════
   SHOPIFY PAGE — WHY US CARDS
   ════════════════════════════════════════════════════════════ */
.why-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   20px;
}

.why-card {
  background:     linear-gradient(155deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border:         1px solid rgba(255,255,255,0.08);
  border-radius:  18px;
  padding:        32px 28px;
  text-align:     center;
  transition:     border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: rgba(34,197,94,0.25); transform: translateY(-4px); }

.why-card-icon {
  width:           56px;
  height:          56px;
  border-radius:   14px;
  background:      rgba(34,197,94,0.1);
  border:          1px solid rgba(34,197,94,0.2);
  color:           var(--accent);
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin:          0 auto 20px;
  transition:      background 0.25s, box-shadow 0.25s;
}
.why-card:hover .why-card-icon { background: rgba(34,197,94,0.18); box-shadow: 0 0 20px rgba(34,197,94,0.15); }

.why-card-title {
  font-family:   var(--font-display);
  font-size:     17px;
  font-weight:   700;
  color:         var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-card-desc {
  font-size:   14px;
  color:       var(--muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   SEO PAGE — OPPORTUNITY CARDS
   ════════════════════════════════════════════════════════════ */
.opportunity-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   20px;
}

.opportunity-card {
  position:       relative;
  background:     linear-gradient(155deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border:         1px solid rgba(255,255,255,0.08);
  border-radius:  20px;
  padding:        36px 32px;
  overflow:       hidden;
}
.opportunity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.opportunity-card--accent {
  background:   linear-gradient(155deg, rgba(34,197,94,0.08) 0%, rgba(14,27,20,0.95) 100%);
  border-color: rgba(34,197,94,0.3);
  box-shadow:   0 0 40px rgba(34,197,94,0.07);
}
.opportunity-card--accent::before {
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.2), transparent);
}

.opportunity-num {
  font-family:    var(--font-display);
  font-size:      11px;
  font-weight:    700;
  letter-spacing: 0.1em;
  color:          rgba(255,255,255,0.2);
  margin-bottom:  20px;
}
.opportunity-num--light { color: rgba(34,197,94,0.5); }

.opportunity-icon {
  width:           48px;
  height:          48px;
  border-radius:   12px;
  background:      rgba(255,255,255,0.05);
  border:          1px solid rgba(255,255,255,0.1);
  color:           rgba(255,255,255,0.5);
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-bottom:   20px;
}
.opportunity-icon--light {
  background:   rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.3);
  color:        var(--accent);
}

.opportunity-title {
  font-family:   var(--font-display);
  font-size:     20px;
  font-weight:   700;
  color:         var(--white);
  letter-spacing: -0.02em;
  line-height:   1.3;
  margin-bottom: 12px;
}

.opportunity-desc {
  font-size:     14px;
  color:         var(--muted);
  line-height:   1.7;
  margin-bottom: 20px;
}

.opportunity-points {
  list-style:  none;
  display:     flex;
  flex-direction: column;
  gap:         9px;
}
.opportunity-points li {
  font-size:    13px;
  color:        rgba(255,255,255,0.55);
  padding-left: 20px;
  position:     relative;
}
.opportunity-card--accent .opportunity-points li { color: rgba(255,255,255,0.7); }
.opportunity-points li::before {
  content:   '✓';
  position:  absolute;
  left:      0;
  color:     var(--accent);
  font-size: 11px;
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════
   SEO PAGE — PILLARS GRID
   ════════════════════════════════════════════════════════════ */
.seo-pillars-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   16px;
}

.seo-pillar {
  position:       relative;
  background:     linear-gradient(155deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border:         1px solid rgba(255,255,255,0.08);
  border-radius:  18px;
  padding:        28px 24px;
  overflow:       hidden;
  transition:     border-color 0.3s, transform 0.3s;
}
.seo-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.seo-pillar:hover { border-color: rgba(34,197,94,0.25); transform: translateY(-3px); }

.seo-pillar--accent {
  background:   linear-gradient(155deg, rgba(34,197,94,0.09) 0%, rgba(14,27,20,0.95) 100%);
  border-color: rgba(34,197,94,0.3);
}
.seo-pillar--accent::before {
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.2), transparent);
}
.seo-pillar--accent:hover { border-color: rgba(34,197,94,0.55); }

.seo-pillar-icon {
  width:           40px;
  height:          40px;
  border-radius:   10px;
  background:      rgba(255,255,255,0.05);
  border:          1px solid rgba(255,255,255,0.1);
  color:           rgba(255,255,255,0.45);
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-bottom:   16px;
}
.seo-pillar-icon--accent {
  background:   rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.35);
  color:        var(--accent);
}

.seo-pillar-badge {
  display:        inline-block;
  font-size:      10px;
  font-weight:    700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          var(--accent);
  background:     rgba(34,197,94,0.12);
  border:         1px solid rgba(34,197,94,0.25);
  border-radius:  99px;
  padding:        3px 10px;
  margin-bottom:  12px;
}

.seo-pillar-title {
  font-family:   var(--font-display);
  font-size:     16px;
  font-weight:   700;
  color:         var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.seo-pillar-desc {
  font-size:     13px;
  color:         var(--muted);
  line-height:   1.65;
  margin-bottom: 16px;
}

.seo-pillar-list {
  list-style:  none;
  display:     flex;
  flex-direction: column;
  gap:         8px;
}
.seo-pillar-list li {
  font-size:    12.5px;
  color:        rgba(255,255,255,0.5);
  padding-left: 18px;
  position:     relative;
  line-height:  1.45;
}
.seo-pillar--accent .seo-pillar-list li { color: rgba(255,255,255,0.7); }
.seo-pillar-list li::before {
  content:   '✓';
  position:  absolute;
  left:      0;
  color:     var(--accent);
  font-size: 11px;
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════
   SEO PAGE — AI HIGHLIGHT SECTION
   ════════════════════════════════════════════════════════════ */
.ai-highlight-section {
  position:   relative;
  background: linear-gradient(160deg, #0c1f15 0%, #09090b 50%, #0f1f18 100%);
  border-top:    1px solid rgba(34,197,94,0.15);
  border-bottom: 1px solid rgba(34,197,94,0.15);
  padding:    100px 0;
  overflow:   hidden;
}

.ai-highlight-glow {
  position:   absolute;
  top:        -100px;
  left:       50%;
  transform:  translateX(-50%);
  width:      800px;
  height:     400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(34,197,94,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.ai-highlight-inner {
  position: relative;
  z-index:  1;
  display:  grid;
  grid-template-columns: 1fr 1fr;
  gap:      80px;
  align-items: center;
}

.ai-what-we-do { }

.ai-wwd-title {
  font-family:    var(--font-display);
  font-size:      12px;
  font-weight:    700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          var(--accent);
  margin-bottom:  20px;
}

.ai-wwd-list {
  list-style:  none;
  display:     flex;
  flex-direction: column;
  gap:         20px;
}

.ai-wwd-list li {
  display: flex;
  gap:     16px;
  align-items: flex-start;
}

.ai-wwd-icon {
  width:           28px;
  height:          28px;
  border-radius:   7px;
  background:      rgba(34,197,94,0.15);
  border:          1px solid rgba(34,197,94,0.3);
  color:           var(--accent);
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  margin-top:      2px;
}

.ai-wwd-list li strong {
  font-family:   var(--font-display);
  font-size:     14px;
  font-weight:   700;
  color:         var(--white);
  display:       block;
  margin-bottom: 4px;
}

.ai-wwd-list li p {
  font-size:   13px;
  color:       var(--muted);
  line-height: 1.6;
  margin:      0;
}

/* ════════════════════════════════════════════════════════════
   SEO PAGE — MONTHLY PROCESS
   ════════════════════════════════════════════════════════════ */
.monthly-process-grid {
  display:     flex;
  align-items: center;
  gap:         0;
  margin-top:  8px;
}

.monthly-step {
  flex:           1;
  background:     linear-gradient(155deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border:         1px solid rgba(255,255,255,0.08);
  border-radius:  18px;
  padding:        28px 22px;
  text-align:     center;
  transition:     border-color 0.3s, transform 0.3s;
}
.monthly-step:hover { border-color: rgba(34,197,94,0.25); transform: translateY(-4px); }

.monthly-step-arrow {
  font-size:  20px;
  color:      rgba(34,197,94,0.4);
  padding:    0 12px;
  flex-shrink: 0;
  margin-top: -20px;
}

.monthly-step-num {
  font-family:    var(--font-display);
  font-size:      11px;
  font-weight:    700;
  letter-spacing: 0.1em;
  color:          var(--accent);
  margin-bottom:  14px;
  opacity:        0.7;
}

.monthly-step-icon {
  width:           52px;
  height:          52px;
  border-radius:   14px;
  background:      rgba(34,197,94,0.08);
  border:          1px solid rgba(34,197,94,0.2);
  color:           var(--accent);
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin:          0 auto 16px;
  transition:      background 0.25s, box-shadow 0.25s;
}
.monthly-step:hover .monthly-step-icon { background: rgba(34,197,94,0.15); box-shadow: 0 0 20px rgba(34,197,94,0.15); }

.monthly-step-title {
  font-family:   var(--font-display);
  font-size:     16px;
  font-weight:   700;
  color:         var(--white);
  margin-bottom: 10px;
}
.monthly-step-desc {
  font-size:   13px;
  color:       var(--muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   SEO PAGE — TIMELINE
   ════════════════════════════════════════════════════════════ */
.seo-timeline {
  display:        flex;
  flex-direction: column;
  gap:            0;
  padding-left:   24px;
}

.seo-timeline-item {
  display: flex;
  gap:     28px;
  padding-bottom: 32px;
}
.seo-timeline-item:last-child { padding-bottom: 0; }

.seo-tl-marker {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  flex-shrink:    0;
  margin-top:     6px;
}

.seo-tl-dot {
  width:         14px;
  height:        14px;
  border-radius: 50%;
  background:    rgba(34,197,94,0.3);
  border:        2px solid rgba(34,197,94,0.6);
  flex-shrink:   0;
}
.seo-tl-dot--active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(34,197,94,0.5);
}

.seo-tl-line {
  width:      2px;
  flex:       1;
  background: linear-gradient(180deg, rgba(34,197,94,0.3), rgba(34,197,94,0.06));
  margin-top: 6px;
  min-height: 60px;
}

.seo-tl-content {
  flex:           1;
  background:     linear-gradient(155deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border:         1px solid rgba(255,255,255,0.08);
  border-radius:  16px;
  padding:        24px 24px 20px;
  margin-bottom:  6px;
  transition:     border-color 0.3s;
}
.seo-tl-content:hover { border-color: rgba(34,197,94,0.2); }
.seo-tl-content--highlight {
  background:   linear-gradient(155deg, rgba(34,197,94,0.08) 0%, rgba(14,27,20,0.95) 100%);
  border-color: rgba(34,197,94,0.3);
}

.seo-tl-month {
  font-family:    var(--font-display);
  font-size:      11px;
  font-weight:    700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          var(--muted);
  margin-bottom:  8px;
}
.seo-tl-month--accent { color: var(--accent); }

.seo-tl-title {
  font-family:   var(--font-display);
  font-size:     18px;
  font-weight:   700;
  color:         var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.seo-tl-desc {
  font-size:     13.5px;
  color:         var(--muted);
  line-height:   1.65;
  margin-bottom: 14px;
}

.seo-tl-tags {
  display:   flex;
  flex-wrap: wrap;
  gap:       7px;
}
.seo-tl-tags span {
  font-size:    11px;
  color:        var(--accent);
  background:   rgba(34,197,94,0.1);
  border:       1px solid rgba(34,197,94,0.2);
  border-radius: 99px;
  padding:      3px 10px;
}

/* ════════════════════════════════════════════════════════════
   INNER SERVICE PAGES — RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .build-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-process-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .inclusions-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-highlight-inner { grid-template-columns: 1fr; gap: 48px; }
  .monthly-process-grid { flex-wrap: wrap; justify-content: center; }
  .monthly-step { flex: 0 0 calc(50% - 30px); }
  .monthly-step-arrow { display: none; }
  .opportunity-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .inner-hero { padding: 130px 0 60px; }
  .inner-hero-heading { font-size: clamp(32px, 10vw, 50px); }
  .inner-hero-sub { font-size: 15px; }

  .hero-kpi-row {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
    width: 100%;
  }
  .hero-kpi { padding: 0; flex: 0 0 calc(50% - 8px); }
  .hero-kpi-sep { display: none; }
  .hero-kpi-value { font-size: 22px; }

  .build-grid { grid-template-columns: 1fr; gap: 12px; }
  .sp-process-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sp-process-line { display: none; }
  .inclusions-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { text-align: left; }
  .why-card-icon { margin: 0 0 16px; }

  .seo-pillars-grid { grid-template-columns: 1fr; gap: 12px; }
  .opportunity-grid { grid-template-columns: 1fr; gap: 14px; }
  .monthly-step { flex: 0 0 100%; }
  .seo-timeline { padding-left: 0; }
  .seo-timeline-item { flex-direction: column; gap: 8px; }
  .seo-tl-marker { flex-direction: row; align-items: center; gap: 10px; }
  .seo-tl-line { width: 40px; height: 2px; min-height: auto; margin: 0; }
}
