/* ============================================================
   ZYNNEX DIGITAL — style.css
   Warm gray + Deep red theme
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:         #E8E8E8;   /* main section background */
  --bg2:        #F2F2F2;   /* alternate section background */
  --bg3:        #DADADA;   /* cards / bordered elements */
  --red:        #CC1F1F;
  --red-dark:   #A81818;
  --red-light:  #F5E5E5;
  --black:      #0A0A0A;
  --ink:        #1A1A1A;
  --gray:       #5A5A5A;
  --line:       #D0D0D0;
  --white:      #FFFFFF;   /* cards, buttons, contrast elements only */
  --off-white:  #F2F2F2;   /* kept for backwards compat — same as bg2 */

  --font-head:  'Bebas Neue', sans-serif;
  --font-body:  'Plus Jakarta Sans', sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.75s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) {
  body { cursor: auto; }
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

img { display: block; max-width: 100%; }

/* ── Custom Cursor ──────────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s;
}

.cursor-dot {
  width: 12px;
  height: 12px;
  background: var(--red);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid var(--red);
  background: transparent;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
}

.cursor-ring.expanded {
  width: 56px;
  height: 56px;
  background: rgba(232, 21, 42, 0.12);
  border-color: var(--red);
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--line);
  width: 100%;
  justify-content: center;
}
.btn-outline-dark:hover {
  border-color: var(--black);
  background: var(--off-white);
  transform: translateY(-3px);
}

.btn-nav {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 10px 22px;
  font-size: 13px;
}
.btn-nav:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-white-red {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  width: 100%;
  justify-content: center;
  font-weight: 700;
}
.btn-white-red:hover {
  background: var(--off-white);
  transform: translateY(-3px);
}

.btn-red-cta {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
}
.btn-red-cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
}
.btn-ghost-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-submit {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  width: 100%;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 1px;
  padding: 18px 28px;
  border-radius: 4px;
  transition: all 0.25s ease;
}
.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* ── Section Tags & Titles ──────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: monospace;
  font-size: 13px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-header {
  margin-bottom: 64px;
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  gap: 48px;
}

.section-intro {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 4px;
}

/* Text Style Helpers */
.t-black { color: var(--black); }
.t-red   { color: var(--red); }
.t-white { color: var(--white); }

.t-outline {
  color: var(--black);
}

/* ── Scroll Reveal ──────────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition), transform var(--transition);
}
.rv.on {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.06s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.18s; }
.d4 { transition-delay: 0.24s; }
.d5 { transition-delay: 0.30s; }
.d6 { transition-delay: 0.36s; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 70px;
  background: rgba(232,232,232,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.nav.shadow {
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--black);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.logo-dot { color: var(--red); }

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

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--black);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.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(--black);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(232,232,232,0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 16px 20px 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s ease;
}

.mobile-nav.open {
  max-height: 400px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-link:hover {
  color: var(--red);
  padding-left: 8px;
}

.mobile-nav-cta {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  align-self: flex-start;
  transition: background 0.2s;
}

.mobile-nav-cta:hover { background: var(--red-dark); }

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .nav-inner { padding: 0 20px; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 70px;
  overflow: hidden;
  background: var(--bg);
}

/* ── Breathing light spotlights ─────────────────────────── */
.hero-light {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

/* Light 1 — large, centered behind heading */
.hero-light-1 {
  width: 800px;
  height: 600px;
  top: 50%;
  left: 50%;
  background: radial-gradient(ellipse at center, rgba(204,31,31,0.07) 0%, transparent 70%);
  animation: heroBreathe1 4s ease-in-out infinite;
}

/* Light 2 — smaller, offset bottom-right, 2s phase offset */
.hero-light-2 {
  width: 400px;
  height: 400px;
  bottom: 8%;
  right: 8%;
  background: radial-gradient(ellipse at center, rgba(204,31,31,0.04) 0%, transparent 70%);
  animation: heroBreathe2 4s ease-in-out 2s infinite;
}

@keyframes heroBreathe1 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes heroBreathe2 {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

/* ── Scan line — plays once on load ─────────────────────── */
.hero-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(204,31,31,0.15);
  top: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: heroScan 1.5s ease-in-out 0.5s forwards;
}

@keyframes heroScan {
  0%   { top: 0%;   opacity: 1; }
  75%  { top: 90%;  opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* ── Heading word-reveal ────────────────────────────────── */
.hero-line-wrap {
  overflow: hidden;
  display: block;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: heroLineIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line-1 { animation-delay: 0.2s; }
.hero-line-2 { animation-delay: 0.45s; }
.hero-line-3 { animation-delay: 0.7s; }

@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-bg-number {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(260px, 28vw, 440px);
  color: rgba(204,31,31,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 40px;
  text-align: center;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hero-tag-dash {
  color: var(--red);
  font-weight: 700;
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-shadow:
    1px 2px 0px rgba(0,0,0,0.06),
    2px 4px 0px rgba(0,0,0,0.05),
    3px 6px 0px rgba(0,0,0,0.04),
    4px 8px 16px rgba(0,0,0,0.07);
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* Red glow behind heading */
.hero-heading::before {
  content: '';
  position: absolute;
  inset: -10% -12%;
  background: radial-gradient(ellipse at center, rgba(204,31,31,0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.h-black { color: var(--black); }
.h-red   { color: var(--red); }
.h-outline {
  color: var(--black);
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero Stats */
.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-columns: 1px solid var(--line);
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 28px 40px;
  border-right: 1px solid var(--line);
}

.stat-item:first-child { border-left: 1px solid var(--line); }

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-num,
.stat-text {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--black);
  letter-spacing: 1px;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--red);
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  margin-top: 6px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-stats { display: none; }
  .hero-bg-number { font-size: 180px; right: -10%; }
}

/* ── Ticker ─────────────────────────────────────────────────── */
.ticker {
  background: var(--red);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-item {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-dot {
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Services ───────────────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--bg);
}

.services-table {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease, padding-left 0.3s ease;
  padding-left: 0;
}

.service-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--red-light);
  transition: width 0.35s var(--ease-out);
  z-index: 0;
}

.service-row:hover::before {
  width: 100%;
}

.service-row:hover {
  padding-left: 16px;
}

.service-row:hover .svc-arrow {
  color: var(--red);
  opacity: 1;
}

.service-row > * { position: relative; z-index: 1; }

.svc-num {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 1px;
}

.svc-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
}

.svc-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.svc-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--red);
  color: var(--white);
}


.svc-arrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray);
  opacity: 0.7;
  transition: color 0.2s, opacity 0.2s;
  text-align: right;
  text-decoration: none;
  white-space: nowrap;
  align-self: center;
}
a.svc-arrow { color: var(--gray); }

@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 48px 1fr;
    gap: 0;
  }
  .svc-arrow { display: none; }
  .section-title-row { flex-direction: column; gap: 16px; }
}

/* ── Numbers Band ───────────────────────────────────────────── */
.numbers-band {
  background: var(--black);
  padding: 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.number-cell {
  padding: 64px 40px;
  border-right: 1px solid #1E1E1E;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s ease;
}

.number-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.number-cell:hover::before {
  transform: scaleX(1);
}

.number-cell:hover {
  background: #111111;
}

.num-figure {
  font-family: var(--font-head);
  font-size: clamp(48px, 5vw, 72px);
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 12px;
}

.num-figure .counter,
.num-figure .num-text {
  color: var(--white);
}

.num-suffix {
  color: var(--red);
}

.num-label {
  font-size: 13px;
  color: #5A5A5A;
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 768px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-cell { padding: 40px 24px; }
}

/* ── Work / Portfolio ───────────────────────────────────────── */
.work {
  padding: 120px 0;
  background: var(--off-white);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}

.work-col-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.work-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  cursor: pointer;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

/* CSS-only browser mockup */
.work-mockup {
  padding: 20px 20px 0;
  background: var(--off-white);
}

.mockup-browser {
  background: var(--white);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #F0F0F0;
  border-bottom: 1px solid var(--line);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }

.mockup-url {
  margin-left: 8px;
  font-size: 11px;
  color: var(--gray);
  background: var(--white);
  padding: 3px 10px;
  border-radius: 4px;
  font-family: monospace;
}

/* Shopify screen mockup */
.mockup-shopify-screen {
  height: 200px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  padding: 16px;
}

.work-card-tall .mockup-shopify-screen {
  height: 340px;
}

.mockup-hero-block {
  height: 100px;
  background: linear-gradient(90deg, rgba(204,31,31,0.8) 0%, rgba(168,24,24,0.6) 100%);
  border-radius: 6px;
  margin-bottom: 12px;
}

.work-card-tall .mockup-hero-block {
  height: 160px;
}

.mockup-products {
  display: flex;
  gap: 8px;
}

.mockup-product {
  flex: 1;
  height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.work-card-tall .mockup-product {
  height: 120px;
}

/* Ads screen mockup */
.mockup-ads-screen {
  height: 140px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 16px;
  display: flex;
  align-items: flex-end;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
}

.chart-bar {
  flex: 1;
  background: var(--red);
  border-radius: 3px 3px 0 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.chart-bar:last-child { background: #CC1F1F; opacity: 1; }

/* WordPress screen mockup */
.mockup-wp-screen {
  height: 140px;
  background: var(--white);
  padding: 14px;
}

.mockup-nav-line {
  height: 8px;
  background: var(--off-white);
  border-radius: 4px;
  margin-bottom: 16px;
}

.mockup-content-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-line {
  height: 6px;
  background: var(--line);
  border-radius: 3px;
}
.mockup-line.long  { width: 90%; }
.mockup-line.medium { width: 65%; }
.mockup-line.short  { width: 40%; }

.mockup-cta-btn {
  margin-top: 4px;
  height: 20px;
  width: 80px;
  background: var(--red);
  border-radius: 3px;
  opacity: 0.7;
}

/* Work info */
.work-info {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.work-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
}

.work-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.work-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.work-result {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 12px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.3px;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card-tall .mockup-shopify-screen { height: 200px; }
  .work-card-tall .mockup-hero-block { height: 100px; }
  .work-card-tall .mockup-product { height: 80px; }
}

/* ── Process ────────────────────────────────────────────────── */
.process {
  padding: 120px 0;
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-right: none;
}

.process-step {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  transition: background 0.3s ease;
  cursor: default;
}

.process-step:hover {
  background: var(--red-light);
}

.process-step:hover .step-num {
  color: var(--red);
}

.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  color: var(--bg3);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.step-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 14px;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--line);
  }
}

/* ── Why Zynnex ─────────────────────────────────────────────── */
.why {
  padding: 120px 0;
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin: 24px 0 32px;
  max-width: 440px;
}

.why-points {
  display: flex;
  flex-direction: column;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  cursor: default;
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.why-point:first-child { border-top: 1px solid var(--line); }

.why-point:hover {
  background: var(--red-light);
  padding-left: 12px;
}

.why-point:hover .why-icon {
  background: var(--red);
  color: var(--white);
}

.why-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.why-point-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.why-point-content p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* Metric cards */
.why-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.metric-free {
  background: var(--black);
  border-color: var(--black);
}

.metric-free .metric-value { color: var(--red); }
.metric-free .metric-label { color: #5A5A5A; }

.metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-value {
  font-family: var(--font-head);
  font-size: clamp(48px, 5vw, 72px);
  color: var(--black);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-right { position: static; }
}

/* ── Pricing ────────────────────────────────────────────────── */
.pricing {
  padding: 120px 0;
  background: var(--bg);
}

.pricing-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

.pricing-header-right {
  padding-bottom: 8px;
}

.pricing-header-right p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 420px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.pricing-card {
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:not(.pricing-featured):hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.pricing-featured {
  background: var(--red);
  color: var(--white);
}

.pricing-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
}

.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 6px;
}

.pricing-featured .pricing-tier { color: rgba(255,255,255,0.7); }

.pricing-plan {
  font-family: var(--font-head);
  font-size: 40px;
  color: var(--black);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pricing-featured .pricing-plan { color: var(--white); }

.pricing-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.pricing-featured .pricing-price { border-color: rgba(255,255,255,0.2); }

.price-pkr {
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--black);
  letter-spacing: 1px;
  line-height: 1;
}

.pricing-featured .price-pkr { color: var(--white); }

.price-usd {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.pricing-featured .price-usd { color: rgba(255,255,255,0.7); }

.price-period {
  font-size: 12px;
  color: var(--gray);
}

.pricing-featured .price-period { color: rgba(255,255,255,0.6); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

.pricing-featured .pricing-features li { color: rgba(255,255,255,0.9); }

.pricing-footer {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--gray);
}

.pricing-custom-link {
  color: var(--red);
  font-weight: 600;
  transition: opacity 0.2s;
}

.pricing-custom-link:hover { opacity: 0.7; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-header { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-right: none;
  border-radius: 12px;
  overflow: hidden;
}

.testi-card {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  transition: background 0.25s ease;
  cursor: default;
}

.testi-card:hover { background: #F0F0F0; }

.testi-stars {
  color: var(--red);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-quote {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.testi-biz {
  font-size: 12px;
  color: var(--gray);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--line);
  }
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq {
  background: var(--white);
  padding: 110px 6%;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-heading {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.faq-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 340px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: 'Inter', var(--font-body), sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--red);
  transition: transform 0.35s var(--ease-out);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  overflow: hidden;
  font-family: 'Inter', var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray);
  padding-top: 12px;
  min-height: 0;
}

@media (max-width: 768px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-sub {
    max-width: 100%;
  }
}

/* ── CTA Band ───────────────────────────────────────────────── */
.cta-band {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: 20vw;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
  line-height: 1;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  border: 1px solid rgba(204,31,31,0.3);
  padding: 6px 16px;
  border-radius: 100px;
}

.cta-heading {
  font-family: var(--font-head);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: 1px;
  text-align: center;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.7;
  text-align: center;
}

.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin: 24px 0 36px;
  max-width: 380px;
}

.contact-rows {
  display: flex;
  flex-direction: column;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: default;
  transition: padding-left 0.25s ease, background 0.25s ease;
}

.contact-row:first-child { border-top: 1px solid var(--line); }

.contact-row:hover {
  padding-left: 12px;
  background: var(--red-light);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.contact-row:hover .contact-icon { background: var(--red); }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

.contact-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.contact-val a {
  color: var(--black);
  transition: color 0.2s;
}
.contact-val a:hover { color: var(--red); }

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: 16px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,31,31,0.08);
}

.form-input::placeholder { color: #BABABA; }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235A5A5A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}

/* ── Meet the Team strip ────────────────────────────────────── */
.meet-team {
  background: var(--bg2);
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.meet-team-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.meet-team-text {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--ink);
  max-width: 560px;
  line-height: 1.5;
  margin: 0;
}

/* ── Contact page link ──────────────────────────────────────── */
.contact-page-link {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray);
  text-align: center;
}
.contact-page-link a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.contact-page-link a:hover { opacity: 0.7; }

/* ── WhatsApp CTA Strip ─────────────────────────────────────── */
.wa-strip {
  background: var(--red);
  padding: 32px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.wa-strip-text {
  font-family: 'Inter', var(--font-body), sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.wa-strip-btn {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-family: 'Inter', var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.wa-strip-btn:hover {
  opacity: 0.92;
}

@media (max-width: 768px) {
  .wa-strip {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .wa-strip-btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid #1E1E1E;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  color: #5A5A5A;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-links span {
  font-size: 13px;
  color: #5A5A5A;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

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

.footer-copy {
  font-size: 12px;
  color: #444;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #2A2A2A;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A5A5A;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ── Floating WhatsApp ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.5s var(--ease-out) 1.2s forwards;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive Tablet ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .services { padding: 80px 0; }
  .work { padding: 80px 0; }
  .process { padding: 80px 0; }
  .why { padding: 80px 0; }
  .pricing { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .cta-band { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .footer { padding-top: 60px; }
}

/* ============================================================
   MOBILE — comprehensive 768px overrides
   ============================================================ */
@media (max-width: 768px) {

  /* ── Section padding ──────────────────────────────────────── */
  .services,
  .process,
  .pricing,
  .contact,
  .work,
  .why,
  .testimonials,
  .cta-band { padding: 56px 0; }
  .footer { padding-top: 40px; }

  /* ── Hero ─────────────────────────────────────────────────── */
  .hero-inner   { padding-top: 20px; padding-bottom: 20px; }
  .hero-bg-number { display: none; }          /* prevents horizontal scroll */
  .hero-light-2   { display: none; }          /* reduce paint on small screens */
  .hero-light-1   { width: 100vw; height: 80vw; }

  /* Hero buttons — stack and stretch on very narrow screens */
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* ── Numbers band ─────────────────────────────────────────── */
  .num-figure { font-size: clamp(38px, 9vw, 52px); }
  .num-label  { font-size: 12px; }

  /* ── Process ──────────────────────────────────────────────── */
  .process-step { padding: 24px 20px; }
  .step-num     { font-size: 36px; }

  /* ── Why section ──────────────────────────────────────────── */
  .metric-card    { padding: 24px 20px; }
  .metric-value   { font-size: clamp(36px, 9vw, 52px); }
  .metrics-row    { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-right      { gap: 12px; }

  /* ── Pricing ──────────────────────────────────────────────── */
  .pricing-card { padding: 28px 20px; }

  /* ── CTA Band ─────────────────────────────────────────────── */
  .cta-bg-text { font-size: 30vw; }
  .cta-heading { font-size: clamp(40px, 10vw, 72px); }
  .cta-btns    { flex-direction: column; align-items: center; gap: 12px; }
  .btn-red-cta,
  .btn-ghost-white { width: 100%; max-width: 320px; justify-content: center; }

  /* ── Contact ──────────────────────────────────────────────── */
  .contact-desc { max-width: 100%; }
  .contact-row  { padding: 14px 0; }

  /* ── Footer ───────────────────────────────────────────────── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand { grid-column: auto; }

  /* ── Testimonials ─────────────────────────────────────────── */
  .testi-card { padding: 28px 20px; }

  /* ── Work cards ───────────────────────────────────────────── */
  .work-info { padding: 16px 18px 20px; }

  /* ── Floating WhatsApp ────────────────────────────────────── */
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }

  /* ── Typography scale ─────────────────────────────────────── */
  .section-title { font-size: clamp(36px, 9vw, 56px); }
  .cta-heading   { font-size: clamp(40px, 10vw, 64px); }

  /* ── Client logos ─────────────────────────────────────────── */
  .client-logos-row { gap: 16px; }
  .client-logo-box  { width: 90px; height: 36px; font-size: 10px; }

  /* ── Results section ──────────────────────────────────────── */
  .results { padding: 72px 0; }
  .results-grid { grid-template-columns: 1fr; gap: 16px; }
  .result-metrics { grid-template-columns: 1fr 1fr; }

  /* ── About page mobile ────────────────────────────────────── */
  .about-hero-inner    { padding-top: 24px; padding-bottom: 32px; }
  .about-hero-heading  { font-size: clamp(52px, 14vw, 80px); }
  .about-story-grid    { grid-template-columns: 1fr; gap: 32px; }
  .about-team-grid     { grid-template-columns: 1fr; gap: 20px; }
  .about-values-grid   { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-why-grid      { grid-template-columns: 1fr; gap: 20px; }
  .about-why-heading   { font-size: clamp(36px, 10vw, 64px); }
  .tool-pills          { gap: 8px; }
  .tool-pill           { font-size: 12px; padding: 6px 14px; }
  .about-tools-sub     { font-size: 14px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── About Hero ─────────────────────────────────────────────── */
.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 120px 0 80px;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-hero-heading {
  font-family: var(--font-head);
  font-size: clamp(72px, 14vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.about-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  max-width: 520px;
  line-height: 1.6;
  margin: 0;
}

/* ── Our Story ──────────────────────────────────────────────── */
.about-story {
  background: var(--bg);
  padding: 96px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.about-story-text { display: flex; flex-direction: column; gap: 0; }

.about-story-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--black);
  line-height: 1.1;
  margin: 16px 0 28px;
  letter-spacing: -0.01em;
}

.about-story-para {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin: 0 0 16px;
}
.about-story-para:last-child { margin-bottom: 0; }

/* Stats card */
.about-story-card {
  background: var(--black);
  border-radius: 4px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-stat { display: flex; flex-direction: column; gap: 6px; }

.about-stat-value {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.about-stat-num {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 72px);
  color: var(--white);
  line-height: 1;
}

.about-stat-sym {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--red);
  line-height: 1;
}

.about-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Team ───────────────────────────────────────────────────── */
.about-team {
  background: var(--off-white);
  padding: 96px 0;
}

.about-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

/* Founder cards */
.founder-card {
  border-radius: 4px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease-out);
}
.founder-card:hover { transform: translateY(-4px); }

.founder-card-dark { background: var(--black); }
.founder-card-red  { background: var(--red); }

.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.05em;
}

.founder-avatar-red   { background: var(--red);   color: var(--white); }
.founder-avatar-black { background: var(--black);  color: var(--white); }

.founder-name {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.founder-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.founder-badge-red   { background: rgba(204,31,31,0.25); color: var(--red); }
.founder-badge-black { background: rgba(0,0,0,0.25);     color: rgba(255,255,255,0.7); }

.founder-card-red .founder-badge-black {
  background: rgba(0,0,0,0.2);
  color: rgba(255,255,255,0.85);
}

.founder-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin: 0;
  flex: 1;
}

.founder-linkedin {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.founder-linkedin:hover { opacity: 1; }

/* ── Values ─────────────────────────────────────────────────── */
.about-values {
  background: var(--bg);
  padding: 96px 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.value-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 24px;
  color: var(--red);
  display: block;
}

.value-title {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--black);
}

.value-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* ── Tool Stack ─────────────────────────────────────────────── */
.about-tools {
  background: var(--off-white);
  padding: 96px 0;
  text-align: center;
}

.about-tools-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 480px;
  margin: 12px auto 48px;
  line-height: 1.6;
}

.tool-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tool-pill {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.tool-pill:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}

/* ── Why Work With Us band ──────────────────────────────────── */
.about-why-band {
  background: var(--black);
  padding: 96px 0;
}

.about-why-tag {
  color: rgba(255,255,255,0.45);
}

.about-why-heading {
  font-family: var(--font-head);
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 16px 0 56px;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.about-why-point {
  background: var(--black);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s;
}
.about-why-point:hover { background: #111; }

.about-why-point-title {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.about-why-point-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   CLIENT LOGO STRIP
   ============================================================ */
.client-logos {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.client-logos-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: 0.02em;
}

.client-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.client-logo-box {
  width: 120px;
  height: 44px;
  background: #F0F0F0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #AAAAAA;
  letter-spacing: 1px;
  transition: background 0.25s, color 0.25s;
}
.client-logo-box:hover {
  background: var(--bg3);
  color: #888;
}

/* ============================================================
   RESULTS / CASE STUDIES
   ============================================================ */
.results {
  background: var(--bg2);
  padding: 110px 0;
}

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

.result-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.result-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.result-tag-row { display: flex; }

.result-service-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 4px 10px;
  border-radius: 2px;
}

.result-client {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--black);
  margin: 0;
}

.result-challenge {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.result-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-metric-val {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--black);
  line-height: 1;
}

.result-metric-lbl {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}

.result-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--red);
  text-decoration: none;
  transition: opacity 0.2s;
}
.result-cta:hover { opacity: 0.7; }

/* ============================================================
   MOBILE RESPONSIVENESS
============================================================ */

@media (max-width: 768px) {
  
  /* Nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  
  /* Hero */
  .hero { 
    padding: 100px 5% 60px;
    text-align: center;
  }
  .hero h1 { 
    font-size: clamp(48px, 12vw, 80px);
    line-height: 0.95;
  }
  .hero-sub { font-size: 15px; }
  .hero-btns { 
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-btns a { width: 100%; text-align: center; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  
  /* All grids become single column */
  .services-grid { grid-template-columns: 1fr !important; }
  .portfolio-grid { grid-template-columns: 1fr !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .results-grid { grid-template-columns: 1fr !important; }
  .blog-grid { grid-template-columns: 1fr !important; }
  .team-grid { grid-template-columns: 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; }
  .faq-grid { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .about-grid { grid-template-columns: 1fr !important; }
  .donate-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  
  /* Section padding */
  section { padding: 60px 5% !important; }
  
  /* Typography */
  .section-title { font-size: clamp(36px, 10vw, 60px) !important; }
  .section-heading { font-size: clamp(36px, 10vw, 60px) !important; }
  
  /* CTA band */
  .cta-band { 
    flex-direction: column !important;
    text-align: center !important;
    gap: 24px !important;
  }
  .cta-band h2 { font-size: clamp(36px, 10vw, 60px) !important; }
  
  /* Ticker */
  .ticker { font-size: 11px; }
  
  /* Cards */
  .service-card { padding: 28px 20px !important; }
  .portfolio-card { padding: 24px 20px !important; }
  
  /* Footer */
  .footer-bottom { 
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px !important;
  }

  /* WhatsApp float */
  .wa-float { 
    bottom: 20px !important;
    right: 20px !important;
    width: 48px !important;
    height: 48px !important;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(40px, 11vw, 64px); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   MOBILE NAV — HAMBURGER + DROPDOWN
============================================================ */

/* Hamburger hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0A0A0A;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Animated X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown — hidden by default */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #E8E8E8;
  padding: 16px 24px 24px;
  z-index: 799;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0A0A0A;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #F0F0F0;
  display: block;
}

.mobile-nav-link:last-of-type {
  border-bottom: none;
}

.mobile-nav-cta {
  display: inline-block;
  margin-top: 16px;
  background: #CC1F1F;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 14px 24px;
  text-align: center;
  border-radius: 2px;
}

/* Show hamburger on mobile, hide desktop nav items */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links  { display: none !important; }
  .nav-cta    { display: none !important; }
  .btn-nav    { display: none !important; }

  /* Hero padding so content clears fixed nav */
  .hero       { padding-top: 90px !important; }
  .page-hero  { padding-top: 90px !important; }

  /* Mobile nav dropdown position */
  .mobile-nav-dropdown {
    top: 70px;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 799;
  }
}

/* ============================================================
   HERO HEADING MOBILE FIX
============================================================ */

@media (max-width: 768px) {

  /* Hero heading fix */
  .hero h1 {
    font-size: 52px !important;
    line-height: 0.95 !important;
    text-align: center !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    letter-spacing: 0px !important;
  }

  /* Remove any outline/stroke effect on mobile */
  .hero h1 * {
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
  }

  /* Hero tag line */
  .hero-eyebrow, .hero-tag, .hero-tagline {
    font-size: 10px !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Hero subheading */
  .hero-sub, .hero p {
    font-size: 14px !important;
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  .hero h1,
  .hero h1 span,
  .hero-heading,
  .hero-heading span,
  [class*="hero"] h1,
  [class*="hero"] h1 span {
    -webkit-text-stroke: 0px transparent !important;
    text-stroke: 0px transparent !important;
    text-shadow: none !important;
    paint-order: unset !important;
  }
}
