/* =============================================
   SIGMATECHGH — Redesigned Stylesheet
   Direction: Luxury Editorial / Premium Minimal
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Palette: Pure white · Warm charcoal · Bronze gold accent
============================================= */

:root {
  --white:        #FFFFFF;
  --off-white:    #FAFAF8;
  --warm-grey:    #F0EDE8;
  --border:       #E8E4DE;
  --border-mid:   #D4CFC8;
  --text-dark:    #1A1A1A;
  --text-body:    #3D3A36;
  --text-muted:   #6B6760;
  --text-faint:   #9B9792;
  --accent:       #C9A84C;
  --accent-dark:  #A8882E;
  --accent-light: #F8F2E4;
  --charcoal:     #1C1C2E;
  --charcoal-mid: #2D2D40;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --nav-height:   72px;
  --section-pad:  96px;
  --ease:         cubic-bezier(0.25, 0.1, 0.25, 1);
  --trans:        0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  --trans-slow:   0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}

/* ── Buttons ─────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--charcoal);
  padding: 14px 32px;
  border: 1.5px solid var(--charcoal);
  cursor: pointer;
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: transparent;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color var(--trans), color var(--trans), transform var(--trans);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-dark {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: transparent;
  padding: 14px 32px;
  border: 1.5px solid var(--border-mid);
  cursor: pointer;
  transition: border-color var(--trans), color var(--trans);
}
.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(26,26,26,0.06);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 46px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  transition: color var(--trans);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 14px; right: 14px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--text-dark); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-store { color: var(--accent) !important; font-weight: 600 !important; }
.nav-store::after { background: var(--accent) !important; }
.nav-cta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--charcoal);
  padding: 10px 22px;
  margin-left: 10px;
  border: 1.5px solid var(--charcoal);
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
}
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-dark);
  transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 60%, rgba(201,168,76,0.07) 0%, transparent 55%),
              radial-gradient(circle at 85% 15%, rgba(255,255,255,0.02) 0%, transparent 45%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.18), transparent);
  pointer-events: none;
}
.hero-bg-grid { display: none; }
.hero-content {
  padding: 0 72px 0 calc((100vw - 1180px)/2 + 32px);
  position: relative; z-index: 1;
}
.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 400;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-accent { color: var(--accent); font-style: italic; font-weight: 300; }
.hero-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  max-width: 380px;
  margin-bottom: 44px;
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-btn-mobile { display: none; }
.hero-btn-desktop { display: inline-block; }

/* Hero right — editorial */
.hero-visual {
  padding: 0 calc((100vw - 1180px)/2 + 32px) 0 72px;
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.hero-card { display: none; }
.hero-editorial { display: flex; flex-direction: column; gap: 32px; }
.hero-editorial-number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 11vw, 10rem);
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  margin-bottom: -16px;
}
.hero-editorial-divider {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}
.hero-editorial-stats { display: flex; flex-direction: column; gap: 24px; }
.hero-editorial-stat {}
.hero-editorial-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.hero-editorial-stat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-editorial-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  border-left: 1px solid rgba(201,168,76,0.25);
  padding-left: 18px;
  max-width: 300px;
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex;
  align-items: stretch;
}
.stat-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 20px;
  gap: 6px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; }
.sb-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
}
.sb-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider { display: none; }

/* ══════════════════════════════════════
   WHY SECTION
══════════════════════════════════════ */
.why-section { padding: var(--section-pad) 0; background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.why-card {
  background: var(--white);
  padding: 48px 40px;
  transition: background var(--trans);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.why-card:hover { background: var(--accent-light); }
.why-card:hover::after { transform: scaleX(1); }
.why-num {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.why-card p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
}

/* ══════════════════════════════════════
   HOW WE WORK
══════════════════════════════════════ */
.how-section { padding: var(--section-pad) 0; background: var(--charcoal); }
.how-section .section-label { color: var(--accent); }
.how-section .section-title { color: var(--white); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.how-step { padding-right: 40px; }
.how-step:last-child { padding-right: 0; }
.how-step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}
.how-connector {
  width: 100%;
  height: 1px;
  background: rgba(201,168,76,0.18);
  margin-bottom: 22px;
  position: relative;
}
.how-connector::after {
  content: '';
  position: absolute;
  right: -5px; top: -4px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
}
.how-connector.last { background: transparent; }
.how-connector.last::after { display: none; }
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.how-step p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-weight: 300;
}

/* ══════════════════════════════════════
   SERVICES OVERVIEW
══════════════════════════════════════ */
.services-overview { padding: var(--section-pad) 0; background: var(--white); }
.services-list { border-top: 1px solid var(--border); }
.service-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  transition: padding var(--trans-slow), background var(--trans);
  color: var(--text-dark);
  cursor: pointer;
}
.service-item:hover {
  padding-left: 10px;
  padding-right: 10px;
  background: var(--off-white);
}
.si-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}
.si-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  transition: color var(--trans);
}
.service-item:hover .si-content h3 { color: var(--accent-dark); }
.si-content p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}
.si-arrow {
  font-size: 1rem;
  color: var(--accent);
  opacity: 0;
  transition: opacity var(--trans), transform var(--trans);
}
.service-item:hover .si-arrow { opacity: 1; transform: translateX(4px); }

/* ══════════════════════════════════════
   TECH STRIP
══════════════════════════════════════ */
.tech-strip {
  background: var(--off-white);
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tech-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 28px;
}
.tech-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  color: var(--text-faint);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 84px;
  transition: color var(--trans), border-color var(--trans), transform var(--trans);
}
.tech-item:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.tech-item span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  background: var(--charcoal);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  font-style: italic;
  letter-spacing: -0.01em;
}
.cta-text p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  background: var(--charcoal);
  padding: calc(var(--nav-height) + 80px) 0 68px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(201,168,76,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .hero-label { margin-bottom: 14px; color: var(--accent); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.page-hero-sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  font-weight: 300;
  line-height: 1.85;
}

/* ══════════════════════════════════════
   SERVICES DETAIL
══════════════════════════════════════ */
.services-detail { padding: var(--section-pad) 0; background: var(--white); }
.service-card-full {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 52px;
  align-items: start;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.service-card-full:last-child { border-bottom: none; }
.scf-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  padding-top: 4px;
}
.scf-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.scf-content p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 22px;
  font-weight: 300;
}
.service-features { display: flex; flex-direction: column; gap: 9px; list-style: none; }
.service-features li {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
  font-weight: 400;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--accent);
}

/* Compare table */
.compare-section { padding: var(--section-pad) 0; background: var(--off-white); }
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); }
.compare-table { width: 100%; min-width: 680px; background: var(--white); }
.ct-header {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
  background: var(--charcoal);
}
.ct-feature-col { padding: 20px 22px; }
.ct-plan {
  padding: 18px 10px;
  display: flex; flex-direction: column;
  align-items: center; gap: 5px;
  border-left: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.ct-plan.highlight { background: var(--accent); }
.ct-badge {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 2px 7px;
}
.ct-plan-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.ct-plan-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ct-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
}
.ct-row:hover { background: var(--off-white); }
.ct-feature {
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-body);
  display: flex; align-items: center;
}
.ct-cell {
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--border);
  padding: 14px 8px;
}
.ct-cell.highlight {
  background: rgba(201,168,76,0.03);
  border-left-color: rgba(201,168,76,0.12);
}
.ct-yes { color: #2D8C4E; font-size: 0.88rem; font-weight: 600; }
.ct-no { color: var(--text-faint); font-size: 0.88rem; }
.ct-footer-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
  border-top: 2px solid var(--border);
  background: var(--off-white);
}
.ct-footer-row .ct-feature { padding: 18px 22px; }
.ct-footer-row .ct-cell { padding: 18px 8px; }
.ct-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  border: 1px solid var(--border-mid);
  padding: 7px 11px;
  transition: color var(--trans), border-color var(--trans);
  white-space: nowrap;
}
.ct-btn:hover { color: var(--accent-dark); border-color: var(--accent); }
.ct-btn.accent {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
.ct-btn.accent:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-main { padding: var(--section-pad) 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-logo-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 52px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.about-logo-large { width: 200px; object-fit: contain; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  background: var(--border);
  gap: 1px;
}
.stat-item { background: var(--white); padding: 18px 10px; text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--accent-dark);
  margin-bottom: 3px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-text .section-title { margin-bottom: 18px; }
.about-text p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
  font-weight: 300;
}

.values-section { padding: var(--section-pad) 0; background: var(--charcoal); }
.values-section .section-label { color: var(--accent); }
.values-section .section-title { color: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
}
.value-card {
  background: var(--charcoal);
  padding: 38px 26px;
  transition: background var(--trans);
  position: relative;
}
.value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.value-card:hover { background: var(--charcoal-mid); }
.value-card:hover::after { transform: scaleX(1); }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.value-card p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-weight: 300;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section { padding: var(--section-pad) 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 88px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 14px; }
.contact-info > p {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 36px;
  font-weight: 300;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.cd-item { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
  flex-shrink: 0;
}
.cd-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 3px;
}
.cd-value {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--trans);
}
.cd-value:hover { color: var(--accent-dark); }
.response-note {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--off-white);
  border-left: 2px solid var(--accent);
  padding: 12px 16px;
  font-weight: 300;
  line-height: 1.65;
}
.response-note strong { color: var(--text-dark); font-weight: 500; }

.contact-solo-section { padding: var(--section-pad) 0 80px; background: var(--white); }
.contact-solo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 36px;
}
.contact-solo-card {
  background: var(--white);
  padding: 48px 28px;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: background var(--trans);
}
.contact-solo-card:hover { background: var(--accent-light); }
.cd-icon-lg {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
  flex-shrink: 0; margin-bottom: 4px;
}
.csc-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.csc-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--trans);
  line-height: 1.3;
}
.csc-value:hover { color: var(--accent-dark); }
.contact-response-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 13px 22px;
  max-width: 380px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.65;
}
.contact-response-note strong { color: var(--text-dark); font-weight: 500; }

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
.contact-form-wrap,
.order-form-wrap,
.quote-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px 40px;
}
.quote-section { padding: 72px 0 var(--section-pad); background: var(--off-white); }
.quote-form-wrap { max-width: 720px; margin: 0 auto; }
.form-header { margin-bottom: 30px; }
.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.form-header p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 7px;
}
.required { color: var(--accent-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 11px 13px;
  outline: none;
  transition: border-color var(--trans), background var(--trans);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  font-weight: 400;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); font-weight: 300; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); background: var(--white); }
.form-group input.error,
.form-group textarea.error,
.form-group select.error { border-color: #C0392B; }
.field-error { font-family: var(--font-body); font-size: 0.7rem; color: #C0392B; margin-top: 4px; min-height: 13px; }
.form-group textarea { resize: vertical; min-height: 115px; }
.select-wrap { position: relative; }
.select-wrap select { padding-right: 34px; cursor: pointer; }
.select-arrow { position: absolute; right: 11px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.btn-submit {
  width: 100%;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1.5px solid var(--charcoal);
  cursor: pointer;
  margin-top: 6px;
  transition: background var(--trans), border-color var(--trans);
}
.btn-submit:hover:not(:disabled) { background: var(--accent); border-color: var(--accent); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-success { text-align: center; padding: 44px 20px; }
.fs-icon { color: #2D8C4E; margin-bottom: 14px; display: flex; justify-content: center; }
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-success p { font-family: var(--font-body); font-size: 0.86rem; color: var(--text-muted); font-weight: 300; }
.form-error-msg { text-align: center; padding: 16px; background: #FDF2F2; border: 1px solid #E8BEBE; margin-top: 12px; }
.form-error-msg p { font-family: var(--font-body); font-size: 0.82rem; color: #8B2020; }
.form-error-msg a { color: var(--accent-dark); text-decoration: underline; }

/* FAQ */
.faq-section { padding: var(--section-pad) 0; background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; border: 1px solid var(--border); }
.faq-item { background: var(--white); border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--trans);
}
.faq-question:hover, .faq-question[aria-expanded="true"] { color: var(--accent-dark); }
.faq-icon { font-size: 1.1rem; font-weight: 300; color: var(--accent); flex-shrink: 0; transition: transform var(--trans); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s var(--ease); padding: 0 22px; }
.faq-answer.open { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--charcoal); padding: 68px 0 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { height: 46px; width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-brand p { font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.28); line-height: 1.8; max-width: 250px; font-weight: 300; }
.footer-nav h4, .footer-contact h4 { font-family: var(--font-body); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 16px; }
.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a, .footer-contact a { font-family: var(--font-body); font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 300; transition: color var(--trans); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { font-family: var(--font-body); font-size: 0.7rem; color: rgba(255,255,255,0.18); text-align: center; letter-spacing: 0.05em; font-weight: 300; }

/* ══════════════════════════════════════
   WHATSAPP
══════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  background: #25D366; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.32);
  transition: transform var(--trans), box-shadow var(--trans);
}
.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.42); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   404
══════════════════════════════════════ */
.not-found-section {
  min-height: calc(100vh - var(--nav-height) - 260px);
  display: flex; align-items: center;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  background: var(--white);
}
.not-found-inner { display: flex; align-items: center; gap: 52px; }
.nf-code { font-family: var(--font-display); font-size: clamp(5rem, 13vw, 9rem); font-weight: 300; color: var(--accent); opacity: 0.12; line-height: 1; flex-shrink: 0; letter-spacing: -0.04em; }
.nf-divider { width: 1px; height: 130px; background: var(--border); flex-shrink: 0; }
.nf-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 500; color: var(--text-dark); margin-bottom: 12px; letter-spacing: -0.01em; }
.nf-sub { font-family: var(--font-body); font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; max-width: 380px; margin-bottom: 26px; font-weight: 300; }
.nf-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.nf-links p { font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 9px; }
.nf-links ul { display: flex; gap: 16px; flex-wrap: wrap; }
.nf-links a { font-family: var(--font-body); font-size: 0.84rem; color: var(--accent-dark); transition: opacity var(--trans); }
.nf-links a:hover { opacity: 0.6; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: calc(var(--nav-height) + 60px) 0 68px; text-align: center; }
  .hero-content { padding: 0 40px; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .how-connector { display: none; }
  .how-step { padding: 0 0 0 18px; border-left: 1px solid rgba(201,168,76,0.2); }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; --section-pad: 60px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 14px 22px 24px;
    gap: 2px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 28px rgba(26,26,26,0.07);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 10px 13px; font-size: 0.75rem; }
  .nav-cta {
    width: 100%; text-align: left;
    margin-left: 0; margin-top: 0;
    padding: 10px 13px;
    background: none; color: var(--accent-dark);
    border: none; font-size: 0.75rem;
  }
  .nav-cta:hover { background: var(--accent-light); transform: none; }
  .hero-content { padding: 0 22px; }
  .hero-btn-mobile { display: inline-block; }
  .hero-btn-desktop { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-solo-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .service-card-full { grid-template-columns: 1fr; gap: 10px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap, .order-form-wrap, .quote-form-wrap { padding: 26px 18px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .not-found-inner { flex-direction: column; gap: 20px; text-align: center; }
  .nf-divider { display: none; }
  .nf-actions { justify-content: center; }
  .nf-links ul { justify-content: center; }
  .stats-grid { flex-wrap: wrap; }
  .stat-block { flex: 0 0 50%; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 46px; height: 46px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 2.5rem; }
  .page-hero-title { font-size: 2.1rem; }
  .section-title { font-size: 1.85rem; }
  .why-card, .value-card { padding: 26px 18px; }
}
@supports (-webkit-touch-callout: none) {
  .hero { min-height: -webkit-fill-available; }
  select { font-size: 16px !important; }
}

/* =============================================
   COMPARE CARDS (new offline vs online)
============================================= */
.compare-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.compare-card {
  background: var(--white);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.compare-card-featured {
  background: var(--charcoal);
}
.compare-card-neutral {
  background: var(--off-white);
}
.compare-card-header { margin-bottom: 28px; }
.compare-card-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.compare-card-featured .compare-card-label { color: var(--accent); }
.compare-card-neutral .compare-card-label { color: var(--text-muted); }
.compare-card-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.compare-card-featured .compare-card-title { color: var(--white); }
.compare-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
  flex: 1;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.compare-card-featured .compare-card-list { border-color: rgba(255,255,255,0.08); }
.compare-card-list li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}
.compare-card-featured .compare-card-list li { color: rgba(255,255,255,0.75); }
.cc-yes {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-card-desc {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 32px;
  flex: 1;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.compare-btn { width: 100%; text-align: center; padding: 13px 16px; font-size: 0.75rem; }

@media (max-width: 900px) {
  .compare-cards { grid-template-columns: 1fr; }
}

/* =============================================
   TEXT COLOUR IMPROVEMENTS — better readability
============================================= */
/* Improve body text contrast */
:root {
  --text-body:  #2E2B27;
  --text-muted: #6B6760;
  --text-faint: #9E9A94;
}
/* Why cards */
.why-card p { color: var(--text-muted); }
/* How steps */
.how-step p { color: rgba(255,255,255,0.55); }
/* Service item description */
.si-content p { color: var(--text-muted); }
/* Hero sub */
.hero-sub { color: rgba(255,255,255,0.6); }
/* Page hero sub */
.page-hero-sub { color: rgba(255,255,255,0.6); }
/* Editorial quote */
.hero-editorial-quote { color: rgba(255,255,255,0.5); }
/* Editorial stat label */
.hero-editorial-stat-label { color: rgba(255,255,255,0.45); }
/* Stats bar labels */
.sb-label { color: var(--text-muted); }
/* Footer body */
.footer-brand p { color: rgba(255,255,255,0.45); }
.footer-nav a, .footer-contact a { color: rgba(255,255,255,0.55); }
/* Value cards */
.value-card p { color: rgba(255,255,255,0.5); }
/* About text */
.about-text p { color: var(--text-muted); }
/* Product card desc & features */
.pc-desc { color: var(--text-muted); }
.pc-feature { color: var(--text-body); }
/* Subscription features */
.sub-yes { color: var(--text-body); }
/* Tech strip items */
.tech-item { color: var(--text-muted); }
/* Form labels */
.form-group label { color: var(--text-body); }
/* CTA sub text */
.cta-text p { color: rgba(255,255,255,0.55); }
