/* ==========================================================================
   SAVEXIT V2 — Tek dosyalı modern CSS sistemi
   Renk paleti: Beyaz / Brand Red (#e63946) / Brand Green (#2d6a4f)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Design tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Renkler */
  --c-white: #ffffff;
  --c-paper: #fafbfb;
  --c-cream: #f5f7f6;
  --c-ink: #0f1d18;
  --c-ink-soft: #2d3a35;
  --c-mute: #6b7975;
  --c-line: rgba(45, 106, 79, 0.12);
  --c-line-strong: rgba(45, 106, 79, 0.22);

  --c-red: #e63946;
  --c-red-dark: #c1121f;
  --c-red-soft: #fdecee;

  --c-green: #2d6a4f;
  --c-green-dark: #1f523c;
  --c-green-deep: #14342a;
  --c-green-soft: #e9f3ee;
  --c-green-mid: #74c69d;

  --c-amber: #f4a261;
  --c-sky: #4a90a4;

  /* Tipografi */
  --ff-sans: "Inter", "Segoe UI", system-ui, -apple-system, "Roboto", "Helvetica Neue", Arial, sans-serif;
  --ff-display: "Manrope", "Inter", "Segoe UI", system-ui, sans-serif;
  --ff-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Boşluk skala */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Köşe yuvarlaklık */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 9999px;

  /* Gölge */
  --sh-sm: 0 1px 2px rgba(15, 29, 24, 0.04), 0 2px 6px rgba(15, 29, 24, 0.05);
  --sh-md: 0 6px 18px rgba(15, 29, 24, 0.07), 0 2px 4px rgba(15, 29, 24, 0.04);
  --sh-lg: 0 20px 40px rgba(15, 29, 24, 0.09), 0 6px 12px rgba(15, 29, 24, 0.05);
  --sh-xl: 0 30px 70px rgba(15, 29, 24, 0.14);
  --sh-glow-red: 0 8px 30px rgba(230, 57, 70, 0.25);
  --sh-glow-green: 0 8px 30px rgba(45, 106, 79, 0.25);

  /* Geçiş */
  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --header-h: 76px;

  /* Z-index */
  --z-nav: 90;
  --z-modal: 100;
  --z-toast: 110;
}

/* --------------------------------------------------------------------------
   2. Reset & Temel
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink-soft);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* --------------------------------------------------------------------------
   3. Tipografi
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  color: var(--c-ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.h-display {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.h1 { font-size: clamp(2rem, 3vw + 1rem, 3.2rem); }
.h2 { font-size: clamp(1.7rem, 2vw + 1rem, 2.4rem); }
.h3 { font-size: clamp(1.3rem, 1vw + 1rem, 1.6rem); }
.h4 { font-size: 1.15rem; font-weight: 700; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-red);
  padding: 6px 14px;
  background: var(--c-red-soft);
  border-radius: var(--r-pill);
}
.eyebrow.green { color: var(--c-green); background: var(--c-green-soft); }

.lead {
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.18rem);
  color: var(--c-ink-soft);
  line-height: 1.7;
}
.muted { color: var(--c-mute); }
.text-red { color: var(--c-red); }
.text-green { color: var(--c-green); }
.text-ink { color: var(--c-ink); }

::selection { background: var(--c-red); color: #fff; }

/* --------------------------------------------------------------------------
   4. Yardımcı sınıflar (utility)
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.container-wide { max-width: var(--container-wide); }
.section { padding: clamp(56px, 8vw, 112px) 0; }
.section-tight { padding: clamp(40px, 5vw, 72px) 0; }

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--s-2); }
.gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); }
.gap-5 { gap: var(--s-5); }

.text-center { text-align: center; }
.max-w-prose { max-width: 64ch; }
.max-w-narrow { max-width: 44ch; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   5. Buton sistemi
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border: 2px solid transparent;
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn:focus-visible { outline: 3px solid var(--c-green); outline-offset: 2px; }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--c-red);
  color: #fff;
  box-shadow: var(--sh-glow-red);
}
.btn-primary:hover { background: var(--c-red-dark); transform: translateY(-2px); box-shadow: 0 14px 38px rgba(193,18,31,0.35); }

.btn-secondary {
  background: var(--c-green);
  color: #fff;
  box-shadow: var(--sh-glow-green);
}
.btn-secondary:hover { background: var(--c-green-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--c-green);
  border-color: var(--c-green);
}
.btn-ghost:hover { background: var(--c-green); color: #fff; transform: translateY(-2px); }

.btn-light {
  background: #fff;
  color: var(--c-green);
  box-shadow: var(--sh-md);
}
.btn-light:hover { background: var(--c-red); color: #fff; }

.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   6. Kart sistemi
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-line-strong);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: var(--c-green-soft);
  color: var(--c-green);
  margin-bottom: var(--s-4);
  transition: all var(--t-base);
}
.card-icon.red { background: var(--c-red-soft); color: var(--c-red); }
.card:hover .card-icon { transform: scale(1.05) rotate(-3deg); }
.card-icon svg { width: 28px; height: 28px; stroke-width: 1.6; }

.card-title { font-size: 1.25rem; margin-bottom: 8px; color: var(--c-ink); }
.card-text { color: var(--c-mute); font-size: 0.97rem; line-height: 1.65; }

.card-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--c-green-soft), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.card-glow:hover::before { opacity: 1; }

/* --------------------------------------------------------------------------
   7. Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 14px 0;
  transition: all var(--t-base);
}
.site-header.scrolled {
  padding: 8px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 1px 0 var(--c-line), 0 8px 24px rgba(15,29,24,0.04);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 10px 14px 10px 20px;
  box-shadow: var(--sh-sm);
}
.site-header.scrolled .nav { background: transparent; border-color: transparent; box-shadow: none; }
.nav-brand { display: inline-flex; align-items: center; gap: 10px; }
.nav-brand img { height: 32px; width: auto; }
.nav-brand-name { font-family: var(--ff-display); font-weight: 800; color: var(--c-green); font-size: 1.15rem; letter-spacing: -0.02em; }
.nav-list { display: none; gap: 4px; align-items: center; }
.nav-list a {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink-soft);
  transition: all var(--t-fast);
  position: relative;
}
.nav-list a:hover { color: var(--c-red); background: var(--c-red-soft); }
.nav-list a.has-children::after {
  content: "▾";
  margin-left: 4px;
  font-size: 10px;
  opacity: 0.6;
}
.nav-cta { display: none; align-items: center; gap: 8px; }
.nav-toggle {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: var(--r-pill);
  background: var(--c-green-soft);
  color: var(--c-green);
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (min-width: 1024px) {
  .nav-list { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mega dropdown */
.has-mega { position: relative; }
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(720px, 90vw);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: var(--s-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--t-base);
}
.has-mega:hover .mega, .has-mega:focus-within .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-item {
  display: flex; gap: 12px;
  padding: 10px;
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}
.mega-item:hover { background: var(--c-green-soft); }
.mega-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: var(--c-green-soft);
  color: var(--c-green);
  display: grid; place-items: center;
}
.mega-icon svg { width: 20px; height: 20px; }
.mega-title { font-weight: 700; font-size: 14px; color: var(--c-ink); margin-bottom: 2px; }
.mega-text { font-size: 12.5px; color: var(--c-mute); line-height: 1.5; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: calc(var(--z-nav) + 1);
  padding: 80px 24px 32px;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .close-btn {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--c-red-soft);
  color: var(--c-red);
  display: grid; place-items: center;
}
.mobile-menu nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
}
.mobile-menu nav a:hover { color: var(--c-red); }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 80px;
  background:
    radial-gradient(ellipse at 80% -10%, rgba(45,106,79,0.08), transparent 60%),
    radial-gradient(ellipse at -10% 90%, rgba(230,57,70,0.07), transparent 60%),
    #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--c-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: var(--s-8); }
  .hero { padding: calc(var(--header-h) + 80px) 0 120px; }
}

.hero h1 { font-family: var(--ff-display); margin: 18px 0 22px; }
.hero h1 .accent { color: var(--c-red); }
.hero h1 .accent-green { color: var(--c-green); }
.hero .lead { max-width: 56ch; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-6);
  color: var(--c-mute);
  font-size: 14px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--c-green); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s-6); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-7);
  padding-top: var(--s-6);
  border-top: 1px dashed var(--c-line-strong);
}
.hero-stat .num {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 900;
  color: var(--c-green);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat .num .plus { color: var(--c-red); }
.hero-stat .lbl { font-size: 12.5px; color: var(--c-mute); margin-top: 6px; line-height: 1.4; }

.hero-visual {
  position: relative;
}
.hero-visual-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-cream);
  box-shadow: var(--sh-xl);
  aspect-ratio: 4/3;
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.hero-badge.tl { top: 20px; left: -16px; }
.hero-badge.br { bottom: 20px; right: -10px; animation-delay: -3s; }
.hero-badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-green-mid); box-shadow: 0 0 0 4px rgba(116,198,157,0.25);
  animation: pulse 2s ease-in-out infinite;
}
.hero-badge strong { font-size: 13px; color: var(--c-ink); }
.hero-badge small { font-size: 11px; color: var(--c-mute); display: block; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* --------------------------------------------------------------------------
   9. Trust / Logo bar
   -------------------------------------------------------------------------- */
.trust-bar {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-cream);
  padding: var(--s-5) 0;
}
.trust-bar .label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 700;
}
.trust-logos {
  display: flex; flex-wrap: wrap; gap: var(--s-6);
  align-items: center; justify-content: center;
  margin-top: var(--s-3);
  filter: grayscale(1);
  opacity: 0.78;
}
.trust-logos img { height: 38px; max-width: 130px; object-fit: contain; }

/* Marquee */
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: grid; place-items: center;
  width: 180px; height: 80px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 12px 18px;
  flex-shrink: 0;
  transition: all var(--t-base);
}
.marquee-item:hover { border-color: var(--c-green); transform: translateY(-3px); box-shadow: var(--sh-md); }
.marquee-item img { max-height: 50px; max-width: 100%; object-fit: contain; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   10. Section header
   -------------------------------------------------------------------------- */
.section-header { text-align: center; max-width: 720px; margin: 0 auto var(--s-7); }
.section-header.left { text-align: left; margin: 0 0 var(--s-7); max-width: 720px; }
.section-header h2 { margin: 12px 0 14px; }

/* --------------------------------------------------------------------------
   11. Feature/Service grid
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.feature {
  position: relative;
  padding: var(--s-6);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.feature::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-red), var(--c-green));
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.feature:hover::after { transform: scaleX(1); }
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; color: var(--c-ink); }
.feature p { color: var(--c-mute); font-size: 0.96rem; line-height: 1.65; flex: 1; }
.feature .feature-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--s-4);
  color: var(--c-green); font-weight: 600; font-size: 14px;
}
.feature .feature-link svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.feature:hover .feature-link svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   12. Split sections (image + content)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
  .split.reverse > :first-child { order: 2; }
}

.split-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-cream);
  aspect-ratio: 4/3;
  box-shadow: var(--sh-lg);
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }

.split ul.checks { list-style: none; padding: 0; margin-top: var(--s-5); }
.split ul.checks li {
  padding-left: 36px;
  position: relative;
  margin-bottom: 14px;
  color: var(--c-ink-soft);
}
.split ul.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-green-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d6a4f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* --------------------------------------------------------------------------
   13. Process timeline
   -------------------------------------------------------------------------- */
.process {
  display: grid;
  gap: var(--s-5);
  position: relative;
}
@media (min-width: 768px) {
  .process { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
  .process::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--c-green) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px; height: 72px;
  margin: 0 auto var(--s-4);
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--c-green);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--c-green);
  position: relative;
  transition: all var(--t-base);
}
.process-step:hover .process-num {
  background: var(--c-green); color: #fff;
  transform: scale(1.05);
  box-shadow: var(--sh-glow-green);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.process-step p { color: var(--c-mute); font-size: 14px; padding: 0 8px; }

/* --------------------------------------------------------------------------
   14. Sectors / Industries
   -------------------------------------------------------------------------- */
.sector-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.sector {
  position: relative;
  padding: var(--s-6) var(--s-5);
  background: var(--c-green);
  color: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-base);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sector:nth-child(even) { background: var(--c-green-deep); }
.sector::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255,255,255,0.15), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.sector:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.sector:hover::before { opacity: 1; }
.sector-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.15);
  display: grid; place-items: center;
  margin-bottom: var(--s-4);
}
.sector-icon svg { width: 22px; height: 22px; color: #fff; }
.sector h3 { color: #fff; font-size: 1.18rem; margin-bottom: 4px; }
.sector p { color: rgba(255,255,255,0.78); font-size: 14px; }
.sector-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: grid; place-items: center;
  transition: all var(--t-base);
}
.sector:hover .sector-arrow { background: var(--c-red); transform: rotate(-45deg); }
.sector-arrow svg { width: 16px; height: 16px; color: #fff; }

/* --------------------------------------------------------------------------
   15. Stats counter
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green-deep) 100%);
  color: #fff;
  padding: var(--s-7) var(--s-6);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(230,57,70,0.18), transparent 60%);
}
.stats > div {
  position: relative;
  text-align: center;
}
.stats-num {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-num .suffix { color: var(--c-red); -webkit-text-fill-color: var(--c-red); }
.stats-lbl { font-size: 13px; margin-top: 6px; opacity: 0.85; line-height: 1.5; }

/* --------------------------------------------------------------------------
   16. Testimonials
   -------------------------------------------------------------------------- */
.testimonials {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.testimonial {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  position: relative;
  display: flex; flex-direction: column;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 8px; left: 18px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--c-red);
  opacity: 0.18;
  line-height: 1;
}
.testimonial-stars { display: inline-flex; gap: 2px; color: var(--c-amber); margin-bottom: var(--s-3); }
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-text { font-size: 0.97rem; color: var(--c-ink-soft); flex: 1; }
.testimonial-meta { display: flex; align-items: center; gap: 12px; margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid var(--c-line); }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-green-soft);
  color: var(--c-green);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--ff-display);
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--c-ink); }
.testimonial-role { font-size: 12px; color: var(--c-mute); }

/* --------------------------------------------------------------------------
   17. FAQ Accordion
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: var(--s-3); max-width: 880px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--t-base);
}
.faq-item[open] { border-color: var(--c-green); box-shadow: var(--sh-md); }
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  color: var(--c-ink);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color var(--t-fast);
}
.faq-item summary:hover { color: var(--c-red); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 14px; height: 14px;
  border-right: 2px solid var(--c-green);
  border-bottom: 2px solid var(--c-green);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform var(--t-base);
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-bottom: -6px; }
.faq-item p { padding: 0 22px 22px; color: var(--c-ink-soft); line-height: 1.7; }

/* --------------------------------------------------------------------------
   18. CTA banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background:
    radial-gradient(circle at 80% 20%, rgba(230,57,70,0.45), transparent 50%),
    linear-gradient(135deg, var(--c-green-deep), var(--c-green) 65%);
  color: #fff;
  padding: var(--s-8) var(--s-6);
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 80%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: rotate(15deg);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; max-width: 22ch; margin: 0 auto 12px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 50ch; margin: 0 auto var(--s-5); position: relative; }
.cta-banner .actions { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   19. Contact / Form
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: var(--s-6); }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.3fr; }
}
.contact-cards { display: grid; gap: var(--s-3); }
.contact-card {
  display: flex; gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
}
.contact-card:hover { border-color: var(--c-green); transform: translateX(4px); box-shadow: var(--sh-sm); }
.contact-card .ico {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--c-red-soft);
  color: var(--c-red);
  display: grid; place-items: center;
}
.contact-card .ico svg { width: 22px; height: 22px; }
.contact-card .ico.green { background: var(--c-green-soft); color: var(--c-green); }
.contact-card strong { display: block; font-size: 14px; color: var(--c-ink); margin-bottom: 2px; }
.contact-card span { font-size: 14px; color: var(--c-mute); }

.form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-sm);
}
.form-row { display: grid; gap: var(--s-3); margin-bottom: var(--s-3); }
@media (min-width: 600px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--c-ink);
  background: var(--c-paper);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45,106,79,0.1);
}
.field textarea { min-height: 110px; resize: vertical; }
.consent { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--c-mute); margin: var(--s-3) 0; }
.consent input { margin-top: 3px; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-green-deep);
  color: rgba(255,255,255,0.78);
  padding: var(--s-8) 0 var(--s-5);
  margin-top: var(--s-8);
}
.footer-grid {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1.3fr repeat(3, 1fr);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
  font-family: var(--ff-sans);
}
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,0.78); transition: color var(--t-fast); font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 40px; margin-bottom: var(--s-3); filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 10px; margin-top: var(--s-4); }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--c-red); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; color: #fff; }

.footer-bottom {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  align-items: center; justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom .legal a { margin-left: var(--s-3); }

/* --------------------------------------------------------------------------
   21. Floating WhatsApp
   -------------------------------------------------------------------------- */
.fab-wa {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: var(--z-toast);
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: var(--r-pill);
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
  font-weight: 700;
  font-size: 14px;
  transition: all var(--t-base);
  text-decoration: none;
}
.fab-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(37,211,102,0.5); }
.fab-wa-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: grid; place-items: center;
  position: relative;
}
.fab-wa-icon::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: pulseWa 2s ease-out infinite;
}
@keyframes pulseWa {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.fab-wa svg { width: 16px; height: 16px; fill: #fff; position: relative; }

@media (max-width: 540px) {
  .fab-wa { padding: 0; width: 56px; height: 56px; justify-content: center; gap: 0; right: 16px; bottom: 16px; }
  .fab-wa span:last-child { display: none; }
}

/* --------------------------------------------------------------------------
   22. Reveal animations on scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: all 800ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

/* --------------------------------------------------------------------------
   23. Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 13px;
  color: var(--c-mute);
  padding: var(--s-3) 0;
}
.breadcrumb a { color: var(--c-mute); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--c-red); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb [aria-current="page"] { color: var(--c-ink); font-weight: 600; }

/* --------------------------------------------------------------------------
   24. Sub-page hero (smaller)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: calc(var(--header-h) + 50px) 0 var(--s-7);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(45,106,79,0.06), transparent 60%),
    var(--c-cream);
}
.page-hero h1 { margin: 12px 0 14px; }
.page-hero p { color: var(--c-mute); max-width: 60ch; }

/* --------------------------------------------------------------------------
   25. Misc helpers
   -------------------------------------------------------------------------- */
.divider {
  height: 1px;
  background: var(--c-line);
  margin: var(--s-5) 0;
}

.bg-cream { background: var(--c-cream); }
.bg-paper { background: var(--c-paper); }
.bg-green-soft { background: var(--c-green-soft); }

.shadow-soft { box-shadow: var(--sh-md); }
.rounded-lg { border-radius: var(--r-lg); }
.rounded-xl { border-radius: var(--r-xl); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .hero-badge, .fab-wa-icon::before { animation: none !important; }
}

/* Print */
@media print {
  .site-header, .fab-wa, .cta-banner, .site-footer { display: none !important; }
  body { color: #000; }
}
