/* ═══════════════════════════════════════════════════════════
   SEKKERO WEB STUDIO — SHARED STYLESHEET
   Custom Web Development for Calgary Small Businesses
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --blue: #0066FF;
  --blue-dark: #0052CC;
  --blue-light: #4d8fff;
  --blue-glow: rgba(0, 102, 255, 0.22);
  --blue-subtle: rgba(0, 102, 255, 0.1);
  --bg: #06090f;
  --bg-2: #0a0e17;
  --card: rgba(255,255,255,0.03);
  --card-hover: rgba(0,102,255,0.04);
  --border: rgba(255,255,255,0.08);
  --border-blue: rgba(0,102,255,0.22);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --dim: #64748b;
  --success: #22c55e;
  --warn: #f59e0b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── BACKGROUND ── */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
  pointer-events: none;
}

.bg-glow-1 {
  position: fixed;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0,102,255,0.13), transparent 68%);
  top: -300px; right: -250px;
  z-index: -1; pointer-events: none;
}

.bg-glow-2 {
  position: fixed;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,102,255,0.07), transparent 68%);
  bottom: 5%; left: -200px;
  z-index: -1; pointer-events: none;
}

/* ── HEADER / NAV ── */
header {
  padding: 0 8%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(6,9,15,0.82);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--text);
  flex-shrink: 0;
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.logo span { color: var(--blue); }

nav { display: flex; align-items: center; gap: 32px; }

nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

nav a:hover { color: var(--text); }

nav a.active { color: var(--text); }
nav a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
}

.btn-nav {
  padding: 9px 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  font-size: 0.875rem;
}

.btn-nav:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--blue-glow);
}

.btn-primary {
  padding: 15px 28px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  font-size: 0.975rem;
  box-shadow: 0 8px 32px var(--blue-glow);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(0,102,255,0.38);
}

.btn-secondary {
  padding: 15px 28px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.975rem;
}

.btn-secondary:hover {
  border-color: rgba(0,102,255,0.45);
  color: var(--blue);
  background: var(--blue-subtle);
}

.btn-block { width: 100%; justify-content: center; }

/* ── SHARED SECTION STYLES ── */
section { padding: 100px 8%; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
  max-width: 660px;
  margin-bottom: 56px;
}

.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  gap: 64px;
}

.hero-left { max-width: 620px; flex-shrink: 0; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--blue-subtle);
  color: var(--blue);
  border: 1px solid var(--border-blue);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.4px;
}

.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}

h1 .accent { color: var(--blue); }

.hero-sub {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
  margin-bottom: 38px;
  max-width: 540px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }

.trust-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.trust-check {
  width: 16px; height: 16px;
  fill: var(--blue);
  flex-shrink: 0;
}

/* ── HERO VISUAL ── */
.hero-visual {
  flex: 1;
  max-width: 540px;
  position: relative;
}

/* ── HERO MULTI-DEVICE STAGE ── */
.hero-stage {
  position: relative;
  width: 100%;
  padding-bottom: 68px; /* room for phone overhang below desktop */
  perspective: 1400px;
}

.hero-stage::before {
  /* ambient glow behind the composition */
  content: '';
  position: absolute;
  inset: -10% -8% -10% -8%;
  background:
    radial-gradient(40% 60% at 70% 80%, rgba(176,141,61,0.16), transparent 70%),
    radial-gradient(45% 55% at 25% 30%, rgba(0,102,255,0.18), transparent 70%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.hero-desktop {
  width: 100%;
  position: relative;
  z-index: 2;
  animation: hero-float 7.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* trim Empire content slightly tighter for the hero scale */
.hero-desktop .emp-h { font-size: 1.45rem; margin-bottom: 12px; }
.hero-desktop .emp-p { font-size: 0.68rem; margin-bottom: 16px; max-width: 240px; }
.hero-desktop .emp-btns { margin-bottom: 0; }

/* Phone */
.hero-phone {
  position: absolute;
  bottom: 0;
  right: -18px;
  width: 32%;
  aspect-ratio: 9 / 19;
  background: #050810;
  border-radius: 30px;
  border: 7px solid #0e1320;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
  transform: rotate(5deg);
  transform-origin: bottom right;
  z-index: 3;
  animation: hero-float-phone 7.5s ease-in-out infinite;
  animation-delay: -3s;
  will-change: transform;
}

@keyframes hero-float-phone {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-10px); }
}

.hero-phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 13px;
  background: #050810;
  border-radius: 0 0 11px 11px;
  z-index: 2;
}

.hero-phone-screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #051912 0%, #0c2820 100%);
  padding: 28px 10px 12px;
  overflow: hidden;
}

/* Compact OnCourse content for the small phone screen */
.hero-phone .oc-status-bar {
  padding: 6px 9px;
  margin-bottom: 9px;
  border-radius: 9px;
}
.hero-phone .oc-status-bar .label { font-size: 0.55rem; gap: 5px; letter-spacing: 0.2px; }
.hero-phone .oc-status-bar .label::before { width: 5px; height: 5px; }
.hero-phone .oc-map { height: 78px; margin-bottom: 9px; border-radius: 9px; }
.hero-phone .oc-map::before { background-size: 14px 14px; }
.hero-phone .oc-map-pin {
  width: 11px; height: 11px;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.22), 0 0 12px rgba(34,197,94,0.6);
}
.hero-phone .oc-map-pin::after {
  font-size: 0.46rem;
  padding: 2px 5px;
  top: 16px;
  letter-spacing: 0.1px;
}
.hero-phone .oc-order { padding: 7px 9px; border-radius: 9px; }
.hero-phone .oc-order-row { padding: 3px 0; font-size: 0.54rem; }
.hero-phone .oc-order-row.total { padding-top: 6px; margin-top: 3px; }
.hero-phone .oc-order-row.total .price { font-size: 0.62rem; }

@media (prefers-reduced-motion: reduce) {
  .hero-desktop,
  .hero-phone,
  .pulse-dot,
  .live-dot { animation: none !important; }
}

.project-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.win-dots { display: flex; gap: 6px; margin-bottom: 20px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.mock-browser {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.mock-navbar {
  background: rgba(0,102,255,0.14);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,102,255,0.18);
}

.mock-logo { font-size: 0.72rem; font-weight: 800; color: #4fa3ff; }

.mock-cta {
  background: var(--blue);
  color: #fff;
  font-size: 0.62rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
}

.mock-hero {
  padding: 20px 14px 20px;
  background: linear-gradient(130deg, #06090f 0%, #0d1526 100%);
}

.mock-h { font-size: 1rem; font-weight: 800; line-height: 1.2; margin-bottom: 7px; color: #fff; }
.mock-p { font-size: 0.63rem; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.mock-btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.63rem;
  padding: 6px 13px;
  border-radius: 5px;
  font-weight: 700;
}

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

.metric-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 13px 11px;
}

.metric-val {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 3px;
}

.metric-label { font-size: 0.66rem; color: var(--muted); }

.float-badge {
  position: absolute;
  background: rgba(15,20,35,0.88);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 14px;
  backdrop-filter: blur(16px);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.badge-tl { top: 4px; right: 16px; }
.badge-br { bottom: 4px; left: 16px; }

.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

/* ── FEATURES BAR ── */
.features-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  padding: 0 8%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 11px;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--card-hover); }

.feature-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--blue-subtle);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.feature-item h4 { font-size: 0.88rem; font-weight: 700; }
.feature-item p { font-size: 0.76rem; color: var(--muted); line-height: 1.55; }

/* ── SOCIAL PROOF BAR ── */
.proof-bar {
  padding: 36px 8%;
  border-bottom: 1px solid var(--border);
  background: rgba(0,102,255,0.025);
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.proof-item { display: flex; align-items: center; gap: 8px; }
.proof-item strong { color: var(--text); font-weight: 700; }
.proof-item svg { color: var(--blue); flex-shrink: 0; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 30px;
  transition: all 0.24s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,102,255,0.3);
  background: var(--card-hover);
  box-shadow: 0 24px 64px rgba(0,0,0,0.32), 0 0 0 1px rgba(0,102,255,0.08);
}

.service-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--blue-subtle);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
}

.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }

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

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.industry-tag {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 600;
  transition: gap 0.2s;
  margin-top: auto;
}

.learn-more:hover { gap: 9px; }

/* ── PROCESS ── */
.process-section {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-inner { text-align: center; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
}

.process-step { padding: 12px 8px 8px; position: relative; }

.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 22px var(--blue-glow);
  position: relative;
  z-index: 1;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 39px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(0,102,255,0.15));
  z-index: 0;
}

.process-step:last-child::after { display: none; }

.process-step h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; max-width: 170px; margin: 0 auto; }

/* ── FOUNDER SECTION ── */
.founder-section {
  border-bottom: 1px solid var(--border);
}

.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}

.founder-portrait {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,102,255,0.18), rgba(0,102,255,0.04));
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}

.founder-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,102,255,0.25), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(0,102,255,0.15), transparent 60%);
}

.founder-initials {
  position: relative;
  font-size: 6rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -4px;
  z-index: 1;
}

.founder-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.founder-content h2 { margin-bottom: 18px; }

.founder-content .lead {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.6;
}

.founder-content p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.78;
  margin-bottom: 14px;
}

.founder-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.founder-meta-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--muted);
}

.founder-meta-item strong { color: var(--text); font-weight: 700; }
.founder-meta-item svg { color: var(--blue); }

/* ── INDUSTRIES STRIP ── */
.industries-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  padding: 60px 8%;
  text-align: center;
}

.industries-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.industries-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 980px;
  margin: 0 auto;
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
  transition: all 0.2s;
}

.industry-chip:hover {
  border-color: var(--border-blue);
  background: var(--blue-subtle);
  color: var(--blue);
}

.industry-chip svg { color: var(--blue); flex-shrink: 0; }

/* ── RESULTS ── */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

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

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.stat-val {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label { font-size: 0.82rem; color: var(--muted); }

.testimonial-card {
  background: rgba(0,102,255,0.07);
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: 22px;
  padding: 38px;
}

.quote-mark {
  font-size: 4.5rem;
  line-height: 0.8;
  color: var(--blue);
  opacity: 0.35;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 26px;
  font-style: italic;
}

.author-row { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.92rem; margin-bottom: 2px; }
.author-title { font-size: 0.8rem; color: var(--muted); margin-bottom: 5px; }

.stars { display: flex; gap: 2px; }
.star { color: var(--warn); font-size: 0.88rem; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 30px 34px;
  display: flex;
  flex-direction: column;
  transition: all 0.24s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-blue);
  box-shadow: 0 24px 64px rgba(0,0,0,0.32);
}

.price-card.popular {
  border-color: rgba(0,102,255,0.5);
  background: linear-gradient(180deg, rgba(0,102,255,0.07), rgba(0,102,255,0.015));
  box-shadow: 0 20px 64px rgba(0,102,255,0.18);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 6px 22px var(--blue-glow);
}

.price-name { font-size: 0.78rem; color: var(--blue); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.price-tagline { color: var(--muted); font-size: 0.88rem; margin-bottom: 22px; line-height: 1.6; }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 26px;
}

.price-prefix { font-size: 0.88rem; color: var(--muted); }
.price-val { font-size: 2.6rem; font-weight: 900; letter-spacing: -1.5px; }
.price-suffix { font-size: 0.88rem; color: var(--muted); }

.price-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.price-features li svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.price-note {
  margin-top: 32px;
  padding: 20px 26px;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: 14px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-note strong { color: var(--text); }

.care-plan {
  margin-top: 24px;
  background: var(--card);
  border: 1px solid var(--border-blue);
  border-radius: 18px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.care-plan-text h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.care-plan-text p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

.care-plan-price {
  text-align: right;
  flex-shrink: 0;
}

.care-plan-price .amt { font-size: 1.8rem; font-weight: 900; color: var(--blue); line-height: 1; }
.care-plan-price .per { font-size: 0.8rem; color: var(--muted); }

/* ── FAQ ── */
.faq-grid { max-width: 880px; margin: 0 auto; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}

.faq-item:hover { border-color: var(--border-blue); }
.faq-item[open] { border-color: var(--border-blue); background: rgba(0,102,255,0.025); }

.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item-content {
  padding: 0 26px 22px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.78;
}

/* ── TECH STACK ── */
.tech-section {
  border-top: 1px solid var(--border);
  padding: 60px 8%;
}

.tech-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.stack-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}

.stack-pill:hover {
  border-color: rgba(0,102,255,0.3);
  color: var(--text);
  background: var(--blue-subtle);
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  border-top: 1px solid rgba(0,102,255,0.15);
  background: linear-gradient(180deg, rgba(0,102,255,0.08) 0%, transparent 100%);
}

.cta-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 38px;
  line-height: 1.75;
}

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

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 90px 8% 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0,102,255,0.05), transparent);
}

.page-hero .hero-tag { margin-bottom: 22px; }

.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 18px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
  max-width: 680px;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb svg { color: var(--dim); }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px;
}

.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(0,102,255,0.03);
  box-shadow: 0 0 0 3px var(--blue-subtle);
}

.form-row textarea { resize: vertical; min-height: 130px; }

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='2 4 6 8 10 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  margin-bottom: 18px;
}

.contact-info-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.contact-info-card .info-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 22px; line-height: 1.65; }

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.info-row:first-of-type { border-top: none; padding-top: 0; }

.info-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue-subtle);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.info-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; margin-bottom: 3px; }
.info-val { font-size: 0.95rem; font-weight: 600; }
.info-val a { color: var(--text); transition: color 0.2s; }
.info-val a:hover { color: var(--blue); }

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.portfolio-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.24s ease;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,102,255,0.3);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.portfolio-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0a1325, #06090f);
  border-bottom: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
}

.portfolio-thumb-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
}

.portfolio-thumb-label {
  font-size: 0.7rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.portfolio-thumb-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.portfolio-thumb-meta { font-size: 0.84rem; color: var(--muted); }

.portfolio-body { padding: 26px 28px 28px; }
.portfolio-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--blue-subtle);
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.portfolio-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.portfolio-card .desc { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; }

.portfolio-results {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.portfolio-result strong { display: block; font-size: 1.3rem; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.portfolio-result span { font-size: 0.74rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   FEATURED PROJECT ROWS (Portfolio)
   ═══════════════════════════════════════════════════════════ */

.featured-project {
  padding: 90px 8%;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.featured-project:nth-child(even) { background: rgba(255,255,255,0.01); }

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.featured-project.reverse .featured-grid {
  grid-template-columns: 1.05fr 1fr;
  direction: rtl;
}

.featured-project.reverse .featured-grid > * { direction: ltr; }

.featured-meta { display: flex; flex-direction: column; }

.featured-meta h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 14px;
}

.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--blue-subtle);
  color: var(--blue);
  border: 1px solid var(--border-blue);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 22px;
}

.featured-meta .desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 24px;
}

.featured-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.featured-stack .pill {
  font-size: 0.72rem;
  padding: 5px 11px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}

.featured-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.featured-result strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.featured-result span {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.featured-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.live-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
  transition: gap 0.2s;
}

.live-link:hover { gap: 11px; }

.live-link::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* ── MOCK PREVIEW CONTAINER ── */
.mock-preview {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 50px 120px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.04);
  aspect-ratio: 4/3;
}

.mock-chrome {
  height: 36px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
}

.mock-chrome .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.mock-chrome .url-bar {
  flex: 1;
  margin-left: 14px;
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  text-align: center;
  letter-spacing: 0.2px;
}

.mock-screen { padding: 24px; height: calc(100% - 36px); position: relative; overflow: hidden; }

/* ════════════════════════════════
   ON-COURSE PREVIEW (Golf F&B App)
   ════════════════════════════════ */

.mock-oncourse { background: linear-gradient(135deg, #051912 0%, #0c2820 100%); }

.mock-oncourse .mock-chrome { background: rgba(0,0,0,0.4); border-bottom-color: rgba(76,175,80,0.15); }
.mock-oncourse .url-bar { color: rgba(124,217,140,0.7); }

.oc-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 11px 14px;
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.28);
  border-radius: 12px;
}

.oc-status-bar .label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #7dd58c;
  letter-spacing: 0.4px;
}

.oc-status-bar .label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: pulse 1.5s infinite;
}

.oc-status-bar .cart-num {
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

.oc-map {
  position: relative;
  height: 110px;
  background:
    radial-gradient(circle at 30% 40%, rgba(76,175,80,0.25), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(76,175,80,0.15), transparent 50%),
    linear-gradient(135deg, #0a2018, #0d2a1c);
  border: 1px solid rgba(76,175,80,0.18);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.oc-map::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(76,175,80,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,175,80,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
}

.oc-map-pin {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(34,197,94,0.22), 0 0 18px rgba(34,197,94,0.6);
  animation: pulse 1.8s infinite;
}

.oc-map-pin::after {
  content: 'Hole 7 · 220yd';
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 700;
  color: #7dd58c;
  background: rgba(0,0,0,0.7);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.oc-order {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 14px;
}

.oc-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.78rem;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.oc-order-row:last-child { border-bottom: none; padding-top: 9px; margin-top: 4px; border-top: 1px solid rgba(76,175,80,0.25); }

.oc-order-row .item { color: rgba(255,255,255,0.85); font-weight: 500; }
.oc-order-row .price { color: #7dd58c; font-weight: 700; font-variant-numeric: tabular-nums; }
.oc-order-row.total .item { font-weight: 800; color: #fff; }
.oc-order-row.total .price { color: #22c55e; font-size: 0.92rem; }

/* ════════════════════════════════
   FAIRWAY OPS TECH PREVIEW (Holding-Company Brand Site)
   ════════════════════════════════ */

.mock-fairwayops {
  background: linear-gradient(160deg, #1C2B1E 0%, #131e15 100%);
  position: relative;
  overflow: hidden;
}

.mock-fairwayops::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 420px 300px at -5% 35%, rgba(92,173,34,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.fwo-eyebrow {
  position: relative;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #82CE4A;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fwo-eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: #5CAD22;
}

.fwo-headline {
  position: relative;
  font-size: 1.15rem;
  font-weight: 500;
  color: #EDF5E8;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 12px;
  max-width: 95%;
}

.fwo-subtitle {
  position: relative;
  font-size: 0.62rem;
  color: #809A7A;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 92%;
}

.fwo-divider {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 0 14px;
}

.fwo-product-card {
  position: relative;
  background: #243428;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fwo-product-meta { flex: 1; min-width: 0; }

.fwo-product-badge {
  display: inline-block;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(92,173,34,0.18);
  color: #82CE4A;
  margin-bottom: 6px;
  font-weight: 700;
}

.fwo-product-name {
  font-size: 0.98rem;
  font-weight: 500;
  color: #EDF5E8;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.fwo-product-link {
  font-size: 0.58rem;
  color: #82CE4A;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 0.5px solid rgba(56,108,21,0.6);
  padding-bottom: 1px;
}

.fwo-product-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #1E3A22;
  color: #82CE4A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 1px solid rgba(92,173,34,0.22);
  flex-shrink: 0;
}

/* ════════════════════════════════
   TAP N GO PREVIEW (NFC tap-to-order)
   ════════════════════════════════ */

.mock-tapngo {
  background: linear-gradient(135deg, #0a0a0c 0%, #15151a 60%, #0c0c10 100%);
  position: relative;
}

.mock-tapngo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 55%, rgba(82,255,168,0.18), transparent 55%);
  pointer-events: none;
}

.tng-phone {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 168px;
  height: 280px;
  background: linear-gradient(160deg, #1a1a20, #0c0c10);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.tng-screen {
  flex: 1;
  background: linear-gradient(180deg, #0a0a0c, #050507);
  border-radius: 18px;
  padding: 18px 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tng-brand {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #52ffa8;
  margin-bottom: 18px;
}

.tng-brand span { color: #fff; }

.tng-nfc {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
}

.tng-nfc::before,
.tng-nfc::after,
.tng-nfc-wave {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #52ffa8;
  border-radius: 50%;
  opacity: 0;
  animation: tng-pulse 2.4s infinite;
}

.tng-nfc::after { animation-delay: 0.8s; }
.tng-nfc-wave { animation-delay: 1.6s; }

@keyframes tng-pulse {
  0% { opacity: 0.9; transform: scale(0.3); }
  100% { opacity: 0; transform: scale(1.4); }
}

.tng-nfc-core {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, #52ffa8 0%, #1ed783 70%);
  box-shadow: 0 0 28px rgba(82,255,168,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.tng-nfc-core svg { width: 18px; height: 18px; color: #051912; }

.tng-h {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.tng-p { font-size: 0.62rem; color: rgba(255,255,255,0.55); line-height: 1.45; max-width: 130px; }

.tng-badge {
  position: absolute;
  background: rgba(20,20,26,0.92);
  border: 1px solid rgba(82,255,168,0.3);
  border-radius: 10px;
  padding: 9px 12px;
  backdrop-filter: blur(10px);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.tng-badge .icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(82,255,168,0.18);
  color: #52ffa8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tng-badge.tl { top: 30px; left: 22px; }
.tng-badge.br { bottom: 30px; right: 22px; }
.tng-badge strong { color: #fff; display: block; font-weight: 700; font-size: 0.72rem; }
.tng-badge span { color: rgba(255,255,255,0.55); font-size: 0.62rem; }

/* ════════════════════════════════
   EMPIRE BANQUET PREVIEW (Elegant)
   ════════════════════════════════ */

.mock-empire {
  background: linear-gradient(180deg, #15130f 0%, #1c1813 100%);
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.mock-empire .mock-chrome {
  background: rgba(176,141,61,0.05);
  border-bottom-color: rgba(176,141,61,0.18);
}

.mock-empire .url-bar { color: rgba(201,169,97,0.7); font-family: 'Inter', sans-serif; }

.emp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(176,141,61,0.18);
  margin-bottom: 22px;
}

.emp-brand {
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  color: #fff;
  font-weight: 400;
}

.emp-brand span { color: #c9a961; }

.emp-nav {
  display: flex;
  gap: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
}

.emp-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #b08d3d;
  margin-bottom: 14px;
}

.emp-h {
  font-size: 1.65rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.emp-h em { font-style: italic; color: #c9a961; }

.emp-p {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 18px;
  max-width: 280px;
  line-height: 1.6;
}

.emp-btns {
  display: flex;
  gap: 9px;
  margin-bottom: 18px;
}

.emp-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  font-weight: 500;
}

.emp-btn.gold { background: #b08d3d; color: #fff; }
.emp-btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }

.emp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(176,141,61,0.18);
  padding-top: 16px;
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
}

.emp-stats div { text-align: center; }
.emp-stats div + div { border-left: 1px solid rgba(176,141,61,0.18); }

.emp-stats .v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: #c9a961;
  font-weight: 300;
  line-height: 1;
}

.emp-stats .l {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
}

/* ── ABOUT VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.24s ease;
}

.value-card:hover { border-color: var(--border-blue); background: var(--card-hover); }

.value-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--blue-subtle);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}

.value-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.72; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 8% 36px;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.72;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 11px;
  line-height: 1.55;
}

.contact-item svg { color: var(--blue); flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--dim);
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── 404 ── */
.error-section {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5%;
}

.error-section .big {
  font-size: clamp(6rem, 16vw, 12rem);
  font-weight: 900;
  letter-spacing: -8px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 8px 60px var(--blue-glow);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { flex-direction: column; align-items: flex-start; padding-top: 60px; padding-bottom: 60px; }
  .hero-visual { max-width: 560px; width: 100%; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:nth-child(3n) { border-right: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step::after { display: none; }
  .results-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .founder-portrait { max-width: 280px; margin: 0 auto; }
  .founder-meta { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .featured-grid,
  .featured-project.reverse .featured-grid { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
  .featured-project { padding: 60px 5%; }
  .mock-preview { aspect-ratio: 4/3; max-width: 540px; margin: 0 auto; width: 100%; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  header { padding: 0 5%; }
  nav { display: none; }
  header > .btn-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 52px 5% 52px; }
  section { padding: 70px 5%; }
  .features-bar, .industries-strip, .proof-bar { padding-left: 5%; padding-right: 5%; }
  .tech-section { padding: 52px 5%; }
  .page-hero { padding: 60px 5% 50px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 5% 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid.cols-2 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .proof-inner { gap: 28px; font-size: 0.78rem; }
  .care-plan { flex-direction: column; align-items: flex-start; }
  .care-plan-price { text-align: left; }
  h1 { letter-spacing: -1.5px; }
  .contact-form { padding: 26px; }
  /* Hero stage: tighten phone overhang on mobile */
  .hero-stage { padding-bottom: 48px; }
  .hero-phone { width: 30%; right: -8px; }
  .hero-desktop .emp-h { font-size: 1.2rem; }
  .hero-desktop .emp-p { font-size: 0.62rem; max-width: 200px; margin-bottom: 12px; }
  .hero-desktop .emp-btn { font-size: 0.52rem; padding: 6px 10px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .featured-results { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .featured-result strong { font-size: 1.25rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .testimonial-card { padding: 28px 22px; }
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: rgba(6,9,15,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 24px 5%;
  flex-direction: column;
  gap: 4px;
}

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

.mobile-nav a {
  padding: 14px 8px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover { color: var(--text); }

.mobile-nav .btn { margin-top: 12px; justify-content: center; }
