:root {
  --navy: #0b1f3a;
  --navy-2: #12294a;
  --navy-3: #1b3a63;
  --gold: #f0a500;
  --gold-dark: #d49200;
  --text: #24314a;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --border: #e6ebf3;
  --success: #16a34a;
  --danger: #dc2626;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.14);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1140px, 92%); margin-inline: auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff !important;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem !important;
}
.nav-cta:hover { filter: brightness(1.05); color: #fff !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.25s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(240, 165, 0, 0.14), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  color: #fff;
  padding: 90px 0 110px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 165, 0, 0.15);
  border: 1px solid rgba(240, 165, 0, 0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p.lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; box-shadow: 0 10px 24px rgba(240, 165, 0, 0.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(240, 165, 0, 0.45); }
.btn-ghost { background: rgba(255, 255, 255, 0.08); color: #fff; border: 1px solid rgba(255, 255, 255, 0.25); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-3); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.hero-card h3 { font-size: 1.05rem; margin-bottom: 14px; color: #fff; }
.hero-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat .lbl { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; }
.hero-stat .val { font-weight: 700; color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.kicker {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--navy); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.02rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(240, 165, 0, 0.5); }
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.service-card h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.92rem; flex: 1; margin-bottom: 18px; }
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  margin-bottom: 14px;
}
.price { font-weight: 800; color: var(--navy); font-size: 1.05rem; }
.price small { color: var(--muted); font-weight: 500; font-size: 0.8rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
}
.service-link:hover { color: var(--navy); }

/* ---------- Why us ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.feature .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
}
.feature h4 { color: var(--navy); margin-bottom: 8px; font-size: 1.02rem; }
.feature p { color: var(--muted); font-size: 0.88rem; }

/* ---------- How it works ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.step .step-no {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}
.step h4 { color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.88rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.testi .quote { color: var(--text); font-size: 0.95rem; margin-bottom: 18px; }
.testi .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testi .author { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.testi .role { color: var(--muted); font-size: 0.82rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: #fff;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.25), transparent 70%);
  top: -180px;
  right: -80px;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 12px; letter-spacing: -0.02em; }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 560px; margin: 0 auto 28px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy), var(--navy-3));
  color: #fff;
  padding: 64px 0;
}
.page-hero h1 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); letter-spacing: -0.02em; margin-bottom: 10px; }
.page-hero p { color: rgba(255, 255, 255, 0.8); max-width: 640px; }
.breadcrumb { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 14px; display: block; }
.breadcrumb a { color: rgba(255, 255, 255, 0.6); }
.breadcrumb a:hover { color: #fff; }

/* ---------- TOC ---------- */
.toc {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 40px;
}
.toc h3 { color: var(--navy); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.toc ol { counter-reset: toc; }
.toc ol li { counter-increment: toc; margin-bottom: 8px; }
.toc ol li:last-child { margin-bottom: 0; }
.toc ol li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.93rem;
  transition: color 0.2s;
}
.toc ol li a::before {
  content: counter(toc);
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.toc ol li a:hover { color: var(--gold-dark); }

/* ---------- Article / content ---------- */
.content-wrap { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  border-left: 3px solid transparent;
  transition: 0.2s;
}
.sidebar a:hover { color: var(--navy); background: var(--bg-soft); }
.sidebar a.active { color: var(--navy); background: var(--bg-soft); border-left-color: var(--gold); }

.article h2 {
  color: var(--navy);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  margin: 8px 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--bg-soft);
  scroll-margin-top: 96px;
}
.article h3 { color: var(--navy); font-size: 1.18rem; margin: 26px 0 12px; }
.article p { color: var(--text); margin-bottom: 14px; }
.article ul { margin: 0 0 18px; }
.article ul li { position: relative; padding-left: 22px; margin-bottom: 8px; color: var(--text); }
.article ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; top: 3px; }
.article .note {
  background: var(--bg-soft);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
  font-size: 0.92rem;
}
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 22px 0; }
.info-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.info-card h4 { color: var(--navy); margin-bottom: 6px; font-size: 0.95rem; }
.info-card p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ---------- Package cards (order) ---------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}
.pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pkg.featured { border-color: var(--gold); position: relative; }
.pkg.featured::before {
  content: "EN ÇOK TERCİH EDİLEN";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pkg h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 6px; }
.pkg .pkg-price { font-size: 2rem; font-weight: 800; color: var(--navy); margin: 6px 0 16px; }
.pkg .pkg-price small { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.pkg ul { flex: 1; margin-bottom: 20px; }
.pkg ul li { padding: 7px 0 7px 22px; position: relative; font-size: 0.9rem; color: var(--text); border-bottom: 1px dashed var(--border); }
.pkg ul li:last-child { border-bottom: none; }
.pkg ul li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.pkg .btn { width: 100%; justify-content: center; }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 7px; }
.field label small { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(240, 165, 0, 0.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.field .err { color: var(--danger); font-size: 0.8rem; margin-top: 5px; display: none; }
.field.invalid input { border-color: var(--danger); }
.field.invalid .err { display: block; }

/* ---------- Checkout ---------- */
.checkout-wrap { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 28px; align-items: start; }
.card-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.card-panel h2 { color: var(--navy); font-size: 1.25rem; margin-bottom: 22px; }

.order-summary { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; position: sticky; top: 96px; }
.order-summary h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 16px; }
.sum-row { display: flex; justify-content: space-between; font-size: 0.92rem; padding: 9px 0; color: var(--muted); border-bottom: 1px dashed var(--border); }
.sum-row span:last-child { color: var(--text); font-weight: 600; }
.sum-total { display: flex; justify-content: space-between; padding: 16px 0 0; margin-top: 6px; font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.sum-total span:last-child { color: var(--gold-dark); }
.summary-service {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.summary-service h4 { color: var(--navy); font-size: 0.98rem; }
.summary-service p { color: var(--muted); font-size: 0.83rem; margin-top: 4px; }
.pay-icons { display: flex; gap: 8px; margin-top: 14px; }
.pay-icons span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.secure-note { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.82rem; margin-top: 16px; }

/* ---------- Success ---------- */
.success-page { min-height: 60vh; display: grid; place-items: center; padding: 80px 0; }
.success-box { text-align: center; max-width: 560px; }
.success-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #fff;
  font-size: 3rem;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.35);
  animation: pop 0.5s ease;
}
@keyframes pop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}
.success-box h1 { color: var(--navy); font-size: 1.9rem; margin-bottom: 12px; letter-spacing: -0.02em; }
.success-box p { color: var(--muted); margin-bottom: 8px; }
.order-no {
  display: inline-block;
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 14px 0 8px;
  font-size: 1.05rem;
}
.success-actions { display: flex; gap: 14px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.success-steps { margin-top: 30px; text-align: left; }
.success-steps h3 { color: var(--navy); font-size: 1rem; margin-bottom: 14px; }
.success-steps ol { counter-reset: s; }
.success-steps ol li { counter-increment: s; position: relative; padding: 8px 0 8px 34px; font-size: 0.9rem; color: var(--text); }
.success-steps ol li::before {
  content: counter(s);
  position: absolute;
  left: 0;
  top: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* ---------- Legal tables ---------- */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  font-size: 0.9rem;
  background: #fff;
}
.legal-table th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  padding: 11px 14px;
  font-weight: 600;
  font-size: 0.85rem;
}
.legal-table th:first-child { border-radius: 10px 0 0 0; }
.legal-table th:last-child { border-radius: 0 10px 0 0; }
.legal-table td {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-top: none;
  vertical-align: top;
}
.legal-table tr:nth-child(even) td { background: var(--bg-soft); }
.legal-table tr:hover td { background: #fff7e6; }
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0 24px;
  border-radius: 12px;
}
.table-scroll .legal-table { margin: 0; min-width: 700px; }
.legal-doc-note {
  background: #fff7e6;
  border-left: 4px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
  font-size: 0.92rem;
}
.legal-sign {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0 0;
}
.legal-sign .sign-box {
  border: 1.5px dashed var(--border);
  border-radius: 14px;
  padding: 20px;
}
.legal-sign .sign-box h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 8px; }
.legal-sign .sign-box p { color: var(--muted); font-size: 0.88rem; margin-bottom: 6px; }
.legal-sign .sign-box .sign-line { margin-top: 26px; border-top: 1px solid var(--border); padding-top: 8px; font-size: 0.82rem; color: var(--muted); }
@media (max-width: 640px) {
  .legal-sign { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.contact-item .ci-icon { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: var(--gold); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item h4 { color: var(--navy); font-size: 0.98rem; margin-bottom: 3px; }
.contact-item p, .contact-item a { color: var(--muted); font-size: 0.9rem; }
.contact-item a:hover { color: var(--gold-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr auto; gap: 40px; padding-bottom: 44px; }
.footer-grid h4 { color: #fff; font-size: 0.98rem; margin-bottom: 18px; }
.footer-grid a { display: block; color: rgba(255, 255, 255, 0.65); font-size: 0.9rem; padding: 5px 0; transition: color 0.2s; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }
.footer-badges { display: flex; flex-direction: row; gap: 12px; justify-self: end; }
.footer-badges a { display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 12px; width: 100px; height: 100px; transition: transform 0.2s, box-shadow 0.2s; }
.footer-badges a:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); }
.footer-badges img { max-width: 88px; max-height: 44px; width: auto; height: auto; object-fit: contain; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 20px 0; }
.footer-legal-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; }
.footer-legal-inner a { color: rgba(255, 255, 255, 0.6); }
.footer-legal-inner a:hover { color: var(--gold); }
.copyright { color: rgba(255, 255, 255, 0.45); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.legal-doc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 12px;
  transition: 0.2s;
}
.legal-doc-link:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.legal-doc-link .doc-ico { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, #ef4444, #b91c1c); color: #fff; display: grid; place-items: center; font-size: 1rem; flex-shrink: 0; }
.legal-doc-link h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 2px; }
.legal-doc-link p { color: var(--muted); font-size: 0.82rem; }
.legal-doc-link .doc-badge { margin-left: auto; background: var(--navy); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 5px 10px; border-radius: 999px; white-space: nowrap; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transform: translateY(130%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.88rem; flex: 1; color: rgba(255, 255, 255, 0.85); }
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-banner .btn { padding: 10px 20px; font-size: 0.85rem; flex-shrink: 0; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  top: 86px;
  right: 20px;
  background: var(--navy);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 120;
  transform: translateX(140%);
  transition: transform 0.35s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { transform: translateX(0); }
.toast.success { background: linear-gradient(135deg, #22c55e, #15803d); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .services-grid, .testi-grid, .packages { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .sidebar a { border-left: none; border-bottom: 3px solid transparent; border-radius: 0; padding: 8px 12px; }
  .sidebar a.active { border-bottom-color: var(--gold); }
  .checkout-wrap, .contact-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    align-items: flex-start;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
  .services-grid, .testi-grid, .packages, .features-grid, .steps-grid, .info-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .hero { padding: 60px 0 80px; }
  .section { padding: 60px 0; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
