/* ============ Reset & base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
input { font: inherit; }

:root {
  --pink: #e6007e;
  --burgundy: #7a1550;
  --dark: #2b0a1c;
  --ink: #17141a;
  --ink-soft: #55505a;
  --bg-alt: #faf6f9;
  --border: #ece5ea;
  --success-bg: #eafbf1;
  --success-fg: #0a7a3f;
  --warning-bg: #fff6e8;
  --warning-fg: #93630a;
  --unavailable-bg: #fdeceb;
  --unavailable-fg: #b02a20;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 24px rgba(43, 10, 28, 0.08);
  --shadow-lg: 0 20px 48px rgba(43, 10, 28, 0.14);
  --gradient: linear-gradient(135deg, var(--pink), var(--burgundy));
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 0, 126, 0.28);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(230, 0, 126, 0.34); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: rgba(230,0,126,0.06); }
.btn-outline {
  border: 1.5px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
}
.btn-outline:hover { background: rgba(122,21,80,0.06); }
.btn-strefa {
  background: var(--dark);
  color: #fff;
  padding: 10px 22px;
  font-size: 0.9rem;
}
.btn-small { padding: 9px 18px; font-size: 0.85rem; margin-top: 12px; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
/* Backdrop-filter lives on a ::before layer, not on .site-header itself —
   backdrop-filter/filter/transform on an element establishes a new containing
   block for position:fixed descendants, which would trap the mobile nav
   drawer inside the header's own box instead of the full viewport. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled::before {
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(43,10,28,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-img { height: 40px; width: auto; }

@media (min-width: 720px) {
  .logo-img { height: 46px; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.primary-nav {
  position: fixed;
  inset: 0 0 0 30%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 40px 32px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 105;
  box-shadow: -12px 0 32px rgba(0,0,0,0.08);
}
.primary-nav.is-open { transform: translateX(0); }
.primary-nav ul { display: flex; flex-direction: column; gap: 22px; }
.primary-nav a { font-weight: 600; font-size: 1.1rem; }
.primary-nav .btn-strefa { align-self: flex-start; }

/* ============ Hero ============ */
.hero {
  padding: 48px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% -10%, rgba(230,0,126,0.14), transparent 55%),
    radial-gradient(circle at 0% 110%, rgba(122,21,80,0.10), transparent 55%);
}
.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: 1fr;
}
.hero-text { max-width: 560px; }
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 56ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; }
.hero-media .network-graphic {
  position: absolute;
  inset: -12% -8%;
  z-index: -1;
  opacity: 0.55;
}
.hero-media .photo-placeholder { box-shadow: var(--shadow-lg); }

@media (min-width: 900px) {
  .hero { padding: 76px 0; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* ============ Segment switch ============ */
.segment-switch { padding: 8px 0 0; }
.segment-tabs {
  display: flex;
  gap: 6px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto;
}
.segment-tab {
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.segment-tab.is-active {
  background: var(--ink);
  color: #fff;
}

.segment-panel { display: none; }
.segment-panel.is-active { display: block; }

/* ============ Sections ============ */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.section-lead {
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 32px;
  font-size: 1.02rem;
}
.subsection-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

/* ============ Simple content pages (o-nas.html, dla-prasy.html) ============ */
.prose { max-width: 760px; }
.prose h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.prose h2 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 36px;
  margin-bottom: 12px;
}
.prose h2:first-of-type { margin-top: 0; }
.prose p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 16px;
}
.prose p:last-child { margin-bottom: 0; }

/* ============ Variant tabs & pricing ============ */
.variant-tabs {
  display: inline-flex;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.variant-tab {
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.variant-tab.is-active { background: var(--gradient); color: #fff; }

.pricing-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.pricing-grid.is-active { display: grid; }

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-card.is-featured {
  border-color: var(--pink);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.price-name { font-size: 1.1rem; font-weight: 800; letter-spacing: 0.02em; }
.price-speed { font-size: 1.3rem; font-weight: 700; color: var(--burgundy); }
.price-speed span { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }
.price-amount { font-size: 2.1rem; font-weight: 800; }
.price-amount span { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); }
.price-features { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.price-features li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}
.price-card .btn { margin-top: 6px; }
.variant-note { margin-top: 24px; color: var(--ink-soft); font-size: 0.92rem; }
.variant-note a { color: var(--burgundy); font-weight: 600; }

/* ============ TV add-on packages ============ */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.addon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.addon-logo {
  height: 34px;
  display: flex;
  align-items: center;
}
.addon-logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.addon-name { font-size: 0.98rem; font-weight: 800; letter-spacing: -0.01em; }
.addon-channels {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  flex: 1;
}
.addon-price { font-size: 1.4rem; font-weight: 800; }
.addon-price span { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); }
.addon-card .btn { margin-top: 2px; }

/* ============ Feature grid ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.section-alt .feature { background: #fff; }
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(230,0,126,0.12), rgba(122,21,80,0.12));
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: 0.93rem; }

/* ---------- Opinie Google ---------- */
.reviews-block { margin-top: 12px; }
.reviews-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.reviews-cta {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--burgundy);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.reviews-loading { color: var(--ink-soft); font-size: 0.9rem; grid-column: 1 / -1; }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-author { font-weight: 700; font-size: 0.92rem; }
.review-stars { color: var(--burgundy); font-size: 0.85rem; letter-spacing: 1px; }
.review-text {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-time { color: var(--ink-soft); font-size: 0.8rem; margin-top: auto; }
.reviews-attribution { margin-top: 18px; color: var(--ink-soft); font-size: 0.78rem; }

/* ============ Photo placeholders ============ */
/* Clearly-marked slots for the client's own photography — see README for
   suggested search terms per placeholder. Not meant to ship as final. */
.photo-placeholder {
  position: relative;
  aspect-ratio: var(--ph-ratio, 4 / 3);
  border-radius: var(--radius-lg);
  border: 1.5px dashed rgba(122, 21, 80, 0.35);
  background:
    repeating-linear-gradient(135deg, rgba(230,0,126,0.05) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #fdf0f6, #f7eaf1);
  display: flex;
  overflow: hidden;
}
.photo-placeholder-inner {
  margin: auto;
  text-align: center;
  padding: 24px;
  max-width: 260px;
}
.photo-placeholder-inner svg {
  width: 34px;
  height: 34px;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 0 auto 12px;
  opacity: 0.8;
}
.photo-placeholder .ph-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.photo-placeholder .ph-hint {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Real photo frame — same aspect-ratio/rounding contract as .photo-placeholder,
   swapped in once a section has an actual photo instead of a placeholder. */
.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: var(--ph-ratio, 4 / 3);
}
.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media .photo-frame { box-shadow: var(--shadow-lg); }

/* ============ Split (image + text) sections ============ */
.split-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: 1fr;
}
.split-grid .split-text .section-title,
.split-grid .split-text .section-lead { margin-bottom: 16px; }
.split-grid .split-text .section-lead { margin-bottom: 24px; }

/* ============ Bundle promo banner ============ */
.bundle-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-align: left;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 32px 0;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.bundle-banner:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.bundle-banner-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bundle-banner-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.bundle-banner-text { flex: 1; min-width: 200px; }
.bundle-banner-title { display: block; font-weight: 800; font-size: 1.15rem; margin-bottom: 4px; }
.bundle-banner-sub { display: block; font-size: 0.9rem; opacity: 0.92; }
.bundle-banner-cta { font-weight: 700; white-space: nowrap; font-size: 0.95rem; }

@media (max-width: 719px) {
  .bundle-banner { flex-wrap: wrap; }
  .bundle-banner-cta { width: 100%; text-align: center; padding-top: 4px; }
}

/* ============ Bundle configurator ============ */
.configurator {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 640px;
}
.config-group { margin-bottom: 24px; }
.config-label { font-weight: 700; font-size: 0.92rem; margin-bottom: 10px; }
.option-group { display: flex; flex-wrap: wrap; gap: 8px; }
.option-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: #fff;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.option-btn.is-active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

.config-summary {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 8px;
}
.config-summary-empty { color: var(--ink-soft); font-size: 0.92rem; }
.summary-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row-label { color: var(--ink-soft); }
.summary-row-value { font-weight: 600; text-align: right; white-space: nowrap; }
.summary-row-strike { text-decoration: line-through; color: var(--ink-soft); font-weight: 400; margin-right: 6px; }
.summary-discount-tag {
  display: inline-block;
  background: var(--success-bg);
  color: var(--success-fg);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  white-space: nowrap;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 2px solid var(--ink);
}
.summary-total-label { font-size: 0.95rem; font-weight: 700; }
.summary-total-value { font-size: 1.3rem; font-weight: 800; }
.summary-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 16px; }

/* ============ Decorative network graphic ============ */
/* Abstract fiber/node illustration used behind the hero and the coverage
   checker — a stand-in for photography in spots where a photo isn't needed. */
.network-graphic { display: block; }
.section-checker { position: relative; overflow: hidden; }
.section-checker .network-graphic {
  position: absolute;
  inset: -15% -5%;
  z-index: 0;
  opacity: 0.16;
  pointer-events: none;
}
.section-checker > .wrap { position: relative; z-index: 1; }

/* ============ Coverage checker ============ */
.section-checker {
  background: var(--dark);
  color: #fff;
}
.section-checker .section-title,
.section-checker .section-lead { color: #fff; }
.section-checker .section-lead { color: rgba(255,255,255,0.75); }

.checker-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.checker-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.85);
}
.checker-field .opt { font-weight: 400; color: rgba(255,255,255,0.55); }
.checker-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.checker-field input::placeholder { color: rgba(255,255,255,0.45); }
.checker-field input:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(255,255,255,0.12);
}
.checker-submit { width: 100%; margin-top: 4px; }

.checker-result {
  display: none;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.5;
}
.checker-result.is-visible { display: block; }
.checker-result a { text-decoration: underline; font-weight: 600; }
.checker-result.is-loading { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
.checker-result.is-available { background: var(--success-bg); color: var(--success-fg); }
.checker-result.is-unavailable { background: var(--unavailable-bg); color: var(--unavailable-fg); }
.checker-result.is-warning { background: var(--warning-bg); color: var(--warning-fg); }
.checker-result .btn-primary { color: #fff; }

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.contact-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.contact-list a { font-weight: 600; color: var(--burgundy); }
.contact-map {
  position: relative;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-map-link {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: #fff;
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

/* ============ Order modal ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(23, 20, 26, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px 24px;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  transition: max-width 0.15s ease;
}
.modal.is-wide { max-width: 540px; }
.modal-bundle { margin-bottom: 20px; }
.modal-bundle .config-group:last-child { margin-bottom: 16px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--bg-alt); color: var(--ink); }
.modal-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; padding-right: 24px; }
.modal-lead { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 20px; }
.modal-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--burgundy);
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.modal-phone svg {
  width: 20px;
  height: 20px;
  fill: var(--burgundy);
  flex-shrink: 0;
}
#orderForm label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
#orderForm .opt { font-weight: 400; color: var(--ink-soft); }
#orderForm input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  margin-bottom: 20px;
}
#orderForm input[type="email"]:focus {
  outline: none;
  border-color: var(--pink);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.modal-addons { margin-bottom: 20px; }
.modal-addons-title { font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; }
.addon-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  cursor: pointer;
}
.addon-option input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--pink);
  flex-shrink: 0;
  cursor: pointer;
}
.addon-option-text { display: flex; flex-direction: column; gap: 2px; }
.addon-option-name { font-size: 0.88rem; font-weight: 600; }
.addon-option-price { font-size: 0.8rem; color: var(--burgundy); font-weight: 600; }
.modal-addons .config-summary { margin-top: 10px; padding: 16px; }
.addon-option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px 20px;
}
.addon-option-grid .addon-option { padding: 7px 0; }
@media (min-width: 500px) {
  .addon-option-grid { grid-template-columns: 1fr 1fr; }
}
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; }
.modal-actions .btn { flex: 1; }
.modal-status {
  margin-top: 14px;
  font-size: 0.88rem;
  min-height: 1.2em;
}
.modal-status.is-success { color: var(--success-fg); }
.modal-status.is-error { color: var(--unavailable-fg); }

/* ============ Footer ============ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo { height: 30px; width: auto; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.footer-nav a:hover { color: #fff; }

/* ============ Breakpoints ============ */
@media (min-width: 720px) {
  .nav-toggle { display: none; }
  .primary-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    width: auto;
  }
  .primary-nav ul { flex-direction: row; gap: 26px; }
  .primary-nav a { font-size: 0.95rem; }

  .checker-form { grid-template-columns: 1.2fr 1.2fr 0.8fr auto; align-items: end; }
  .checker-submit { width: auto; }

  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }

  .split-grid { grid-template-columns: 1fr 1fr; }
  .split-grid.is-reversed .split-media { order: 2; }
}
