/* ============================================================
   KABLO HURDAcı — Premium SaaS Design System
   Version 1.0 | Production Ready
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Palette */
  --c-bg: #0a0f1a;
  --c-surface: #0f1623;
  --c-surface2: #131d2e;
  --c-border: rgba(255, 255, 255, 0.07);
  --c-border2: rgba(255, 255, 255, 0.12);

  --c-primary: #f5a623;
  --c-primary-d: #d9891a;
  --c-primary-l: #ffc04d;
  --c-accent: #3ecf8e;
  --c-danger: #ff4b4b;

  --c-text: #e8edf5;
  --c-text-2: #9baec8;
  --c-text-3: #5c718f;

  /* Typography */
  --font: "DM Sans", "SF Pro Display", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  /* Spacing */
  --sp-xs: 0.375rem;
  --sp-sm: 0.75rem;
  --sp-md: 1.25rem;
  --sp-lg: 2rem;
  --sp-xl: 3.5rem;
  --sp-2xl: 6rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadows */
  --sh-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --sh-glow: 0 0 40px rgba(245, 166, 35, 0.15);
  --sh-btn: 0 4px 20px rgba(245, 166, 35, 0.35);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Google Font Import (non-blocking) ───────────────────── */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800&display=swap");

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── Gradient Backgrounds ─────────────────────────────────── */
.grad-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(245, 166, 35, 0.12);
  top: -150px;
  right: -80px;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(62, 207, 142, 0.08);
  bottom: 0;
  left: -100px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 26, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  padding: 0.875rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
}
.nav__logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav__logo span {
  color: var(--c-primary);
}
.nav__badge {
  font-size: 0.6rem;
  font-weight: 700;
  background: transparent;
  color: #000;
  padding: 2px 6px;
  border-radius: var(--r-full);
  border: 2px solid var(--c-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  list-style: none;
}
.nav__links a {
  color: var(--c-text-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover {
  color: var(--c-text);
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    transform 0.2s var(--ease-spring),
    box-shadow 0.2s var(--ease),
    background 0.2s;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after {
  opacity: 1;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--c-primary) 0%,
    var(--c-primary-d) 100%
  );
  color: #000;
  box-shadow: var(--sh-btn);
  animation: btn-pulse 3s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
  }
  50% {
    box-shadow: 0 4px 40px rgba(245, 166, 35, 0.6);
  }
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}
.btn-icon {
  font-size: 1rem;
}

/* ── Section Label ────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--c-primary);
  padding: 0.35rem 0.875rem;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}

/* ── Section Title ────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.section-title span {
  color: var(--c-primary);
}
.section-sub {
  color: var(--c-text-2);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin-top: 0.75rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: var(--sp-2xl) 0 var(--sp-xl);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(62, 207, 142, 0.1);
  border: 1px solid rgba(62, 207, 142, 0.25);
  color: var(--c-accent);
  padding: 0.35rem 0.875rem;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--sp-md);
  letter-spacing: 0.04em;
}
.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.hero h1 .highlight {
  background: linear-gradient(
    135deg,
    var(--c-primary) 0%,
    var(--c-primary-l) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  color: var(--c-text-2);
  font-size: 1.1rem;
  line-height: 1.75;
  margin: var(--sp-md) 0 var(--sp-lg);
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

/* ── Trust Badges ─────────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-text-2);
}
.trust-badge .icon {
  font-size: 1rem;
}

/* ── Price Calculator ─────────────────────────────────────── */
.calc-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border2);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--sh-card), var(--sh-glow);
  position: relative;
  overflow: hidden;
}
.calc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--c-primary),
    transparent
  );
}
.calc-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--sp-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.calc-card__title span {
  color: var(--c-primary);
}
.calc-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--sp-md);
}
.calc-row label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.calc-row select,
.calc-row input[type="number"] {
  width: 100%;
  background: var(--c-bg);
  border: 1px solid var(--c-border2);
  color: var(--c-text);
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
}
.calc-row select:focus,
.calc-row input[type="number"]:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
}
.calc-result {
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.12) 0%,
    rgba(245, 166, 35, 0.05) 100%
  );
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  margin-bottom: var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calc-result__label {
  font-size: 0.85rem;
  color: var(--c-text-2);
}
.calc-result__price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -0.03em;
}
.calc-result__price sup {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing {
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
}
.pricing-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
.price-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  transition:
    transform 0.25s var(--ease-spring),
    border-color 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.price-card p {
  margin-bottom: 10px;
}
.price-card a,
.price-card btn {
  width: 100%;
  justify-content: center;
  text-decoration: none;
  color: #fff;
}
.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-border2);
  box-shadow: var(--sh-card);
}
.price-card.featured {
  border-color: var(--c-primary);
  background: var(--c-surface2);
  box-shadow:
    var(--sh-card),
    0 0 30px rgba(245, 166, 35, 0.1);
}
.price-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--c-primary),
    transparent
  );
}
.price-card__badge {
  position: absolute;
  top: -1px;
  right: var(--sp-md);
  background: var(--c-primary);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-transform: uppercase;
}
.price-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text-2);
  margin-bottom: var(--sp-sm);
  line-height: 1.4;
}
.price-card__value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-card__value span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text-2);
}
.price-card__unit {
  font-size: 0.75rem;
  color: var(--c-text-3);
  margin-bottom: var(--sp-md);
}
.price-card__features {
  list-style: none;
  margin-bottom: var(--sp-md);
}
.price-card__features li {
  font-size: 0.82rem;
  color: var(--c-text-2);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--c-border);
}
.price-card__features li:last-child {
  border-bottom: none;
}
.price-card__features li::before {
  content: "✓";
  color: var(--c-accent);
  font-weight: 700;
}
.price-card__content {
  flex-grow: 1;
}
.price-card__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
}
.price-card-detail-link {
  text-align: center;
  display: flex;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-2);
}
.price-card-detail-link:hover {
  color: var(--c-primary);
}
/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: linear-gradient(
    135deg,
    var(--c-surface) 0%,
    var(--c-surface2) 100%
  );
  border: 1px solid var(--c-border2);
  border-radius: var(--r-xl);
  padding: var(--sp-xl) var(--sp-lg);
  margin: var(--sp-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(245, 166, 35, 0.08) 0%,
    transparent 70%
  );
}
.cta-block > * {
  position: relative;
  z-index: 1;
}
.cta-block h2 {
  margin-bottom: 0.5rem;
}
.cta-block .section-sub {
  margin: 0.5rem auto var(--sp-lg);
}
.cta-block__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--sp-2xl) 0;
}
.testimonials-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-md);
}
.testi-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  transition:
    transform 0.2s var(--ease-spring),
    border-color 0.2s;
}
.testi-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-border2);
}
.testi-stars {
  color: var(--c-primary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--c-primary) 0%,
    var(--c-primary-d) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #000;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.88rem;
  font-weight: 700;
}
.testi-biz {
  font-size: 0.78rem;
  color: var(--c-text-3);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--sp-2xl) 0;
}
.faq-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-md) var(--sp-lg);
  text-align: left;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--c-border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--c-text-2);
  transition:
    transform 0.3s var(--ease),
    background 0.2s,
    border-color 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #000;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s var(--ease),
    padding 0.35s var(--ease);
  padding: 0 var(--sp-lg);
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: var(--sp-md);
}

/* ============================================================
   URGENCY SECTION
   ============================================================ */
.urgency {
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.12) 0%,
    rgba(245, 166, 35, 0.04) 100%
  );
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  margin: var(--sp-2xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  position: relative;
  overflow: hidden;
}
.urgency::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.06);
  filter: blur(40px);
}
.urgency__left h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 0.4rem;
}
.urgency__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 75, 75, 0.12);
  border: 1px solid rgba(255, 75, 75, 0.25);
  color: var(--c-danger);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
  animation: urgency-pulse 2s ease-in-out infinite;
}
@keyframes urgency-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 75, 75, 0);
  }
  50% {
    box-shadow: 0 0 12px rgba(255, 75, 75, 0.3);
  }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  padding: var(--sp-2xl) 0;
}
.areas-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--sp-sm);
}
.areas-grid a {
  text-decoration: none;
}
.area-card {
  color: #fff;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s var(--ease-spring);
  cursor: default;
}
.area-card:hover {
  border-color: rgba(245, 166, 35, 0.35);
  background: rgba(245, 166, 35, 0.04);
  transform: translateY(-2px);
}
.area-card__icon {
  font-size: 1.1rem;
  color: var(--c-primary);
}
.area-card__icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}
.icon-close {
  display: none;
}
.all-areas {
  border-top: 1px solid var(--c-primary);
  padding-top: var(--sp-md);
  display: none;
}
.all-areas-container {
  text-align: center;
}
.all-area-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: #fff;
  padding: 0.35rem 0.875rem;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--sp-md);
  margin-bottom: var(--sp-md);
}
.all-area-toggle-btn svg {
  color: var(--c-primary);
  stroke: currentcolor;
  stroke-width: 2;
  width: 20px;
  height: 20px;
}
/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--c-border);
  padding: var(--sp-xl) 0 var(--sp-lg);
  margin-top: var(--sp-2xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}
.footer__logo {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.footer__logo a {
  text-decoration: none;
  color: #fff;
}
.footer__logo span {
  color: var(--c-primary);
}
.footer__desc {
  font-size: 0.85rem;
  color: var(--c-text-2);
  line-height: 1.7;
  max-width: 280px;
}
.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: var(--sp-md);
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--c-text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--c-text);
}
.footer__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--c-text-3);
}

/* ============================================================
   SERVICE PAGE — Layout
   ============================================================ */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--sp-xl);
  align-items: start;
  padding: var(--sp-xl) 0 var(--sp-2xl);
}

/* ── Sidebar ──────────────────────────────────────────────── */
.sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.sidebar-order {
  background: var(--c-surface);
  border: 1px solid var(--c-primary);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  overflow: hidden;
  position: relative;
}
.sidebar-order::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--c-primary),
    transparent
  );
}
.sidebar-order__title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: var(--sp-sm);
}
.sidebar-order__price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-md);
}
.sidebar-order__price small {
  font-size: 1rem;
  color: var(--c-text-2);
  font-weight: 500;
}
.sidebar-trust {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: var(--sp-md);
}
.sidebar-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--c-text-2);
}
.sidebar-trust-item .icon {
  color: var(--c-accent);
}

.sidebar-pkg {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
}
.sidebar-pkg__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-3);
  margin-bottom: var(--sp-sm);
}
.sidebar-pkg__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.sidebar-pkg__list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.625rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--c-text-2);
  transition:
    background 0.15s,
    color 0.15s;
}
.sidebar-pkg__list li a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-text);
}
.sidebar-pkg__list li a strong {
  color: var(--c-primary);
  font-weight: 600;
}
.sidebar-pkg__list li.active a {
  background: rgba(245, 166, 35, 0.08);
  color: var(--c-primary);
}

.sidebar-areas {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
}
.sidebar-areas__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-3);
  margin-bottom: var(--sp-sm);
}
.sidebar-areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
sidebar-areas__grid a {
  text-decoration: none;
}
.sidebar-areas__city {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ── Service Main Content ─────────────────────────────────── */
.service-main h1 {
  margin-bottom: var(--sp-md);
}
.service-main h2 {
  margin: var(--sp-xl) 0 var(--sp-md);
  font-size: 1.5rem;
}
.service-main h3 {
  margin: var(--sp-lg) 0 var(--sp-sm);
  font-size: 1.15rem;
}
.service-main p {
  color: var(--c-text-2);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}
.service-main ul {
  color: var(--c-text-2);
  padding-left: 1.2rem;
}
.service-main ul li {
  padding: 0.25rem 0;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin: var(--sp-md) 0;
}
.how-step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-md);
}
.how-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    var(--c-primary) 0%,
    var(--c-primary-d) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #000;
}
.how-step__body h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}
.how-step__body p {
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 2fr;
  }
}
@media (max-width: 768px) {
  :root {
    --sp-2xl: 4rem;
    --sp-xl: 2.5rem;
  }

  .nav__links {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: var(--sp-xl) 0 var(--sp-lg);
  }
  .hero__calc {
    order: -1;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
  }
  .footer__grid > :first-child {
    grid-column: 1 / -1;
  }

  /* SERVICE PAGE — Sidebar FIRST on mobile */
  .service-layout {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .sidebar {
    position: static;
    order: -1;
  }
  .service-main {
    order: 1;
  }
  .sm-none {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--sp-md);
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-badges {
    flex-direction: column;
    align-items: flex-start;
  }
  .urgency {
    flex-direction: column;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Scroll animations ────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    animation: fade-up 0.6s var(--ease) forwards;
  }
  @keyframes fade-up {
    to {
      opacity: 1;
      transform: none;
    }
  }
  .fade-up:nth-child(1) {
    animation-delay: 0.1s;
  }
  .fade-up:nth-child(2) {
    animation-delay: 0.2s;
  }
  .fade-up:nth-child(3) {
    animation-delay: 0.3s;
  }
  .fade-up:nth-child(4) {
    animation-delay: 0.4s;
  }
  .fade-up:nth-child(5) {
    animation-delay: 0.5s;
  }
  .fade-up:nth-child(6) {
    animation-delay: 0.6s;
  }
}
.bottom-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  font-family: Arial;
}
.contact-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.call {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}
.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.contact-icon svg {
  width: 20px;
  height: 20px;
}
.contact-icon.online {
  position: relative;
}
.contact-icon .dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #00ff5a;
  border-radius: 50%;
  box-shadow: 0 0 0 rgb(0 255 90 / 0.7);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(0 255 90 / 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px #fff0;
  }
  100% {
    box-shadow: 0 0 0 0 #fff0;
  }
}
@media (min-width: 768px) {
  .bottom-contact-bar,
  .wa-chat {
    display: none !important;
  }
}
