/* ============================================================
   HURDA MARKET — Premium SaaS Landing Page
   Design System & Styles
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #eff6ff;
  --blue-mid: #dbeafe;
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-light: #f0fdf4;
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow-sm:
    0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md:
    0 4px 16px rgba(15, 23, 42, 0.1), 0 2px 4px rgba(15, 23, 42, 0.06);
  --shadow-lg:
    0 20px 48px rgba(15, 23, 42, 0.12), 0 8px 16px rgba(15, 23, 42, 0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  /* Typography */
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "DM Mono", "Fira Code", "Cascadia Code", monospace;
  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 88px 0;
}
.section-sm {
  padding: 56px 0;
}

/* ── BADGE ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--blue-mid);
  color: var(--blue);
  border: 1px solid rgba(37, 99, 235, 0.18);
}
.badge--green {
  background: var(--green-light);
  color: var(--green-dark);
  border-color: rgba(34, 197, 94, 0.2);
}
.badge--dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition:
    transform 0.18s var(--ease-bounce),
    box-shadow 0.18s var(--ease),
    background 0.18s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.14);
  opacity: 0;
  transition: opacity 0.18s;
}
.btn:hover::after {
  opacity: 1;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow:
    0 4px 14px rgba(37, 99, 235, 0.35),
    0 2px 4px rgba(37, 99, 235, 0.2);
}
.btn-primary:hover {
  box-shadow:
    0 8px 24px rgba(37, 99, 235, 0.45),
    0 4px 8px rgba(37, 99, 235, 0.25);
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}
.btn-green:hover {
  background: var(--green-dark);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--blue-light);
}

.btn-lg {
  padding: 17px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* pulse animation for CTA */
@keyframes pulse-shadow {
  0%,
  100% {
    box-shadow:
      0 4px 14px rgba(37, 99, 235, 0.35),
      0 0 0 0 rgba(37, 99, 235, 0.25);
  }
  50% {
    box-shadow:
      0 4px 14px rgba(37, 99, 235, 0.35),
      0 0 0 8px rgba(37, 99, 235, 0);
  }
}
.btn-primary.pulse {
  animation: pulse-shadow 2.4s infinite;
}

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
.nav__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}
.nav__links a:hover {
  color: var(--text);
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__hamburger {
  display: none;
  background: none;
  padding: 6px;
  border-radius: 6px;
  color: var(--text);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 72px;
  background: linear-gradient(160deg, #f0f7ff 0%, var(--bg) 55%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  margin-bottom: 20px;
}
.hero__title {
  margin-bottom: 22px;
}
.hero__title em {
  font-style: normal;
  color: var(--blue);
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 500;
}
.hero__trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

/* Price calculator card */
.hero__calc {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.hero__calc h3 {
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.calc-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-group select,
.form-group input {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  appearance: none;
}
.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.calc-result {
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--blue-mid);
}
.calc-result__label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.calc-result__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
}
.calc-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
}

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child {
  border-right: none;
}
.stat-item__num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.04em;
}
.stat-item__label {
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ── PACKAGES ──────────────────────────────────────────────── */
.packages__header {
  text-align: center;
  margin-bottom: 52px;
}
.packages__header p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 12px;
}
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s;
  position: relative;
  overflow: hidden;
}
.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.pkg-card--featured {
  border-color: var(--blue);
  box-shadow:
    0 0 0 1px var(--blue),
    var(--shadow-md);
}
.pkg-card--featured::before {
  content: "ÇOK SATAN";
  position: absolute;
  top: 18px;
  right: -28px;
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 4px 36px;
  transform: rotate(45deg);
}
.pkg-card__icon {
  border-radius: 14px;
  display: flex;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: var(--blue-light);
  padding: 10px;
}
.pkg-card--featured .pkg-card__icon {
  background: var(--blue-mid);
}
.pkg-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pkg-card__reviews {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pkg-card__reviews .stars {
  color: #f59e0b;
}
.pkg-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.pkg-card__price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}
.pkg-card__delivery {
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pkg-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.pkg-card__features li {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pkg-card__features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.price-card-detail-link {
  text-align: center;
  display: flex;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-2);
}
/* ── PRICING TABLE ─────────────────────────────────────────── */
.pricing-table__header {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-table__header p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.05rem;
}
.ptable-wrap {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ptable {
  width: 100%;
  border-collapse: collapse;
}
.ptable thead th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  border-bottom: 1.5px solid var(--border);
}
.ptable tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.14s;
}
.ptable tbody tr:last-child {
  border-bottom: none;
}
.ptable tbody tr:hover {
  background: var(--bg);
}
.ptable tbody tr.featured-row {
  background: var(--blue-light);
}
.ptable tbody tr.featured-row:hover {
  background: var(--blue-mid);
}
.ptable td {
  padding: 15px 24px;
  font-size: 0.92rem;
}
.ptable td:first-child {
  font-weight: 600;
}
.ptable td:last-child {
  font-weight: 700;
  color: var(--blue);
}
.ptable-cta {
  padding: 24px;
  border-top: 1.5px solid var(--border);
  background: var(--bg);
  text-align: center;
}
.ptable-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 8px;
}

/* ── CTA BLOCK ─────────────────────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.cta-block::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.cta-block h2 {
  color: #fff;
  margin-bottom: 14px;
}
.cta-block p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.cta-block__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
  background: #f0f7ff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials__header p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.05rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-card__stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
}
.testi-card__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testi-card__name {
  font-weight: 700;
  font-size: 0.9rem;
}
.testi-card__biz {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq__header {
  text-align: center;
  margin-bottom: 48px;
}
.faq__header p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.05rem;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--text);
  gap: 12px;
  transition: background 0.14s;
}
.faq-question:hover {
  background: var(--bg);
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
  color: var(--muted);
}
.faq-item.open .faq-question svg {
  transform: rotate(45deg);
  color: var(--blue);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s var(--ease),
    padding 0.3s var(--ease);
  padding: 0 24px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 240px;
  padding: 0 24px 20px;
}

/* ── URGENCY ────────────────────────────────────────────────── */
.urgency {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 52px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.urgency::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(37, 99, 235, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(34, 197, 94, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.urgency__inner {
  position: relative;
  z-index: 1;
}
.urgency__eyebrow {
  margin-bottom: 14px;
}
.urgency h2 {
  color: #fff;
  margin-bottom: 12px;
}
.urgency p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.urgency__timer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}
.timer-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  min-width: 80px;
  text-align: center;
}
.timer-box__num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.timer-box__label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── SERVICE AREAS ──────────────────────────────────────────── */
.areas__header {
  text-align: center;
  margin-bottom: 48px;
}
.areas__header p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.05rem;
}
.areas__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.area-chip {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition:
    border-color 0.18s,
    background 0.18s,
    transform 0.18s;
  cursor: default;
}
.area-chip:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-2px);
}
.area-chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.icon-close {
  display: none;
}
.all-areas {
  border-top: 1px solid var(--c-primary);
  padding-top: 10px;
  display: none;
}
.all-areas-container {
  text-align: center;
}
.all-area-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2563eb;
  border: 1px solid #09338f;
  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: 10px;
  margin-bottom: 10px;
}
.all-area-toggle-btn svg {
  color: var(--c-primary);
  stroke: currentcolor;
  stroke-width: 2;
  width: 20px;
  height: 20px;
}
/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand .nav__logo {
  color: #fff;
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul li a {
  font-size: 0.88rem;
  transition: color 0.15s;
}
.footer__col ul li a:hover {
  color: #fff;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer__bottom a {
  transition: color 0.15s;
}
.footer__bottom a:hover {
  color: #fff;
}

/* ── SERVICE PAGE ────────────────────────────────────────────── */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  padding: 48px 0 80px;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 82px;
}
.sidebar__order {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}
.sidebar__price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.04em;
  margin: 10px 0;
}
.sidebar__price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.sidebar__trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.sidebar__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}
.sidebar__trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}
.sidebar__guarantee {
  background: var(--green-light);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 14px;
}
.sidebar__pkgs {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 20px;
}
.sidebar__pkgs h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.pkg-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.pkg-link:last-child {
  border-bottom: none;
}
.pkg-link a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.14s;
}
.pkg-link a:hover {
  color: var(--blue);
}
.pkg-link__price {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.85rem;
}
.sidebar__areas {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.sidebar__areas h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

/* Service Content */
.service-content h1 {
  margin-bottom: 18px;
}
.service-content .lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.content-section {
  margin-bottom: 48px;
}
.content-section h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.content-section p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.benefit-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.18s;
}
.benefit-card:hover {
  border-color: var(--blue);
}
.benefit-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.benefit-card__title {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 5px;
}
.benefit-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.step__title {
  font-weight: 700;
  margin-bottom: 5px;
}
.step__desc {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── SERVICE BREADCRUMB ─────────────────────────────────────── */
.breadcrumb {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.breadcrumb a {
  color: var(--muted);
  transition: color 0.14s;
}
.breadcrumb a:hover {
  color: var(--blue);
}
.breadcrumb span {
  color: var(--text);
  font-weight: 500;
}

/* ── MOBILE NAV DRAWER ──────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: var(--surface);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.28s var(--ease);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open .mobile-menu__panel {
  transform: translateX(0);
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
}
.mobile-menu__links a {
  padding: 12px 4px;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .packages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .areas__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .service-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sidebar__order {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__calc {
    order: -1;
  }
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .packages__grid {
    grid-template-columns: 1fr;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .areas__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .sidebar {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .cta-block {
    padding: 48px 24px;
  }
  .nav__links {
    display: none;
  }
  .nav__cta .btn {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .urgency__timer {
    gap: 10px;
  }
  .timer-box {
    min-width: 68px;
    padding: 12px 14px;
  }
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .areas__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-block__actions {
    flex-direction: column;
    align-items: center;
  }
  .ptable {
    font-size: 0.83rem;
  }
  .ptable td,
  .ptable thead th {
    padding: 12px 16px;
  }
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-up {
  animation: fade-up 0.55s var(--ease) both;
}
.animate-up:nth-child(2) {
  animation-delay: 0.1s;
}
.animate-up:nth-child(3) {
  animation-delay: 0.2s;
}
.animate-up:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.float {
  animation: float 4s ease-in-out infinite;
}
.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;
  }
}
