@charset "UTF-8";
/* =========================================================
   REDEFINO — Ventriloc-inspired Light Minimal / Luxury
   - Light warm background
   - Neutral typography + subtle editorial headline
   - Minimal borders, soft shadows, generous whitespace
   - No green, no aggressive accents
   ========================================================= */

/* -----------------------------
   TOKENS
------------------------------*/
:root{
  /* Surfaces */
  --bg: #f4f3f0;            /* warm light grey */
  --bg-elevated: #ffffff;   /* cards */
  --bg-soft: #f8f7f5;       /* subtle blocks */

  /* Type */
  --text-main: #141414;     /* near-black */
  --text-soft: #3f3f3f;
  --text-muted: #6b6b6b;

  /* Lines / shadows */
  --border: rgba(20,20,20,0.12);
  --border-strong: rgba(20,20,20,0.18);
  --shadow: 0 18px 55px rgba(20,20,20,0.08);

  /* Accent (very restrained) */
  --accent: #c2713d;        /* muted copper */
  --accent-soft: rgba(194,113,61,0.14);

  /* Radius */
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* Layout */
  --shell-width: 1180px;

  /* Motion */
  --ease: cubic-bezier(.22,1,.36,1);
}

/* -----------------------------
   GLOBAL
------------------------------*/
*,
*::before,
*::after{ box-sizing:border-box; }

html,body{ margin:0; padding:0; }

body{
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page{ min-height: 100vh; }

a{ color: inherit; }

/* Selection (subtle) */
::selection{ background: var(--accent-soft); }

/* Focus */
:focus-visible{
  outline: 3px solid rgba(20,20,20,0.18);
  outline-offset: 3px;
  border-radius: 10px;
}

/* -----------------------------
   LAYOUT HELPERS
------------------------------*/
.shell{
  width: 100%;
  max-width: var(--shell-width);
  margin: 0 auto;
  padding: 0 22px;
}

/* -----------------------------
   NAVBAR (clean, ventriloc-like)
------------------------------*/
.nav{
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 86%, #ffffff 14%);
  border-bottom: 1px solid rgba(20,20,20,0.08);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 74px;
  gap: 20px;
}

.nav-left{
  display:flex;
  align-items:center;
  gap: 12px;
}



.nav-brand-text{
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 13px;
  text-transform: lowercase; /* closer to ventriloc vibe */
}

.nav-brand-tagline{
  font-size: 13px;
  color: var(--text-muted);
  border-left: 1px solid rgba(20,20,20,0.10);
  padding-left: 12px;
  line-height: 1;
  white-space: nowrap;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a{
  text-decoration:none;
  color: var(--text-soft);
  padding: 6px 0;
}

.nav-links a:hover{ color: var(--text-main); }

.nav-cta{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* -----------------------------
   BUTTONS (quiet)
------------------------------*/
.btn{
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  transition: transform .14s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}

.btn-primary{
  background: #141414;
  color: #ffffff;
  border-color: #141414;
  box-shadow: 0 16px 40px rgba(20,20,20,0.18);
}

.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(20,20,20,0.22);
}

.btn-ghost{
  background: transparent;
  color: var(--text-main);
  border-color: rgba(20,20,20,0.22);
}

.btn-ghost:hover{
  background: rgba(20,20,20,0.04);
  border-color: rgba(20,20,20,0.28);
}

.btn-icon{ font-size: 14px; opacity: .85; }

.btn:active{ transform: translateY(0) scale(.99); }

/* -----------------------------
   HERO (big type + underline)
------------------------------*/
.hero{
  position: relative;
  padding: 72px 0 38px;
}

.hero-inner{
  display:grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 46px;
  align-items: start;
}

.eyebrow{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Ventilroc-like headline styling */
.hero h1{
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 56px;
  line-height: 1.02;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero h1 span{
  color: inherit; /* no colored brand word */
  letter-spacing: inherit;
}

/* Create the subtle underline effect under the first line */
.hero h1{
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(20,20,20,0.18);
  text-underline-offset: 10px;
}

.hero-sub,
.hero-sub-30min{
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 0 14px;
}

.hero-sub-30min{ color: var(--text-muted); }

.hero-actions{ display:flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 10px; }

.hero-legal{
  font-size: 13px;
  color: var(--text-muted);
  margin: 12px 6px 18px;
}

.hero-meta{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* remove any “green dot” vibes if present */
.hero-dot{ display:none !important; }

/* Trust strip: keep simple */
.trust-strip{
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(20,20,20,0.10);
  display:inline-flex;
  align-items:center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.trust-badges{ display:inline-flex; gap: 6px; flex-wrap: wrap; }

.trust-badges span{
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(20,20,20,0.06);
  color: var(--text-main);
  font-size: 11px;
  font-weight: 500;
}

/* -----------------------------
   HERO FORM (light)
------------------------------*/
.hero-form{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  align-items:center;
}

.hero-form input{
  flex: 1 1 240px;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,0.20);
  background: #ffffff;
  color: var(--text-main);
  font-size: 15px;
  outline: none;
  box-shadow: 0 14px 28px rgba(20,20,20,0.06);
}

.hero-form input::placeholder{ color: rgba(20,20,20,0.42); }

.hero-form input:focus{
  border-color: rgba(20,20,20,0.35);
  box-shadow: 0 0 0 6px rgba(20,20,20,0.06), 0 16px 36px rgba(20,20,20,0.08);
}

/* hide honeypot */
.hidden-field{
  position:absolute;
  left:-9999px;
  width:0;
  height:0;
  overflow:hidden;
  opacity:0;
  pointer-events:none;
}

/* -----------------------------
   HERO PREVIEW CARD (minimal charts)
------------------------------*/
.hero-preview-card{
  background: var(--bg-elevated);
  border-radius: var(--r-xl);
  padding: 18px;
  border: 1px solid rgba(20,20,20,0.12);
  box-shadow: var(--shadow);
  position: sticky;
  top: 108px;
  will-change: transform;
}

@media (max-width: 920px){
  .hero-preview-card{ position: relative; top:auto; }
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20,20,20,0.05);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.brand-stamp{ display:none; }

.preview-labels{
  display:flex;
  justify-content: space-between;
  align-items:center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Toggle pills: very simple */
.preview-toggle{
  display:inline-flex;
  padding: 2px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,0.14);
  background: rgba(255,255,255,0.75);
  gap: 2px;
}

.preview-pill{
  border:none;
  background: transparent;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  cursor:pointer;
  color: var(--text-muted);
  font-weight: 500;
  transition: background .18s var(--ease), color .18s var(--ease);
}

.preview-pill.active{
  background: #141414;
  color: #ffffff;
}

.preview-window{
  margin-top: 8px;
  border-radius: var(--r-lg);
  background: #ffffff;
  border: 1px solid rgba(20,20,20,0.10);
  overflow: hidden;
}

/* remove "blue chrome" */
.preview-browser-chrome{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(20,20,20,0.04);
  border-bottom: 1px solid rgba(20,20,20,0.08);
}

.chrome-dots{ display:flex; gap: 7px; }
.chrome-dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(20,20,20,0.20);
}

/* Frame for screenshots */
.preview-section{ margin-top: 0; }

.preview-frame{
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
  height: auto;
  aspect-ratio: 16 / 10;
}

.preview-layer{
  position:absolute;
  inset:0;
  opacity: 0;
  pointer-events:none;
  transition: opacity .35s var(--ease);
}

.preview-layer.active{
  opacity: 1;
  pointer-events:auto;
  z-index:2;
}

.preview-image{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: top center;
}

/* Sidebar metrics under screenshot */
.preview-content{ display:flex; gap: 14px; padding: 14px; }
.preview-column{ flex:1; }

.preview-sidebar-item{
  font-size: 12px;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(20,20,20,0.03);
  border: 1px solid rgba(20,20,20,0.08);
  margin: 0 14px 10px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  color: var(--text-main);
}

.preview-sidebar-item span{
  color: var(--text-muted);
  font-weight: 400;
}

/* remove the old "green turnaround" bar hacks completely */
.preview-sidebar-item:last-child{
  background: rgba(20,20,20,0.03) !important;
  border: 1px solid rgba(20,20,20,0.08) !important;
  color: var(--text-main) !important;
  font-weight: 500 !important;
  padding: 10px 12px !important;
}

.preview-sidebar-item:last-child::before,
.preview-sidebar-item:last-child::after{
  content: none !important;
}
.preview-sidebar-item:last-child span{ display:inline !important; }

/* -----------------------------
   SECTION HEADER
------------------------------*/
.section-header{
  text-align: left;
  margin-bottom: 28px;
}

.section-header h2{
  font-size: 28px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.section-header p{
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.7;
}

/* -----------------------------
   HOW IT WORKS (quiet cards)
------------------------------*/
#how-it-works{ padding: 48px 0 34px; }

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.step-card{
  background: var(--bg-elevated);
  border-radius: var(--r-lg);
  padding: 18px 18px 18px;
  border: 1px solid rgba(20,20,20,0.10);
  box-shadow: 0 16px 44px rgba(20,20,20,0.06);
}

.step-label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.step-title{
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.step-text{
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.steps-cta{
  margin-top: 22px;
  display:flex;
  align-items:center;
  gap: 12px;
}

.steps-note{
  font-size: 13px;
  color: var(--text-muted);
}

/* -----------------------------
   ENGINE (two cards, minimal)
------------------------------*/
#engine{ padding: 44px 0 56px; }

.features-grid{
  display:grid;
  grid-template-columns: minmax(0,1.25fr) minmax(0,0.85fr);
  gap: 18px;
  align-items: stretch;
}

.feature-card,
.metric-card{
  background: var(--bg-elevated);
  border-radius: var(--r-xl);
  padding: 22px;
  border: 1px solid rgba(20,20,20,0.10);
  box-shadow: 0 18px 55px rgba(20,20,20,0.06);
}

.feature-tag{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.feature-card h3{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.feature-card p{
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-pill-row{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-pill{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20,20,20,0.05);
  border: 1px solid rgba(20,20,20,0.08);
  color: var(--text-main);
}

/* Metric card: not blue */
.metric-chip{
  display:inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20,20,20,0.06);
  border: 1px solid rgba(20,20,20,0.10);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 14px;
}

.metric-number{
  font-size: 38px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.metric-number span{
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 8px;
}

.metric-caption{
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* -----------------------------
   TEMPLATES (neutral)
------------------------------*/
#templates{ padding: 48px 0 58px; }

#templates .feature-card{ padding: 18px 18px 22px; }

.templates-strip{
  display:flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom: 12px;
}

.templates-strip h3{
  margin:0;
  font-size: 18px;
}

.templates-controls{ display:flex; gap: 8px; }

.circle-btn{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,0.18);
  background: transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
  cursor:pointer;
  transition: background .18s var(--ease), transform .14s var(--ease);
}

.circle-btn:hover{
  background: rgba(20,20,20,0.05);
  transform: translateY(-1px);
}

.templates-viewport{ overflow:hidden; margin-top: 8px; }
.templates-track{ display:flex; transition: transform .6s var(--ease); will-change: transform; }

.template-card{
  flex: 0 0 100%;
  display:grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
  gap: 16px;
  align-items: center;
}

.template-meta h4{ margin:0 0 8px; font-size: 16px; }

.template-meta p{
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.template-preview-box{
  border-radius: var(--r-lg);
  background: rgba(20,20,20,0.03);
  border: 1px solid rgba(20,20,20,0.10);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.template-lines{ width:100%; display:flex; flex-direction: column; gap: 7px; }
.template-lines .line{
  height: 4px;
  border-radius: 999px;
  background: rgba(20,20,20,0.16);
}
.template-lines .line.long{ width: 100%; }
.template-lines .line.medium{ width: 72%; }
.template-lines .line.short{ width: 44%; }

/* -----------------------------
   PRICING (remove dark gradient)
------------------------------*/
.pricing-section{ padding: 56px 0 64px; }

.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 22px;
}

.price-card{
  border-radius: var(--r-xl);
  border: 1px solid rgba(20,20,20,0.10);
  background: var(--bg-elevated);
  padding: 22px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 18px 55px rgba(20,20,20,0.05);
}

.price-card.highlight{
  border-color: rgba(20,20,20,0.24);
  box-shadow: 0 22px 70px rgba(20,20,20,0.10);
}

.price-label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
}

.price-title{ font-size: 18px; font-weight: 600; }

.price-number{
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  display:flex;
  align-items: baseline;
  gap: 8px;
}

.price-number span{
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.price-list{
  list-style:none;
  padding: 0;
  margin: 10px 0 12px;
  font-size: 14px;
  color: var(--text-muted);
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.price-list li::before{
  content: "• ";
  color: rgba(20,20,20,0.35);
}

.price-note{
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.price-cta{ margin-top: auto; display:flex; flex-direction: column; gap: 10px; }
.price-cta .btn{ width: 100%; justify-content:center; }

.pricing-footnote{
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}

/* -----------------------------
   CTA (simple)
------------------------------*/
.cta{ padding: 60px 0 70px; }
.cta .shell{ text-align:center; }
.cta h2{ margin:0 0 10px; font-size: 30px; letter-spacing: -0.02em; }
.cta p{ margin:0 0 18px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* -----------------------------
   FOOTER
------------------------------*/
.footer{
  border-top: 1px solid rgba(20,20,20,0.10);
  background: color-mix(in srgb, var(--bg) 84%, #ffffff 16%);
}

.footer-inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 16px 0 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links{ display:flex; gap: 14px; }
.footer-links a{ color: var(--text-muted); text-decoration:none; }
.footer-links a:hover{ color: var(--text-main); }



/* -----------------------------
   REVEAL (keep but subtle)
------------------------------*/
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  will-change: opacity, transform;
}
.reveal.reveal-visible{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* -----------------------------
   RESPONSIVE
------------------------------*/
@media (max-width: 980px){
  .nav-links{ display:none; }
  .hero-inner{ grid-template-columns: 1fr; }
  .hero{ padding-top: 44px; }
  .hero h1{ font-size: 44px; }
  .features-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .template-card{ grid-template-columns: 1fr; }
  .footer-inner{ flex-direction: column; align-items:flex-start; gap: 10px; }
}

@media (max-width: 560px){
  .shell{ padding: 0 16px; }
  .hero h1{ font-size: 36px; }
  .hero-form{ flex-direction: column; align-items: stretch; }
  .hero-form input{ width: 100%; }
  .btn{ width: 100%; }
  .trust-strip{ border-radius: var(--r-md); display:block; }
}



/* =========================================================
   MOBILE NAV + HERO FORM FIX (Ventriloc-like)
   - adds hamburger + slide-down menu
   - prevents horizontal shift / overflow
   - fixes tall URL input on mobile
========================================================= */

html, body { overflow-x: hidden; }

.nav-burger{
  display:none;
  width:44px;
  height:44px;
  border-radius: 999px;
  border:1px solid rgba(20,20,20,0.14);
  background: #ffffff;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-burger-lines{
  width:18px;
  height:2px;
  background: rgba(20,20,20,0.82);
  border-radius: 2px;
  position: relative;
  display:block;
}
.nav-burger-lines::before,
.nav-burger-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: rgba(20,20,20,0.82);
  border-radius: 2px;
}
.nav-burger-lines::before{ top:-6px; }
.nav-burger-lines::after{ top:6px; }

/* mobile drawer */
.nav{ --nav-h: 74px; }
.nav-mobile{
  position: fixed;
  left:0;
  right:0;
  top: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 92%, #ffffff 8%);
  border-bottom: 1px solid rgba(20,20,20,0.10);
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
  z-index: 39;
}
.nav-open .nav-mobile{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-inner{
  padding: 16px 22px 22px;
  display:flex;
  flex-direction: column;
  gap: 14px;
}
.nav-mobile-links{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.nav-mobile-links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(20,20,20,0.10);
  background: #ffffff;
  color: rgba(20,20,20,0.88);
  text-decoration:none;
  font-size: 15px;
}
.nav-mobile-links a:active{ transform: translateY(1px); }
.nav-mobile-cta .btn{ width: 100%; justify-content: center; }

/* lock scroll when menu open */
html.nav-open{ overflow: hidden; }

/* responsive: hide desktop links + show burger */
@media (max-width: 900px){
  .nav{ --nav-h: 64px; }
  .nav-inner{ height: 64px; }
  .nav-links, .nav-cta{ display:none !important; }
  .nav-burger{ display:flex; }
  .nav-brand-tagline{ display:none; }
  .nav-left{ gap: 10px; }
  .nav-brand-text{ font-size: 16px; letter-spacing: 0.12em; }
}

/* hero form: stop “too tall input” + stack nicely */
@media (max-width: 560px){
  .hero-form{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-form input{
    width: 100%;
    padding: 12px 14px;
    font-size: 16px; /* prevents iOS zoom + feels like Ventriloc */
    line-height: 1.2;
    box-shadow: none;
  }
  .hero-form .btn{
    width: 100%;
    padding: 12px 16px;
    justify-content: center;
  }
}
/* =========================================================
   FIXES: Mobile input size, burger -> X, scrolling, steps 1/2/3 as one-per-row
   Paste at END of css/styles_ventriloc_minlux.css
========================================================= */

/* 1) Burger turns into X when menu open */
.nav-open .nav-burger-lines{
  background: transparent;
}
.nav-open .nav-burger-lines::before{
  top: 0;
  transform: rotate(45deg);
}
.nav-open .nav-burger-lines::after{
  top: 0;
  transform: rotate(-45deg);
}
.nav-burger-lines,
.nav-burger-lines::before,
.nav-burger-lines::after{
  transition: transform .18s var(--ease), top .18s var(--ease), background .18s var(--ease);
}

/* 2) Make URL input normal-sized on mobile (not a “ball”) */
@media (max-width: 560px){
  .hero-form input{
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.2;
    border-radius: 16px;          /* <- not a full pill */
  }

  .hero-form{
    width: 100%;
  }
}

/* 3) Steps 1/2/3 always one per row (single column) */
.steps{
  grid-template-columns: 1fr !important;
}

/* 4) Safety: if something sets overflow hidden incorrectly, allow scroll on body.
   (scroll lock should only happen via html.nav-open) */
body{
  overflow-y: auto;
}

/* ===============================
   FIX: Hero URL input – mobile size
   =============================== */

   @media (max-width: 560px) {

    /* pokud je to textarea */
    .hero-form textarea {
      min-height: 72px;        /* cca 1/5 původní výšky */
      height: 72px;
      padding: 14px 16px;
      font-size: 16px;
      line-height: 1.3;
      border-radius: 14px;    /* už žádná koule */
      resize: none;           /* žádné tahání za roh */
    }
  
    /* pokud by někde byl input místo textarea */
    .hero-form input {
      height: 52px;
      padding: 12px 16px;
      font-size: 16px;
      border-radius: 14px;
    }
  
    .hero-form {
      width: 100%;
    }
  }

  /* =========================================================
   FINAL OVERRIDE — Mobile URL field MUST be compact (iOS-safe)
   Keep this at the very end so it wins.
========================================================= */
@media (max-width: 560px){
  /* Force the actual URL input to a sane single-line height */
  .hero-form input#siteUrl{
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;

    padding: 0 14px !important;     /* KEY: no vertical padding -> no “big box” */
    line-height: 52px !important;   /* vertical centering */
    font-size: 16px !important;     /* prevent iOS zoom */
    border-radius: 14px !important;
  }
}

  

.template-preview-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  outline: 1px solid rgba(255,255,255,0.10);
  aspect-ratio: 16 / 10;          /* drží hezký poměr */
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.template-preview-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;              /* vyplní box, ořízne */
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(1.05) contrast(1.05);
}

.template-card:hover .template-preview-img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.10);
}

/* malý “glass overlay” */
.template-preview-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.45)
  );
  pointer-events: none;
}

/* =========================================================
   REDEFINO PRODUCT DIFFERENTIATION (anti-agency)
   - micro note under hero
   - "Why Redefino exists" section
========================================================= */

.anti-agency{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(20,20,20,0.10);
  background: color-mix(in srgb, var(--bg) 88%, #ffffff 12%);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}
.anti-agency strong{ color: var(--text-main); font-weight: 650; }

#why{ padding: 48px 0 34px; }

.section-kicker{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.section-sub{
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 70ch;
}

.why-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 900px){
  .why-grid{ grid-template-columns: 1fr; }
}

.why-card{
  background: var(--bg-elevated);
  border: 1px solid rgba(20,20,20,0.12);
  border-radius: var(--r-xl);
  padding: 18px;
  box-shadow: var(--shadow);
}

.why-card-contrast{
  background: color-mix(in srgb, var(--bg-elevated) 88%, #ffffff 12%);
}

.why-card h3{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.why-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.why-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-main);
}

.why-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(20,20,20,0.24);
  margin-top: 8px;
  flex: 0 0 8px;
}

.why-note{
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}


/* =========================================================
   REDEFINO v4 — Apple energy, with balls
   (adds depth, contrast, micro-motion, better hierarchy)
   ========================================================= */

/* Global polish */
.redefino-v4{
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
.redefino-v4 .lux-page,
.redefino-v4 body{
  overflow-x: clip;
}

/* Hero: depth + spotlight + grain */
.hero--balls{
  position: relative;
  overflow: clip;
}
.hero--balls::before{
  content:"";
  position:absolute;
  inset:-120px;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(980px 560px at 18% 8%, rgba(194,113,61,0.22), transparent 62%),
    radial-gradient(760px 520px at 78% 18%, rgba(20,20,20,0.12), transparent 60%),
    radial-gradient(900px 620px at 30% 92%, rgba(20,20,20,0.08), transparent 58%);
  filter: saturate(1.08) contrast(1.02);
}
.hero--balls::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:.16;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.hero--balls > *{ position: relative; z-index: 1; }

/* Typography punch */
.hero--balls h1{
  letter-spacing: -0.055em;
  line-height: 1.02;
}
.hero--balls h1 span{
  display: inline-block;
}
.hero--balls h1 span:last-child{
  position: relative;
}
.hero--balls h1 span:last-child::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background: rgba(20,20,20,0.18);
  transform: scaleX(.72);
  transform-origin: left;
}

/* Hero pills */
.hero-pills{
  display:flex;
  flex-wrap: wrap;
  gap:10px;
  margin-top: 14px;
}
.hero-pill{
  display:inline-flex;
  align-items:center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  border: 1px solid rgba(20,20,20,0.14);
  background: color-mix(in srgb, var(--bg-elevated) 90%, rgba(255,255,255,0.35) 10%);
  box-shadow: 0 12px 40px rgba(20,20,20,0.06);
}

/* Cards: glass + lift */
.hero-preview-card{
  transition: transform .22s var(--ease, ease), box-shadow .28s var(--ease, ease), border-color .22s var(--ease, ease);
}
.hero-preview-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 34px 110px rgba(20,20,20,0.16);
  border-color: rgba(20,20,20,0.18);
}

/* Buttons: premium sheen */
.btn-primary{
  position: relative;
  overflow: hidden;
}
.btn-primary::after{
  content:"";
  position:absolute;
  inset:-45%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.20) 50%, transparent 65%);
  transform: translateX(-65%) rotate(10deg);
  transition: transform .75s var(--ease, ease);
}
.btn-primary:hover::after{
  transform: translateX(65%) rotate(10deg);
}
.btn-primary:active{
  transform: translateY(1px);
}

/* Pricing: make highlight feel like a product SKU */
.pricing-sub{
  margin-top: 8px;
  opacity: .85;
}
.price-card{
  transition: transform .18s var(--ease, ease), box-shadow .22s var(--ease, ease), border-color .22s var(--ease, ease);
}
.price-card:hover{
  transform: translateY(-2px);
  border-color: rgba(20,20,20,0.18);
  box-shadow: 0 28px 88px rgba(20,20,20,0.12);
}
.price-card.highlight{
  position: relative;
  overflow: clip;
  border-color: rgba(20,20,20,0.20);
  box-shadow: 0 40px 140px rgba(20,20,20,0.14);
}
.price-card.highlight::before{
  content:"";
  position:absolute;
  inset:-140px;
  background:
    radial-gradient(560px 300px at 30% 10%, rgba(194,113,61,0.24), transparent 62%),
    radial-gradient(520px 300px at 82% 40%, rgba(20,20,20,0.14), transparent 64%);
  z-index:0;
  pointer-events:none;
}
.price-card.highlight > *{ position:relative; z-index:1; }

/* Section headers: more designed */
.section-header h2{
  letter-spacing: -0.03em;
}
.section-header h2::after{
  content:"";
  display:block;
  width: 64px;
  height: 2px;
  margin-top: 12px;
  background: rgba(20,20,20,0.14);
}

/* Mobile menu: full height + more premium */
@media (max-width: 900px){
  .nav-open #navMobile{
    background:
      radial-gradient(980px 520px at 20% 0%, rgba(194,113,61,0.20), transparent 60%),
      radial-gradient(760px 520px at 85% 20%, rgba(20,20,20,0.14), transparent 62%),
      var(--bg, #f6f3ee);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 40px 140px rgba(20,20,20,0.18);
  }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  .hero-preview-card,
  .price-card,
  .btn-primary::after{
    transition: none !important;
  }
}

/* v4: reveal + header scroll state */
.reveal-on-scroll{ opacity: 0; transform: translateY(10px); transition: opacity .5s var(--ease, ease), transform .6s var(--ease, ease); }
.reveal-on-scroll.reveal-in{ opacity: 1; transform: none; }
.nav.is-scrolled{ box-shadow: 0 22px 70px rgba(20,20,20,0.10); border-color: rgba(20,20,20,0.14); }

.closing-note{
  padding: 60px 22px 20px;
  text-align: center;
}

.closing-note .lux-container{
  max-width: none;
  padding: 0;
}
.footer-legal {
  padding-left: 2em;
}


/* =========================
   FOOTER — CLEAN + ALIGNED
========================= */

.lux-footer{
  position: relative;
  overflow: clip;
  margin-top: 110px;
  padding: 44px 0 52px; /* méně “mrtvého” místa */
  background: color-mix(in srgb, var(--bg) 85%, #ffffff 15%);
  border-top: 1px solid rgba(20,20,20,0.10);
}

.lux-footer::before{
  content:"";
  position:absolute;
  inset:-140px;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(720px 360px at 18% 0%, rgba(194,113,61,0.18), transparent 60%),
    radial-gradient(680px 420px at 90% 40%, rgba(20,20,20,0.10), transparent 62%);
}

.lux-footer > *{ position: relative; z-index:1; }

/* DŮLEŽITÉ: footer-inner je zároveň lux-container, ale grid má být uvnitř */
.lux-footer .footer-inner{
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr) auto;
  gap: 40px;
  align-items: start;
  font-size: 14px;
  color: var(--text-muted);

  /* pojistka, kdyby lux-container chyběl / byl přepsaný */
  max-width: var(--shell-width, 1180px);
  margin: 0 auto;
  padding: 0 22px;
}

/* Brand */
.lux-footer .footer-brand{ max-width: 420px; }
.lux-footer .footer-brand a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lux-footer .footer-name{
  font-size: 12px;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--text-main);
}

.lux-footer .footer-tagline{
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: .9;
}

/* Slogany – konečně opticky uprostřed a ne nalepené */
.lux-footer .footer-slogans{
  display: grid;
  gap: 12px;
  padding-inline: 18px; /* klíčové odsazení */
}

.lux-footer .footer-slogan{
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-soft);
  opacity: .78;
}

/* Nav */
.lux-footer .footer-nav{
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-self: end; /* drží to hezky vpravo, ale uvnitř containeru */
}

.lux-footer .footer-nav a{
  position: relative;
  padding-bottom: 2px;
  width: fit-content;
  color: var(--text-muted);
}

.lux-footer .footer-nav a:hover{ color: var(--text-main); }

.lux-footer .footer-nav a::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:1px;
  background: currentColor;
  opacity:.25;
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .25s var(--ease);
}
.lux-footer .footer-nav a:hover::after{ transform: scaleX(1); }

/* Logo sizing */
.nav-logo,
.footer-logo{
  height: 26px;
  width: auto;
  border-radius: 10px;
  box-shadow: none;
}
/* Legal footer — minimal, trust-only */
.legal-footer {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 12px;
  line-height: 1.45;
  color: rgba(0,0,0,0.65);
  padding-left: 2rem;
}

.legal-summary {
  margin-bottom: 6px;
}

.legal-details summary {
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
}

.legal-details summary::-webkit-details-marker {
  display: none;
}

.legal-details summary::after {
  content: " ▾";
  font-size: 11px;
}

.legal-details[open] summary::after {
  content: " ▴";
}

.legal-content {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,0.03);
}

.legal-content p {
  margin: 0 0 4px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 980px){
  .lux-footer{ padding: 40px 0 46px; }

  .lux-footer .footer-inner{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .lux-footer .footer-slogans{
    padding-inline: 0; /* ve stacked layoutu už netřeba */
  }

  .lux-footer .footer-nav{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-self: start;
  }

  
}


/* =========================================================
   REDEFINO — Funnel split (New visitors vs Preview recipients)
   - FAQ accordion cards
   - Preview recipient card + countdown
   - Sticky upgrade bar (for generated previews, optional)
========================================================= */

.faq-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}
@media (max-width: 900px){
  .faq-grid{ grid-template-columns: 1fr; }
}

.faq-item{
  background: var(--bg-elevated);
  border: 1px solid rgba(20,20,20,0.12);
  border-radius: var(--r-xl);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.faq-item summary{
  cursor:pointer;
  font-weight: 600;
  color: var(--text-main);
  list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+";
  float:right;
  opacity:.55;
}
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 14px;
}

/* Preview recipients */
.preview-recipient-card{
  margin-top: 18px;
  background: var(--bg-elevated);
  border: 1px solid rgba(20,20,20,0.12);
  border-radius: var(--r-xl);
  padding: 16px;
  box-shadow: var(--shadow);
}
.preview-recipient-label{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.preview-recipient-help{
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.preview-link-form{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  align-items:center;
}
.preview-link-form input{
  flex: 1 1 340px;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,0.20);
  background: #ffffff;
  color: var(--text-main);
  font-size: 15px;
  outline: none;
  box-shadow: 0 14px 28px rgba(20,20,20,0.06);
}
.preview-link-form input:focus{
  border-color: rgba(20,20,20,0.35);
  box-shadow: 0 0 0 6px rgba(20,20,20,0.06), 0 16px 36px rgba(20,20,20,0.08);
}

.preview-summary{
  margin-top: 14px;
  border-top: 1px solid rgba(20,20,20,0.10);
  padding-top: 14px;
}
.preview-summary-top{
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.preview-domain{
  margin-top: 6px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.countdown-pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,0.14);
  background: rgba(255,255,255,0.72);
  color: var(--text-main);
  font-size: 13px;
}
.countdown-label{ color: var(--text-muted); }
.countdown-value{ font-weight: 650; }

.preview-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Sticky upgrade bar (embed into generated preview sites if you want) */
.redefino-upgradebar{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  border-radius: 18px;
  border: 1px solid rgba(20,20,20,0.14);
  background: color-mix(in srgb, var(--bg) 72%, #ffffff 28%);
  box-shadow: 0 18px 60px rgba(20,20,20,0.18);
  padding: 12px 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.redefino-upgradebar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.redefino-upgradebar strong{ font-weight: 650; }
.redefino-upgradebar small{ color: var(--text-muted); }
.redefino-upgradebar-actions{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}
.redefino-upgradebar .btn{ width: auto; }

@media (max-width: 560px){
  .redefino-upgradebar{ left: 10px; right: 10px; bottom: 10px; }
  .redefino-upgradebar .btn{ width: 100%; }
}


/* Steps — polished card grid */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 8px;
}

.step {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 16px 16px 16px 14px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.85);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 10px 24px rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
  opacity: 0.9;
}

.step-body {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0.86;
}

.step-quote {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.03);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Number badge */
.step-num {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;

  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.75);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 8px 16px rgba(0,0,0,0.08);
}

/* Hover: subtle lift */
.step:hover {
  transform: translateY(-1px);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  border-color: rgba(0,0,0,0.18);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.05),
    0 14px 34px rgba(0,0,0,0.10);
}

/* Responsive */
@media (max-width: 920px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .steps { grid-template-columns: 1fr; }
  .step { padding: 14px; }
}




/* ==============================
   TEAM / CARE (trust section)
============================== */
.team{
  padding: 54px 0 46px;
}

.team-inner{
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
  gap: 22px;
  align-items: center;
}

.team-copy .section-kicker{
  margin-bottom: 10px;
}

.team-bullets{
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-soft);
}

.team-bullets li{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(20,20,20,0.10);
  background: rgba(255,255,255,0.75);
  box-shadow: 0 14px 34px rgba(20,20,20,0.05);
}

.team-cta-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.team-note{
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 70ch;
}

.team-photo{
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(20,20,20,0.10);
  background: rgba(255,255,255,0.6);
  box-shadow: var(--shadow);
}

.team-photo img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.team-photo figcaption{
  padding: 12px 14px;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid rgba(20,20,20,0.08);
  background: rgba(255,255,255,0.75);
}

@media (max-width: 980px){
  .team-inner{
    grid-template-columns: 1fr;
  }
}


/* ---------- Language switcher (flags + dropdown) ---------- */

.lang-switch--dropdown{
  position: relative;
  margin-left: 12px;
}

/* Trigger: only flag + chevron */
.lang-trigger{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  font: inherit;
  cursor: pointer;
  line-height: 1;
}

.lang-trigger:hover{
  background: rgba(255,255,255,.92);
}

.lang-trigger:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,0,0,.12);
}

.chevron{
  opacity: .55;
  transform: translateY(0.5px);
}

/* Hover bridge (prevents menu from collapsing on the gap) */
.lang-switch--dropdown::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:10px; /* must be >= the visual gap */
}

/* Menu – default hidden */
.lang-menu{
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 180px;
  padding: 6px;
  margin: 0;
  list-style: none;
  background: rgba(255,255,255,.98);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow:
    0 24px 70px rgba(0,0,0,.14),
    0 2px 10px rgba(0,0,0,.06);

  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 50;
}

/* Open states */
.lang-switch--dropdown:hover .lang-menu,
.lang-switch--dropdown:focus-within .lang-menu{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-menu a{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
}

.lang-menu a:hover{
  background: rgba(0,0,0,.05);
}

.lang-menu a[aria-current="page"]{
  background: rgba(0,0,0,.04);
}

/* Flags */
.flag{
  width: 18px;
  height: 12px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  flex: 0 0 auto;
}

/* If you want the trigger flag slightly larger (nicer): */
.lang-trigger .flag{
  width: 20px;
  height: 14px;
  border-radius: 3px;
}

/* Your current paths */
.flag-cz{ background-image: url("../assets/flags/cz.svg"); }
.flag-en{ background-image: url("../assets/flags/en.svg"); }

html[lang="cs"] .flag-current { background-image: url("../assets/flags/cz.svg"); }
html[lang="en"] .flag-current { background-image: url("../assets/flags/en.svg"); } /* nebo gb/us */

/* =========================================================
   IMAGE INTEGRATION — warehouse set (hero.png / structure.png / detail.png)
   Notes:
   - CSS file is in /css, images are in /img, so paths use ../img/...
   ========================================================= */

/* HERO: full-bleed photo + readable scrim */
.hero--balls{
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--bg) 72%, transparent 28%) 0%,
      color-mix(in srgb, var(--bg) 88%, transparent 12%) 55%,
      var(--bg) 100%
    ),
    radial-gradient(1200px 600px at 18% 18%, rgba(255,255,255,0.50), transparent 60%),
    url("../img/hero.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(20,20,20,0.08);
}

/* Hero headline block gets a bit more contrast over the photo */
.hero--balls .hero-inner > div{
  position: relative;
}
.hero--balls .hero-inner > div::before{
  content:"";
  position:absolute;
  left:-18px;
  right:-18px;
  top:-14px;
  bottom:-14px;
  background: rgba(244,243,240,0.68);
  border: 1px solid rgba(20,20,20,0.08);
  border-radius: var(--r-xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}

/* Preview card: subtle texture from detail.png (very low opacity) */
.hero-preview-card{
  position: sticky;
}
.hero-preview-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: var(--r-xl);
  background: url("../img/detail.png") center / cover no-repeat;
  opacity: 0.06;
  pointer-events:none;
  z-index: 0;
}
.hero-preview-card > *{ position: relative; z-index: 1; }

/* Use-cases image treatment: consistent, clean, readable */
.template-preview-box{
  outline: 1px solid rgba(20,20,20,0.10);
  box-shadow: 0 18px 55px rgba(20,20,20,0.10);
}
.template-preview-box::after{
  background: linear-gradient(135deg, rgba(20,20,20,0.10), rgba(20,20,20,0.38));
}

/* Mobile: reduce background intensity a bit */
@media (max-width: 900px){
  .hero--balls{
    background:
      linear-gradient(180deg,
        color-mix(in srgb, var(--bg) 82%, transparent 18%) 0%,
        var(--bg) 100%
      ),
      url("../img/hero.png") center / cover no-repeat;
  }
}

/* Language dropdown visibility (works with main.js) */
/* .lang-switch--dropdown{ position: relative; }
.lang-menu{
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 160px;
  padding: 8px;
  margin: 0;
  list-style: none;
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(20,20,20,0.12);
  box-shadow: 0 18px 55px rgba(20,20,20,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 60;
}
.lang-menu[data-open="true"]{ display: block; }
.lang-menu a{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-main);
}
.lang-menu a:hover{ background: rgba(20,20,20,0.05); }
 */

/* ==============================
   Global section spacing
   ============================== */

   section {
    padding-top: clamp(72px, 8vw, 120px);
    
  }
  
  .preview-section {
    padding-top: 0;
  }