/* ============================================================
   ISPAZ PRO REMONT — Shared Stylesheet
   Dark luxury: #1a1a1a bg · #FFE200 accent · Montserrat
   ============================================================ */

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

:root {
  --dark:       #1a1a1a;
  --darker:     #111111;
  --dark2:      #222222;
  --dark3:      #2a2a2a;
  --yellow:     #FFE200;
  --yellow-dim: rgba(255,226,0,0.12);
  --white:      #ffffff;
  --gray:       #888888;
  --gray2:      #555555;
  --light:      #f4f4f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

* { -webkit-tap-highlight-color: transparent; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 2px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ── UTILITY ──────────────────────────────────────────────── */
.section      { padding: 80px 0; }
.section-light { background: var(--dark2); }
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

@media (max-width: 768px) {
  .section    { padding: 60px 0; }
  .container  { padding: 0 16px; }
}
@media (max-width: 480px) {
  .section    { padding: 48px 0; }
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title span { color: var(--yellow); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--darker);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: #fff; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s;
  padding: 0 24px;
}
.site-header.scrolled {
  background: rgba(17,17,17,0.97);
  border-bottom: 1px solid rgba(255,226,0,0.15);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

/* Logo */
.logo-wrap { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.22em;
  color: #fff;
  line-height: 1;
}
.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 7px;
  letter-spacing: 0.32em;
  color: var(--yellow);
  margin-top: 3px;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-shrink: 0;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.nav-link:hover { color: var(--yellow); border-bottom-color: var(--yellow); }

/* Burger */
.burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--yellow);
  transition: all 0.25s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-link {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (min-width: 1080px) { .burger-btn { display: none !important; } }
@media (max-width: 1079px) { .desktop-nav { display: none !important; } }

/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0f0f0f 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-accent-bar {
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 4px;
  background: var(--yellow);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,226,0,0.1);
  border: 1px solid rgba(255,226,0,0.25);
  padding: 8px 20px;
  margin-bottom: 36px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.hero-badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--yellow);
}
.hero-h1 {
  font-weight: 900;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-h1 span { color: var(--yellow); }
.hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 48px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-n {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-l {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  font-weight: 500;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.scroll-indicator span { font-size: 10px; letter-spacing: 0.2em; font-weight: 600; }
.scroll-line { width: 1px; height: 40px; background: var(--yellow); }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}
.scroll-line { animation: scrollPulse 2s ease-in-out infinite; }

/* ── ABOUT ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 60px;
  align-items: center;
}
.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.about-stat-card {
  background: var(--dark);
  padding: 32px 24px;
  border-bottom: 3px solid var(--yellow);
}
.about-stat-n  { font-size: 40px; font-weight: 900; color: var(--yellow); line-height: 1; }
.about-stat-l  { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 8px; font-weight: 500; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 2px;
}
.service-card {
  background: var(--dark2);
  padding: 36px 32px;
  transition: all 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card:hover { background: var(--yellow); }
.service-card-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.25em;
  color: var(--yellow); margin-bottom: 20px; text-transform: uppercase;
  transition: color 0.25s;
}
.service-card:hover .service-card-tag { color: rgba(0,0,0,0.5); }
.service-card-title {
  font-size: 20px; font-weight: 800; margin-bottom: 14px;
  color: #fff; transition: color 0.25s;
}
.service-card:hover .service-card-title { color: #111; }
.service-card-desc {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.55); transition: color 0.25s;
}
.service-card:hover .service-card-desc { color: rgba(0,0,0,0.65); }
.service-card-ghost {
  position: absolute; bottom: 24px; right: 28px;
  font-size: 28px; font-weight: 900;
  color: rgba(255,255,255,0.04); transition: color 0.25s;
}
.service-card:hover .service-card-ghost { color: rgba(0,0,0,0.1); }

/* ── PORTFOLIO ────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 3px;
}
.portfolio-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-card:hover .portfolio-overlay {
  background: rgba(255,226,0,0.12);
}
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  transition: all 0.3s;
}
.portfolio-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
}
.portfolio-type {
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--yellow); font-weight: 600; margin-bottom: 6px;
}
.portfolio-name { font-size: 17px; font-weight: 800; color: #fff; }
.portfolio-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: var(--yellow);
  display: none;
  align-items: center; justify-content: center;
}
.portfolio-card:hover .portfolio-arrow { display: flex; }

/* ── PROCESS ──────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 2px;
}
.process-card {
  padding: 36px 28px;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.process-ghost {
  position: absolute; top: 16px; right: 20px;
  font-size: 60px; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1;
}
.process-n { color: var(--yellow); font-size: 28px; font-weight: 900; margin-bottom: 16px; line-height: 1; }
.process-title { font-size: 17px; font-weight: 800; margin-bottom: 12px; }
.process-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── CALCULATOR ───────────────────────────────────────────── */
.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 48px;
  align-items: start;
}
.calc-box { background: var(--dark); padding: 40px 36px; }
.calc-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4); margin-bottom: 14px; text-transform: uppercase;
}
.calc-type-btns { display: flex; gap: 2px; }
.calc-type-btn {
  flex: 1; padding: 12px 8px; border: none; cursor: pointer;
  background: var(--dark3); color: rgba(255,255,255,0.6);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.05em; transition: all 0.2s;
}
.calc-type-btn.active { background: var(--yellow); color: #111; }
.calc-area-row { display: flex; justify-content: space-between; margin-bottom: 14px; }
.calc-area-val { font-size: 18px; font-weight: 800; color: var(--yellow); }
.calc-slider {
  width: 100%; accent-color: var(--yellow); height: 4px;
  -webkit-appearance: none; appearance: none;
  background: var(--dark3); outline: none; border-radius: 2px;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%; background: var(--yellow); cursor: pointer;
}
.calc-slider-labels { display: flex; justify-content: space-between; margin-top: 6px; }
.calc-slider-labels span { font-size: 11px; color: rgba(255,255,255,0.3); }
.calc-result { background: var(--yellow); padding: 24px 28px; margin-bottom: 20px; }
.calc-result-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  color: rgba(0,0,0,0.5); margin-bottom: 8px; text-transform: uppercase;
}
.calc-result-val { font-size: 34px; font-weight: 900; color: #111; line-height: 1; }
.calc-result-sub { font-size: 12px; color: rgba(0,0,0,0.5); margin-top: 6px; }

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 3px;
}
.review-card {
  background: var(--dark2);
  padding: 32px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}
.review-card:hover { border-top-color: var(--yellow); }
.review-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.review-stars span { color: var(--yellow); font-size: 14px; }
.review-text {
  font-size: 14px; line-height: 1.8;
  color: rgba(255,255,255,0.7); margin-bottom: 24px; font-style: italic;
}
.review-name { font-weight: 700; font-size: 15px; }
.review-obj  { font-size: 12px; color: var(--yellow); margin-top: 4px; font-weight: 600; }

/* ── BLOG ─────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 3px;
}
.blog-card {
  background: var(--dark);
  padding: 32px 28px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { background: #242424; }
.blog-meta {
  display: flex; justify-content: space-between;
  margin-bottom: 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
}
.blog-tag { color: var(--yellow); }
.blog-date { color: rgba(255,255,255,0.3); }
.blog-title {
  font-size: 18px; font-weight: 800; line-height: 1.35; margin-bottom: 14px;
}
.blog-excerpt { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; flex: 1; }
.blog-read {
  margin-top: 24px; display: flex; align-items: center;
  gap: 8px; color: var(--yellow); font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 60px;
  align-items: start;
}
.contact-info-item { margin-bottom: 0; }
.contact-info-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  color: var(--yellow); margin-bottom: 6px; text-transform: uppercase;
}
.contact-info-val { font-size: 16px; font-weight: 600; }
.contact-form-box { background: var(--dark2); padding: 44px 40px; }
.contact-form-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 28px; }
.form-input {
  width: 100%; background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 500;
  padding: 16px 20px; outline: none; margin-bottom: 12px;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--yellow); }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
textarea.form-input { min-height: 100px; resize: vertical; }
.form-note {
  font-size: 11px; color: rgba(255,255,255,0.3);
  margin-top: 14px; line-height: 1.6;
}
.form-success { text-align: center; padding: 40px 0; display: none; }
.form-success.show { display: block; }
.form-success-icon { font-size: 52px; margin-bottom: 16px; color: var(--yellow); }
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--yellow); margin-bottom: 12px; }
.form-success p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--darker);
  border-top: 1px solid rgba(255,226,0,0.15);
  padding: 48px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-nav a {
  color: rgba(255,255,255,0.45);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── INNER PAGE HERO ──────────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
  color: var(--yellow); text-transform: uppercase; margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255,255,255,0.6); line-height: 1.7;
  max-width: 600px; margin-bottom: 36px;
}
.page-hero-badges {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px;
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,226,0,0.1);
  border: 1px solid rgba(255,226,0,0.2);
  padding: 8px 16px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8);
}
.page-hero-badge::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--yellow); border-radius: 50%;
}

/* ── CONTENT TYPOGRAPHY ───────────────────────────────────── */
.content-block { padding: 80px 0; }
.content-block.alt { background: var(--dark2); }
.content-h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800; margin-bottom: 24px;
  line-height: 1.15;
}
.content-h2 span { color: var(--yellow); }
.content-h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 12px; margin-top: 32px;
}
.content-p {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.content-p strong { color: #fff; font-weight: 700; }

/* ── PRICING TABLE ────────────────────────────────────────── */
.price-table-wrap { overflow-x: auto; margin: 32px 0; }
.price-table {
  width: 100%; border-collapse: collapse; min-width: 500px;
}
.price-table th {
  background: var(--dark3); color: var(--yellow);
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 14px 20px; text-align: left;
}
.price-table td {
  padding: 12px 20px; font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
}
.price-table tr:hover td { background: rgba(255,226,0,0.04); }
.price-table td:first-child { color: #fff; font-weight: 500; }
.price-table td:last-child { color: var(--yellow); font-weight: 700; }

/* ── PACKAGE CARDS ────────────────────────────────────────── */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2px;
  margin: 36px 0;
}
.package-card {
  background: var(--dark2);
  padding: 36px 28px;
  border-top: 4px solid var(--dark3);
  transition: border-color 0.2s;
}
.package-card.featured { border-top-color: var(--yellow); }
.package-card:hover { border-top-color: var(--yellow); }
.package-name { font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.package-price { font-size: 32px; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 4px; }
.package-price-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.package-feature {
  font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.package-feature::before { content: '✓ '; color: var(--yellow); font-weight: 700; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { margin-top: 32px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.faq-q {
  font-size: 16px; font-weight: 700; margin-bottom: 12px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after { content: '+'; color: var(--yellow); font-size: 22px; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-size: 14px; line-height: 1.8;
  color: rgba(255,255,255,0.6);
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.35);
  margin-bottom: 20px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }
.breadcrumb-current { color: rgba(255,255,255,0.6); }

/* ── FEATURE LIST ─────────────────────────────────────────── */
.feature-list { list-style: none; margin: 16px 0; }
.feature-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.feature-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--yellow); font-weight: 700;
}
.feature-list li strong { color: #fff; font-weight: 700; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: var(--yellow);
  padding: 60px 0;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-title { font-size: clamp(22px, 3vw, 36px); font-weight: 900; color: #111; }
.cta-sub { font-size: 14px; color: rgba(0,0,0,0.6); margin-top: 8px; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--darker); color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 18px 36px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.btn-dark:hover { background: #000; transform: translateY(-2px); }

/* ── GEO & BLOG ARTICLE ───────────────────────────────────── */
.article-body { max-width: 820px; }
.article-body h2 { font-size: clamp(20px,2.5vw,30px); font-weight: 800; margin: 48px 0 16px; line-height: 1.2; }
.article-body h2 span { color: var(--yellow); }
.article-body h3 { font-size: 18px; font-weight: 700; margin: 32px 0 12px; }
.article-body p { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.72); margin-bottom: 20px; }
.article-body strong { color: #fff; font-weight: 700; }
.article-body ul { list-style: none; margin: 16px 0; }
.article-body ul li {
  padding: 8px 0 8px 24px; position: relative;
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.7);
}
.article-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--yellow); }

/* ── RESPONSIVE TWEAKS ────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-stats { gap: 24px; }
  .contact-form-box { padding: 32px 24px; }
  .cta-banner .container { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .package-grid { grid-template-columns: 1fr; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
  .calc-result-val { font-size: 22px; }
}

/* ── CONTACT SECTION HIDDEN (replaced by modal) ─────────── */
section#contact { display: none !important; }

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.active {
  opacity: 1; pointer-events: all;
}
.modal-box {
  background: var(--dark2);
  width: 100%; max-width: 500px;
  padding: 48px 44px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.modal-overlay.active .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: #fff; background: rgba(255,255,255,0.12); }
.modal-box h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.modal-box .modal-sub {
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-bottom: 28px; line-height: 1.5;
}
@media (max-width: 540px) {
  .modal-box { padding: 36px 24px; }
}
