/* =====================================================================
   SMARTRESS -- hlavni stylesheet
   Paleta: #3A0E0E (maroon) / #6B1414 (dark red) / #E23B2E (red)
           / #F5821F (orange) / #FFC72C (yellow)
   Typografie: Sora (display) + IBM Plex Sans (body)
   Pozn.: zadny "plovouci" marquee pruh nahore ani nikde jinde na webu.
   ===================================================================== */

:root{
  --maroon:#3A0E0E;
  --maroon-2:#2A0A0A;
  --darkred:#6B1414;
  --red:#E23B2E;
  --red-dark:#c22e22;
  --orange:#F5821F;
  --yellow:#FFC72C;
  --ink:#221512;
  --muted:#726059;
  --cream:#FFF7EF;
  --paper:#FFFFFF;
  --line:#f0e2d6;
  --line-soft:#f7efe7;
  --shadow-sm:0 2px 16px rgba(58,14,14,.09);
  --shadow-md:0 18px 40px rgba(58,14,14,.14);
  --shadow-lg:0 34px 80px rgba(58,14,14,.24);

  --display:'Sora', -apple-system, sans-serif;
  --body:'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:20px;
  --radius-sm:12px;
  --header-h:76px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:clip; }
body{
  margin:0; font-family:var(--body); color:var(--ink); background:var(--paper);
  -webkit-font-smoothing:antialiased; overflow-x:clip;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--display); font-weight:700; line-height:1.15; margin:0 0 .5em; color:var(--maroon); letter-spacing:-.01em; }
p{ margin:0 0 1em; }
.wrap{ max-width:1240px; margin:0 auto; padding:0 24px; }
::selection{ background:var(--yellow); color:var(--maroon); }

.icon-sprite{ position:absolute; width:0; height:0; overflow:hidden; }
.icon{ width:22px; height:22px; fill:currentColor; flex-shrink:0; display:inline-block; }

/* ===================================================================
   PRELOADER -- televize se "zapina" (scanline + jas)
   =================================================================== */
#preloader{ position:fixed; inset:0; z-index:9999; background:#000; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.boot-screen{ position:relative; width:180px; height:112px; border-radius:6px; background:#050505; border:3px solid #1a1a1a; overflow:hidden; }
.boot-screen::before{ content:''; position:absolute; inset:0; background:linear-gradient(90deg, var(--red), var(--orange), var(--yellow)); opacity:0; animation:bootFlash 1.8s ease forwards; }
.boot-scanline{ position:absolute; left:0; right:0; height:3px; background:rgba(255,255,255,.8); top:50%; box-shadow:0 0 12px 3px rgba(255,255,255,.6); animation:scan 1.8s cubic-bezier(.6,0,.2,1) forwards; }
@keyframes scan{ 0%{ transform:scaleY(0); top:50%; } 35%{ transform:scaleY(1); top:0; height:100%; } 100%{ transform:scaleY(1); top:0; height:100%; opacity:0; } }
@keyframes bootFlash{ 0%,30%{ opacity:0; } 55%{ opacity:1; } 100%{ opacity:0; } }
.boot-legs{ display:flex; justify-content:space-between; width:120px; margin:0 auto; }
.boot-legs span{ width:3px; height:14px; background:#1a1a1a; }
.preload-curtain{ position:fixed; inset:0; z-index:9998; pointer-events:none; display:flex; }
.preload-curtain .panel{ flex:1; background:#000; }
body.loaded #preloader{ display:none; }
body.loaded .preload-curtain .panel:first-child{ animation:curtainL 1s cubic-bezier(.7,0,.2,1) forwards; }
body.loaded .preload-curtain .panel:last-child{ animation:curtainR 1s cubic-bezier(.7,0,.2,1) forwards; }
@keyframes curtainL{ to{ transform:translateX(-100%); } }
@keyframes curtainR{ to{ transform:translateX(100%); } }
body:not(.loaded){ overflow:hidden; height:100vh; }

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(30px); transition:opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ transition-delay:calc(var(--i,0) * 75ms); }
.reveal-l{ opacity:0; transform:translateX(-40px); transition:opacity .9s ease, transform .9s ease; }
.reveal-l.is-visible{ opacity:1; transform:translateX(0); }
.reveal-r{ opacity:0; transform:translateX(40px); transition:opacity .9s ease, transform .9s ease; }
.reveal-r.is-visible{ opacity:1; transform:translateX(0); }

/* "power-on" screen reveal for TV photos: starts dim/off, brightens up */
.power-on{ filter:brightness(.15) saturate(.6); transform:scale(1.03); transition:filter 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); }
.power-on.is-visible{ filter:brightness(1) saturate(1); transform:scale(1); }

/* split-text word stagger reveal */
.split-text .word{ display:inline-block; overflow:hidden; }
.split-text .word span{ display:inline-block; transform:translateY(112%); transition:transform .85s cubic-bezier(.2,.8,.2,1); }
.split-text.is-visible .word span{ transform:translateY(0); }

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 30px; border-radius:999px; border:1.5px solid transparent;
  font-family:var(--body); font-weight:600; font-size:14.5px;
  transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  white-space:nowrap; cursor:pointer;
}
.btn-primary{ background:var(--red); color:#fff; box-shadow:0 10px 26px rgba(226,59,46,.32); }
.btn-primary:hover{ background:var(--red-dark); transform:translateY(-3px); box-shadow:0 18px 34px rgba(226,59,46,.4); }
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:#fff; transform:translateY(-3px); }
.btn-light{ background:#fff; color:var(--maroon); box-shadow:var(--shadow-sm); }
.btn-light:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.btn-block{ width:100%; }
.btn-sm{ padding:12px 22px; font-size:13px; }
.btn[disabled]{ opacity:.6; cursor:not-allowed; transform:none !important; }

/* ===================================================================
   HEADER (no topbar strip, no phone anywhere - email-only contact)
   =================================================================== */
header{ position:sticky; top:0; z-index:60; background:rgba(255,255,255,.94); backdrop-filter:blur(10px) saturate(160%); border-bottom:1px solid var(--line-soft); }
.headrow{ display:flex; align-items:center; gap:30px; height:var(--header-h); }
.logo{ display:flex; align-items:center; gap:9px; font-family:var(--display); font-weight:800; font-size:23px; color:var(--maroon); flex-shrink:0; }
.logo .logo-mark{ width:32px; height:32px; color:var(--red); }
.logo small{ display:block; font-family:var(--body); font-weight:600; font-size:8.5px; letter-spacing:.16em; color:var(--muted); text-transform:uppercase; margin-top:1px; }

.main-nav{ display:flex; align-items:center; gap:26px; margin-left:8px; }
.main-nav a{ font-size:14px; font-weight:600; color:var(--ink); position:relative; padding:8px 0; }
.main-nav a::after{ content:''; position:absolute; left:0; right:0; bottom:2px; height:2px; background:var(--red); transform:scaleX(0); transform-origin:left; transition:transform .3s ease; }
.main-nav a:hover::after, .main-nav a.active::after{ transform:scaleX(1); }

.head-actions{ margin-left:auto; display:flex; align-items:center; gap:12px; }
.burger{ display:none; width:44px; height:44px; border-radius:50%; border:1.5px solid var(--line); background:#fff; align-items:center; justify-content:center; }
.burger .icon{ width:19px; height:19px; }

.mobile-nav{ display:none; position:fixed; inset:var(--header-h) 0 0 0; background:var(--cream); z-index:55; padding:30px 24px; overflow:auto; }
.mobile-nav.open{ display:block; }
.mobile-nav a{ display:block; padding:16px 0; font-family:var(--display); font-weight:700; font-size:22px; color:var(--maroon); border-bottom:1px solid var(--line); }
.mobile-nav .mn-cta{ margin-top:26px; }

/* ===================================================================
   HERO
   =================================================================== */
.hero{ position:relative; min-height:86vh; display:flex; align-items:center; overflow:hidden; background:var(--maroon); isolation:isolate; }
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; opacity:.34; }
.hero-bg::after{ content:''; position:absolute; inset:0; background:linear-gradient(150deg, rgba(42,10,10,.75) 0%, rgba(107,20,20,.6) 55%, var(--maroon-2) 100%); }
.hero-content{ position:relative; z-index:2; padding:130px 0 100px; width:100%; }
.hero-eyebrow{ display:inline-flex; align-items:center; gap:9px; background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.22); color:#fff; padding:9px 18px 9px 12px; border-radius:999px; font-size:11.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; margin-bottom:30px; }
.hero-eyebrow .icon{ width:14px; height:14px; color:var(--yellow); }
.hero h1{ color:#fff; font-size:clamp(38px,6vw,72px); max-width:820px; margin-bottom:24px; }
.hero h1 em{ font-style:normal; color:var(--yellow); }
.hero .lead{ color:rgba(255,255,255,.78); font-size:18px; max-width:560px; margin-bottom:40px; font-weight:400; }
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:56px; }

.hero-stats{ display:flex; gap:0; flex-wrap:wrap; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.16); backdrop-filter:blur(8px); border-radius:var(--radius); padding:26px 10px; max-width:740px; }
.hero-stats div{ flex:1; min-width:150px; text-align:center; padding:0 12px; border-right:1px solid rgba(255,255,255,.13); }
.hero-stats div:last-child{ border-right:none; }
.hero-stats b{ display:block; font-family:var(--display); font-size:clamp(21px,2.5vw,28px); color:#fff; }
.hero-stats span{ font-size:10.5px; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.05em; }

/* ===================================================================
   SECTION SHELL
   =================================================================== */
section{ padding:104px 0; position:relative; }
.section-tight{ padding:72px 0; }
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:26px; margin-bottom:52px; flex-wrap:wrap; }
.section-head .eyebrow{ display:inline-flex; align-items:center; gap:9px; font-size:11.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--red); margin-bottom:15px; }
.section-head .eyebrow .icon{ width:15px; height:15px; }
.section-head h2{ font-size:clamp(28px,3.6vw,44px); max-width:680px; }
.section-head p{ color:var(--muted); max-width:440px; margin:0; font-size:15.5px; }
.see-all{ font-weight:700; font-size:12.5px; letter-spacing:.04em; text-transform:uppercase; color:var(--maroon); border-bottom:1px solid var(--maroon); padding-bottom:4px; white-space:nowrap; display:inline-flex; align-items:center; gap:6px; }
.bg-cream{ background:var(--cream); }
.bg-maroon{ background:var(--maroon); color:rgba(255,255,255,.82); }
.bg-maroon h2, .bg-maroon h3{ color:#fff; }
.bg-maroon .section-head p{ color:rgba(255,255,255,.55); }
.bg-orange-tint{ background:#fff3e6; }
.center{ text-align:center; }
.center .section-head{ justify-content:center; }
.center .section-head > div{ margin:0 auto; }

/* ===================================================================
   HOW-IT-WORKS STEPS
   =================================================================== */
.steps-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.steps-row > *{ min-width:0; }
.step-item{ text-align:center; padding:0 18px; position:relative; }
.step-item .step-num{ width:58px; height:58px; border-radius:50%; background:var(--maroon); color:#fff; font-family:var(--display); font-weight:700; font-size:22px; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; position:relative; z-index:2; }
.step-item:nth-child(2) .step-num{ background:var(--red); }
.step-item:nth-child(3) .step-num{ background:var(--orange); }
.step-item:nth-child(4) .step-num{ background:var(--darkred); }
.step-item h4{ font-size:15.5px; margin-bottom:8px; }
.step-item p{ font-size:13px; color:var(--muted); max-width:230px; margin:0 auto; }
.steps-row::before{ content:''; position:absolute; top:29px; left:12%; right:12%; height:2px; background:repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px); z-index:1; }

/* ===================================================================
   CATEGORY TABS
   =================================================================== */
.cat-tabs{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:34px; }
.cat-tab{ padding:11px 22px; border-radius:999px; border:1.5px solid var(--line); background:#fff; font-weight:700; font-size:13.5px; color:var(--ink); transition:all .25s ease; }
.cat-tab:hover{ border-color:var(--red); }
.cat-tab.active{ background:var(--maroon); border-color:var(--maroon); color:#fff; }

/* ===================================================================
   TV CARDS
   =================================================================== */
.tv-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.tv-grid.cols-3{ grid-template-columns:repeat(3,1fr); }
.tv-card{
  position:relative; background:#fff; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line-soft);
  transition:transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease; display:flex; flex-direction:column;
}
.tv-card:hover{ transform:translateY(-7px); box-shadow:var(--shadow-lg); }
.tv-media{ position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--ink); }
.tv-media img{ width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.2,.8,.2,1); }
.tv-card:hover .tv-media img{ transform:scale(1.06); }
.tv-tag{ position:absolute; top:14px; left:14px; background:rgba(58,14,14,.85); backdrop-filter:blur(3px); color:#fff; font-size:10px; letter-spacing:.03em; text-transform:uppercase; font-weight:700; padding:6px 11px; border-radius:999px; z-index:2; }
.tv-body{ padding:20px 22px 24px; display:flex; flex-direction:column; gap:8px; flex:1; }
.tv-body h3{ font-size:17px; margin:0; }
.tv-specs-row{ display:flex; gap:10px; flex-wrap:wrap; font-size:11px; color:var(--muted); }
.tv-specs-row span{ display:flex; align-items:center; gap:4px; background:var(--cream); padding:4px 9px; border-radius:999px; }
.tv-desc{ font-size:13px; color:var(--muted); margin:2px 0 0; }
.tv-foot{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; padding-top:14px; border-top:1px dashed var(--line); }
.tv-price{ font-family:var(--display); font-weight:700; font-size:19px; color:var(--maroon); }
.tv-price span{ display:block; font-family:var(--body); font-weight:400; font-size:10px; color:var(--muted); text-transform:uppercase; letter-spacing:.03em; }
.tv-cta{ font-weight:700; font-size:12.5px; color:var(--red); display:flex; align-items:center; gap:5px; }
.tv-card:hover .tv-cta .icon{ transform:translateX(4px); }
.tv-cta .icon{ width:14px; height:14px; transition:transform .3s ease; }

.h-scroll{ display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:14px; margin:0 -24px; padding-left:24px; padding-right:24px; }
.h-scroll::-webkit-scrollbar{ height:6px; }
.h-scroll::-webkit-scrollbar-thumb{ background:var(--line); border-radius:999px; }
.h-scroll > *{ scroll-snap-align:start; flex:0 0 auto; }
.h-scroll .tv-card{ width:280px; }

/* ===================================================================
   SPEC TABLE (detail page)
   =================================================================== */
.spec-table{ width:100%; border-collapse:collapse; font-size:14px; margin-top:8px; }
.spec-table tr{ border-bottom:1px solid var(--line-soft); }
.spec-table td{ padding:14px 4px; }
.spec-table td:first-child{ color:var(--muted); width:46%; display:flex; align-items:center; gap:9px; }
.spec-table td:first-child .icon{ width:17px; height:17px; color:var(--red); }
.spec-table td:last-child{ font-weight:700; color:var(--maroon); }

/* ===================================================================
   USP / VALUES
   =================================================================== */
.usp-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.usp-grid > *{ min-width:0; }
.usp-card{ text-align:center; padding:10px; }
.usp-card .icon-wrap{ width:62px; height:62px; border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
.usp-card .icon-wrap .icon{ width:27px; height:27px; color:var(--red); }
.usp-card h4{ font-size:15.5px; margin:0 0 8px; }
.usp-card p{ font-size:13px; color:var(--muted); margin:0; }

/* ===================================================================
   SPOTLIGHT SPLIT
   =================================================================== */
.spotlight{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.spotlight > *{ min-width:0; }
.spotlight.reverse .spotlight-media{ order:2; }
.spotlight.reverse .spotlight-text{ order:1; }
.spotlight-media{ position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:5/4; background:var(--ink); }
.spotlight-media img{ width:100%; height:100%; object-fit:cover; }
.spotlight-badge{ position:absolute; top:20px; left:20px; background:rgba(255,255,255,.95); padding:10px 16px; border-radius:12px; display:flex; align-items:center; gap:9px; font-weight:700; font-size:12.5px; color:var(--maroon); box-shadow:var(--shadow-sm); }
.spotlight-badge .icon{ width:16px; height:16px; color:var(--red); }
.spotlight-text .eyebrow{ display:inline-flex; align-items:center; gap:9px; font-size:11.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--red); margin-bottom:16px; }
.spotlight-list{ display:grid; gap:17px; margin:26px 0; }
.spotlight-list-item{ display:flex; gap:14px; align-items:flex-start; }
.spotlight-list-item .icon-wrap{ width:38px; height:38px; border-radius:11px; background:var(--cream); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.spotlight-list-item .icon-wrap .icon{ width:18px; height:18px; color:var(--red); }
.spotlight-list-item b{ display:block; font-size:14.5px; margin-bottom:2px; }
.spotlight-list-item span{ font-size:13px; color:var(--muted); }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.review-scroll{ display:flex; gap:20px; overflow-x:auto; padding-bottom:14px; margin:0 -24px; padding-left:24px; padding-right:24px; }
.review-card{ flex:0 0 auto; width:330px; background:#fff; border:1px solid var(--line-soft); border-radius:var(--radius); padding:28px; scroll-snap-align:start; }
.review-card .quote-icon{ width:28px; height:28px; color:var(--orange); margin-bottom:11px; }
.review-top{ display:flex; align-items:center; gap:12px; margin-bottom:7px; }
.avatar-initial{ width:44px; height:44px; border-radius:50%; background:var(--maroon); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:700; font-size:17px; flex-shrink:0; }
.review-name{ font-weight:700; font-size:14.5px; }
.review-stars{ display:flex; gap:2px; color:var(--red); margin-bottom:10px; }
.review-stars .icon{ width:14px; height:14px; }
.review-text{ font-size:13.5px; color:var(--muted); margin:0; line-height:1.65; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq-list{ max-width:820px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; text-align:left; background:none; border:none; padding:24px 4px; display:flex; justify-content:space-between; align-items:center; gap:16px; font-family:var(--display); font-weight:700; font-size:16px; color:var(--maroon); }
.faq-q .icon{ width:20px; height:20px; color:var(--red); transition:transform .35s ease; flex-shrink:0; }
.faq-item.open .faq-q .icon{ transform:rotate(135deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .45s ease; }
.faq-a p{ padding:0 4px 24px; color:var(--muted); font-size:14.5px; max-width:700px; }

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-banner{ position:relative; border-radius:28px; overflow:hidden; background:var(--maroon); padding:82px 50px; text-align:center; }
.cta-banner h2{ color:#fff; font-size:clamp(26px,3.8vw,42px); max-width:680px; margin:0 auto 16px; }
.cta-banner p{ color:rgba(255,255,255,.65); max-width:480px; margin:0 auto 32px; font-size:15.5px; }

/* ===================================================================
   INQUIRY FORM
   =================================================================== */
.reserve-box{ background:#fff; border:1px solid var(--line-soft); border-radius:var(--radius); padding:30px; box-shadow:var(--shadow-md); }
.reserve-box h3{ font-size:20px; margin-bottom:6px; }
.price-line{ display:flex; align-items:baseline; gap:8px; margin-bottom:18px; }
.price-line b{ font-family:var(--display); font-size:28px; color:var(--maroon); }
.price-line span{ font-size:12.5px; color:var(--muted); }
.field{ margin-bottom:16px; }
.field label{ display:block; font-size:11.5px; font-weight:700; margin-bottom:7px; color:var(--maroon); text-transform:uppercase; letter-spacing:.04em; }
.field input, .field select, .field textarea{
  width:100%; border:1.5px solid var(--line); border-radius:var(--radius-sm); padding:12px 14px; font-family:var(--body); font-size:14.5px; background:#fff;
  transition:border-color .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--red); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:13px; }
.checkbox-row{ display:flex; align-items:flex-start; gap:10px; font-size:12.5px; color:var(--muted); margin-bottom:18px; }
.checkbox-row input{ margin-top:3px; }
.reserve-note{ display:flex; gap:11px; align-items:flex-start; background:var(--cream); border-radius:var(--radius-sm); padding:15px; font-size:12.5px; color:var(--muted); margin-top:18px; }
.reserve-note .icon{ width:18px; height:18px; color:var(--red); flex-shrink:0; margin-top:1px; }

/* ===================================================================
   PAGE HEADER / BREADCRUMBS
   =================================================================== */
.page-hero{ position:relative; padding:70px 0 56px; overflow:hidden; }
.page-hero.has-bg{ padding:150px 0 74px; }
.page-hero.has-bg .hero-bg img{ opacity:.28; }
.page-hero.has-bg h1, .page-hero.has-bg p{ color:#fff; }
.page-hero:not(.has-bg){ background:var(--cream); }
.breadcrumbs{ font-size:12px; color:var(--muted); margin-bottom:18px; position:relative; z-index:2; display:flex; align-items:center; gap:6px; }
.page-hero.has-bg .breadcrumbs{ color:rgba(255,255,255,.65); }
.breadcrumbs a:hover{ text-decoration:underline; }
.page-hero h1{ font-size:clamp(32px,4.6vw,56px); margin:0; position:relative; z-index:2; max-width:800px; }
.page-hero p{ color:var(--muted); max-width:620px; margin:16px 0 0; position:relative; z-index:2; font-size:16px; }

/* ===================================================================
   DETAIL PAGE
   =================================================================== */
.detail-shell{ display:grid; grid-template-columns:1fr 400px; gap:56px; align-items:flex-start; }
.detail-shell > *{ min-width:0; }
.detail-hero-img{ border-radius:var(--radius); overflow:hidden; aspect-ratio:4/3; margin-bottom:32px; box-shadow:var(--shadow-md); background:var(--ink); }
.detail-hero-img img{ width:100%; height:100%; object-fit:cover; }
.notice-box{ display:flex; gap:14px; align-items:flex-start; background:var(--orange-tint,#fff3e6); border:1px solid #ffe0bb; border-radius:var(--radius-sm); padding:18px 20px; margin:26px 0; }
.notice-box .icon{ width:22px; height:22px; color:var(--orange); flex-shrink:0; }
.notice-box p{ margin:0; font-size:13.5px; color:var(--ink); }

/* ===================================================================
   FOOTER
   =================================================================== */
footer{ background:var(--maroon-2); color:rgba(255,255,255,.68); padding:76px 0 0; }
.foot-top{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:34px; padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,.1); }
.foot-top > *{ min-width:0; }
.foot-brand{ font-family:var(--display); font-weight:800; font-size:21px; color:#fff; display:flex; align-items:center; gap:9px; margin-bottom:16px; }
.foot-brand .logo-mark{ width:28px; height:28px; color:var(--yellow); }
footer p{ color:rgba(255,255,255,.48); font-size:13.5px; }
footer h4{ font-family:var(--body); font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:#fff; margin-bottom:18px; }
footer ul li{ margin-bottom:11px; }
footer ul a{ color:rgba(255,255,255,.55); font-size:14px; transition:color .2s ease; display:flex; align-items:center; gap:8px; }
footer ul a .icon{ width:14px; height:14px; color:var(--yellow); flex-shrink:0; }
footer ul a:hover{ color:#fff; }
.foot-social{ display:flex; gap:10px; margin-top:18px; }
.foot-social a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; }
.foot-social a .icon{ width:15px; height:15px; color:#fff; }
.foot-social a:hover{ background:rgba(255,255,255,.1); }
.legal-bar{ display:flex; justify-content:space-between; align-items:center; padding:24px 0; font-size:12px; color:rgba(255,255,255,.4); flex-wrap:wrap; gap:10px; }
.legal-bar a{ color:rgba(255,255,255,.4); }
.legal-bar a:hover{ color:#fff; }

/* ===================================================================
   COOKIE BAR / TOAST
   =================================================================== */
.cookie-bar{
  position:fixed; left:16px; right:16px; bottom:16px; max-width:560px; margin:0 auto; background:var(--maroon); color:rgba(255,255,255,.85);
  border-radius:22px; padding:24px 26px; z-index:90; box-shadow:var(--shadow-lg); display:none; gap:16px; flex-direction:column;
}
.cookie-bar.show{ display:flex; animation:cookieUp .45s ease; }
@keyframes cookieUp{ from{ transform:translateY(30px); opacity:0;} to{ transform:translateY(0); opacity:1;} }
.cookie-bar p{ font-size:13px; color:rgba(255,255,255,.6); margin:0; }
.cookie-bar .row{ display:flex; gap:10px; flex-wrap:wrap; }
.cookie-bar .btn-outline{ border-color:rgba(255,255,255,.35); color:#fff; }

.toast{
  position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(20px); background:var(--maroon); color:#fff;
  padding:16px 26px; border-radius:999px; font-size:14px; font-weight:600; z-index:100; opacity:0; pointer-events:none;
  transition:all .45s cubic-bezier(.2,.8,.2,1); display:flex; align-items:center; gap:10px;
}
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }
.toast .icon{ width:18px; height:18px; color:var(--yellow); }

/* ===================================================================
   LEGAL PAGES
   =================================================================== */
.legal-body{ max-width:820px; }
.legal-body h2{ font-size:21px; margin-top:44px; }
.legal-body h2:first-child{ margin-top:0; }
.legal-body p, .legal-body li{ color:var(--muted); font-size:15px; line-height:1.8; }
.legal-body ul{ margin:0 0 1em; padding-left:22px; list-style:disc; }
.legal-body .placeholder{ background:var(--yellow); padding:2px 8px; border-radius:5px; font-weight:700; color:var(--maroon); }
.legal-toc{ border:1px solid var(--line-soft); border-radius:var(--radius); padding:24px 28px; margin-bottom:42px; background:var(--cream); }
.legal-toc h4{ font-size:11.5px; text-transform:uppercase; letter-spacing:.1em; margin-bottom:14px; color:var(--maroon); }
.legal-toc li{ margin-bottom:10px; font-size:14px; }
.legal-toc a:hover{ text-decoration:underline; }

/* ===================================================================
   CONTACT (email-only, no map/address)
   =================================================================== */
.contact-card{ display:flex; gap:17px; padding:20px 0; border-bottom:1px solid var(--line-soft); }
.contact-card .ic{ width:46px; height:46px; border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-card .ic .icon{ width:22px; height:22px; color:var(--red); }
.contact-card b{ display:block; margin-bottom:3px; color:var(--maroon); }
.contact-card span, .contact-card a{ font-size:14px; color:var(--muted); }

/* ===================================================================
   STATS BAND
   =================================================================== */
.stat-band{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); border-radius:var(--radius); overflow:hidden; }
.stat-band > *{ min-width:0; }
.stat-cell{ background:#fff; padding:34px 24px; text-align:center; }
.stat-cell b{ display:block; font-family:var(--display); font-weight:700; font-size:clamp(24px,2.8vw,34px); color:var(--maroon); }
.stat-cell span{ font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; }

/* ===================================================================
   STICKY MOBILE CTA (single action only, no phone)
   =================================================================== */
.sticky-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:70; display:none; gap:10px; padding:13px 16px;
  background:rgba(255,255,255,.96); backdrop-filter:blur(8px); border-top:1px solid var(--line);
  box-shadow:0 -8px 26px rgba(0,0,0,.08);
}
.sticky-cta a{ flex:1; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width:1080px){
  .tv-grid{ grid-template-columns:repeat(3,1fr); }
  .usp-grid{ grid-template-columns:repeat(2,1fr); }
  .foot-top{ grid-template-columns:1fr 1fr; }
  .detail-shell{ grid-template-columns:1fr; }
  .steps-row{ grid-template-columns:1fr 1fr; gap:34px; }
  .steps-row::before{ display:none; }
}
@media (max-width:920px){
  .main-nav{ display:none; }
  .burger{ display:flex; }
  .hero-content{ padding:110px 0 66px; }
  .hero-stats{ max-width:100%; }
  .hero-stats div{ min-width:44%; margin-bottom:16px; }
  .spotlight, .spotlight.reverse{ grid-template-columns:1fr; gap:34px; }
  .spotlight.reverse .spotlight-media, .spotlight.reverse .spotlight-text{ order:0; }
  .foot-top{ grid-template-columns:1fr 1fr; }
  .sticky-cta{ display:flex; }
  section{ padding:64px 0; }
}
@media (max-width:640px){
  .tv-grid{ grid-template-columns:1fr 1fr; }
  .usp-grid{ grid-template-columns:1fr; }
  .foot-top{ grid-template-columns:1fr; gap:28px; }
  .field-row{ grid-template-columns:1fr; }
  .cta-banner{ padding:52px 24px; }
  .hero-cta{ flex-direction:column; width:100%; }
  .hero-cta .btn{ width:100%; }
  .hero-stats div{ min-width:100%; border-right:none; border-bottom:1px solid rgba(255,255,255,.13); padding-bottom:14px; }
  .hero-stats div:last-child{ border-bottom:none; padding-bottom:0; }
  .steps-row{ grid-template-columns:1fr; }
  body{ padding-bottom:78px; }
}
