/* =========================================================
   Çetiner Ajans — static site stylesheet
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --radius: 0.5rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);

  --font-display: "Syne", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;

  --background: oklch(0.975 0.014 210);
  --foreground: oklch(0.26 0.03 250);

  --surface: oklch(1 0 0);
  --surface-raised: oklch(0.995 0.006 220);

  --primary: oklch(0.54 0.105 205);
  --primary-foreground: oklch(0.99 0.004 220);

  --signal: oklch(0.58 0.15 352);
  --signal-foreground: oklch(0.99 0.004 220);

  --muted-foreground: oklch(0.52 0.025 250);

  --success: oklch(0.6 0.12 162);

  --border: oklch(0.3 0.03 250 / 12%);
  --border-strong: oklch(0.3 0.03 250 / 24%);
  --ring: oklch(0.6 0.095 200);

  --whatsapp: oklch(0.66 0.16 145);

  --gradient-signal: linear-gradient(100deg, var(--primary) 0%, oklch(0.56 0.12 235) 50%, var(--signal) 100%);
  --shadow-lift: 0 24px 60px -32px oklch(0.4 0.06 250 / 28%);
  --shadow-glow: 0 0 0 1px oklch(0.6 0.095 200 / 22%), 0 18px 50px -24px oklch(0.6 0.095 200 / 28%);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --glass-bg: oklch(1 0 0 / 55%);
  --glass-bg-strong: oklch(1 0 0 / 72%);
  --glass-border: oklch(1 0 0 / 65%);
  --surface-40: oklch(1 0 0 / 40%);
  --surface-60: oklch(1 0 0 / 60%);
  --surface-70: oklch(1 0 0 / 70%);
}

.dark {
  --background: oklch(0.19 0.02 250);
  --foreground: oklch(0.96 0.008 220);

  --surface: oklch(0.23 0.022 250);
  --surface-raised: oklch(0.26 0.024 250);

  --primary: oklch(0.72 0.11 205);
  --primary-foreground: oklch(0.18 0.02 250);

  --signal: oklch(0.7 0.15 352);
  --signal-foreground: oklch(0.18 0.02 250);

  --muted-foreground: oklch(0.74 0.02 240);
  --success: oklch(0.72 0.13 162);

  --border: oklch(0.95 0.01 220 / 14%);
  --border-strong: oklch(0.95 0.01 220 / 26%);
  --ring: oklch(0.72 0.1 200);

  --shadow-lift: 0 24px 60px -32px oklch(0 0 0 / 70%);
  --shadow-glow: 0 0 0 1px oklch(0.72 0.11 205 / 26%), 0 18px 50px -24px oklch(0.72 0.11 205 / 35%);

  --glass-bg: oklch(0.24 0.022 250 / 62%);
  --glass-bg-strong: oklch(0.24 0.022 250 / 82%);
  --glass-border: oklch(0.95 0.01 220 / 12%);
  --surface-40: oklch(0.24 0.022 250 / 55%);
  --surface-60: oklch(0.24 0.022 250 / 68%);
  --surface-70: oklch(0.24 0.022 250 / 78%);
}

.dark body {
  background-image:
    radial-gradient(60rem 40rem at 8% -8%, oklch(0.42 0.09 205 / 45%) 0%, transparent 60%),
    radial-gradient(52rem 36rem at 96% 4%, oklch(0.4 0.1 350 / 38%) 0%, transparent 62%),
    radial-gradient(58rem 40rem at 50% 108%, oklch(0.38 0.08 165 / 34%) 0%, transparent 62%),
    linear-gradient(180deg, oklch(0.2 0.02 250) 0%, oklch(0.17 0.02 250) 100%);
}

.dark .glass-tile {
  background: oklch(0.18 0.02 250 / 82%);
  border-color: oklch(1 0 0 / 10%);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; background-color: var(--background); }
body {
  margin: 0;
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  background-color: var(--background);
  background-repeat: no-repeat;
  background-image:
    radial-gradient(60rem 40rem at 8% -8%, oklch(0.9 0.07 200 / 70%) 0%, transparent 60%),
    radial-gradient(52rem 36rem at 96% 4%, oklch(0.92 0.06 350 / 60%) 0%, transparent 62%),
    radial-gradient(58rem 40rem at 50% 108%, oklch(0.92 0.06 150 / 55%) 0%, transparent 62%),
    linear-gradient(180deg, oklch(0.985 0.012 220) 0%, oklch(0.955 0.02 210) 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
::selection { background: var(--primary); color: var(--primary-foreground); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: oklch(0.6 0.04 230 / 40%); border-radius: 999px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--ring); outline-offset: 3px; border-radius: 4px;
}

.min-h-screen { min-height: 100vh; }
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 60rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container, .container-sm, .container-narrow { padding: 0 2rem; } }

/* ---------- Custom utilities ---------- */
.font-display { font-family: var(--font-display); letter-spacing: -0.02em; }

.text-signal-gradient {
  background: var(--gradient-signal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bg-signal-gradient { background: var(--gradient-signal); }

.surface-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(22px) saturate(150%);
}
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(20px) saturate(150%);
}
.glass-tile {
  background: oklch(0.28 0.03 250 / 82%);
  border: 1px solid oklch(1 0 0 / 18%);
  backdrop-filter: blur(16px) saturate(140%);
}

.hairline-grid {
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 88px 88px;
}

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.eyebrow.c-primary { color: var(--primary); }
.eyebrow.c-signal { color: var(--signal); }
.eyebrow.c-success { color: var(--success); }
.eyebrow.c-foreground { color: var(--foreground); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal[data-revealed="true"] { opacity: 1; transform: none; }

.marquee-track { animation: marquee 40s linear infinite; }
.marquee-group:hover .marquee-track { animation-play-state: paused; }

.draw-line {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: draw-line 2.2s ease forwards 0.4s;
}

.pulse-ring { pointer-events: none; animation: pulse-ring 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.pulse-dot { box-shadow: 0 0 0 0 oklch(0.54 0.105 205 / 45%); animation: pulse-dot 2.6s ease-out infinite; }

.shine { position: relative; overflow: hidden; isolation: isolate; }
.shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, oklch(1 0 0 / 45%) 50%, transparent 75%);
  transform: translateX(-120%);
  animation: shine-sweep 4.5s var(--ease-out-expo) infinite;
  pointer-events: none;
}

.tilt-hover { transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo); will-change: transform; }
.tilt-hover:hover { transform: translateY(-6px) scale(1.012); box-shadow: var(--shadow-glow), var(--shadow-lift); }

.nav-link { position: relative; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 100%;
  border-radius: 2px;
  background: var(--gradient-signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

.float-slow { animation: float-blob 14s ease-in-out infinite; }
.float-slower { animation: float-blob 20s ease-in-out infinite reverse; }

@keyframes shine-sweep {
  0%, 55% { transform: translateX(-120%); }
  85%, 100% { transform: translateX(120%); }
}
@keyframes float-blob {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2.5rem, -2rem, 0) scale(1.08); }
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 oklch(0.54 0.105 205 / 45%); }
  70% { box-shadow: 0 0 0 12px oklch(0.54 0.105 205 / 0%); }
  100% { box-shadow: 0 0 0 0 oklch(0.54 0.105 205 / 0%); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes draw-line { to { stroke-dashoffset: 0; } }
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.5; }
  75%, 100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Brand loader ---------- */
.brand-loader {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: var(--background);
  transition: opacity 0.7s;
}
.brand-loader.is-fading { opacity: 0; pointer-events: none; }
.brand-loader.is-hidden { display: none; }
.brand-loader .blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.brand-loader .blob-a { position: absolute; top: -8rem; left: -8rem; height: 22rem; width: 22rem; border-radius: 999px; background: oklch(0.54 0.105 205 / 25%); filter: blur(120px); }
.brand-loader .blob-b { position: absolute; right: -8rem; bottom: -6rem; height: 20rem; width: 20rem; border-radius: 999px; background: oklch(0.58 0.15 352 / 20%); filter: blur(120px); }
.brand-loader .loader-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.brand-loader .loader-word { display: flex; font-family: var(--font-display); font-weight: 700; font-size: 1.875rem; letter-spacing: -0.02em; }
@media (min-width: 640px) { .brand-loader .loader-word { font-size: 3rem; } }
.loader-letter { display: inline-block; opacity: 0; transform: translateY(0.6em) rotate(6deg); animation: loader-letter-in 0.7s var(--ease-out-expo) forwards; }
.loader-bar { animation: loader-bar-slide 1.2s var(--ease-out-expo) infinite; }
@keyframes loader-letter-in { to { opacity: 1; transform: translateY(0) rotate(0deg); } }
@keyframes loader-bar-slide { 0% { transform: translateX(-110%); } 100% { transform: translateX(320%); } }
.loader-track { position: relative; height: 3px; width: 10rem; overflow: hidden; border-radius: 999px; background: var(--border); }
.loader-fill { position: absolute; inset-block: 0; left: 0; width: 33%; border-radius: 999px; background: var(--gradient-signal); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 999px; font-weight: 600; font-size: 0.875rem;
  padding: 0.875rem 1.75rem;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; line-height: 1.3; }
}
.btn-primary { background: var(--gradient-signal); color: var(--primary-foreground); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--border-strong); color: var(--foreground); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; border-radius: 999px; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  border-bottom: 1px solid oklch(1 0 0 / 25%);
  background: var(--surface-40);
  backdrop-filter: blur(20px);
  transition: all 0.3s;
}
.navbar.is-scrolled {
  border-bottom-color: oklch(1 0 0 / 50%);
  background: var(--surface-60);
  box-shadow: 0 18px 50px -30px oklch(0.29 0.06 250 / 35%);
  backdrop-filter: blur(28px);
}
.navbar-row { display: flex; align-items: center; justify-content: space-between; height: 4.5rem; padding-block: 1rem; }
.brand { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em; }
.navbar-links { display: none; align-items: center; gap: 1.25rem; font-size: 0.8125rem; color: var(--muted-foreground); white-space: nowrap; }
@media (min-width: 1120px) { .navbar-links { display: flex; } }
.navbar-links a { padding-block: 0.25rem; transition: color 0.2s; }
.navbar-links a:hover { color: var(--foreground); }
.navbar-actions { display: flex; align-items: center; gap: 0.5rem; }
.navbar-cta { display: none; }
@media (min-width: 1120px) { .navbar-cta { display: inline-flex; border: 1px solid var(--border-strong); padding: 0.5rem 1.25rem; border-radius: 999px; font-size: 0.875rem; font-weight: 600; white-space: nowrap; transition: color 0.2s, border-color 0.2s; } }
.navbar-cta:hover { border-color: var(--primary); color: var(--primary); }
.menu-btn { display: block; }
@media (min-width: 1120px) { .menu-btn { display: none; } }
.menu-btn svg { height: 1.5rem; width: 1.5rem; }
.mobile-menu {
  display: none; flex-direction: column; gap: 1.25rem;
  border-top: 1px solid oklch(1 0 0 / 40%);
  background: var(--surface-70);
  backdrop-filter: blur(28px);
  padding: 1.5rem;
}
.mobile-menu.is-open { display: flex; }
@media (min-width: 1120px) { .mobile-menu { display: none !important; } }
.mobile-menu a { font-size: 1rem; font-weight: 500; }
.mobile-menu .btn { margin-top: 0.25rem; }

/* Simple sticky header used on service/legal pages */
.simple-header { position: sticky; top: 0; z-index: 40; border-radius: 0; border-inline: none; border-top: none; }
.simple-header .row { display: flex; align-items: center; justify-content: space-between; padding-block: 1.25rem; }
.simple-header .row.wide { padding-block: 1rem; }
.simple-header nav { display: flex; align-items: center; gap: 1rem; font-size: 0.8rem; }
.simple-header nav a.svc-link { display: none; color: var(--muted-foreground); transition: color 0.2s; }
@media (min-width: 640px) { .simple-header nav a.svc-link { display: inline; } }
.simple-header nav a.svc-link:hover { color: var(--foreground); }
.back-link { border: 1px solid var(--border); border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 500; color: var(--muted-foreground); transition: color 0.2s, border-color 0.2s; }
.back-link:hover { border-color: var(--primary); color: var(--foreground); }

/* ---------- Theme toggle ---------- */
.theme-toggle {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  height: 2.25rem; width: 2.25rem; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted-foreground);
  transition: color 0.2s, border-color 0.2s;
}
.theme-toggle:hover { border-color: var(--primary); color: var(--primary); }
.theme-toggle svg { position: absolute; height: 1rem; width: 1rem; transition: all 0.5s; }
.theme-toggle .icon-sun { opacity: 1; transform: scale(1) rotate(0deg); }
.theme-toggle .icon-moon { opacity: 0; transform: scale(0) rotate(90deg); }
.dark .theme-toggle .icon-sun { opacity: 0; transform: scale(0) rotate(-90deg); }
.dark .theme-toggle .icon-moon { opacity: 1; transform: scale(1) rotate(0deg); }

/* ---------- Layout helpers ---------- */
.section { padding-block: 5rem; }
@media (min-width: 1024px) { .section { padding-block: 7rem; } }
.section-tight { padding-block: 3.5rem; }
@media (min-width: 1024px) { .section-tight { padding-block: 5rem; } }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.25rem; }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-4-sm { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .grid-4-sm { grid-template-columns: repeat(4, 1fr); } }
.max-w-2 { max-width: 42rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.mx-auto { margin-inline: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: 9rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .hero { padding-top: 11rem; padding-bottom: 8rem; } }
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-grid { grid-template-columns: 1fr; gap: 3.5rem; align-items: center; display: grid; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 3rem; } }
.hero-eyebrow-wrap { display: inline-flex; align-items: center; gap: 0.625rem; border-left: 2px solid var(--primary); padding-left: 0.75rem; margin-bottom: 2rem; }
.hero h1 { font-family: var(--font-display); font-size: 2.6rem; line-height: 1.04; font-weight: 700; letter-spacing: -0.035em; }
@media (min-width: 640px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.2rem; } }
.hero p.lead { margin-top: 2rem; max-width: 32rem; font-size: 1rem; line-height: 1.6; color: var(--muted-foreground); }
@media (min-width: 640px) { .hero p.lead { font-size: 1.125rem; } }
.hero-actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.hero-trust { margin-top: 3rem; display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.hero-trust .num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.hero-trust .txt { font-size: 0.875rem; color: var(--muted-foreground); }

.perf-card { position: relative; margin-inline: auto; max-width: 28rem; border-radius: 1rem; padding: 1.75rem; backdrop-filter: blur(20px); }
.perf-card-head { margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.live-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--success); }
.dot-wrap { position: relative; display: flex; height: 0.5rem; width: 0.5rem; }
.dot-wrap .ring { position: absolute; display: inline-flex; height: 100%; width: 100%; border-radius: 999px; background: var(--success); }
.dot-wrap .core { position: relative; display: inline-flex; height: 0.5rem; width: 0.5rem; border-radius: 999px; background: var(--success); }
.perf-value { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; }
@media (min-width: 640px) { .perf-value { font-size: 3rem; } }
.perf-caption { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.perf-chart { margin-top: 1.75rem; height: 6rem; width: 100%; }
.perf-stats { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); padding-top: 1.25rem; }
.perf-stats > div { text-align: center; padding-inline: 0.5rem; border-left: 1px solid var(--border); }
.perf-stats > div:first-child { border-left: none; }
.perf-stats .v { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.perf-stats .k { margin-top: 0.25rem; font-size: 0.6875rem; color: var(--muted-foreground); }

/* ---------- Marquee ---------- */
.marquee-section { overflow: hidden; border-block: 1px solid oklch(1 0 0 / 40%); background: var(--surface-40); padding-block: 2.25rem; backdrop-filter: blur(20px); }
.marquee-caption { margin-bottom: 1.5rem; text-align: center; }
.marquee-group { position: relative; }
.marquee-fade { position: absolute; inset-block: 0; z-index: 10; width: 6rem; pointer-events: none; }
.marquee-fade.left { left: 0; background: linear-gradient(to right, var(--surface-70), transparent); }
.marquee-fade.right { right: 0; background: linear-gradient(to left, var(--surface-70), transparent); }
.marquee-track { display: flex; width: max-content; }
.marquee-set { display: flex; align-items: center; gap: 3.5rem; padding-inline: 1.75rem; }
.marquee-set span { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; white-space: nowrap; color: oklch(0.52 0.025 250 / 50%); transition: color 0.2s; }
.marquee-set span:hover { color: var(--foreground); }

/* ---------- Cards ---------- */
.stat-card { border-radius: 1rem; padding: 1.5rem; }
.stat-card .v { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; }
@media (min-width: 640px) { .stat-card .v { font-size: 2.25rem; } }
.stat-card .k { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

.service-card { border-radius: 1rem; padding: 2rem; }
.service-icon { display: flex; height: 2.75rem; width: 2.75rem; align-items: center; justify-content: center; border-radius: 0.75rem; border: 1px solid oklch(1 0 0 / 50%); background: var(--surface-60); color: var(--primary); backdrop-filter: blur(10px); transition: border-color 0.2s; }
.service-card:hover .service-icon { border-color: var(--primary); }
.service-card h3 { font-family: var(--font-display); margin-top: 1.5rem; font-size: 1.125rem; font-weight: 700; }
.service-card p { margin-top: 0.75rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }
.service-link { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 600; color: var(--primary); transition: color 0.2s; }
.service-link:hover { color: var(--signal); }
.service-link .arrow { display: inline-block; transition: transform 0.3s; }
.service-card:hover .service-link .arrow { transform: translateX(0.25rem); }

.case-card { display: flex; flex-direction: column; border-radius: 1rem; padding: 1.75rem; }
.case-card h3 { font-family: var(--font-display); margin-top: 1.25rem; font-size: 1.125rem; line-height: 1.4; font-weight: 700; }
.case-card .meta { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.case-stats { margin-top: auto; padding-top: 1.25rem; margin-top: 1.75rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; border-top: 1px solid var(--border); }
.case-stats .v { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--primary); }
.case-stats .k { margin-top: 0.25rem; font-size: 0.6875rem; color: var(--muted-foreground); }

.client-tile { display: flex; align-items: center; justify-content: center; border-radius: 1rem; padding: 2.25rem 1.5rem; min-width: 0; }
@media (max-width: 479px) { .client-tile { padding: 1.5rem 1rem; } }
.client-tile img { min-width: 0; }

/* Grid items default to min-width:auto and refuse to shrink below their content size,
   which forces the whole grid (and page) wider than the viewport on small screens.
   min-width:0 lets grid/flex children shrink properly — applied defensively site-wide. */
.grid-2 > *, .grid-3 > *, .grid-4 > *, .grid-4-sm > *, .footer-grid > *, .hero-grid > *, .deliverables-list > * {
  min-width: 0;
}
.client-tile img { height: 4rem; width: auto; max-width: 10rem; object-fit: contain; opacity: 0.9; transition: opacity 0.3s; }
.client-tile:hover img { opacity: 1; }

/* ---------- CTA ---------- */
.cta-section { position: relative; overflow: hidden; }
.cta-panel { position: relative; overflow: hidden; border-radius: 1.5rem; padding: 3.5rem 2rem; text-align: center; }
@media (min-width: 640px) { .cta-panel { padding: 5rem 3.5rem; } }
.status-pill { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border); border-radius: 999px; padding: 0.375rem 1rem; }
.cta-panel h2 { font-family: var(--font-display); margin-top: 2rem; font-size: 1.875rem; line-height: 1.06; font-weight: 700; }
@media (min-width: 640px) { .cta-panel h2 { font-size: 3rem; } }
.cta-panel p { margin: 1.5rem auto 0; max-width: 36rem; font-size: 1rem; line-height: 1.6; color: var(--muted-foreground); }
.cta-panel .btn { margin-top: 2.5rem; padding: 1rem 2rem; font-size: 1rem; }
.cta-meta { margin-top: 3rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem 2.5rem; border-top: 1px solid var(--border); padding-top: 2rem; font-size: 0.875rem; color: var(--muted-foreground); }
@media (min-width: 640px) { .cta-meta { flex-direction: row; } }
.cta-meta a.phone { font-weight: 500; color: var(--foreground); transition: color 0.2s; }
.cta-meta a.phone:hover { color: var(--primary); }

/* ---------- Footer ---------- */
footer.site-footer { border-top: 1px solid var(--border); padding-block: 3.5rem; }
@media (max-width: 767px) { footer.site-footer { padding-bottom: 6rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-grid p { margin-top: 1rem; max-width: 20rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }
.footer-social { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.625rem; }
.footer-social a { display: flex; height: 2.25rem; width: 2.25rem; align-items: center; justify-content: center; border-radius: 0.5rem; border: 1px solid var(--border); color: var(--muted-foreground); transition: color 0.2s, border-color 0.2s; }
.footer-social a:hover { border-color: var(--primary); color: var(--primary); }
.footer-grid h2 { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--foreground); }
.footer-grid ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.footer-grid ul a { transition: color 0.2s; }
.footer-grid ul a:hover { color: var(--foreground); }
.footer-bottom { margin-top: 3rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--border); padding-top: 1.75rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 0.75rem; color: var(--muted-foreground); }
.footer-bottom .links { display: flex; align-items: center; gap: 1.5rem; font-size: 0.75rem; color: var(--muted-foreground); }
.footer-bottom .links a:hover { color: var(--foreground); }

.simple-footer { border-top: 1px solid var(--border); padding-block: 2.5rem; }
.simple-footer .row { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem; font-size: 0.75rem; color: var(--muted-foreground); }
@media (min-width: 640px) { .simple-footer .row { flex-direction: row; } }
.simple-footer .links { display: flex; align-items: center; gap: 1.25rem; }
.simple-footer .links a:hover { color: var(--foreground); }

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 50;
  display: flex; height: 3.5rem; width: 3.5rem; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--whatsapp);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float .pulse-ring { position: absolute; inset: 0; border-radius: 999px; background: var(--whatsapp); }
.wa-float svg { position: relative; height: 1.75rem; width: 1.75rem; color: var(--primary-foreground); }

/* ---------- Service page ---------- */
.svc-hero { position: relative; overflow: hidden; padding-top: 4.5rem; padding-bottom: 3.5rem; }
@media (min-width: 1024px) { .svc-hero { padding-top: 6rem; padding-bottom: 5rem; } }
.svc-hero h1 { font-family: var(--font-display); max-width: 48rem; font-size: 2.2rem; line-height: 1.06; font-weight: 700; }
@media (min-width: 640px) { .svc-hero h1 { font-size: 3rem; } }
.svc-hero .intro { margin-top: 1.5rem; max-width: 42rem; font-size: 1rem; line-height: 1.6; color: var(--muted-foreground); }
@media (min-width: 640px) { .svc-hero .intro { font-size: 1.125rem; } }
.svc-hero .actions { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .svc-hero .actions { flex-direction: row; } }
.svc-stat { border-radius: 1rem; padding: 1.25rem; text-align: center; }
.svc-stat .v { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.svc-stat .k { margin-top: 0.25rem; font-size: 0.6875rem; color: var(--muted-foreground); }

.what-card { border-radius: 1rem; padding: 1.75rem; }
.what-card h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.what-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

.process-list { position: relative; display: flex; flex-direction: column; gap: 1rem; border-left: 1px solid var(--border); padding-left: 1.5rem; }
.process-item { position: relative; border-radius: 1rem; padding: 1.5rem; }
.process-item .dot { position: absolute; top: 2rem; left: -1.9rem; height: 0.625rem; width: 0.625rem; border-radius: 999px; background: var(--primary); }
.process-item h3 { font-family: var(--font-display); margin-top: 0.75rem; font-size: 1rem; font-weight: 700; }
.process-item p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

.deliverables-list { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .deliverables-list { grid-template-columns: 1fr 1fr; } }
.deliverable-item { display: flex; align-items: flex-start; gap: 0.75rem; border-radius: 0.75rem; padding: 1rem; font-size: 0.875rem; }
.deliverable-item svg { margin-top: 0.125rem; height: 1rem; width: 1rem; flex-shrink: 0; color: var(--primary); }
.deliverable-item span { color: var(--muted-foreground); }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border-radius: 1rem; padding: 1.25rem; }
.faq-item summary { font-family: var(--font-display); cursor: pointer; list-style: none; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { color: var(--muted-foreground); transition: transform 0.3s; display: inline-block; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

.svc-cta { border-radius: 1.5rem; padding: 3rem 2rem; text-align: center; }
@media (min-width: 640px) { .svc-cta { padding: 3rem 3.5rem; } }
.svc-cta h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
@media (min-width: 640px) { .svc-cta h2 { font-size: 2.25rem; } }
.svc-cta p { margin: 1rem auto 0; max-width: 36rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }
@media (min-width: 640px) { .svc-cta p { font-size: 1rem; } }
.svc-cta .btn { margin-top: 2rem; padding: 1rem 2rem; }
.svc-cta .meta { margin-top: 1.5rem; font-size: 0.75rem; color: var(--muted-foreground); }
.svc-cta .meta a:hover { color: var(--foreground); }

/* ---------- Legal page ---------- */
.legal-main { max-width: 48rem; margin-inline: auto; padding: 3.5rem 1.5rem; }
@media (min-width: 1024px) { .legal-main { padding: 5rem 2rem; } }
.legal-main h1 { font-family: var(--font-display); margin-top: 1rem; font-size: 1.875rem; line-height: 1.25; font-weight: 700; }
@media (min-width: 640px) { .legal-main h1 { font-size: 2.25rem; } }
.legal-main > .intro { margin-top: 1.25rem; font-size: 1rem; line-height: 1.6; color: var(--muted-foreground); }
.legal-main > .updated { margin-top: 0.75rem; font-size: 0.75rem; color: var(--muted-foreground); }
.legal-sections { margin-top: 3rem; display: flex; flex-direction: column; gap: 2.5rem; }
.legal-section { border-top: 1px solid var(--border); padding-top: 2rem; }
.legal-section h2 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
@media (min-width: 640px) { .legal-section h2 { font-size: 1.25rem; } }
.legal-section .body { margin-top: 1rem; display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }
.legal-section ul { list-style: disc; display: flex; flex-direction: column; gap: 0.5rem; padding-left: 1.25rem; }
.legal-section strong { color: var(--foreground); }
.legal-contact { margin-top: 3.5rem; border-radius: 1rem; padding: 1.5rem; }
.legal-contact h2 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.legal-contact ul { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.375rem; font-size: 0.875rem; color: var(--muted-foreground); }
.legal-contact a:hover { color: var(--foreground); }

/* ---------- 404 ---------- */
.not-found { display: flex; min-height: 100vh; align-items: center; justify-content: center; padding: 0 1.5rem; text-align: center; }
.not-found .box { max-width: 28rem; }
.not-found h1 { font-family: var(--font-display); font-size: 4.5rem; font-weight: 700; }
.not-found h2 { margin-top: 1rem; font-size: 1.25rem; font-weight: 600; }
.not-found p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.not-found .btn { margin-top: 1.5rem; padding: 0.5rem 1rem; border-radius: 0.375rem; }

/* ---------- Small helpers ---------- */
.tabular-nums { font-variant-numeric: tabular-nums; }
.section-anchor-offset { scroll-margin-top: 5.5rem; }
