/* Erd Mekanik — Design System v7 */

:root {
  --bg-dark: #06080d;
  --bg-dark-2: #0c1118;
  --bg-card: #111820;
  --surface: #f4f6f9;
  --surface-2: #e8ecf1;
  --white: #ffffff;
  --text: #141b26;
  --text-muted: #647089;
  --text-light: rgba(255,255,255,.78);
  --accent: #e09018;
  --accent-hover: #cc8010;
  --accent-soft: rgba(224,144,24,.1);
  --teal: #28a99a;
  --teal-soft: rgba(40,169,154,.1);
  --danger: #e04538;
  --whatsapp: #22c55e;
  --border: rgba(20,27,38,.07);
  --border-dark: rgba(255,255,255,.1);
  --glass: rgba(255,255,255,.72);
  --glass-dark: rgba(12,17,24,.65);
  --shadow-sm: 0 1px 2px rgba(6,8,13,.04), 0 4px 16px rgba(6,8,13,.06);
  --shadow-md: 0 4px 8px rgba(6,8,13,.04), 0 16px 40px rgba(6,8,13,.1);
  --shadow-lg: 0 8px 24px rgba(6,8,13,.08), 0 32px 64px rgba(6,8,13,.14);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,.06), 0 20px 50px rgba(0,0,0,.35);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --container: 1180px;
  --nav-h: 72px;
  --topbar-h: 38px;
  --header-h: calc(var(--topbar-h) + var(--nav-h));
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
}
::selection { background: rgba(224,144,24,.2); color: var(--text); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* Scroll progress */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  z-index: 9999; transition: width .1s linear;
}

/* Site header — fixed glass over hero */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), backdrop-filter .45s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: var(--shadow-sm);
}
.site-header:not(.scrolled) .topbar {
  background: transparent;
  border-color: transparent;
  color: rgba(255,255,255,.55);
}
.site-header:not(.scrolled) .topbar a:hover { color: #fff; }
.site-header:not(.scrolled) .navbar { background: transparent; }
.site-header:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
  opacity: .95;
}
.site-header:not(.scrolled) .nav-pill {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}
.site-header:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,.65);
}
.site-header:not(.scrolled) .nav-links a:hover,
.site-header:not(.scrolled) .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.site-header:not(.scrolled) .hamburger span { background: #fff; }
.site-header.scrolled .topbar {
  background: var(--bg-dark);
  border-color: var(--border-dark);
}

/* Top bar */
.topbar {
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: .8125rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-dark);
  transition: background .45s var(--ease), border-color .45s var(--ease), color .45s;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-left span, .topbar-left a {
  display: inline-flex; align-items: center; gap: 6px;
}
.topbar-left a:hover { color: var(--accent); }
.topbar-badge {
  background: var(--danger);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  animation: pulse-badge 2s ease infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: .75; }
}

/* Navbar */
.navbar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .45s var(--ease), border-color .45s var(--ease);
}
.site-header.scrolled .navbar {
  background: transparent;
  border-color: var(--border);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: filter .45s var(--ease), opacity .45s;
}
.nav-links { display: flex; align-items: center; }
.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(20,27,38,.04);
  border: 1px solid var(--border);
  transition: background .45s, border-color .45s;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 9px 16px;
  border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--text);
  background: var(--white);
  box-shadow: 0 1px 3px rgba(6,8,13,.08);
}
.site-header:not(.scrolled) .nav-links a.active {
  background: rgba(255,255,255,.14);
  box-shadow: none;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #d48010 100%);
  color: #fff;
  font-size: .8125rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(224,144,24,.35);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(224,144,24,.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9375rem;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .28s var(--ease-out), box-shadow .28s, background .28s, border-color .28s;
  white-space: nowrap;
  position: relative;
}
.btn:active { transform: translateY(0) scale(.98); }
.btn:hover { transform: translateY(-2px); }
.btn-large { padding: 16px 32px; font-size: 1rem; }
.btn-small { padding: 10px 18px; font-size: .8125rem; }
.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,.35);
}
.btn-whatsapp:hover { box-shadow: 0 10px 32px rgba(34,197,94,.42); }
.btn-call {
  background: linear-gradient(135deg, var(--accent) 0%, #d48010 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(224,144,24,.35);
}
.btn-call:hover { box-shadow: 0 10px 32px rgba(224,144,24,.42); }
.btn-outline {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
}
.btn-dark { background: var(--bg-dark); color: #fff; box-shadow: var(--shadow-sm); }
.btn-dark:hover { background: var(--bg-dark-2); }

/* Section headers */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(224,144,24,.15);
}
.section-eyebrow::before { display: none; }
.section-eyebrow--teal {
  color: var(--teal);
  background: var(--teal-soft);
  border-color: rgba(40,169,154,.15);
}
.section-eyebrow--light {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title--light { color: #fff; }
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-desc--light { color: var(--text-light); }
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin-inline: auto; }
.section-header--center .section-eyebrow { justify-content: center; }
.section-header--center .section-eyebrow::before { display: none; }

.text-accent { color: var(--accent); }
.text-gradient {
  background: linear-gradient(135deg, #f5b840 0%, var(--accent) 50%, #f0c060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 64px) 0 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 75% 35%, rgba(224,144,24,.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 75%, rgba(40,169,154,.12) 0%, transparent 50%),
    linear-gradient(165deg, var(--bg-dark) 0%, #0a1018 50%, var(--bg-dark-2) 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: glow-float 8s ease-in-out infinite;
}
.hero-glow--1 {
  width: 420px; height: 420px;
  background: rgba(224,144,24,.15);
  top: 10%; right: 5%;
}
.hero-glow--2 {
  width: 320px; height: 320px;
  background: rgba(40,169,154,.12);
  bottom: 15%; left: 10%;
  animation-delay: -4s;
}
@keyframes glow-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.05); }
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black, transparent);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,69,56,.12);
  border: 1px solid rgba(224,69,56,.25);
  color: #ff9a8f;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #ff5544;
  border-radius: 50%;
  animation: pulse-badge 1.5s ease infinite;
}
.hero h1 {
  font-size: clamp(2.125rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero-lead {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px;
}
.hero-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.hero-trust-item strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-trust-item span {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}
.hero-scroll:hover { color: rgba(255,255,255,.8); }
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.hero-visual {
  position: relative;
}

/* Hero mosaic */
.hero-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 480px;
}
.hero-mosaic-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-glow);
}
.hero-mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.hero-mosaic-item:hover img { transform: scale(1.05); }
.hero-mosaic-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,10,15,.7) 100%);
}
.hero-mosaic-item--large {
  grid-row: span 2;
}
.hero-mosaic-label {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 1;
  font-size: .8125rem;
  font-weight: 600;
  color: #fff;
}
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-glow);
  z-index: 2;
  animation: float-card 5s ease-in-out infinite;
}
.hero-float-card--2 { animation-delay: -2.5s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-float-card--1 { bottom: 24px; right: -20px; }
.hero-float-card--2 { top: 20px; left: -24px; }
.hero-float-icon {
  width: 40px; height: 40px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-float-card strong { display: block; font-size: .9375rem; }
.hero-float-card span { font-size: .75rem; color: var(--text-light); }

/* Stats strip */
.stats-strip {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  padding-bottom: 80px;
}
.stats-strip-inner {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 36px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border: 1px solid rgba(255,255,255,.8);
}
.stats-strip-item {
  text-align: center;
  position: relative;
}
.stats-strip-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 48px;
  background: var(--border);
}
.stats-strip-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-strip-item strong em {
  font-style: normal;
  color: var(--accent);
}
.stats-strip-item span {
  font-size: .875rem;
  color: var(--text-muted);
}

/* Quick contact */
.quick-bar {
  padding: 0 0 80px;
  background: var(--surface);
}
.quick-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quick-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease-out);
}
a.quick-bar-item:hover {
  border-color: rgba(224,144,24,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.quick-bar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.quick-bar-icon--wa { background: rgba(37,211,102,.12); color: var(--whatsapp); }
.quick-bar-item small {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.quick-bar-item strong { font-size: .9375rem; font-weight: 600; }

/* Brands */
.brands {
  background: var(--bg-dark-2);
  padding: 48px 0;
  overflow: hidden;
  border-block: 1px solid var(--border-dark);
}
.brands-header {
  text-align: center;
  margin-bottom: 28px;
}
.brands-header span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.brands-track-wrap {
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.brands-track {
  display: flex;
  gap: 64px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-name {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  transition: color .3s;
}
.brand-name:hover { color: rgba(255,255,255,.7); }

/* Trust pills */
.trust-section {
  padding: 64px 0;
  background: var(--surface);
}
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: .875rem;
  font-weight: 500;
  transition: border-color .2s, box-shadow .2s;
}
.trust-pill:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.trust-pill-icon {
  width: 32px; height: 32px;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.trust-pill strong { display: block; font-size: .8125rem; }
.trust-pill small { display: block; font-size: .6875rem; color: var(--text-muted); }

/* Services */
.services {
  padding: 120px 0;
  background: var(--white);
}
.service-filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 48px;
  padding: 5px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.filter-btn {
  font-size: .8125rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  color: var(--text-muted);
  background: transparent;
  transition: all .28s var(--ease-out);
}
.filter-btn:hover { color: var(--text); }
.filter-btn.active {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(6,8,13,.08);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224,144,24,.2);
}
.service-card.hidden { display: none; }
.service-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.service-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-card-thumb img { transform: scale(1.06); }
.service-card-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,10,15,.25) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover .service-card-thumb::after { opacity: 1; }
.service-card-body {
  padding: 22px 24px 24px;
  position: relative;
}
.service-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -.015em;
  transition: color .25s;
}
.service-card:hover .service-card-body h3 { color: var(--accent); }
.service-card-body p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-card--emergency {
  border-color: rgba(224,74,58,.3);
  background: linear-gradient(135deg, #fff5f4 0%, #fff 100%);
}
.service-card--emergency .service-card-body h3 { color: var(--danger); }

/* Solutions */
.solutions {
  padding: 100px 0;
  background: var(--bg-dark);
  color: #fff;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--border-dark);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.solution-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease);
}
.solution-card:hover .solution-card-bg { transform: scale(1.05); }
.solution-card-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,10,15,.2) 0%, rgba(7,10,15,.92) 100%);
}
.solution-card-content {
  position: relative;
  padding: 32px;
  z-index: 1;
}
.solution-card-tag {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.solution-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.solution-card p {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .8125rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 8px;
}
.solution-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

/* Process */
.process {
  padding: 100px 0;
  background: var(--surface);
}
.process-step {
  text-align: center;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224,144,24,.2);
}
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.process-track::before { display: none; }
.process-num {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: background .3s, border-color .3s, color .3s;
}
.process-step:hover .process-num {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #fff;
}
.process-step h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.process-step p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.about-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.about-gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
.about-badge-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-card em {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  font-style: normal;
  color: var(--accent);
  line-height: 1;
}
.about-badge-card span { font-size: .875rem; color: var(--text-light); }
.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-features {
  margin: 28px 0 36px;
  display: grid;
  gap: 12px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9375rem;
  font-weight: 500;
}
.about-features li svg { color: var(--teal); flex-shrink: 0; }
.stats-inline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.stat-box .stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-box .stat-label {
  display: block;
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: 6px;
}
.stat-plus, .stat-seven { color: var(--accent); font-weight: 800; }

/* Why us bento */
.why-us {
  padding: 100px 0;
  background: var(--surface);
}
.why-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .3s, box-shadow .3s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-card--featured {
  grid-column: span 2;
  background: var(--bg-dark);
  color: #fff;
  border-color: transparent;
}
.why-card-num {
  font-size: .875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.why-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }
.why-card--featured p { color: var(--text-light); }
.why-card--featured .why-card-num { color: var(--accent); }

/* Gallery */
.gallery {
  padding: 100px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,10,15,.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.gallery-cat {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.gallery-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.gallery-card span { font-size: .75rem; color: rgba(255,255,255,.6); }

/* Team */
.team {
  padding: 100px 0;
  background: var(--surface);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--accent-soft), var(--teal-soft));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
}
.team-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-title {
  display: block;
  font-size: .8125rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card p {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.team-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-muted);
  transition: background .2s, color .2s;
}
.team-social a:hover { background: var(--accent); color: #fff; }

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--bg-dark);
  color: #fff;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .35s, background .35s, transform .35s var(--ease-out);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(224,144,24,.15);
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-3px);
}
.testimonial-card .stars {
  color: var(--accent);
  font-size: .875rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card > p {
  font-size: .9375rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .875rem; }
.testimonial-author span { font-size: .75rem; color: rgba(255,255,255,.45); }

/* FAQ */
.faq {
  padding: 100px 0;
  background: var(--surface);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
}
.faq-arrow {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--text-muted);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent) 0%, #c97810 100%);
  color: #fff;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 1.0625rem;
  opacity: .9;
  margin-bottom: 32px;
}
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.cta-banner .btn-call { background: var(--bg-dark); box-shadow: none; }
.cta-banner .btn-whatsapp { background: #fff; color: var(--whatsapp); box-shadow: none; }

/* Contact */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 16px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color .2s;
}
a.contact-info-card:hover { border-color: var(--accent); }
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info-card p { font-size: .875rem; color: var(--text-muted); }
.contact-panel {
  background: linear-gradient(145deg, var(--bg-dark) 0%, #121820 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-panel::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(224,144,24,.15) 0%, transparent 70%);
  pointer-events: none;
}
.contact-panel h3 {
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.contact-panel p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-panel-actions { display: flex; flex-direction: column; gap: 12px; }
.contact-panel-actions .btn { width: 100%; justify-content: center; }

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.logo-img-footer { filter: brightness(0) invert(1); height: 36px; opacity: .9; }
.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  margin: 20px 0 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a, .footer-col span {
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover { color: var(--accent); }
.footer-col li svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 24px 0;
}
.footer-bottom p {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* Float buttons */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  z-index: 900;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.back-top {
  position: fixed;
  bottom: 28px; right: 96px;
  width: 44px; height: 44px;
  background: var(--bg-dark);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s;
  z-index: 900;
  box-shadow: var(--shadow-md);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--accent); }

/* Mobile-only nav elements (hidden on desktop) */
.mobile-nav-head,
.mobile-nav-footer,
.nav-link-icon { display: none; }

.service-filters-wrap { position: relative; }

.services-show-more { display: none; }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,8,13,.55);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-action-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px) saturate(1.3);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(6,8,13,.1);
  gap: 10px;
}
.mobile-action-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  transition: transform .2s var(--ease-out), opacity .2s;
}
.mobile-action-btn:active { transform: scale(.98); }
.mobile-action-btn--call {
  background: linear-gradient(135deg, var(--accent) 0%, #d48010 100%);
  box-shadow: 0 4px 16px rgba(224,144,24,.3);
}
.mobile-action-btn--wa {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 4px 16px rgba(34,197,94,.3);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { margin-inline: auto; }
  .hero-mosaic { height: 360px; max-width: 520px; margin: 0 auto; }
  .hero-float-card--1 { right: 0; }
  .hero-float-card--2 { left: 0; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-item:nth-child(2)::after { display: none; }
  .quick-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 320px; }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-track::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge-card { right: 0; bottom: -16px; }
  .why-bento { grid-template-columns: 1fr 1fr; }
  .why-card--featured { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 56px;
    --topbar-h: 36px;
    --mobile-bar-h: 72px;
    --mobile-radius: 20px;
  }

  html { scroll-padding-top: calc(var(--header-h) + 8px); }
  body {
    padding-bottom: calc(var(--mobile-bar-h) + 20px + env(safe-area-inset-bottom, 0px));
    -webkit-text-size-adjust: 100%;
  }
  body.menu-open { overflow: hidden; touch-action: none; }

  .container { width: min(var(--container), calc(100% - 28px)); }

  /* Collapse topbar on scroll */
  .site-header.scrolled .topbar {
    height: 0;
    overflow: hidden;
    border: none;
    opacity: 0;
    pointer-events: none;
  }
  .site-header.scrolled { --topbar-h: 0px; }

  /* Topbar */
  .topbar {
    font-size: .75rem;
    transition: height .35s var(--ease), opacity .35s var(--ease);
  }
  .topbar .container { gap: 8px; }
  .topbar-left { gap: 10px; }
  .topbar-left span:not(.topbar-badge) { display: none; }

  /* Navbar — compact glass pill */
  .navbar {
    height: var(--nav-h);
    background: transparent;
    border: none;
  }
  .site-header.scrolled .navbar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--border);
  }
  .site-header:not(.scrolled) .navbar {
    background: linear-gradient(180deg, rgba(6,8,13,.55) 0%, transparent 100%);
  }
  .logo-img { height: 28px; }
  .nav-container { gap: 10px; }
  .nav-cta { display: none; }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    transition: background .25s, border-color .25s, transform .2s;
  }
  .site-header.scrolled .hamburger {
    background: rgba(20,27,38,.06);
    border-color: var(--border);
  }
  .hamburger:active { transform: scale(.94); }
  .hamburger span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: transform .35s var(--ease-out), opacity .25s, width .25s;
  }
  .site-header:not(.scrolled) .hamburger span { background: #fff; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Full-screen drawer nav */
  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    left: auto;
    right: 0;
    width: min(100%, 340px);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    padding: calc(16px + env(safe-area-inset-top, 0px)) 20px calc(24px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(165deg, #0a0f16 0%, #06080d 55%, #0c1118 100%);
    border-left: 1px solid rgba(255,255,255,.08);
    box-shadow: -24px 0 80px rgba(0,0,0,.45);
    transform: translateX(105%);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: transform .45s var(--ease-out);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: none;
    border-radius: 0;
  }
  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav-links.open .nav-pill a {
    animation: navItemIn .5s var(--ease-out) backwards;
  }
  .nav-links.open .nav-pill a:nth-child(1) { animation-delay: .06s; }
  .nav-links.open .nav-pill a:nth-child(2) { animation-delay: .1s; }
  .nav-links.open .nav-pill a:nth-child(3) { animation-delay: .14s; }
  .nav-links.open .nav-pill a:nth-child(4) { animation-delay: .18s; }
  .nav-links.open .nav-pill a:nth-child(5) { animation-delay: .22s; }

  @keyframes navItemIn {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.5);
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .mobile-nav-logo {
    height: 26px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .9;
  }
  .mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    transition: background .2s, color .2s;
  }
  .mobile-nav-close:active { background: rgba(255,255,255,.15); color: #fff; }

  .nav-pill {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    flex: 1;
  }
  .nav-links a {
    width: 100%;
    padding: 16px 18px;
    min-height: 56px;
    border-radius: var(--mobile-radius);
    font-size: 1.0625rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: -.01em;
    transition: background .25s, color .25s, transform .2s;
  }
  .nav-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: .6875rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(224,144,24,.12);
    flex-shrink: 0;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: #fff;
    background: rgba(255,255,255,.08);
  }
  .nav-links a.active {
    background: rgba(224,144,24,.15);
    box-shadow: inset 0 0 0 1px rgba(224,144,24,.25);
  }
  .nav-links a:active { transform: scale(.98); }

  .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .mobile-nav-footer .btn {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    font-size: .9375rem;
  }

  /* Override header-over-hero nav colors in drawer context */
  .site-header:not(.scrolled) .nav-links,
  .site-header.scrolled .nav-links {
    background: linear-gradient(165deg, #0a0f16 0%, #06080d 55%, #0c1118 100%);
    border-color: rgba(255,255,255,.08);
  }
  .site-header:not(.scrolled) .nav-links a,
  .site-header.scrolled .nav-links a {
    color: rgba(255,255,255,.75);
  }

  .nav-overlay {
    background: rgba(4,6,10,.65);
    backdrop-filter: blur(8px);
  }

  /* Hero — app-like layout */
  .hero {
    padding: calc(var(--header-h) + 20px) 0 56px;
    min-height: auto;
  }
  .hero-inner { gap: 28px; }
  .hero-visual { order: -1; }
  .hero-content { text-align: left; }

  .hero-badge {
    font-size: .6875rem;
    padding: 7px 14px;
    margin-bottom: 16px;
    background: rgba(224,144,24,.15);
    border: 1px solid rgba(224,144,24,.25);
    backdrop-filter: blur(8px);
  }
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 14px;
  }
  .hero-lead {
    font-size: .9375rem;
    line-height: 1.65;
    color: rgba(255,255,255,.65);
    margin-inline: 0;
    margin-bottom: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-content: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    font-size: .875rem;
    border-radius: 14px;
  }
  .hero-actions .btn-outline {
    grid-column: 1 / -1;
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.15);
    color: rgba(255,255,255,.85);
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    margin-inline: 0;
    margin-top: 24px;
    padding: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--mobile-radius);
    backdrop-filter: blur(12px);
  }
  .hero-trust-divider { display: none; }
  .hero-trust-item {
    text-align: center;
    padding: 4px 2px;
  }
  .hero-trust-item strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
  }
  .hero-trust-item span {
    font-size: .625rem;
    line-height: 1.3;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .03em;
  }

  /* Hero visual — single featured image + info cards */
  .hero-mosaic {
    display: block;
    height: auto;
    max-width: 100%;
    border-radius: var(--mobile-radius);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
  }
  .hero-mosaic-item:not(.hero-mosaic-item--large) { display: none; }
  .hero-mosaic-item--large {
    aspect-ratio: 16/10;
    border-radius: var(--mobile-radius);
  }
  .hero-mosaic-item--large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-mosaic-label {
    font-size: .75rem;
    font-weight: 600;
    bottom: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(6,8,13,.7);
    backdrop-filter: blur(8px);
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hero-mosaic { grid-column: 1 / -1; }
  .hero-float-card {
    position: relative;
    inset: auto;
    margin: 0;
    animation: none;
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
  }
  .hero-float-card--1,
  .hero-float-card--2 { top: auto; left: auto; right: auto; bottom: auto; }
  .hero-float-card strong { font-size: .8125rem; }
  .hero-float-card span { font-size: .6875rem; }
  .hero-float-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .hero-scroll { display: none; }

  /* Section typography */
  .section-header { margin-bottom: 32px; }
  .section-eyebrow {
    font-size: .6875rem;
    letter-spacing: .12em;
  }
  .section-title {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
    letter-spacing: -.025em;
    line-height: 1.15;
  }
  .section-desc { font-size: .9375rem; line-height: 1.6; }

  .services, .about, .gallery, .faq, .contact { padding: 64px 0; }
  .solutions, .process, .why-us, .testimonials { padding: 64px 0; }
  .trust-section { padding: 40px 0; }
  .quick-bar { padding-bottom: 48px; }
  .cta-banner { padding: 48px 0; }
  .footer { padding-top: 48px; }

  /* Stats — card grid */
  .stats-strip { margin-top: -28px; padding-bottom: 40px; }
  .stats-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .stats-strip-item {
    padding: 18px 16px;
    background: var(--white);
    border-radius: var(--mobile-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
  }
  .stats-strip-item::after { display: none !important; }
  .stats-strip-item strong {
    font-size: 1.625rem;
    font-weight: 800;
    letter-spacing: -.02em;
    background: linear-gradient(135deg, var(--accent), #d48010);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stats-strip-item span { font-size: .75rem; color: var(--text-muted); }

  /* Quick bar — 2 column cards */
  .quick-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .quick-bar-item {
    padding: 16px;
    min-height: auto;
    border-radius: var(--mobile-radius);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  .quick-bar-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .quick-bar-item strong { font-size: .875rem; }
  .quick-bar-item span { font-size: .75rem; }

  /* Service filters — snap scroll with fade */
  .service-filters-wrap {
    margin-bottom: 28px;
    margin-inline: -4px;
    padding-inline: 4px;
  }
  .service-filters-wrap::before,
  .service-filters-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 28px;
    z-index: 2;
    pointer-events: none;
  }
  .service-filters-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--surface) 0%, transparent 100%);
  }
  .service-filters-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--surface) 0%, transparent 100%);
  }
  .service-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding: 4px 8px;
    background: transparent;
    border: none;
    border-radius: 0;
  }
  .service-filters::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: .8125rem;
    font-weight: 600;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform .2s, background .2s, border-color .2s;
  }
  .filter-btn.active {
    background: var(--bg-dark);
    color: #fff;
    border-color: var(--bg-dark);
    box-shadow: 0 4px 16px rgba(6,8,13,.2);
  }
  .filter-btn:active { transform: scale(.96); }

  /* Service cards — modern card UI */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card {
    border-radius: var(--mobile-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: var(--white);
  }
  .service-card-thumb { aspect-ratio: 16/9; }
  .service-card-body { padding: 16px 18px 18px; }
  .service-card h3 { font-size: 1rem; letter-spacing: -.01em; }
  .service-card p { font-size: .8125rem; line-height: 1.55; }
  .service-tag {
    font-size: .625rem;
    padding: 4px 10px;
  }

  /* Process steps */
  .process-track { grid-template-columns: 1fr; gap: 10px; }
  .process-step {
    padding: 20px;
    border-radius: var(--mobile-radius);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }

  /* Why us bento */
  .why-bento { grid-template-columns: 1fr; gap: 10px; }
  .why-card--featured { grid-column: span 1; }
  .why-card {
    padding: 22px;
    border-radius: var(--mobile-radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-card {
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
  }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; gap: 12px; }
  .testimonial-card {
    padding: 22px;
    border-radius: var(--mobile-radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }

  /* About */
  .about-grid { gap: 28px; }
  .about-gallery { margin-bottom: 20px; border-radius: var(--mobile-radius); overflow: hidden; }
  .about-badge-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 12px;
    width: 100%;
    border-radius: var(--mobile-radius);
  }
  .stats-inline { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-box {
    padding: 16px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }

  /* FAQ + contact */
  .faq-question {
    padding: 18px;
    font-size: .875rem;
    min-height: 56px;
    border-radius: 16px;
  }
  .faq-item {
    border-radius: var(--mobile-radius);
    overflow: hidden;
    margin-bottom: 8px;
    border: 1px solid var(--border);
    background: var(--white);
  }
  .faq-answer p { padding: 0 18px 18px; font-size: .875rem; }
  .contact-panel {
    padding: 24px 20px;
    border-radius: var(--mobile-radius);
  }
  .contact-panel h3 { font-size: 1.375rem; }
  .contact-info-card {
    padding: 16px;
    min-height: auto;
    border-radius: 16px;
  }

  /* CTA banner */
  .cta-banner-inner {
    padding: 32px 24px;
    border-radius: var(--mobile-radius);
  }
  .cta-buttons { flex-direction: column; align-items: stretch; padding: 0; gap: 10px; }
  .cta-buttons .btn { width: 100%; min-height: 50px; border-radius: 14px; }

  /* Trust pills */
  .trust-pills { gap: 8px; }
  .trust-pill {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--border);
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom p { font-size: .75rem; line-height: 1.6; padding: 0; }

  /* Solution cards */
  .solution-card {
    min-height: 260px;
    border-radius: var(--mobile-radius);
    overflow: hidden;
  }
  .solution-card-content { padding: 22px; }

  /* Floating action dock */
  .whatsapp-float { display: none; }
  .mobile-action-bar {
    display: flex;
    left: 16px;
    right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: auto;
    padding: 6px;
    gap: 6px;
    border-radius: 999px;
    background: rgba(12,17,24,.92);
    backdrop-filter: blur(24px) saturate(1.5);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.05) inset;
  }
  .mobile-action-btn {
    flex: 1;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .01em;
    gap: 6px;
  }
  .mobile-action-btn--call {
    background: linear-gradient(135deg, var(--accent) 0%, #c8780e 100%);
    box-shadow: 0 4px 20px rgba(224,144,24,.35);
  }
  .mobile-action-btn--wa {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 20px rgba(37,211,102,.3);
  }
  .mobile-action-btn svg { flex-shrink: 0; }

  .back-top {
    right: 20px;
    bottom: calc(var(--mobile-bar-h) + 16px + env(safe-area-inset-bottom, 0px));
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  /* Disable hover lift on touch */
  .service-card:hover,
  .solution-card:hover,
  .why-card:hover,
  .process-step:hover,
  .quick-bar-item:hover,
  .testimonial-card:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  :root { --section-pad: 28px; }

  .container { width: calc(100% - 20px); }

  .hero h1 { font-size: clamp(1.5rem, 7vw, 1.875rem); }
  .hero-trust-item strong { font-size: .9375rem; }

  .services-grid { gap: 6px; }
  .service-card h3 { font-size: .6875rem; }

  .why-bento { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); }

  .mobile-action-bar { left: 10px; right: 10px; }
  .mobile-action-btn { font-size: .6875rem; }
}

/* Mobile compact v10 — dolu görünüm, az kaydırma */
@media (max-width: 768px) {
  :root {
    --nav-h: 52px;
    --topbar-h: 0px;
    --mobile-bar-h: 64px;
    --mobile-radius: 16px;
    --section-pad: 36px;
  }

  body {
    padding-bottom: calc(var(--mobile-bar-h) + 16px + env(safe-area-inset-bottom, 0px));
  }

  .container { width: min(var(--container), calc(100% - 24px)); }

  .topbar { display: none; height: 0; overflow: hidden; }

  .navbar {
    height: var(--nav-h);
    background: rgba(6,8,13,.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .site-header.scrolled .navbar {
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--border);
  }

  .logo-img { height: 26px; }

  /* Hero — kompakt + 3 görsel şeridi */
  .hero {
    padding: calc(var(--nav-h) + 14px) 0 24px;
  }
  .hero-inner { gap: 16px; }
  .hero-badge { font-size: .625rem; padding: 5px 10px; margin-bottom: 10px; }
  .hero h1 {
    font-size: clamp(1.625rem, 7.5vw, 2.125rem);
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .hero-lead {
    font-size: .8125rem;
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-actions { gap: 8px; }
  .hero-actions .btn {
    min-height: 44px;
    font-size: .8125rem;
    padding: 10px 12px;
    border-radius: 12px;
  }
  .hero-actions .btn-outline { display: none; }
  .hero-trust {
    margin-top: 14px;
    padding: 10px 8px;
    border-radius: 14px;
    gap: 6px;
  }
  .hero-trust-item strong { font-size: 1.0625rem; }
  .hero-trust-item span { font-size: .5625rem; }

  .hero-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    order: 0;
  }
  .hero-mosaic { display: contents; height: auto; box-shadow: none; }
  .hero-mosaic-item {
    display: block !important;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
  }
  .hero-mosaic-item--large { aspect-ratio: 1; }
  .hero-mosaic-label { font-size: .5625rem; bottom: 6px; left: 6px; padding: 3px 7px; }
  .hero-float-card { display: none; }

  /* Tekrarlayan / gereksiz bölümler */
  .stats-strip,
  .cta-banner,
  .contact-panel { display: none; }
  .quick-bar-item:nth-child(n+3) { display: none; }

  /* Sıkı bölüm aralıkları */
  .section-header { margin-bottom: 18px; }
  .section-header--center .section-desc,
  .faq-layout > div:first-child .section-desc,
  .contact-grid > div:first-child .section-desc { display: none; }
  .section-eyebrow { font-size: .625rem; margin-bottom: 6px; }
  .section-title {
    font-size: clamp(1.25rem, 5.5vw, 1.5rem);
    line-height: 1.2;
  }

  .services, .about, .gallery, .faq, .contact,
  .solutions, .process, .why-us, .testimonials { padding: var(--section-pad) 0; }
  .trust-section { padding: 24px 0; }
  .quick-bar { padding: 20px 0 24px; }
  .footer { padding-top: 36px; padding-bottom: 24px; }
  .brands { padding: 20px 0; }
  .brands-header { margin-bottom: 10px; }
  .brands-header span { font-size: .6875rem; }

  /* Quick bar */
  .quick-bar-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .quick-bar-item {
    padding: 12px;
    border-radius: 14px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .quick-bar-icon { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; }
  .quick-bar-item small { font-size: .625rem; }
  .quick-bar-item strong { font-size: .8125rem; }

  /* Trust pills — 2 sütun */
  .trust-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .trust-pill {
    width: auto;
    padding: 10px 12px;
    border-radius: 12px;
  }
  .trust-pill-icon { width: 32px; height: 32px; }
  .trust-pill strong { font-size: .8125rem; }
  .trust-pill small { font-size: .6875rem; }

  /* Filtreler */
  .service-filters-wrap { margin-bottom: 14px; }
  .filter-btn { min-height: 36px; padding: 8px 14px; font-size: .75rem; }

  /* Hizmetler — 2 sütun kompakt */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .service-card { border-radius: 14px; }
  .service-card.mobile-collapsed { display: none !important; }
  .service-card-thumb { aspect-ratio: 1; }
  .service-card-body { padding: 10px 10px 12px; }
  .service-card h3 { font-size: .75rem; line-height: 1.3; }
  .service-card p,
  .service-card .btn-small,
  .service-tag { display: none; }

  .services-show-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 14px;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  .services-show-more.is-hidden { display: none; }

  /* Çözümler — yatay kaydır */
  .solutions-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    margin-inline: -12px;
    padding-inline: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .solutions-grid::-webkit-scrollbar { display: none; }
  .solution-card {
    flex: 0 0 min(78vw, 280px);
    min-height: 200px;
    scroll-snap-align: start;
    border-radius: 16px;
  }
  .solution-card-content { padding: 16px; }
  .solution-card h3 { font-size: 1rem; margin-bottom: 6px; }
  .solution-card p {
    font-size: .75rem;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .solution-features { display: none; }

  /* Süreç — 2x2 */
  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .process-step {
    padding: 14px 12px;
    border-radius: 14px;
    text-align: left;
  }
  .process-num { width: 32px; height: 32px; font-size: .75rem; margin-bottom: 8px; }
  .process-step h3 { font-size: .8125rem; margin-bottom: 4px; }
  .process-step p {
    font-size: .6875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Hakkımızda */
  .about-grid { gap: 16px; }
  .about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 0;
  }
  .about-gallery-item { aspect-ratio: 1; border-radius: 12px; overflow: hidden; }
  .about-gallery-item--tall { grid-row: auto; aspect-ratio: 1; }
  .about-badge-card,
  .stats-inline { display: none; }
  .about-content p:nth-of-type(2) { display: none; }
  .about-content p { font-size: .8125rem; margin-bottom: 12px; }
  .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 0;
  }
  .about-features li {
    font-size: .6875rem;
    padding: 8px 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
  }
  .about-features li svg { width: 14px; height: 14px; }

  /* Neden biz — 2 sütun */
  .why-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .why-card--featured { grid-column: span 2; }
  .why-card { padding: 14px; border-radius: 14px; }
  .why-card-num { font-size: .6875rem; margin-bottom: 6px; }
  .why-card h3 { font-size: .8125rem; margin-bottom: 4px; }
  .why-card p { font-size: .6875rem; line-height: 1.45; }
  .why-card--featured p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Galeri — 2x2 kare */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-card { aspect-ratio: 1; border-radius: 14px; }
  .gallery-card-overlay h4 { font-size: .8125rem; }

  /* Yorumlar — yatay kaydır */
  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    margin-inline: -12px;
    padding-inline: 12px;
    scrollbar-width: none;
  }
  .testimonial-grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: start;
    padding: 16px;
    border-radius: 16px;
  }
  .testimonial-card p {
    font-size: .8125rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* SSS + iletişim */
  .faq-layout { gap: 16px; }
  .faq-item { margin-bottom: 6px; border-radius: 14px; }
  .faq-question { padding: 14px; font-size: .8125rem; min-height: 48px; }
  .faq-answer p { padding: 0 14px 14px; font-size: .8125rem; }

  .contact-grid { gap: 16px; }
  .contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .contact-info-card {
    padding: 12px;
    border-radius: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .contact-info-card h4 { font-size: .75rem; }
  .contact-info-card p { font-size: .6875rem; }

  /* Footer — 2 sütun */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }
  .footer-brand,
  .footer-bottom { grid-column: 1 / -1; }
  .footer-brand p { font-size: .8125rem; }
  .footer-bottom p { font-size: .6875rem; }

  .mobile-action-bar {
    left: 12px;
    right: 12px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    padding: 5px;
  }
  .mobile-action-btn { min-height: 48px; font-size: .75rem; }
  .back-top {
    bottom: calc(var(--mobile-bar-h) + 12px + env(safe-area-inset-bottom, 0px));
    width: 40px;
    height: 40px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .nav-cta:hover,
  .service-card:hover,
  .solution-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .brands-track { animation: none; }
}
