@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --burgundy: #780116;
  --burgundy-light: rgba(120, 1, 22, 0.08);
  --sunflower-gold: #f7b538;
  --ochre: #db7c26;
  --spicy-paprika: #d8572a;
  --flag-red: #c32f27;

  --bg: #faf8f5;
  --bg-2: #f3efe8;
  --ink: #1a1017;
  --ink-soft: #4d3f46;
  --panel: #ffffff;
  --line: #e0d5cb;
  --accent: #db7c26;
  --accent-2: #780116;
  --accent-dark: #9e5a1a;
  --success: #13825a;
  --danger: #c32f27;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(120, 1, 22, 0.04);
  --shadow: 0 8px 32px rgba(120, 1, 22, 0.06);
  --shadow-lg: 0 20px 60px rgba(120, 1, 22, 0.10);
  --container: min(1180px, 92vw);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(219, 124, 38, 0.10), transparent 40%),
    radial-gradient(ellipse at 90% 0%, rgba(120, 1, 22, 0.08), transparent 35%),
    var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { display: block; max-width: 100%; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 6rem 0; }
.section-tight { padding: 3.5rem 0; }

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin: 0 0 1rem; color: var(--ink-soft); line-height: 1.7; }
.lead { font-size: clamp(1.02rem, 1.8vw, 1.18rem); line-height: 1.75; }

/* ========================================
   HEADER
   ======================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(120, 1, 22, 0.06);
  background: rgba(250, 248, 245, 0.92);
}
.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  position: relative;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: url('../assets/favicon.svg') center/cover no-repeat;
  flex-shrink: 0;
}

.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-link {
  color: var(--ink-soft);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--ink); background: rgba(120, 1, 22, 0.04); }
.nav-link.active {
  background: var(--panel);
  color: var(--burgundy);
  box-shadow: var(--shadow-sm);
}

.nav-cta { display: flex; align-items: center; gap: 0.7rem; }
.mobile-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  display: none;
  cursor: pointer;
  position: relative;
  font-size: 0;
}
.mobile-toggle::before,
.mobile-toggle::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-toggle::before { top: 16px; }
.mobile-toggle::after { bottom: 16px; }

/* ========================================
   BADGE
   ======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(120, 1, 22, 0.18);
  background: linear-gradient(135deg, rgba(247, 181, 56, 0.10), rgba(120, 1, 22, 0.06));
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.38rem 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1.5rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(140deg, var(--ochre), var(--sunflower-gold));
  color: #1a0e00;
  box-shadow: 0 6px 20px rgba(219, 124, 38, 0.30), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  box-shadow: 0 10px 32px rgba(219, 124, 38, 0.40), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-secondary {
  background: linear-gradient(140deg, var(--burgundy), #9e0a2e);
  color: #fff;
  box-shadow: 0 6px 20px rgba(120, 1, 22, 0.25);
}
.btn-secondary:hover {
  box-shadow: 0 10px 32px rgba(120, 1, 22, 0.35);
}

.btn-outline {
  background: var(--panel);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--ochre); color: var(--burgundy); }

.btn-ghost {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink-soft);
  font-size: 0.88rem;
  padding: 0.65rem 1.1rem;
}
.btn-ghost:hover { border-color: var(--ochre); color: var(--burgundy); background: rgba(247, 181, 56, 0.06); }

/* ========================================
   HERO (HOME)
   ======================================== */
.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.hero-main {
  background: linear-gradient(155deg, #ffffff 0%, #fdfbf7 50%, #faf5ee 100%);
  border: 1px solid rgba(120, 1, 22, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 2.8rem 2.4rem;
  position: relative;
  overflow: hidden;
}
.hero-main::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  right: -130px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(120, 1, 22, 0.08), transparent 65%);
  pointer-events: none;
}
.hero-main::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  left: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(247, 181, 56, 0.08), transparent 65%);
  pointer-events: none;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.kpi-inline {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  transition: all var(--transition);
}
.kpi-inline:hover { border-color: var(--ochre); box-shadow: var(--shadow-sm); }
.kpi-inline strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  display: block;
  color: var(--burgundy);
  margin-bottom: 0.15rem;
}
.kpi-inline span { font-size: 0.82rem; color: var(--ink-soft); }

.hero-rail { display: grid; gap: 1rem; }

/* ========================================
   CARDS & PANELS — the core visual system
   ======================================== */
.panel,
.stat-card,
.testimonial,
.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: all var(--transition);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.6rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ochre), var(--sunflower-gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  border-color: rgba(219, 124, 38, 0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }
.card h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}
.card p:last-child { margin-bottom: 0; }

.case-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.6rem;
  transition: all var(--transition);
  position: relative;
  border-left: 3px solid var(--ochre);
}
.case-card:hover {
  border-color: var(--ochre);
  border-left-color: var(--burgundy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.6rem;
  transition: all var(--transition);
}

.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.8rem 1.5rem;
  transition: all var(--transition);
  position: relative;
}
.step:hover {
  border-color: rgba(219, 124, 38, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.kpi {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.2rem;
  transition: all var(--transition);
  text-align: center;
}
.kpi:hover {
  border-color: rgba(120, 1, 22, 0.14);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.panel h3 {
  margin-bottom: 0.5rem;
}

/* ========================================
   GRID SYSTEM
   ======================================== */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ========================================
   SECTION HEADS
   ======================================== */
.section-head {
  margin-bottom: 2rem;
  max-width: 720px;
}
.section-head p { margin-bottom: 0; }
.section-head.center { text-align: center; margin-inline: auto; }
.stat-value { font-family: 'Outfit', sans-serif; font-size: 2rem; color: var(--burgundy); margin-bottom: 0.2rem; }

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
  border-block: 1px solid rgba(120, 1, 22, 0.06);
  background: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
}
.trust-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
  opacity: 0.7;
}
.logo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}
.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: all var(--transition);
  min-height: 56px;
}
.logo-chip img {
  display: block;
  max-width: 100%;
  max-height: 28px;
  width: auto;
  height: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all var(--transition);
}
.logo-chip:hover {
  border-color: rgba(120, 1, 22, 0.14);
  box-shadow: var(--shadow-sm);
}
.logo-chip:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* ========================================
   LISTS
   ======================================== */
.list { list-style: none; margin: 0; padding: 0; }
.list li {
  padding-left: 1.4rem;
  position: relative;
  margin: 0.55rem 0;
  color: var(--ink-soft);
  line-height: 1.6;
}
.list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(145deg, var(--ochre), var(--burgundy));
  position: absolute;
  left: 0;
  top: 0.65em;
}

/* ========================================
   TIMELINE / PROCESS
   ======================================== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step { position: relative; }
.step::before {
  content: '';
  position: absolute;
  top: 1.8rem;
  right: -0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ochre);
  display: none;
}
.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 0.78rem;
  padding: 0 0.6rem;
  font-weight: 800;
  border: none;
  background: linear-gradient(145deg, var(--ochre), var(--sunflower-gold));
  color: #1a0e00;
  margin-bottom: 0.85rem;
  box-shadow: 0 3px 10px rgba(219, 124, 38, 0.25);
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

/* ========================================
   KPIs
   ======================================== */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.kpi-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--burgundy);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.5rem;
  background: linear-gradient(145deg, var(--burgundy), var(--ochre));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   PRICING CARDS
   ======================================== */
.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pricing-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}
.pricing-card .list { flex: 1; margin-bottom: 1.2rem; }
.pricing-card .list li { font-size: 0.92rem; }
.pricing-card .btn { margin-top: auto; width: 100%; }
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--ochre);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(219, 124, 38, 0.16);
}
.pricing-card.featured h3 { color: var(--burgundy); }
.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--ochre), var(--sunflower-gold));
  z-index: -1;
  opacity: 0.12;
}
.price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0.5rem 0 0.6rem;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.pricing-card.featured .price { color: var(--burgundy); }
.price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0;
}

/* ========================================
   PILLS
   ======================================== */
.pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 0.65rem; }
.pill {
  border: 1px solid rgba(120, 1, 22, 0.14);
  background: rgba(120, 1, 22, 0.04);
  color: var(--burgundy);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(120, 1, 22, 0.14); }
.faq-item.open { border-color: var(--ochre); box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 1.1rem 1.3rem;
  padding-right: 3rem;
  font-weight: 700;
  font-size: 0.98rem;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--ochre);
  transition: transform var(--transition);
  font-family: 'Outfit', sans-serif;
}
.faq-item.open .faq-question::after {
  content: '\2212';
  transform: translateY(-50%) rotate(0deg);
  color: var(--burgundy);
}
.faq-answer { display: none; padding: 0 1.3rem 1.2rem; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { color: var(--ink-soft); line-height: 1.75; }

/* ========================================
   CASE STUDY FILTERS
   ======================================== */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.filter-btn {
  border: 1.5px solid var(--line);
  background: var(--panel);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--ochre); color: var(--burgundy); }
.filter-btn.active {
  border-color: var(--ochre);
  color: var(--burgundy);
  background: rgba(247, 181, 56, 0.10);
  box-shadow: 0 2px 8px rgba(219, 124, 38, 0.12);
}
.hidden { display: none !important; }

/* ========================================
   FORMS
   ======================================== */
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 0.85rem; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
input, select, textarea {
  font: inherit;
  font-size: 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  background: var(--panel);
  color: var(--ink);
  transition: all var(--transition);
}
input::placeholder, textarea::placeholder { color: #a09490; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--ochre);
  box-shadow: 0 0 0 4px rgba(219, 124, 38, 0.12);
}
input.invalid, select.invalid, textarea.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(195, 47, 39, 0.08);
}
.field-error { min-height: 1.1rem; color: var(--danger); font-size: 0.78rem; font-weight: 500; }
.form-status { margin-top: 0.75rem; font-size: 0.92rem; font-weight: 600; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.form-card {
  padding: 2.2rem;
  border-color: rgba(219, 124, 38, 0.15);
  box-shadow: var(--shadow-lg);
}
.form-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.form-card > p { font-size: 0.9rem; margin-bottom: 1.2rem; }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: linear-gradient(145deg, #1a1017 0%, #2a1520 40%, #311828 100%);
  border: 1px solid rgba(219, 124, 38, 0.15);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: 0 24px 64px rgba(26, 16, 23, 0.25);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}
.cta-banner p,
.cta-banner .lead {
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-inline: auto;
}
.cta-banner .btn-row { justify-content: center; }
.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.cta-banner .btn-outline:hover {
  border-color: var(--ochre);
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.cta-banner .btn-ghost {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
}
.cta-banner .btn-ghost:hover {
  border-color: var(--ochre);
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(219, 124, 38, 0.18), transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  left: -60px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(120, 1, 22, 0.15), transparent 65%);
  pointer-events: none;
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  padding: 4.5rem 0 2rem;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(247, 181, 56, 0.06), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(120, 1, 22, 0.05), transparent 50%);
  pointer-events: none;
}
.page-hero h1 { max-width: 800px; }
.page-hero .lead { max-width: 680px; }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial {
  margin-bottom: 1.2rem;
  border-left: 3px solid var(--ochre);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.6rem 1.8rem;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 0.6rem;
  right: 1.2rem;
  font-size: 3.5rem;
  line-height: 1;
  font-family: 'Outfit', serif;
  color: rgba(219, 124, 38, 0.15);
  pointer-events: none;
}
.testimonial p {
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.testimonial strong {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
  display: block;
  padding-top: 0.4rem;
  border-top: 1px solid var(--line);
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.muted { color: var(--ink-soft); font-size: 0.88rem; }

/* ========================================
   TEAM
   ======================================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.team-card {
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ochre), var(--burgundy));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(120, 1, 22, 0.18);
}
.team-card h3 { margin-bottom: 0.15rem; font-size: 1.05rem; }
.team-card p { font-size: 0.85rem; margin-bottom: 0.4rem; }

/* ========================================
   VALUES
   ======================================== */
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--ochre), var(--sunflower-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a0e00;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 12px rgba(219, 124, 38, 0.25);
}

/* ========================================
   METRICS
   ======================================== */
.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.metric-card {
  text-align: center;
  background: linear-gradient(155deg, #ffffff 0%, #fdfbf7 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.metric-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(145deg, var(--burgundy), var(--ochre));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.metric-label { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.25rem; }

/* ========================================
   CASE STUDY METRICS (before/after)
   ======================================== */
.case-metric {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 0;
}
.case-before, .case-after {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.case-before span, .case-after span {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.case-before strong, .case-after strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.case-after {
  border-color: rgba(19, 130, 90, 0.2);
  background: rgba(19, 130, 90, 0.04);
}
.case-after strong { color: var(--success); }

/* ========================================
   CONTACT
   ======================================== */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1.5rem; align-items: start; }
.contact-sidebar { display: grid; gap: 0.75rem; }
.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  transition: all var(--transition);
}
.contact-info-card:hover {
  border-color: rgba(219, 124, 38, 0.25);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--ochre), var(--sunflower-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #1a0e00;
  box-shadow: 0 3px 10px rgba(219, 124, 38, 0.2);
}
.contact-info-card h4 { margin-bottom: 0.1rem; }
.contact-info-card p { margin: 0; font-size: 0.9rem; }

/* ========================================
   COMPARISON TABLE
   ======================================== */
.compare-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.compare-table th, .compare-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.compare-table th {
  background: rgba(120, 1, 22, 0.03);
  font-weight: 700;
  color: var(--ink);
}
.compare-table td:last-child { color: var(--success); font-weight: 600; }

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: linear-gradient(180deg, #f2ede4, #ebe5da);
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.footer-grid h4 {
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
}
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin: 0.45rem 0; }
.footer-list a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-list a:hover { color: var(--burgundy); }
footer .muted { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 1050px) {
  .hero-split,
  .grid-3,
  .grid-4,
  .timeline,
  .kpi-grid,
  .metric-row,
  .team-grid,
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-main { padding: 2rem 1.8rem; }
}

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 760px) {
  .section { padding: 4rem 0; }
  .nav-links, .nav-cta .desktop-only { display: none; }
  .mobile-toggle { display: flex; align-items: center; justify-content: center; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--bg);
    box-shadow: var(--shadow-lg);
    z-index: 50;
    gap: 0.25rem;
  }
  .nav-links.mobile-open .nav-link {
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }

  .hero-split,
  .hero-kpis,
  .grid-2,
  .grid-3,
  .grid-4,
  .timeline,
  .kpi-grid,
  .metric-row,
  .team-grid,
  .footer-grid,
  .form-row,
  .contact-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-main { padding: 1.8rem 1.4rem; }
  .page-hero { padding: 3rem 0 1.5rem; }
  .cta-banner { padding: 1.8rem; }
  h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .price { font-size: 2rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-row { grid-template-columns: repeat(2, 1fr); }
}
