/* ===== VierCycle Light Theme ===== */
:root{
  /* Brand */
  --brand: #22CFCA;   /* VierCycle turquoise */
  --brand-2: #7346FF; /* VierCycle purple */
  --accent: #FFCA05;  /* VierCycle yellow */

  /* Light UI */
  --bg: #ffffff;
  --panel: #f7f9fc;
  --panel-2: #f2f5fb;
  --line: #e6eaf2;
  --muted: #5b6472;
  --text: #0b0e14;

  /* Layout */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(15, 23, 42, .06);
  --container: 1160px;
  --space: clamp(16px, 2vw, 24px);
  --space-lg: clamp(28px, 4vw, 56px);
  --space-xl: clamp(40px, 6vw, 84px);
}

*{ box-sizing: border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 75% -10%, rgba(115,70,255,.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fff 100%);
  color: var(--text);
  line-height: 1.6;
}
a{ color: var(--text); text-decoration: none; }
p{ color: var(--muted); }

.container{ width: min(100% - 32px, var(--container)); margin-inline:auto; }
.section{ padding: var(--space-xl) 0; }
.section:not(.strip):not(.section-alt) + .section:not(.strip):not(.section-alt) {padding-top: 0;}
.section-alt{ background: var(--panel); }
.section.strip{ background: var(--panel-2); padding: var(--space-lg) 0; }

.section-head{ text-align:center; margin-bottom: var(--space-lg); }
.section-head h2{ font-size: clamp(28px, 4vw, 42px); margin:0 0 8px; color: var(--text); font-weight: bold;}
.section-head .subhead{ margin:0; color: var(--muted); padding: 0px 20px}

.btn {
  font-size: 16px;
}

/* Header */
.site-header{
  position: sticky; top:0; z-index:50;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between; padding:14px 0;
}
.logo{
  font-weight: 800; letter-spacing:.3px; font-size: 22px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav{ display:flex; gap:18px; align-items:center; }
.nav a{ color: var(--muted); font-weight: 500; }
.nav a:hover{ color: var(--text); }
.nav .btn-sm{ margin-left: 4px; }
.nav-toggle{ display:none; background:none; border:0; color: var(--text); font-size: 22px; }
@media (max-width: 900px){
  .nav{
    position: absolute; right:16px; top:64px; background: #fff;
    padding:12px; border-radius: var(--radius); box-shadow: var(--shadow);
    border: 1px solid var(--line);
    display:none; flex-direction: column; gap:10px;
  }
  .nav.open{ display:flex; }
  .nav-toggle{ display:block; }
}

/* Buttons */
/* ===== Flat Button Redesign (Yellow Background + Black Text) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);  /* yellow */
  color: #000;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 14px;
}

.btn:hover {
  background: #f5bb00; /* slightly darker yellow on hover */
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-outline {
  background: transparent;
  color: #000;
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
}

.btn-ghost {
  background: var(--accent);
  color: #000;
}

.btn-ghost:hover {
  background: rgba(255, 202, 5, 0.15);
}
.btn:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* ===== Banner Carousel ===== */
.vk-banner {
  background: #fff;
  padding: clamp(12px, 2vw, 18px);
  display: flex; justify-content: center;
}
.vk-banner-wrap{
  position: relative;
  width: 100%;
  max-width: 1200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

/* Slides track */
.vk-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  width: 100%;
  overflow: hidden;
  scroll-snap-type: x mandatory;           /* smooth touch scrolling */
  scroll-behavior: smooth;
}
.vk-slide{
  position: relative;
  display: flex;
  width: 100%;
  height: clamp(180px, 28vw, 420px);       /* responsive height */
  scroll-snap-align: start;
  user-select: none;
  justify-content: center;
}
.vk-slide img{
  width: auto; height: 100%;
  display: block; object-fit: cover;
}

/* Arrows */
.vk-nav{
  position: absolute; top: 50%; z-index: 2;
  transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.9);
  display: grid; place-items: center;
  font-size: 20px; line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  cursor: pointer;
}
.vk-nav.prev{ left: 10px; }
.vk-nav.next{ right: 10px; }
.vk-nav:hover{ background: #fff; }

/* Dots */
.vk-dots{
  position: absolute; left: 0; right: 0; bottom: 8px;
  display: flex; justify-content: center; gap: 8px; z-index: 2;
}
.vk-dots button{
  width: 8px; height: 8px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.7);
}
.vk-dots button.is-active{ background: #111; }

/* Small screens: show lighter shadows/arrows */
@media (max-width: 560px){
  .vk-nav{ width: 32px; height: 32px; font-size: 18px; }
}


/* Hero */
.hero{ padding-top: 50px; }
.grid-2{ display:grid; gap: var(--space-lg); grid-template-columns: 1.1fr .9fr; }
@media (max-width: 1000px){ .grid-2{ grid-template-columns: 1fr; } }

.hero-copy h1{ font-size: clamp(36px, 6vw, 56px); line-height: 1.05; margin: 0 0 12px; color: var(--text);}
.hero-copy .hl{ color: var(--accent); font-weight: bold;}
.lead{ font-size: clamp(20px, 2vw, 20px); color: var(--muted); }
.hero-actions{ display:flex; gap:12px; margin: 18px 0 8px; flex-wrap: wrap; }
.hero-bullets{ list-style:none; padding:0; margin: 12px 0 0; color: var(--muted); display:grid; gap:6px; }

.hero-media{ display:flex; align-items:top; justify-content:center; }
.device-card{
  width: min(100%, 520px);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow); padding:18px;
}
.device-screen{
  border-radius: 16px; background: var(--panel); border:1px solid var(--line);
  height: 360px; padding: 12px; position: relative;
}
.screen-dot{ width:8px; height:8px; border-radius:50%; background:#d6dde8; display:inline-block; margin-right:6px; }
.screen-content{
  position:absolute; inset: 48px 18px 18px; border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  border: 1px dashed var(--line);
  display:flex; flex-direction:column; justify-content:center; padding: 18px; color: var(--text);
}
.screen-content h3{ margin:0 0 6px; }
.product-hero-img{
  width:100%; height: 180px; border-radius: 12px;
  background:
    repeating-linear-gradient(45deg, rgba(34,207,202,.22), rgba(34,207,202,.22) 12px, rgba(115,70,255,.18) 12px, rgba(115,70,255,.18) 24px);
  border:1px dashed var(--line);
}

/* Stats strip */
.stats{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items:center;
}
.stat{
  background:#fff; border:1px solid var(--line); border-radius: 16px;
  padding: 16px; text-align:center; box-shadow: var(--shadow);
}
.stat-num{ font-size: 34px; font-weight: 800; display:block; color: var(--text); }
.stat-label{ color: var(--muted); font-size: 14px; }
@media (max-width: 800px){ .stats{ grid-template-columns: 1fr 1fr; } }

/* Features */
.grid-3{ display:grid; gap: var(--space); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px){ .grid-3{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .grid-3{ grid-template-columns: 1fr; } }

.feature{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.feature-icon{
  font-size: 28px; display:inline-grid; place-items:center; width:44px; height:44px;
  border-radius: 12px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); color:#fff; margin-bottom: 10px;
}

/* Specs */
.specs-grid{ display:grid; gap: var(--space); grid-template-columns: repeat(3, 1fr); }
.spec-card{
  background:#fff; border:1px solid var(--line); border-radius: 14px; padding:18px; box-shadow: var(--shadow);
}
.spec-card h4{ margin:0 0 8px; color: var(--text); }
@media (max-width: 900px){ .specs-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .specs-grid{ grid-template-columns: 1fr; } }

/* Steps & Video */
.steps{ list-style:none; display:grid; gap: 12px; padding:0; max-width: 820px; margin: 0 auto var(--space); }
.steps li{
  background:#fff; border:1px solid var(--line); border-radius: 14px; padding: 14px 16px; box-shadow: var(--shadow);
  color: var(--text);
}
.steps li span{
  width:28px; height:28px; display:inline-grid; place-items:center;
  background: linear-gradient(90deg, var(--brand), var(--brand-2)); color:#fff;
  border-radius: 50%; font-weight: 800; margin-right: 10px;
}

/* Video */
.video-frame{ position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow); }
.video iframe{ width:100%; height:100%; display:block; }

/* Pricing */
.pricing .card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 24px; text-align: center; position: relative; box-shadow: var(--shadow);
}
.pricing .card-featured{
  transform: translateY(-6px);
  outline: 1px solid rgba(34,207,202,.45);
}
.badge{
  position:absolute; top:14px; right:14px; font-size: 12px; font-weight:700; letter-spacing:.2px;
  padding:6px 10px; border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2)); color:#fff;
}
.price{ font-size: 40px; margin: 8px 0 12px; color: var(--text); }
.price span{ font-size: 16px; color: var(--muted); }
.list{ list-style:none; padding:0; margin: 0 0 18px; display:grid; gap:8px; color: var(--muted); }

/* Dealers */
.dealer-box{ display:grid; grid-template-columns: 1.1fr .9fr; gap: var(--space); align-items: center; }
.dealer-text h3{ margin:0 0 8px; color: var(--text); }
.dealer-map{
    background-image: url('assets/wwm.png');
  background:
    radial-gradient(220px 160px at 70% 30%, rgba(34,207,202,.18), transparent 55%),
    #ffffff;
  border:1px solid var(--line); border-radius: 18px; height: 260px; position: relative; overflow:hidden;
  box-shadow: var(--shadow);
}
.pin{
  width: 10px; height: 10px; background: var(--accent); border-radius: 50%; position: absolute;
  box-shadow: 0 0 0 6px rgba(255,202,5,.20), 0 0 18px rgba(255,202,5,.35);
}
.dealer-actions{ display:flex; gap:10px; margin-top: 12px; }
@media (max-width: 900px){ .dealer-box{ grid-template-columns: 1fr; } }

/* FAQ */
.faq details{
  background:#fff; border:1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px; margin-bottom: 12px; box-shadow: var(--shadow);
  color: var(--text);
}
.faq summary{ cursor:pointer; font-weight: 600; color: var(--text); }
.faq p{ margin: 10px 0 0; color: var(--muted); }

/* CTA */
.cta{
  background:
    radial-gradient(600px 300px at 15% -10%, rgba(34,207,202,.25), transparent 60%),
    linear-gradient(180deg, #ffffff, #f7f9fc);
  text-align: center; border-top: 1px solid var(--line);
}
.cta-form{ margin-top: 14px; display:flex; gap:10px; justify-content: center; flex-wrap: wrap; }
.cta-form input{
  background:#fff; border:1px solid var(--line); color: var(--text);
  padding: 12px 14px; border-radius: 10px; min-width: 260px; box-shadow: var(--shadow);
}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  padding: 22px 0 44px;
  background: #fff;
}
.footer-grid{ display:grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.footer-nav{ display:flex; gap:14px; }
.muted{ color: var(--muted); }

/* =========================
   Responsive Layout Upgrades
   ========================= */

/* Default container gutter on very small screens */
@media (max-width: 420px){
  .container{ width: min(100% - 20px, var(--container)); }
}

/* Tablet and below: stack complex grids, tighten paddings */
@media (max-width: 1024px){
  .section{ padding: calc(var(--space-xl) - 16px) 0; }
  .hero{ padding-top: 20px; }
  .grid-2{ grid-template-columns: 1fr; }
  .dealer-box{ grid-template-columns: 1fr; }
}

/* Cards & grids collapse progressively */
@media (max-width: 900px){
  .grid-3{ grid-template-columns: 1fr 1fr; }
  .specs-grid{ grid-template-columns: 1fr 1fr; }
  .stats{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 8px; }
  .footer-nav{ justify-content: flex-start; flex-wrap: wrap; }
  .site-header .container{ padding: 12px 0; }
}

/* Phone layout */
@media (max-width: 640px){
  .grid-3{ grid-template-columns: 1fr; }
  .specs-grid{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr 1fr; }
  .pricing .card-featured{ transform: none; }
  .section-head h2{ font-size: clamp(24px, 6vw, 32px); padding: 0px 20px; }
  .price{ font-size: 32px; }
  .device-screen{ height: 300px; }
  .product-hero-img{ height: 150px; }
  .dealer-map{ height: 220px; }
}

/* Extra small phones */
@media (max-width: 380px){
  .stats{ grid-template-columns: 1fr; }
  .hero-actions .btn{ width: 100%; justify-content: center; }
  .cta-form{ flex-direction: column; }
  .cta-form input, .cta-form .btn{ width: 100%; }
}

/* Large screens: widen container a bit and add breathing room */
@media (min-width: 1280px){
  :root{ --container: 1240px; }
}
@media (min-width: 1536px){
  :root{ --container: 1320px; }
  .section{ padding: calc(var(--space-xl) + 12px) 0; }
}

/* Touch targets and scroll behavior */
/* @media (hover: none){
  .btn{ padding: 14px 20px; }
  .nav a{ padding: 6px 0; }
} */
html{
  scroll-padding-top: 72px; /* keeps anchors visible under sticky header */
}

/* Utilities for conditional content */
.hide-sm{ display: block; }
.show-sm{ display: none; }
@media (max-width: 640px){
  .hide-sm{ display: none !important; }
  .show-sm{ display: block !important; }
}

/* Media elements */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Reduce motion preference */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ===== Sticky Mobile CTA ===== */
.mobile-cta{
  position: fixed; left: 0; right: 0; bottom: 0;
  display: none; /* default hidden on desktop */
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(15,23,42,.08);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  z-index: 70;
  gap: 8px;
}
.mobile-cta .btn{ flex: 1 1 auto; }
.mobile-cta .btn-primary{ box-shadow: 0 6px 18px rgba(34,207,202,.25); }

/* Slide-hide when #buy is visible */
.mobile-cta.hidden{
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.mobile-cta, .mobile-cta.hidden{ transition: transform .28s ease, opacity .28s ease; }

/* Show only on small screens and avoid overlap with content */
@media (max-width: 720px){
  .mobile-cta{ display: grid; grid-template-columns: 1fr 1fr 1fr; }
  body{ padding-bottom: 78px; } /* room for the bar */
}
@media (max-width: 380px){
  .mobile-cta{ grid-template-columns: 1fr 1fr; }
  .mobile-cta .btn:nth-child(3){ display:none; } /* hide 3rd button on very small phones */
}

/* ===== Press Section ===== */
.press-logos{
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-bottom: var(--space);
}
.press-logos .logo-pill{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 12px; border-radius: 999px; background: #fff; color: var(--text);
  border: 1px solid var(--line); box-shadow: var(--shadow); font-weight: 600;
}

.press-cards{
  /*display: grid; */
  /*gap: var(--space);*/
  /*grid-template-columns: repeat(3, 1fr);*/
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.press-card{
  position: relative;
}

/* On wider screens, make a side-by-side layout */
@media (min-width: 920px){
  .press-card{
    align-items: start;
    flex: 1 0 calc(25% - 20px*3/4);
  }
  .press-thumb{
    /*height: 120px;*/
    aspect-ratio: auto;  /* override mobile ratio */
  }
  .press-thumb img{
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 920px){ 
  .press-cards{ 
    flex-wrap: wrap;
  } 
  .press-card{
    flex: 1 0 calc(50% - 20px*2/3);
  }
}
@media (max-width: 640px){ 
  .press-card{
    flex: 1 0 calc(100% - 0px*2/3);
  }
}

.press-card{
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 18px; box-shadow: var(--shadow);
}
.press-outlet{
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .2px;
}
.press-title{ margin: 8px 0 6px; font-size: 18px; }
.press-title a{ color: var(--text); text-decoration: none; }
.press-title a:hover{ text-decoration: underline; }
.press-excerpt{ margin: 0 0 10px; color: var(--muted); }
.press-meta{ 
  font-size: 13px; 
  color: var(--muted); 
  position: absolute;
  bottom: 18px;
  right: 18px;
}

/* ===== Press Card Thumbnails ===== */
.press-card{
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

/* Thumbnail at top on phones/tablets (16:9) */
.press-thumb{
  display:block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
}
.press-thumb img{
  display:block;
  width:100%;
  aspect-ratio: 1/1;
  height: auto;
  object-fit: contain;
  transform: translateZ(0); /* crisper on mobile */
}

/* Small spacing tweaks */
.press-title{ margin: 4px 0 6px; }
.press-excerpt{ margin: 0 0 8px; }


/* ===== Prizes / Awards Section ===== */
.award-grid{
  display: grid; gap: var(--space);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px){ .award-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .award-grid{ grid-template-columns: 1fr; } }

.award-card{
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 22px; box-shadow: var(--shadow); text-align: left;
}
.award-badge{
  width: 54px; height: 54px; display: grid; place-items: center;
  font-size: 26px; border-radius: 50%;
  background: var(--accent); color: #000; margin-bottom: 10px;
  border: 2px solid #000;
}
.award-title{ margin: 6px 0 2px; font-size: 20px; color: var(--text); }
.award-meta{ font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.award-desc{ margin: 0; color: var(--muted); }

/* ===== Video Reviews ===== */
.video-grid{
  display:grid;
  gap: var(--space);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px){ .video-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .video-grid{ grid-template-columns: 1fr; } }

.video-card{
  background:#fff; border:1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 14px; display:grid; gap:10px;
}

.video-card .thumb{
  position: relative; border: 0; padding: 0; margin: 0; cursor: pointer;
  display:block; border-radius: 12px; overflow:hidden;
  background: var(--panel); border: 1px solid var(--line); width: 100%;
}
.video-card .thumb img{
  width:100%; height:auto; display:block; object-fit: cover;
  transition: transform .25s ease;
}
.video-card .thumb:hover img{ transform: scale(1.02); }

.video-card .play{
  position:absolute; inset:auto auto 10px 10px;
  display:inline-grid; place-items:center;
  width:42px; height:42px; border-radius: 999px;
  background: var(--accent); color:#000; font-weight:800;
  border:2px solid #000;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}

/* Titles/meta */
.video-title{ margin: 2px 0 0; font-size: 16px; color: var(--text); }
.video-meta{ color: var(--muted); font-size: 13px; }

/* ===== Video Modal ===== */
.video-modal{
  position: fixed; inset: 0; z-index: 90; display: none;
}
.video-modal.open{ display:block; }
.video-modal__backdrop{
  position: absolute; inset: 0; background: rgba(15,23,42,.6);
  backdrop-filter: blur(2px);
}
.video-modal__dialog{
  position: absolute; inset: 0; display: grid; place-items: center; padding: 20px;
}
.video-modal__frame{
  width: min(100%, 920px); aspect-ratio: 16/9; background:#000;
  border-radius: 14px; overflow:hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.video-modal__close{
  position: absolute; top: 16px; right: 16px; z-index: 1;
  border: 0; background: var(--accent); color:#000; width: 42px; height: 42px;
  border-radius: 999px; font-weight: 800; border:2px solid #000; cursor:pointer;
}

/* Small screens */
@media (max-width: 520px){
  .video-modal__frame{ width: calc(100% - 24px); }
}

/* ========= Video Reviews ========= */
.vr-section{
  padding: 56px 0;
  background: #fff; /* keep light theme */
}
.vr-wrap{
  width: min(100% - 32px, 1160px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr;  /* left label / right list */
  gap: 24px;
}

/* Left vertical label */
.vr-label{
  position: relative;
  display: grid;
  place-items: center;
  user-select: none;
}
.vr-label span{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 2px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  line-height: 1;
}
.vr-label-fade{
  color: #dfe3ea;           /* light gray */
  font-size: 90px;
  position: absolute;
  transform: translateY(-12px);
}
.vr-label-strong{
  color: #111;              /* black */
  font-size: 88px;
}

/* Right list */
.vr-list{
  display: grid;
  gap: 28px;
}

/* Each row (thumbnail left, title right) */
.vr-item{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: top;
}

/* Thumbnail */
.vr-thumb{
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e6eaf2;
  background: #f7f9fc;
  aspect-ratio: 16/9;       /* consistent rounded rectangle */
}
.vr-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}
.vr-play{
  position: absolute; bottom: 12px; left: 12px;
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: #FFCA05; color:#000; font-weight: 800;
  border: 2px solid #000;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}

/* Title */
.vr-title{
  margin: 0;
  /*font-size: clamp(22px, 3vw, 40px);  /* large like the mockup */
  line-height: 1.15;
  color: #111;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Responsive */
@media (max-width: 1080px){
  .vr-label-fade{ font-size: 72px; }
  .vr-label-strong{ font-size: 70px; }
}
@media (max-width: 920px){
  .vr-wrap{ grid-template-columns: 84px 1fr; }
  .vr-label-fade{ font-size: 58px; }
  .vr-label-strong{ font-size: 56px; }
  .vr-item{ grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 640px){
  .vr-wrap{ grid-template-columns: 1fr; }
  .vr-label{ order: -1; height: 120px;}
  .vr-label span{ writing-mode: horizontal-tb; }
  .vr-label-fade{ position: static; transform:none; margin-right: 10px; }
  .vr-label-strong{ margin-left: 6px; }
  .vr-label{ display: none; align-items: center; justify-content: center; gap: 8px; }
}

/* ===== Feature Banners (image left, text right) ===== */
.fb-section{
  background:#fff;
}

/* Each row: full width band with two columns */
.fb-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:center;
  gap: 0;                 /* image meets the text column like the mock */
  min-height: 440px;      /* visual presence similar to reference */
  margin: 10px;
      border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}
.fb-row:last-child{ border-bottom: 1px solid var(--line); }

/* Reverse layout for middle row */
.fb-row--reverse{
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 920px) {
  .fb-row--reverse .fb-media{ order: 2; }
  .fb-row--reverse .fb-body{ order: 1; }
}

/* Media side (kept edge-to-edge) */
.fb-media{
  margin: 0;
  /*height: 100%;*/
  overflow: hidden;
}
.fb-media img{
  width: 100%;
  /*height: 100%;*/
  object-fit: contain;      /* fills like your screenshot */
  display: block;
}

/* Text side with roomy padding */
.fb-body{
  padding: clamp(32px, 6vw, 96px);
  background: #fff;
}
.fb-title{
  margin: 0 0 12px;
  font-weight: 800;
  color: var(--text);
  font-size: clamp(26px, 3.6vw, 42px); /* big headline */
  line-height: 1.15;
}
.fb-text{
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 20px);
  max-width: 56ch;
}

/* Responsive: stack on tablet/phone */
@media (max-width: 920px){
  .fb-row,
  .fb-row--reverse{
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .fb-media{ 
    /*height: 46vw; */
  }     /* keep a nice visual ratio */
  .fb-body{ padding: clamp(24px, 6vw, 48px); }
}
@media (max-width: 520px){
  .fb-media{ 
    /*height: 54vw; */
  }
}

/* ===== Hero Carousel ===== */
.hero-carousel{
  position: relative;
  width: min(100%, 520px);
  margin-inline: auto;
}
.hc-viewport{
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.hc-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform .4s ease;
  will-change: transform;
}
.hc-slide{ padding: 0; }

.hc-card{ margin: 0; display: grid; grid-template-rows: auto 1fr; height: 100%; }
.hc-head{
  padding: 14px 16px 0;
}
.hc-head .hc-dots{ display:flex; gap:6px; }
.hc-head .hc-dots span{
  width:8px; height:8px; border-radius:50%; background:#d6dde8; display:inline-block;
}
.hc-head h3{ margin: 8px 0 4px; font-size: 18px; color: var(--text); }
.hc-head p{ margin: 0 0 10px; color: var(--muted); }

/* Media area (keeps your rounded device feel) */
.hc-media{
  padding: 0 16px 16px;
}
.hc-img{
  border-radius: 14px;
  border: 1px dashed var(--line);
  background: var(--panel);
  height: 300px;      /* adjust as desired */
}

/* Example placeholder backgrounds – replace with images */
.hc-img--kit{
  background:
    linear-gradient(180deg,#ffffff,#f7f9fc),
    repeating-linear-gradient(45deg, rgba(34,207,202,.22) 0 12px, rgba(115,70,255,.18) 12px 24px);
}
.hc-img--battery{ background: linear-gradient(180deg,#fff,#f7f9fc); }
.hc-img--display{ background: linear-gradient(180deg,#fff,#f7f9fc); }

/* Nav buttons */
.hc-nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  border: 2px solid #000; background: var(--accent); color:#000;
  width: 40px; height: 40px; border-radius: 999px; cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.hc-prev{ left: -12px; }
.hc-next{ right: -12px; }

/* Dots */
.hc-pagers{
  display:flex; gap:8px; justify-content:center; margin-top: 10px;
}
.hc-dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: #d6dde8; border: 0; cursor: pointer;
}
.hc-dot[aria-selected="true"]{ background: #111; }

/* Small screens: shrink height a bit */
@media (max-width: 640px){
  .hc-img{ height: 240px; }
}

.hc-photo{
  width:100%; 
  /*height:300px; */
  aspect-ratio: 970:600;
  object-fit:cover; 
  border-radius:14px; 
  border:1px solid var(--line);
}
@media (max-width:640px){ .hc-photo{ 
  // height:240px; 
} }


.feature-banners-wrapper {
  display: flex;
  gap: 30px;
  flex-direction: row;
  align-items: flex-start;
}
.feature-banners-wrapper .fb-row {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: unset;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1 0 calc(33% - 30px*2/3);
  margin: 0;
}
.feature-banners-wrapper .fb-row .fb-body {
  padding: 0;
}
.feature-banners-wrapper .fb-row .fb-body .fb-title {
  font-size: clamp(18px, 1.8vw, 32px);
  display: flex;
  line-height: 1.2;
  align-items: center;
  height: 60px;
}
.feature-banners-wrapper .fb-row .fb-body .fb-title .number {
  border-radius: 50%;
  background-color: var(--accent);
  margin-right: 5px;
  font-size: 20px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
}
@media screen and (max-width: 919px) {
  .feature-banners-wrapper {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .feature-banners-wrapper .fb-row {
    flex: 1 0 100%;
    width: 100%;
  }
  .feature-banners-wrapper .fb-row .fb-body {
    text-align: center;
  }
  .feature-banners-wrapper .fb-row .fb-body .fb-title {
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 919px) {
  #key-feature-banners .fb-row {
    margin-bottom: 40px;
  }
  #key-feature-banners .fb-body {
    padding: 20px 0;
  }
}

section a.btn.btn-primary {
  padding-left: 35px;
  padding-right: 35px;  
}

.partner-grid {
  display: flex;
  gap: 10px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.partner-image {
  width: 180px;
}
@media screen and (max-width: 700px) {
  .partner-grid {
    gap: 5px;
  }
  .partner-image {
    width: 150px;
  }
}
@media screen and (max-width: 500px) {
  .partner-image {
    width: 120px;
  }
} 
.why-convert-wrapper {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.why-icon {
  display: flex;
}

.why-convert {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--line); 
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  flex: 1 0 calc(33.33% - 20px * 2 / 3);
}
.why-title {
  margin-bottom: 0;
  margin-left: 10px;
}
@media screen and (max-width: 919px) {
  .why-convert {
    flex: 1 0 calc(50% - 20px * 1 / 2);
  }
}
@media screen and (max-width: 640px) {
  .why-convert {
    flex: 1 0 calc(100% - 20px * 0 / 1);
  }
}

.media-logo {
  width: 64px;
  height: 64px;
}