/* ==========================================================================
   Alo Təmizlik — Design Tokens
   ========================================================================== */

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

:root {
  /* Turquoise palette */
  --turq-50:  #ecfbfa;
  --turq-100: #d0f4f1;
  --turq-200: #a4e9e3;
  --turq-300: #6dd5cd;
  --turq-400: #3ebdb4;
  --turq-500: #1aa69d;
  --turq-600: #0f8982;
  --turq-700: #0d6e69;
  --turq-800: #0f5955;
  --turq-900: #0b3f3c;

  --ink:      #0b1f1e;
  --ink-2:    #1e3230;
  --muted:    #607472;
  --muted-2:  #8a9998;
  --line:     #e4eeed;
  --line-2:   #cfe3e1;
  --bg:       #ffffff;
  --bg-soft:  #f5faf9;
  --bg-tint:  #eaf7f5;

  --radius:   18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(11, 63, 60, 0.05);
  --shadow-md: 0 8px 24px -8px rgba(11, 63, 60, 0.12);
  --shadow-lg: 0 30px 60px -24px rgba(11, 63, 60, 0.25);

  --container: 1240px;

  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--ink); font-family: var(--font); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-size: 16px; line-height: 1.55; font-weight: 400; overflow-x: hidden; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 250ms var(--ease), border-color 250ms var(--ease), padding 250ms var(--ease);
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--turq-400), var(--turq-600));
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(26,166,157,.55);
}
.logo-mark svg { width: 16px; height: 16px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background 180ms var(--ease), color 180ms var(--ease);
}
.nav a:hover { background: var(--bg-tint); color: var(--turq-700); }
.nav a.active { background: var(--ink); color: #fff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 18px;
  background: var(--ink);
  color: #fff !important;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  margin-left: 8px;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.nav-cta:hover { background: var(--turq-600); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }

.burger { display: none; width: 40px; height: 40px; border-radius: 12px; align-items: center; justify-content: center; background: var(--bg-tint); }
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

@media (max-width: 860px) {
  .nav a:not(.nav-cta) { display: none; }
  .burger { display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -15%;
  width: 720px; height: 720px;
  background: radial-gradient(closest-side, rgba(62,189,180,.35), transparent 70%);
  filter: blur(10px);
  z-index: -1;
  animation: float 18s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -15%;
  width: 640px; height: 640px;
  background: radial-gradient(closest-side, rgba(109,213,205,.3), transparent 70%);
  filter: blur(10px);
  z-index: -1;
  animation: float 22s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.7);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--turq-700);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--turq-500); box-shadow: 0 0 0 4px rgba(26,166,157,.18); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(26,166,157,0); } }

.hero h1 {
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(90deg, var(--turq-500), var(--turq-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline-rotator {
  position: relative;
  min-height: 72px;
  margin-bottom: 40px;
  overflow: hidden;
}
.tagline-rotator .tl {
  position: absolute;
  inset: 0;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  max-width: 560px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.tagline-rotator .tl.active { opacity: 1; transform: translateY(0); }
.tagline-rotator .tl.exit { opacity: 0; transform: translateY(-16px); }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--radius-pill);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(11,31,30,.6);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--turq-600); box-shadow: 0 16px 36px -12px rgba(26,166,157,.55); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: var(--bg-tint); border-color: var(--turq-400); }
.btn svg { width: 16px; height: 16px; }
.btn-arrow {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); background: rgba(255,255,255,.25); }

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num .plus { color: var(--turq-500); }
.stat-lbl {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.hero-visual:hover img { transform: scale(1.06); }
.hero-visual-tag {
  position: absolute;
  top: 20px; left: 20px;
  padding: 10px 14px 10px 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.hero-visual-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--turq-500); }

.hero-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 18px 20px;
  background: rgba(11, 31, 30, 0.72);
  backdrop-filter: blur(12px);
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-visual-badge-l { font-size: 14px; font-weight: 500; }
.hero-visual-badge-s { font-size: 12px; opacity: .7; margin-top: 4px; }
.hero-visual-badge-r { font-size: 22px; font-weight: 300; letter-spacing: -0.02em; }

.trust {
  padding: 40px 0 20px;
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--muted);
}
.trust-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); }
.trust-items { display: flex; gap: 40px; flex-wrap: wrap; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.trust-items .dot { color: var(--turq-400); margin: 0 -8px; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 120px 0; position: relative; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: var(--ink); color: #fff; }

.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head.left { text-align: left; margin: 0 0 64px; max-width: none; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--turq-600);
  margin-bottom: 20px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--turq-500); }
.section-dark .section-label { color: var(--turq-300); }
.section-dark .section-label::before { background: var(--turq-300); }

.section h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-dark h2 { color: #fff; }
.section h2 em { font-style: italic; color: var(--turq-600); font-weight: 300; }
.section-dark h2 em { color: var(--turq-300); }

.section-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 520px;
}
.section-head.left .section-sub { max-width: 420px; text-align: right; }
@media (max-width: 720px) {
  .section-head.left { grid-template-columns: 1fr; }
  .section-head.left .section-sub { text-align: left; }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .services-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease), background 300ms var(--ease);
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: auto -40% -60% auto;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--turq-100), transparent 70%);
  opacity: 0;
  transition: opacity 400ms var(--ease);
  pointer-events: none;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--turq-300);
  box-shadow: var(--shadow-md);
}
.svc-card:hover::after { opacity: 1; }

.svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-tint);
  display: grid; place-items: center;
  color: var(--turq-600);
  transition: background 300ms var(--ease), color 300ms var(--ease);
}
.svc-card:hover .svc-icon { background: var(--turq-500); color: #fff; }
.svc-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }

.svc-card h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.svc-card p { font-size: 14.5px; color: var(--muted); line-height: 1.5; flex: 1; }

.svc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.svc-price {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.svc-price small { font-weight: 400; color: var(--muted); font-size: 12px; margin-left: 2px; }
.svc-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-tint);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background 250ms var(--ease), color 250ms var(--ease), transform 250ms var(--ease);
}
.svc-card:hover .svc-arrow { background: var(--ink); color: #fff; transform: rotate(-45deg); }
.svc-arrow svg { width: 14px; height: 14px; }

.svc-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 40px;
  overflow: hidden;
}
.svc-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(26,166,157,.35), transparent 60%),
    radial-gradient(400px 400px at 0% 100%, rgba(62,189,180,.25), transparent 60%);
  pointer-events: none;
}
.svc-card.featured::after { display: none; }
.svc-card.featured h3 { font-size: 36px; font-weight: 300; letter-spacing: -0.025em; max-width: 340px; line-height: 1.05; color: #fff; }
.svc-card.featured p { color: rgba(255,255,255,.7); font-size: 16px; max-width: 340px; }
.svc-card.featured .svc-icon { background: rgba(255,255,255,.1); color: #fff; }
.svc-card.featured:hover .svc-icon { background: var(--turq-500); }
.svc-card.featured .svc-foot { border-color: rgba(255,255,255,.12); }
.svc-card.featured .svc-price { color: #fff; }
.svc-card.featured .svc-price small { color: rgba(255,255,255,.5); }
.svc-card.featured .svc-arrow { background: rgba(255,255,255,.12); color: #fff; }
.svc-card.featured:hover .svc-arrow { background: var(--turq-500); }

@media (max-width: 1100px) { .svc-card.featured { grid-column: span 3; grid-row: span 1; } }
@media (max-width: 820px)  { .svc-card.featured { grid-column: span 2; } }
@media (max-width: 520px)  { .svc-card.featured { grid-column: span 1; } }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  position: relative;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.step:hover { transform: translateY(-3px); border-color: var(--turq-300); }
.step-num {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--turq-600);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-num::before {
  content: '';
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--turq-400);
  display: inline-grid;
  place-items: center;
  background: var(--bg-tint);
}
.step h4 { font-size: 20px; font-weight: 500; letter-spacing: -0.015em; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* Before / After */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .ba-grid { grid-template-columns: 1fr; } }

.ba-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.compare {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.compare .after-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
  transition: clip-path 60ms linear;
}
.compare .handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  pointer-events: none;
}
.compare .knob {
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  display: grid; place-items: center;
  color: var(--ink);
  pointer-events: none;
}
.compare .knob svg { width: 20px; height: 20px; }
.compare .lbl {
  position: absolute;
  top: 14px;
  padding: 6px 12px;
  background: rgba(11,31,30,.6);
  backdrop-filter: blur(6px);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.compare .lbl-before { left: 14px; }
.compare .lbl-after  { right: 14px; }

.ba-meta {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ba-meta h4 { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.ba-meta .tag { font-size: 12px; color: var(--turq-600); text-transform: uppercase; letter-spacing: 0.08em; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

.review {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 300ms var(--ease), transform 300ms var(--ease);
}
.review:hover { border-color: var(--turq-300); transform: translateY(-3px); }
.review-stars { color: var(--turq-500); font-size: 15px; letter-spacing: 2px; }
.review-body { font-size: 16.5px; color: var(--ink-2); line-height: 1.55; flex: 1; font-weight: 400; letter-spacing: -0.005em; }
.review-body::before { content: '“'; font-size: 48px; line-height: 0; vertical-align: -12px; color: var(--turq-300); margin-right: 4px; font-family: Georgia, serif; }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turq-300), var(--turq-600));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 500;
  font-size: 14px;
}
.review-name { font-weight: 500; font-size: 14.5px; }
.review-role { font-size: 12.5px; color: var(--muted); }

/* CTA */
.cta-block {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(26,166,157,.4), transparent 60%),
    radial-gradient(500px 500px at 0% 100%, rgba(62,189,180,.3), transparent 60%);
  z-index: -1;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) { .cta-grid { grid-template-columns: 1fr; } .cta-block { padding: 48px 28px; } }
.cta-block h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 16px;
}
.cta-block h2 em { color: var(--turq-300); font-style: italic; }
.cta-block p { color: rgba(255,255,255,.75); font-size: 17px; max-width: 460px; margin-bottom: 28px; }
.cta-block .btn-primary { background: var(--turq-500); }
.cta-block .btn-primary:hover { background: var(--turq-400); }
.cta-block .btn-ghost { border-color: rgba(255,255,255,.2); color: #fff; }
.cta-block .btn-ghost:hover { background: rgba(255,255,255,.08); }

.cta-info {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.cta-info-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cta-info-row:last-child { border-bottom: 0; }
.cta-info-row svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--turq-300); }
.cta-info-row .k { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.cta-info-row .v { font-size: 15.5px; color: #fff; font-weight: 500; }

/* Footer */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand h3 {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.footer-brand p { color: var(--muted); max-width: 280px; font-size: 14.5px; line-height: 1.55; }

.footer h5 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a, .footer ul li { color: var(--ink-2); font-size: 14.5px; transition: color 180ms var(--ease); }
.footer ul a:hover { color: var(--turq-600); }

.footer-bot {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.socials { display: flex; gap: 10px; }
.social-ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-tint);
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.social-ico:hover { background: var(--ink); color: #fff; }
.social-ico svg { width: 16px; height: 16px; }

/* WhatsApp FAB */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  padding: 14px 22px 14px 18px;
  background: #25D366;
  color: #fff !important;
  font-weight: 500;
  font-size: 14.5px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px -12px rgba(37,211,102,.55);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -12px rgba(37,211,102,.7); }
.wa-fab svg { width: 20px; height: 20px; }
.wa-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: #25D366;
  opacity: .3;
  z-index: -1;
  animation: ripple 2.5s ease-out infinite;
}
@keyframes ripple { 0% { transform: scale(1); opacity: .4; } 100% { transform: scale(1.25); opacity: 0; } }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 60ms; }
.reveal.d2 { transition-delay: 120ms; }
.reveal.d3 { transition-delay: 180ms; }
.reveal.d4 { transition-delay: 240ms; }
.reveal.d5 { transition-delay: 300ms; }
.reveal.d6 { transition-delay: 360ms; }

.reveal-up { transform: translateY(48px); }
.reveal-left { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-up.in, .reveal-left.in, .reveal-right.in { transform: translate(0,0); }

.reveal-split .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal-split.in .char { opacity: 1; transform: translateY(0); }

.parallax { will-change: transform; }

/* Service detail page */
.page-hero {
  padding: 160px 0 64px;
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 560px; height: 560px;
  background: radial-gradient(closest-side, rgba(62,189,180,.3), transparent 70%);
  filter: blur(10px);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--turq-600); }
.breadcrumb .sep { color: var(--muted-2); }

.page-hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 900px;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--turq-600); }
.page-hero .lead { font-size: 19px; color: var(--muted); max-width: 640px; line-height: 1.55; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
@media (max-width: 960px) { .detail-grid { grid-template-columns: 1fr; } }

.detail-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
  padding: 32px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.detail-sidebar h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 16px; font-weight: 500; }
.detail-sidebar .price-big { font-size: 44px; font-weight: 300; letter-spacing: -0.03em; line-height: 1; color: var(--ink); margin-bottom: 6px; }
.detail-sidebar .price-big .unit { font-size: 18px; color: var(--muted); font-weight: 400; margin-left: 4px; }
.detail-sidebar .price-note { font-size: 13.5px; color: var(--muted); margin-bottom: 28px; }
.detail-sidebar .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line-2); }
.feature-list li { display: flex; gap: 12px; font-size: 14.5px; color: var(--ink-2); list-style: none; align-items: flex-start; }
.feature-list svg { width: 18px; height: 18px; color: var(--turq-500); flex-shrink: 0; margin-top: 1px; }

.detail-body h2 {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink);
}
.detail-body h2 + p { font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 40px; }
.detail-body .block { margin-bottom: 48px; }

.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 560px) { .includes-grid { grid-template-columns: 1fr; } }
.include {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.include svg { width: 18px; height: 18px; color: var(--turq-500); flex-shrink: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 2/1;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.gallery-grid img:first-child { grid-row: span 2; }

.mt-0 { margin-top: 0; }

/* ==========================================================================
   Overrides / Fixes
   ========================================================================== */

/* Logo mark as image (replaces gradient background) */
.logo-mark {
  background: transparent !important;
  box-shadow: none !important;
  width: 40px;
  height: 40px;
  overflow: hidden;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo { gap: 12px; }

/* Sidebar — remove sticky to fix overlap */
.detail-sidebar {
  position: static !important;
  top: auto !important;
}

@media (min-width: 961px) {
  .detail-sidebar {
    position: sticky !important;
    top: 100px !important;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }
  /* Scrollbar'ı gizle ama scroll aktif kalsın */
  .detail-sidebar::-webkit-scrollbar { width: 0; display: none; }
  .detail-sidebar { scrollbar-width: none; }
}


/* ==========================================================================
   Mobile Menu Drawer (Fixed)
   ========================================================================== */

@media (max-width: 860px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 40px 24px !important;
    z-index: 200 !important;
    margin: 0 !important;
  }

  body.nav-open .nav a:not(.nav-cta) {
    display: block !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    padding: 16px 32px !important;
    color: var(--ink) !important;
    background: transparent !important;
    letter-spacing: -0.02em !important;
    text-align: center;
    width: auto;
  }

  body.nav-open .nav a:not(.nav-cta):hover,
  body.nav-open .nav a.active {
    background: var(--bg-tint) !important;
    color: var(--turq-700) !important;
  }

  body.nav-open .nav-cta {
    margin-top: 20px !important;
    font-size: 16px !important;
    padding: 16px 28px !important;
    background: var(--ink) !important;
    color: #fff !important;
  }

  body.nav-open .burger {
    position: fixed !important;
    top: 22px !important;
    right: 24px !important;
    z-index: 201 !important;
    background: var(--ink) !important;
    color: #fff !important;
  }

  body.nav-open .burger span {
    background: transparent !important;
  }

  body.nav-open .burger span::before {
    top: 0 !important;
    transform: rotate(45deg);
    background: #fff !important;
  }

  body.nav-open .burger span::after {
    top: 0 !important;
    transform: rotate(-45deg);
    background: #fff !important;
  }

  /* Header'ın kendisi drawer modunda saydam/temiz olsun */
  body.nav-open .header {
    background: transparent !important;
    border-bottom-color: transparent !important;
  }

  body.nav-open .logo {
    position: fixed;
    top: 22px;
    left: 28px;
    z-index: 201;
  }
}

/* Desktop'ta drawer CSS'i devre dışı */
@media (min-width: 861px) {
  body.nav-open .nav {
    position: static !important;
    inset: auto !important;
    width: auto;
    height: auto;
    background: transparent !important;
    flex-direction: row !important;
    padding: 0 !important;
  }
  body.nav-open {
    overflow: auto;
  }
}

/* ==========================================================================
   Price Info Badge (Hero)
   ========================================================================== */
.price-info-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: linear-gradient(135deg, var(--turq-500), var(--turq-600));
  color: #fff !important;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px -8px rgba(26, 166, 157, 0.45);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
  isolation: isolate;
  max-width: fit-content;
}

.price-info-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(26, 166, 157, 0.6);
}

.price-info-badge .pib-icon,
.price-info-badge .pib-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.price-info-badge .pib-arrow {
  transition: transform 220ms var(--ease);
  opacity: 0.85;
}

.price-info-badge:hover .pib-arrow {
  transform: translateX(3px);
  opacity: 1;
}

.price-info-badge .pib-text {
  white-space: nowrap;
}

/* Red pulsing ring */
.price-info-badge .pib-pulse {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid #ef4444;
  z-index: -1;
  animation: pib-ripple 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.price-info-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  z-index: -1;
}

@keyframes pib-ripple {
  0% {
    transform: scale(1);
    opacity: 0.7;
    border-color: #ef4444;
  }
  60% {
    transform: scale(1.18);
    opacity: 0;
    border-color: #f87171;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

/* Subtle delay class for reveal order */
.reveal.d2-half {
  transition-delay: 90ms;
}

/* Mobile: badge text smaller, wraps */
@media (max-width: 640px) {
  .price-info-badge {
    font-size: 12.5px;
    padding: 9px 14px 9px 12px;
    gap: 8px;
  }
  .price-info-badge .pib-text {
    white-space: normal;
    line-height: 1.3;
  }
}
