/* ============================================================
   FLNTScan R2 — Main Stylesheet
   Medical-tech aesthetic | Mobile-first | CSS Variables
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand palette */
  --c-primary:       #1251a3;
  --c-primary-dark:  #0c3b7d;
  --c-primary-light: #2678d0;
  --c-secondary:     #1570ef;

  /* CTA / Accent */
  --c-cta:       #00c4b0;
  --c-cta-dark:  #009e8e;
  --c-cta-hover: #00dac4;

  /* Neutral */
  --c-text:         #111827;
  --c-text-muted:   #4e5a70;
  --c-text-light:   #8390a8;
  --c-border:       #dde6f0;
  --c-bg:           #ffffff;
  --c-bg-subtle:    #f5f9ff;
  --c-bg-section:   #eaf2fb;

  /* Semantic */
  --c-success: #10b981;
  --c-error:   #ef4444;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --sp-1:  .25rem;
  --sp-2:  .5rem;
  --sp-3:  .75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;

  /* Radii */
  --r-sm:   .375rem;
  --r-md:   .5rem;
  --r-lg:   .75rem;
  --r-xl:   1rem;
  --r-2xl:  1.5rem;
  --r-pill: 9999px;

  /* Shadows */
  --sh-sm:  0 1px 6px rgba(18,81,163,.07);
  --sh-md:  0 4px 24px rgba(18,81,163,.10);
  --sh-lg:  0 10px 48px rgba(18,81,163,.13);
  --sh-xl:  0 20px 64px rgba(18,81,163,.17);
  --sh-cta: 0 4px 26px rgba(0,196,176,.42);
  --sh-blue:0 4px 26px rgba(18,81,163,.30);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 380ms cubic-bezier(.4,0,.2,1);

  /* Layout */
  --max-w:       1200px;
  --header-h:    72px;
}

/* ---- Accessible screen-reader utility ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

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

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,svg { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-primary-light); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section { padding-block: var(--sp-20); }

.w-full { width: 100%; }
.flex-shrink-0 { flex-shrink: 0; }

/* ---- Section header ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-12);
}

.section-tag {
  display: inline-block;
  padding: var(--sp-1) var(--sp-4);
  background: linear-gradient(135deg, rgba(0,196,176,.14), rgba(21,112,239,.10));
  color: var(--c-cta-dark);
  border: 1px solid rgba(0,196,176,.35);
  border-radius: var(--r-pill);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  box-shadow: 0 2px 10px rgba(0,196,176,.14);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -.02em;
  margin-bottom: var(--sp-4);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: .75rem 1.5rem;
  border-radius: var(--r-lg);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--t-base), box-shadow var(--t-base), transform var(--t-base), color var(--t-base), border-color var(--t-base);
  position: relative;
  isolation: isolate;
}

.btn:active { transform: translateY(1px) !important; }

.btn-cta {
  background: linear-gradient(135deg, var(--c-cta) 0%, #00afc0 100%);
  color: #fff;
  box-shadow: var(--sh-cta);
  overflow: hidden;
}
.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%);
  transform: translateX(-120%) skewX(-10deg);
  transition: transform .55s ease;
}
.btn-cta:hover::before { transform: translateX(140%) skewX(-10deg); }
.btn-cta:hover {
  background: linear-gradient(135deg, var(--c-cta-hover) 0%, #00c4d8 100%);
  box-shadow: 0 8px 32px rgba(0,196,176,.52);
  transform: translateY(-2px);
  color: #fff;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
  border-radius: var(--r-xl);
}

.btn-sm {
  padding: .5rem 1.125rem;
  font-size: .875rem;
  border-radius: var(--r-md);
}

.btn-outline-primary {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
}
.btn-outline-primary:hover {
  background: var(--c-primary);
  color: #fff;
  box-shadow: var(--sh-blue);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--t-base), background var(--t-base);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
  background: rgba(255,255,255,.97);
}

.nav-container {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
  color: inherit;
}
.logo-brand {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--c-primary);
  letter-spacing: -.03em;
}
.logo-product {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--c-text-muted);
  line-height: 1;
}
.logo-r2 {
  color: var(--c-cta);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-left: auto;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--c-text-muted);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--c-primary);
  border-bottom-color: var(--c-cta);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
  box-shadow: var(--sh-lg);
  z-index: 199;
  animation: slideDown .25s ease both;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: var(--sp-4); }
.nav-mobile a { font-size: 1rem; font-weight: 500; color: var(--c-text); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Sticky CTA ---- */
.sticky-cta {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 150;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity var(--t-slow), transform var(--t-slow);
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.sticky-cta-btn {
  border-radius: var(--r-pill);
  padding: .875rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,191,165,.42);
  font-size: .9375rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-h) + var(--sp-12));
  padding-bottom: var(--sp-16);
  overflow: hidden;
  background: linear-gradient(155deg, #deeeff 0%, #f4f9ff 40%, #d8f5f2 100%);
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}
.bg-shape-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(21,112,239,.13), transparent 68%);
  top: -120px; right: -140px;
}
.bg-shape-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,196,176,.16), transparent 68%);
  bottom: -80px; left: 3%;
}
.bg-shape-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(18,81,163,.09), transparent 68%);
  top: 28%; left: 38%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-4);
  background: linear-gradient(135deg, rgba(0,196,176,.14), rgba(21,112,239,.10));
  border: 1px solid rgba(0,196,176,.45);
  border-radius: var(--r-pill);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--c-cta-dark);
  margin-bottom: var(--sp-6);
  box-shadow: 0 2px 12px rgba(0,196,176,.18);
}

.hero-title {
  font-size: clamp(1.6rem, 2.2vw, 2.25rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--c-primary);
  letter-spacing: -.03em;
  margin-bottom: var(--sp-6);
}
.hero-title-gradient {
  background: linear-gradient(130deg, #00c4b0 0%, #1570ef 60%, #5b8af5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-8);
  max-width: 500px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}
.hero-feature {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  font-size: .9375rem;
  color: var(--c-text-muted);
}
.hero-feature strong { color: var(--c-text); }

.hf-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
}
.hf-icon--teal  { background: linear-gradient(135deg, rgba(0,196,176,.18), rgba(0,196,176,.08)); color: var(--c-cta-dark); }
.hf-icon--blue  { background: linear-gradient(135deg, rgba(21,112,239,.16), rgba(21,112,239,.07)); color: var(--c-secondary); }
.hf-icon--orange{ background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(245,158,11,.06)); color: #c27000; }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  align-items: flex-start;
}

.hero-pricing-pill {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2) var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  background: linear-gradient(135deg, rgba(18,81,163,.07), rgba(21,112,239,.04));
  border: 1px solid rgba(18,81,163,.18);
  border-radius: var(--r-2xl);
  font-size: .875rem;
  box-shadow: 0 2px 12px rgba(18,81,163,.06);
}
.hpp-label {
  width: 100%;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-text-muted);
}
.hpp-rent, .hpp-buy { color: var(--c-text-muted); }
.hpp-rent strong, .hpp-buy strong { color: var(--c-primary); font-size: .9375rem; }
.hpp-divider { color: var(--c-text-light); font-size: .75rem; }

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.scanner-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  max-width: 340px;
  width: 100%;
}

.scanner-glow-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,191,165,.18) 0%, transparent 68%);
  animation: pulseRing 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0%,100% { transform: translateX(-50%) scale(1); opacity: .7; }
  50%      { transform: translateX(-50%) scale(1.12); opacity: 1; }
}

.scanner-device {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(15,76,129,.28));
  animation: floatDevice 4s ease-in-out infinite;
}
@keyframes floatDevice {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.scanner-svg { width: 160px; height: auto; }

.scanner-stats {
  display: flex;
  gap: var(--sp-3);
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--r-xl);
  box-shadow: 0 4px 24px rgba(18,81,163,.12), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  min-width: 86px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.stat-chip:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(18,81,163,.18), inset 0 1px 0 rgba(255,255,255,.9); }
.stat-chip--accent {
  border-color: rgba(0,196,176,.45);
  background: linear-gradient(145deg, rgba(0,196,176,.07), rgba(21,112,239,.04));
  box-shadow: 0 4px 24px rgba(0,196,176,.18), inset 0 1px 0 rgba(255,255,255,.8);
}
.sc-val { font-size: 1.25rem; font-weight: 900; color: var(--c-primary); line-height: 1; }
.stat-chip--accent .sc-val { color: var(--c-cta-dark); }
.sc-lbl { font-size: .7rem; font-weight: 600; color: var(--c-text-muted); margin-top: var(--sp-1); letter-spacing: .02em; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--c-text-light);
}
.scroll-cue svg { animation: bounce 1.6s ease-in-out infinite; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section { background: var(--c-bg); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.benefit-card {
  position: relative;
  padding: var(--sp-8);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.55) 50%, transparent 65%);
  transform: translateX(-140%) skewX(-8deg);
  transition: transform .65s ease;
  pointer-events: none;
  z-index: 1;
}
.benefit-card:hover::before { transform: translateX(200%) skewX(-8deg); }
.benefit-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-border);
  transition: background var(--t-base);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(18,81,163,.15);
  border-color: rgba(21,112,239,.22);
}
.benefit-card:hover::after {
  background: linear-gradient(90deg, var(--c-cta), var(--c-secondary));
}

.benefit-card--featured {
  border-color: rgba(0,196,176,.32);
  background: linear-gradient(145deg, #fff 0%, rgba(0,196,176,.05) 100%);
}

.benefit-card--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
}

.benefit-card-tag {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  padding: 2px var(--sp-3);
  background: linear-gradient(135deg, rgba(0,196,176,.18), rgba(21,112,239,.12));
  border: 1px solid rgba(0,196,176,.35);
  color: var(--c-cta-dark);
  border-radius: var(--r-pill);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 0 2px 8px rgba(0,196,176,.14);
}

.bc-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.bc-icon--teal  { background: linear-gradient(135deg, rgba(0,196,176,.18), rgba(0,196,176,.07)); color: var(--c-cta-dark); }
.bc-icon--blue  { background: linear-gradient(135deg, rgba(21,112,239,.16), rgba(21,112,239,.06)); color: var(--c-secondary); }
.bc-icon--orange{ background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(245,158,11,.05)); color: #b86e00; }

.benefit-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: var(--sp-3);
}
.benefit-card p {
  font-size: .9375rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* AOS animate */
[data-aos] { opacity: 0; transform: translateY(26px); transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1); }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ============================================================
   SPECS
   ============================================================ */
.specs-section { background: var(--c-bg-section); }

.specs-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-8);
  align-items: start;
}

.specs-table-wrap {
  background: var(--c-bg);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table tr {
  border-bottom: 1px solid var(--c-border);
  transition: background var(--t-fast);
}
.specs-table tr:last-child { border-bottom: none; }
.specs-table tr:hover { background: var(--c-bg-subtle); }
.specs-table tr.sp-row--highlight { background: rgba(0,191,165,.05); }
.specs-table tr.sp-row--highlight:hover { background: rgba(0,191,165,.1); }

.sp-name, .sp-val, .sp-note {
  padding: 1.125rem var(--sp-6);
  font-size: .875rem;
  vertical-align: middle;
}
.sp-name {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-weight: 600;
  color: var(--c-text);
  min-width: 190px;
}
.sp-name svg { color: var(--c-text-muted); flex-shrink: 0; }
.sp-val { color: var(--c-primary); font-weight: 500; }
.sp-note { color: var(--c-text-light); font-size: .75rem; text-align: right; }

/* PC Requirements box */
.pc-req-box {
  background: var(--c-bg);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
}
.pc-req-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-6);
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  color: #fff;
  font-weight: 700;
  font-size: .9375rem;
}
.pc-req-list { padding: var(--sp-3) var(--sp-4) var(--sp-5); }
.pc-req-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}
.pc-req-list li:hover { background: var(--c-bg-subtle); }
.pcr-label {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-text-muted);
}
.pcr-value {
  font-size: .875rem;
  font-weight: 500;
  color: var(--c-text);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.pcr-warning {
  font-size: .75rem;
  font-style: normal;
  font-weight: 700;
  color: var(--c-error);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: var(--c-bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  max-width: 860px;
  margin-inline: auto;
}

.pricing-card {
  position: relative;
  padding: var(--sp-10);
  background: var(--c-bg-subtle);
  border: 2px solid var(--c-border);
  border-radius: var(--r-2xl);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.pricing-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-xl);
}

.pricing-card--featured {
  border-color: var(--c-cta);
  background: linear-gradient(145deg, #fff 0%, rgba(0,196,176,.07) 100%);
  box-shadow: 0 12px 52px rgba(0,196,176,.22);
}

.pc-popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-cta);
  color: #fff;
  padding: var(--sp-1) var(--sp-5);
  border-radius: var(--r-pill);
  font-size: .8125rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,191,165,.32);
}

.pc-head { margin-bottom: var(--sp-6); }

.pc-icon {
  width: 62px;
  height: 62px;
  background: rgba(15,76,129,.08);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  margin-bottom: var(--sp-5);
}
.pricing-card--featured .pc-icon {
  background: rgba(0,191,165,.12);
  color: var(--c-cta-dark);
}

.pc-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}
.pc-subtitle { font-size: .875rem; color: var(--c-text-muted); }

.pc-price {
  padding-block: var(--sp-6);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: var(--sp-6);
}
.pc-amount {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--c-primary);
  letter-spacing: -.04em;
  line-height: 1;
}
.pc-period { display: block; font-size: .875rem; color: var(--c-text-muted); margin-top: var(--sp-2); }

.pc-amount-old {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-decoration: line-through;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.pc-promo-badge {
  display: inline-block;
  margin-top: var(--sp-2);
  padding: 3px 10px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  border-radius: var(--r-full);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hpp-old-price {
  font-size: .8em;
  font-weight: 400;
  color: var(--c-text-muted);
  text-decoration: line-through;
  margin-right: .15em;
}

.pc-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: .9rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.pc-features li svg { color: var(--c-success); flex-shrink: 0; margin-top: 2px; }

.btn-pc {
  width: 100%;
  padding: 1rem;
  font-size: .9375rem;
  border-radius: var(--r-xl);
}

.pricing-cta-strip {
  margin-top: var(--sp-12);
  padding: var(--sp-10);
  background: linear-gradient(135deg, rgba(18,81,163,.04), rgba(0,196,176,.06));
  border: 1px solid rgba(0,196,176,.22);
  border-radius: var(--r-2xl);
  text-align: center;
  box-shadow: 0 4px 24px rgba(18,81,163,.06);
}
.pricing-cta-strip p {
  font-size: 1.0625rem;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-5);
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 50%, #1570ef 100%);
  padding-block: var(--sp-16);
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.trust-item { text-align: center; padding: var(--sp-5); }
.trust-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
  color: var(--c-cta);
  backdrop-filter: blur(6px);
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.trust-item:hover .trust-icon {
  background: rgba(255,255,255,.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.trust-item h4 { font-size: .9375rem; font-weight: 700; color: #fff; margin-bottom: var(--sp-2); }
.trust-item p  { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-primary-dark);
  color: rgba(255,255,255,.65);
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-8);
}
.footer-brand .logo-brand { color: rgba(255,255,255,.9); }
.footer-brand .logo-product { color: rgba(255,255,255,.55); }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; margin-top: var(--sp-3); }

.footer-nav h5,
.footer-cta-col h5 {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.9);
  margin-bottom: var(--sp-4);
}
.footer-nav ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-nav a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color var(--t-fast); }
.footer-nav a:hover { color: rgba(255,255,255,.9); }

.footer-address {
  font-style: normal;
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
}
.footer-address strong { color: rgba(255,255,255,.8); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--sp-5);
  text-align: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  background: rgba(8,22,44,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: calc(100svh - 2rem);
  background: #fff;
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-xl);
  transform: scale(.92) translateY(18px);
  transition: transform var(--t-slow);
  overflow: hidden;
  display: flex;
}
.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

/* Two-column layout */
.modal-box--wide { /* default is already wide */ }

.modal-col {
  overflow-y: auto;
  max-height: calc(100svh - 2rem);
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}

.modal-col--map {
  flex: 0 0 340px;
  background: linear-gradient(160deg, #0f2d5c 0%, #0c3b7d 55%, #0e4a94 100%);
  border-right: none;
  padding: var(--sp-6) var(--sp-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  overflow: hidden;
}

.modal-col--form {
  flex: 1;
  padding: var(--sp-4) var(--sp-5);
  min-width: 0;
  overflow-y: auto;
  max-height: calc(100svh - 2rem);
}

.modal-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  color: var(--c-text-muted);
  backdrop-filter: blur(6px);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.modal-close:hover { background: var(--c-border); color: var(--c-text); transform: rotate(90deg); }

.modal-header { margin-bottom: var(--sp-2); padding-right: var(--sp-8); }
.modal-brand {
  display: inline-flex;
  align-items: baseline;
  gap: var(--sp-1);
  padding: 1px var(--sp-2);
  background: rgba(15,76,129,.07);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-2);
}
.modal-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 2px;
}
.modal-subtitle { font-size: .8rem; color: var(--c-text-muted); }

/* ---- Form ---- */
.contact-form { display: flex; flex-direction: column; gap: var(--sp-1); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.form-group { display: flex; flex-direction: column; gap: 2px; }

.form-label { font-size: .8rem; font-weight: 600; color: var(--c-text); }
.req-mark { color: var(--c-error); }
.opt-mark { font-weight: 400; color: var(--c-text-light); font-size: .8125rem; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .4rem .75rem;
  font-family: inherit;
  font-size: .875rem;
  color: var(--c-text);
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: var(--r-lg);
  outline: none;
  line-height: 1.5;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--c-secondary);
  box-shadow: 0 0 0 4px rgba(0,102,204,.1);
}
.form-input.input-error,
.form-select.input-error,
.form-textarea.input-error {
  border-color: var(--c-error);
  box-shadow: 0 0 0 4px rgba(239,68,68,.09);
}
.form-input.input-valid,
.form-select.input-valid {
  border-color: var(--c-success);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--c-text-light); }

.form-textarea { resize: vertical; min-height: 58px; }

.select-wrap { position: relative; }
.form-select { appearance: none; padding-right: 2.5rem; cursor: pointer; }
.select-chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--c-text-muted);
}

.field-error {
  font-size: .78125rem;
  color: var(--c-error);
  font-weight: 600;
  min-height: 1.1em;
}

/* Honeypot */
.hp-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: .55rem;
  font-size: .9375rem;
  border-radius: var(--r-xl);
  margin-top: 0;
}
.btn-loader {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.spinner-icon { animation: spinAnim .7s linear infinite; }
@keyframes spinAnim {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.form-gdpr {
  font-size: .75rem;
  color: var(--c-text-light);
  text-align: center;
  line-height: 1.5;
  margin-top: var(--sp-1);
}

/* Form messages */
.form-error-banner {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: rgba(239,68,68,.07);
  border: 1px solid rgba(239,68,68,.22);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-4);
  color: var(--c-error);
}
.form-error-banner ul {
  list-style: disc;
  padding-left: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.form-error-banner li { font-size: .875rem; font-weight: 600; }

.form-success {
  text-align: center;
  padding: var(--sp-12) var(--sp-8);
}
.form-success__icon {
  width: 76px;
  height: 76px;
  background: rgba(16,185,129,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
  color: var(--c-success);
}
.form-success h3 { font-size: 1.5rem; color: var(--c-success); margin-bottom: var(--sp-3); }
.form-success p  { font-size: 1rem; color: var(--c-text-muted); max-width: 340px; margin-inline: auto; line-height: 1.7; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* — Tablet landscape — */
@media (max-width: 1080px) {
  .specs-layout { grid-template-columns: 1fr; }
  .pc-req-box { max-width: 600px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-brand { grid-column: 1 / -1; }
}

/* — Tablet portrait / large mobile — */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .section { padding-block: var(--sp-12); }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .hero-visual { order: -1; }
  .hero-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-pricing-pill { justify-content: center; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card--wide { flex-direction: column; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }

  /* Specs */
  .sp-note { display: none; }
  .sp-name, .sp-val { padding: var(--sp-4); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-8); }

  /* Modal */
  .form-row { grid-template-columns: 1fr; }
  .modal-box { flex-direction: column; border-radius: var(--r-xl); max-height: calc(100svh - 1rem); }
  .modal-col--map { flex: none; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: var(--sp-5) var(--sp-5) 0; overflow: hidden; }
  .modal-col--form { padding: var(--sp-6) var(--sp-5); max-height: none; }
  .dc-map { flex: none; height: 180px; border-radius: var(--r-lg) var(--r-lg) 0 0; border-bottom: none; }
  .modal-box--narrow { max-width: 95vw; padding: var(--sp-7) var(--sp-5) var(--sp-6); }
}

/* — Small mobile — */
@media (max-width: 480px) {
  .container { padding-inline: var(--sp-4); }
  .hero { padding-top: calc(var(--header-h) + var(--sp-6)); }
  .trust-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .pricing-card { padding: var(--sp-7); }
  .stat-chip { min-width: 76px; }
  .sc-val { font-size: 1.1rem; }
  .sticky-cta { right: var(--sp-4); bottom: var(--sp-4); }
  /* Gallery */
  .gallery-split { flex-direction: column; }
  .gallery-split-photo { max-width: 100%; }
  .gallery-split-img { max-height: 340px; object-fit: contain; }
  .gallery-banner-badges { display: none; }
}

/* — Print — */
@media print {
  .site-header, .sticky-cta, .scroll-cue, .modal-overlay, .nav-hamburger { display: none !important; }
}

/* ============================================================
   HERO — real product photo (replaces SVG mockup)
   ============================================================ */
.scanner-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  max-width: 480px;
  width: 100%;
}

.scanner-photo-glow {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,196,176,.22) 0%, rgba(21,112,239,.12) 42%, transparent 68%);
  border-radius: 50%;
  animation: pulseRing 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes pulseRing {
  0%,100% { transform: translateX(-50%) scale(1);    opacity: .7; }
  50%      { transform: translateX(-50%) scale(1.1); opacity: 1;  }
}

.scanner-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  height: auto;
  animation: floatDevice 4s ease-in-out infinite;
  filter:
    drop-shadow(0 28px 56px rgba(18,81,163,.24))
    drop-shadow(0  8px 20px rgba(0,196,176,.18))
    drop-shadow(0  2px  8px rgba(18,81,163,.10));
  border-radius: 2%;
}

@keyframes floatDevice {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ============================================================
   PRODUCT GALLERY SECTION
   ============================================================ */
.product-gallery-section {
  background: var(--c-bg);
}

/* --- Banner (wide panoramic shot) --- */
.gallery-banner {
  position: relative;
  margin-bottom: var(--sp-8);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 8px 44px rgba(18,81,163,.14), 0 2px 12px rgba(0,196,176,.08);
  background: var(--c-bg-subtle);
  aspect-ratio: 16 / 5;
  transition: box-shadow var(--t-base);
}
.gallery-banner:hover {
  box-shadow: 0 16px 60px rgba(18,81,163,.20), 0 4px 20px rgba(0,196,176,.12);
}

.gallery-banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .6s ease;
}
.gallery-banner:hover .gallery-banner-img {
  transform: scale(1.015);
}

/* Floating info badges on banner */
.gallery-banner-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gb {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--r-xl);
  box-shadow: 0 4px 20px rgba(18,81,163,.14), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: .8125rem;
}
.gb svg { color: var(--c-cta-dark); flex-shrink: 0; }
.gb-val { font-weight: 800; color: var(--c-primary); }
.gb-lbl { color: var(--c-text-muted); }

.gb--left  { bottom: var(--sp-6); left:  var(--sp-8); }
.gb--right { bottom: var(--sp-6); right: var(--sp-8); }

/* --- Split row: vertical photo + text --- */
.gallery-split {
  display: flex;
  gap: var(--sp-12);
  align-items: center;
}
.gallery-split--full { display: block; }
.gallery-split--full .gallery-split-text { max-width: 100%; }
.gallery-split--full .gallery-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5) var(--sp-10);
}
.gallery-split--full .gallery-split-lead { max-width: 680px; }

.gallery-split-photo-stack {
  flex: 0 0 auto;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.gallery-split-photo {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(18,81,163,.18), 0 4px 16px rgba(0,196,176,.12);
  background: var(--c-bg-subtle);
}

.gallery-split-photo--secondary {
  box-shadow: 0 8px 32px rgba(18,81,163,.14), 0 2px 8px rgba(0,196,176,.08);
}

.gallery-split-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
}
.gallery-split-photo:hover .gallery-split-img {
  transform: scale(1.03);
}

.gallery-split-text {
  flex: 1;
  min-width: 0;
}

.gallery-split-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -.025em;
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}

.gallery-split-lead {
  font-size: 1.0625rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 520px;
}

/* Feature list inside gallery split */
.gallery-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}
.gallery-feature-list li {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  font-size: .9375rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.gallery-feature-list li strong { color: var(--c-text); }

.gfl-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(0,196,176,.18), rgba(21,112,239,.10));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cta-dark);
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(0,196,176,.16);
}

/* ============================================================
   PC REQUIREMENTS TRIGGER (specs sidebar)
   ============================================================ */
.pc-req-trigger {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-bg-subtle);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  color: var(--c-text-muted);
}
.pcr-trigger-text {
  font-size: .875rem;
  font-weight: 600;
  color: var(--c-text);
}

/* PC req list inside modal */
.pc-req-list--modal {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.pc-req-list--modal li {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-bg-subtle);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.pc-req-list--modal li:hover {
  background: #fff;
  border-color: rgba(21,112,239,.3);
}

/* Narrower modal variant */
.modal-box--narrow {
  max-width: 520px;
  flex-direction: column;
  padding: var(--sp-10) var(--sp-8) var(--sp-8);
  gap: 0;
  overflow-y: auto;
}

/* ============================================================
   PRICING — rental note
   ============================================================ */
.pc-rental-note {
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-border);
  font-size: .75rem;
  color: var(--c-text-light);
  line-height: 1.55;
}
.pc-rental-note strong { color: var(--c-text-muted); font-weight: 600; }

/* ============================================================
   FOOTER — operator line
   ============================================================ */
.footer-operator {
  font-size: .75rem;
  color: rgba(255,255,255,.28);
  margin-top: var(--sp-2);
}
.footer-operator strong { color: rgba(255,255,255,.42); font-weight: 500; }
.footer-operator a { color: rgba(255,255,255,.45); text-decoration: underline; text-underline-offset: 3px; }
.footer-operator a:hover { color: rgba(255,255,255,.75); }

/* ============================================================
   DELIVERY COST CALCULATOR (left modal column)
   ============================================================ */
.dc-col-head {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.dc-col-head-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
}
.dc-col-head svg { color: var(--c-cta); flex-shrink: 0; }
.dc-hint {
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
  padding-left: calc(20px + var(--sp-2));
}

.delivery-input-row {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
}
.dc-city-input {
  flex: 1;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.dc-city-input::placeholder { color: rgba(255,255,255,.35); }
.dc-city-input:focus {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.38);
  box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}

.modal-col--map .btn-outline-primary {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.modal-col--map .btn-outline-primary:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.38);
  color: #fff;
}

/* Result box */
.dc-result { font-size: .875rem; }

.dc-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-3);
}
.dc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-4);
}
.dc-lbl { color: rgba(255,255,255,.52); font-size: .8125rem; }
.dc-val { font-weight: 500; color: rgba(255,255,255,.9); text-align: right; }
.dc-price { font-size: 1.0625rem; font-weight: 800; color: var(--c-cta); }

.dc-online-note {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(0,196,176,.1);
  border: 1px solid rgba(0,196,176,.28);
  border-radius: var(--r-lg);
  font-size: .8125rem;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  margin-bottom: var(--sp-3);
}
.dc-online-note svg { color: var(--c-cta); flex-shrink: 0; margin-top: 2px; }
.dc-online-note strong { color: var(--c-cta); }

.dc-msg--err { color: #fca5a5; font-size: .8125rem; margin-bottom: var(--sp-3); }

/* Map — fills remaining left-column height */
.dc-map {
  flex: 1;
  min-height: 200px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-bottom: none;
  margin-top: var(--sp-2);
}

/* Custom map markers */
.dc-marker { background: none; border: none; }
.dc-marker div {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.dc-marker--base div { background: var(--c-primary); }
.dc-marker--dest div { background: var(--c-cta-dark); /* overridden inline by zone color */ }

/* ---- Responsive for gallery ---- */
@media (max-width: 1080px) {
  .gallery-split { gap: var(--sp-8); }
  .gallery-split-photo-stack { width: 240px; }
}

@media (max-width: 768px) {
  .gallery-banner { aspect-ratio: 16 / 7; }
  .gallery-split {
    flex-direction: column;
    gap: var(--sp-6);
  }
  .gallery-split-photo-stack {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    flex-direction: row;
  }
  .gallery-split-photo-stack .gallery-split-photo { flex: 1; }
}

@media (max-width: 480px) {
  .gallery-banner { aspect-ratio: 4 / 3; border-radius: var(--r-xl); }
  .gallery-banner-badges { display: none; }
}
