/* ============================================================
   SuPr Solutions — Master Stylesheet
   Version: v3.1
   Covers: All 4 pages (index, services, about, contact)
   Fonts:  Telegraf (headings, local) + Inter (body/UI, local)
   Colors: --orange #E8441C | --dark #181818 | --white #FFFFFF
============================================================ */

/* ── LOCAL FONTS ─────────────────────────────────────────── */
@font-face {
  font-family: 'Telegraf';
  src: url('../fonts/telegraf/telegraf-ultralight-200.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Telegraf';
  src: url('../fonts/telegraf/telegraf-regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Telegraf';
  src: url('../fonts/telegraf/telegraf-ultrabold-800.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --font-heading: 'Telegraf', sans-serif;
  --font-body:    'Inter', sans-serif;
  --orange:    #E8441C;
  --orange-dk: #C73A18;
  --dark:      #181818;
  --charcoal:  #2B2B2B;
  --mid:       #5A5A5A;
  --light:     #F5F0EB;
  --surface:   #F5F0EB;
  --white:     #FFFFFF;
  --border:    rgba(24,24,24,0.10);
  --input-bg:  #F9F7F4;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, .syne { font-family: var(--font-heading); }

/* ── UTILITIES ───────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-1px); }
.nav-cta {
  font-size: 14px;
  padding: 10px 22px;
}
.mobile-cta {
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid var(--dark);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-orange:hover { background: var(--orange-dk); transform: translateY(-2px); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible       { opacity: 1; transform: translateY(0); }
.reveal-delay-1       { transition-delay: 0.1s; }
.reveal-delay-2       { transition-delay: 0.2s; }
.reveal-delay-3       { transition-delay: 0.3s; }
.reveal-delay-4       { transition-delay: 0.4s; }
.reveal-delay-5       { transition-delay: 0.5s; }
.reveal-delay-6       { transition-delay: 0.6s; }

/* ── KEYFRAMES ───────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAVIGATION ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav-logo img {
  width: auto;
  height: 58px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ── PAGE HERO (shared — services, about, contact) ───────── */
.page-hero {
  padding: 152px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 40%, rgba(232,68,28,0.15) 0%, transparent 55%);
}
.page-hero-inner { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

.page-hero h1 {
  font-size: clamp(36px, 5vw, 50px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  font-weight: 300;
}

/* ── SECTION HEADER (shared) ─────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--mid);
  max-width: 540px;
  margin: 0 auto;
}
.section-header.compact { margin-bottom: 48px; }
.section-surface { background: var(--surface); }
.section-pad-sm { padding: 80px 0; }
.text-center { text-align: center; }
.tag-center {
  display: table;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.full-width { width: 100%; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.services-grid-flush { margin-top: 0; }
.footer-note {
  margin-top: 12px;
  font-size: 13px;
  font-style: italic;
  opacity: 0.6;
}
.hero-note {
  margin-top: 12px;
  font-style: italic;
  opacity: 0.85;
}
.small-title { font-size: 16px; }
.medium-title { font-size: 20px; }
.lead-strong {
  font-weight: 600;
  margin-bottom: 12px;
}
.small-cta {
  font-size: 14px;
  padding: 11px 22px;
}
.small-cta-primary {
  font-size: 14px;
  padding: 13px 22px;
}
.service-card.compact { padding: 20px 24px; }
.service-card.accent-top { border-top: 3px solid var(--orange); }
.service-card.accent-left {
  border-left: 3px solid var(--orange);
  padding-left: 24px;
}
.check-mark {
  font-size: 22px;
  margin-bottom: 8px;
}
.pill-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.audience-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.service-tag-pill.soft {
  background: rgba(255,120,60,0.1);
  color: var(--orange);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
}
.value-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.icon-centered { margin: 0 auto 16px; }
.geo-copy-note { margin-top: 16px; }
.geo-cities.offset { margin-top: 24px; }
.contact-location-note {
  font-size: 14px;
  color: var(--mid);
}
.quote-text {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
}
.quote-attribution {
  font-size: 13px;
  color: var(--mid);
}

/* ── SHARED CTA SECTION ──────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
}
.cta-section.dark { background: var(--dark); }
.cta-section.dark::before { background: radial-gradient(circle, rgba(232,68,28,0.12) 0%, transparent 70%); }
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-inner h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section.dark .cta-inner p { color: rgba(255,255,255,0.55); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 280px;
}
.footer-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact p,
.footer-contact-col p {
  font-size: 14px;
  line-height: 1.9;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }
.footer-links { display: flex; gap: 24px; }

/* ── LEGAL PAGES ────────────────────────────────────────── */
.legal-page {
  padding: 152px 0 96px;
  background: var(--white);
}
.legal-content {
  max-width: 780px;
}
.legal-content h1 {
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 28px;
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 36px 0 10px;
}
.legal-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--mid);
}
.legal-content a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}
.legal-content a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════
   INDEX PAGE
══════════════════════════════════════════════════════════ */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding-top: 84px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(232,68,28,0.18) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(232,68,28,0.08) 0%, transparent 50%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s ease both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--orange);
}
.hero h1 {
  font-size: clamp(38px, 6vw, 50px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}
.hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.35); }
.hero .btn-outline:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  position: relative;
  z-index: 2;
}
.stat-card {
  padding: 32px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.stat-card:first-child { border-left: none; }
.stat-num {
  font-family: var(--font-body);
  font-size: 38px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.4; }

/* Homepage: Services Grid */
.services { padding: 100px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card { background: var(--white); padding: 40px 36px; position: relative; transition: background 0.3s; cursor: default; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--light); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(232,68,28,0.10);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--orange);
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(232,68,28,0.18); }
.service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.service-card p { font-size: 15px; line-height: 1.7; color: var(--mid); }
.service-card .arrow-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 14px; font-weight: 600;
  color: var(--orange); text-decoration: none;
  font-family: var(--font-body); transition: gap 0.2s;
}
.service-card .arrow-link:hover { gap: 10px; }

/* Homepage: Why SuPr */
.why-supr { padding: 100px 0; background: var(--light); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text h2 { font-size: clamp(30px, 3.5vw, 42px); font-weight: 800; line-height: 1.12; margin-bottom: 20px; }
.why-text > p { font-size: 17px; line-height: 1.75; color: var(--mid); margin-bottom: 40px; }
.pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar { display: flex; gap: 18px; align-items: flex-start; }
.pillar-dot {
  width: 36px; height: 36px;
  background: var(--orange); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.pillar-text h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.pillar-text p { font-size: 14px; line-height: 1.65; color: var(--mid); }
.why-big-card {
  background: var(--dark); border-radius: 16px; padding: 48px 40px;
  color: var(--white); position: relative; overflow: hidden;
}
.why-big-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(232,68,28,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.why-big-card .big-num { font-family: var(--font-body); font-size: 88px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.why-big-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; position: relative; }
.why-big-card p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.6); position: relative; }
.floating-badge {
  position: absolute; bottom: -20px; right: 32px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  padding: 14px 22px; border-radius: 10px;
  box-shadow: 0 12px 32px rgba(232,68,28,0.35);
}

/* Homepage: Approach */
.approach { padding: 100px 0; background: var(--white); }
.approach-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px; position: relative;
}
.approach-steps::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5%); right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(232,68,28,0.15) 100%);
  z-index: 0;
}
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: var(--white); border: 2.5px solid var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 18px; font-weight: 800;
  color: var(--orange); margin: 0 auto 28px;
}
.step h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; line-height: 1.65; color: var(--mid); }

/* Homepage: Industries */
.industries { padding: 80px 0; background: var(--dark); overflow: hidden; }
.industries h2 { color: var(--white); text-align: center; font-size: clamp(28px, 3vw, 42px); font-weight: 800; margin-bottom: 48px; }
.industry-ticker { display: flex; gap: 16px; animation: ticker 30s linear infinite; width: max-content; }
.industry-ticker-wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.industry-chip {
  white-space: nowrap; padding: 12px 24px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 100px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.7); flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}
.industry-chip.active { border-color: var(--orange); color: var(--orange); }

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════ */
.services-detail { padding: 100px 0; }
.service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  margin-bottom: 100px; padding-bottom: 100px;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-text .service-num {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--orange); text-transform: uppercase; margin-bottom: 16px;
}
.service-block-text h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.service-block-text > p { font-size: 16px; line-height: 1.8; color: var(--mid); margin-bottom: 32px; }
.service-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.service-feature {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.6; color: var(--charcoal);
}
.service-feature::before {
  content: '';
  display: block; width: 20px; height: 20px;
  background: rgba(232,68,28,0.12);
  border-radius: 50%; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10l4 4 8-8' stroke='%23E8441C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; margin-top: 2px;
}
.service-visual-card {
  background: var(--light); border-radius: 16px; padding: 132px 40px 48px;
  position: relative; overflow: hidden; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.service-visual-card.dark { background: var(--dark); }
.service-visual-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,68,28,0.20) 0%, transparent 70%);
  border-radius: 50%;
}
.service-visual-icon {
  position: absolute; top: 36px; left: 40px;
  width: 64px; height: 64px;
  background: var(--orange); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; color: white;
}
.service-visual-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; position: relative; }
.service-visual-card.dark h3 { color: var(--white); }
.service-visual-card p { font-size: 14px; line-height: 1.7; color: var(--mid); position: relative; }
.service-visual-card.dark p { color: rgba(255,255,255,0.55); }
.service-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; position: relative; }
.service-tag-pill {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(232,68,28,0.10); color: var(--orange);
}
.service-visual-card.dark .service-tag-pill { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }

/* Services: Packages */
.packages { padding: 80px 0; background: var(--light); }
.packages h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 800; text-align: center; margin-bottom: 12px; }
.packages > .container > p { text-align: center; font-size: 17px; color: var(--mid); max-width: 480px; margin: 0 auto 56px; line-height: 1.7; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card {
  background: var(--white); border-radius: 14px; padding: 36px 32px;
  border: 1.5px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.package-card:hover { border-color: var(--orange); box-shadow: 0 12px 40px rgba(232,68,28,0.10); }
.package-card.featured { background: var(--dark); border-color: transparent; }
.package-card.featured h3 { color: var(--white); }
.package-card.featured p { color: rgba(255,255,255,0.55); }
.package-card.featured .pkg-label { color: var(--orange); }
.pkg-label { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; display: block; }
.package-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.package-card > p { font-size: 15px; line-height: 1.7; color: var(--mid); margin-bottom: 28px; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pkg-features li { font-size: 14px; color: var(--charcoal); display: flex; align-items: center; gap: 10px; }
.package-card.featured .pkg-features li { color: rgba(255,255,255,0.7); }
.pkg-features li::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 13px; }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.story { padding: 100px 0; }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-text h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; line-height: 1.12; margin-bottom: 20px; }
.story-text p { font-size: 16px; line-height: 1.85; color: var(--mid); margin-bottom: 20px; }
.story-text p strong { color: var(--dark); font-weight: 600; }
.story-big { background: var(--light); border-radius: 20px; padding: 52px 44px; }
.story-big .quote-mark { font-family: var(--font-body); font-size: 80px; font-weight: 800; color: var(--orange); line-height: 0.8; margin-bottom: 20px; display: block; }
.story-big blockquote { font-size: 22px; font-weight: 600; font-family: var(--font-body); line-height: 1.4; color: var(--dark); margin-bottom: 28px; }
.story-big cite { font-size: 14px; color: var(--mid); font-style: normal; display: flex; align-items: center; gap: 12px; }
.story-big cite::before { content: ''; display: block; width: 32px; height: 2px; background: var(--orange); }

.numbers { padding: 80px 0; background: var(--dark); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.number-item { padding: 40px 32px; border-right: 1px solid rgba(255,255,255,0.07); text-align: center; }
.number-item:last-child { border-right: none; }
.number-val { font-family: var(--font-body); font-size: 52px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 10px; }
.number-label { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.5; }

.values { padding: 100px 0; background: var(--light); }
.values-header { text-align: center; margin-bottom: 64px; }
.values-header h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; margin-bottom: 14px; }
.values-header p { font-size: 17px; color: var(--mid); max-width: 480px; margin: 0 auto; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: 14px; padding: 40px 32px; border: 1.5px solid transparent; transition: border-color 0.25s, box-shadow 0.25s; }
.value-card:hover { border-color: var(--orange); box-shadow: 0 12px 40px rgba(232,68,28,0.08); }
.value-icon { width: 48px; height: 48px; background: rgba(232,68,28,0.10); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); margin-bottom: 22px; }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.value-card p { font-size: 15px; line-height: 1.75; color: var(--mid); }

.who { padding: 100px 0; }
.who h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; text-align: center; margin-bottom: 14px; }
.who > .container > p { text-align: center; font-size: 17px; color: var(--mid); max-width: 480px; margin: 0 auto 56px; line-height: 1.7; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience-card { border: 1.5px solid var(--border); border-radius: 12px; padding: 32px 28px; display: flex; align-items: flex-start; gap: 18px; transition: border-color 0.2s, background 0.2s; }
.audience-card:hover { border-color: var(--orange); background: rgba(232,68,28,0.03); }
.audience-num { font-family: var(--font-body); font-size: 32px; font-weight: 800; color: rgba(232,68,28,0.18); line-height: 1; flex-shrink: 0; }
.audience-info h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.audience-info p { font-size: 14px; line-height: 1.65; color: var(--mid); }

.geography { padding: 80px 0; background: var(--orange); }
.geo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.geo-text h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.geo-text p { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.geo-cities { display: flex; flex-wrap: wrap; gap: 12px; }
.geo-city { padding: 10px 20px; background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.20); border-radius: 100px; font-size: 14px; font-weight: 600; color: var(--white); font-family: var(--font-body); }
.geo-visual { display: flex; flex-direction: column; gap: 16px; }
.geo-stat { background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 24px 28px; display: flex; align-items: center; gap: 20px; }
.geo-stat-num { font-family: var(--font-body); font-size: 36px; font-weight: 800; color: var(--white); }
.geo-stat-label { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-section { padding: 100px 0; }
.contact-inner { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: flex-start; }
.contact-info h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.contact-info > p { font-size: 16px; line-height: 1.8; color: var(--mid); margin-bottom: 44px; }
.contact-items { display: flex; flex-direction: column; gap: 28px; margin-bottom: 48px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; background: rgba(232,68,28,0.10); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }
.contact-item-text h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.contact-item-text p,
.contact-item-text a { font-size: 16px; font-weight: 500; color: var(--dark); text-decoration: none; line-height: 1.5; transition: color 0.2s; }
.contact-item-text a:hover { color: var(--orange); }
.response-badge { display: flex; align-items: center; gap: 14px; background: var(--light); border-radius: 12px; padding: 18px 22px; }
.response-dot { width: 10px; height: 10px; background: #22C55E; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(34,197,94,0.20); }
.response-badge p { font-size: 14px; color: var(--charcoal); line-height: 1.5; }
.response-badge strong { font-weight: 600; color: var(--dark); }

/* Contact: Form */
.contact-form-wrap { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 48px 44px; box-shadow: 0 12px 48px rgba(0,0,0,0.05); }
.form-title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--mid); margin-bottom: 36px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--charcoal); font-family: var(--font-body); letter-spacing: 0.04em; }
.form-group label .req { color: var(--orange); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--input-bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #AAAAAA; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,68,28,0.10);
  background: var(--white);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%235A5A5A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.service-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--orange); cursor: pointer; border-radius: 4px; flex-shrink: 0; }
.checkbox-item span { font-size: 14px; color: var(--charcoal); line-height: 1.4; }
.form-submit { margin-top: 8px; }
.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  padding: 16px 28px; border-radius: 8px; border: none;
  cursor: pointer; transition: background 0.2s, transform 0.2s; letter-spacing: 0.02em;
}
.btn-submit:hover { background: var(--orange-dk); transform: translateY(-1px); }
.btn-submit:disabled { background: #ccc; cursor: not-allowed; transform: none; }
.form-note { text-align: center; margin-top: 14px; font-size: 13px; color: var(--mid); }

/* Contact: Success */
.success-msg { display: none; text-align: center; padding: 40px 20px; }
.success-msg .check-circle { width: 64px; height: 64px; background: rgba(34,197,94,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-msg h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.success-msg p { font-size: 15px; color: var(--mid); line-height: 1.7; }
.success-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--orange); text-decoration: none; }

/* Contact: Why Contact */
.why-contact { padding: 80px 0; background: var(--light); }
.why-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-contact h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; text-align: center; margin-bottom: 12px; }
.why-contact > .container > p { text-align: center; font-size: 17px; color: var(--mid); max-width: 440px; margin: 0 auto 48px; line-height: 1.7; }
.wc-card { background: var(--white); border-radius: 12px; padding: 32px 28px; text-align: center; border: 1.5px solid transparent; transition: border-color 0.25s; }
.wc-card:hover { border-color: var(--orange); }
.wc-num { font-family: var(--font-body); font-size: 40px; font-weight: 800; color: rgba(232,68,28,0.15); margin-bottom: 14px; line-height: 1; }
.wc-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.wc-card p { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-cta,
  .mobile-cta { display: none; }
  .hamburger { display: flex; }

  /* Index */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .approach-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .approach-steps::before { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }

  /* Services */
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse { direction: ltr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* About */
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .geo-inner { grid-template-columns: 1fr; gap: 48px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-contact-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .value-grid-three { grid-template-columns: 1fr; }
}

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

  .nav-inner { height: 72px; }
  .nav-logo img { height: 48px; }
  .mobile-menu { padding: 10px 20px 18px; }
  .mobile-menu a { padding: 12px 0; }

  .page-hero {
    padding: 120px 0 56px;
  }
  .page-hero h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.08;
  }
  .page-hero p {
    font-size: 16px;
    line-height: 1.7;
  }
  .breadcrumb {
    flex-wrap: wrap;
    row-gap: 4px;
  }
  .section-header,
  .values-header {
    margin-bottom: 44px;
  }
  .section-header h2,
  .values-header h2,
  .who h2,
  .industries h2,
  .why-text h2,
  .story-text h2,
  .geo-text h2,
  .cta-inner h2 {
    font-size: clamp(28px, 9vw, 38px);
  }
  .section-header p,
  .values-header p,
  .who > .container > p {
    font-size: 16px;
  }

  /* Index */
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 128px 0 88px;
  }
  .hero-eyebrow {
    margin-top: 18px;
    margin-bottom: 22px;
    align-items: flex-start;
    line-height: 1.45;
    letter-spacing: 0.1em;
  }
  .hero-eyebrow::before {
    width: 24px;
    margin-top: 8px;
    flex-shrink: 0;
  }
  .hero h1 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.08;
    margin-bottom: 22px;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.72;
    margin-bottom: 30px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-scroll { display: none; }
  .hero-stats {
    margin-top: 42px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .services-grid { grid-template-columns: 1fr; }
  .services,
  .why-supr,
  .approach,
  .services-detail,
  .story,
  .values,
  .who,
  .contact-section {
    padding: 72px 0;
  }
  .industries,
  .packages,
  .numbers,
  .geography,
  .why-contact {
    padding: 64px 0;
  }
  .service-card,
  .value-card,
  .package-card,
  .story-big,
  .contact-form-wrap,
  .why-big-card {
    padding: 30px 24px;
  }
  .why-big-card .big-num {
    font-size: clamp(56px, 18vw, 76px);
  }
  .floating-badge {
    position: relative;
    right: auto;
    bottom: auto;
    display: inline-flex;
    margin-top: 24px;
  }
  .approach-steps { grid-template-columns: 1fr; }
  .step {
    text-align: left;
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 18px;
    padding: 0;
  }
  .step-num {
    grid-row: span 2;
    margin: 0;
  }
  .hero-stats { grid-template-columns: 1fr; }
  .stat-card {
    border-left: none;
    border-top: none;
    padding: 24px 0;
  }
  .stat-num { font-size: 34px; }

  /* About */
  .values-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .number-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 30px 20px;
  }
  .number-item:last-child { border-bottom: none; }
  .audience-card,
  .geo-stat {
    padding: 24px 20px;
  }
  .geo-stat {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .service-checkboxes { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .why-contact-grid { grid-template-columns: 1fr; }
  .contact-item { gap: 14px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .audience-split-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .btn-primary,
  .btn-outline,
  .btn-white,
  .btn-orange {
    width: 100%;
    justify-content: center;
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero {
    padding-top: 118px;
  }
  .hero-eyebrow {
    display: flex;
    max-width: 310px;
  }
  .service-block {
    margin-bottom: 72px;
    padding-bottom: 72px;
  }
  .service-visual-card {
    min-height: auto;
    padding: 118px 24px 32px;
  }
  .service-visual-icon {
    top: 28px;
    left: 24px;
  }
  .service-tag-pill,
  .geo-city {
    max-width: 100%;
  }
  .legal-page {
    padding: 120px 0 72px;
  }
}
