/* ============ SwissAccs styles ============ */

/* ====== LOADING SCREEN ====== */
#page-loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999;
  background: #000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
#page-loader { transition: opacity 1s ease, visibility 1s ease; }
#page-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-symbol {
  width: 88px; height: 88px; object-fit: contain;
  animation: loaderSpin 1.1s linear infinite;
  filter: drop-shadow(0 0 28px rgba(0,210,122,0.35));
}
.loader-text { height: 26px; width: auto; object-fit: contain; opacity: 0.8; }
@keyframes loaderSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ====== LOGO IMAGE ====== */
.logo-img { height: 34px; width: auto; display: block; }

:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-dark: #0a0a0a;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --muted: #6b6b6b;
  --muted-2: #a0a0a0;
  --border: #ececec;
  --border-strong: #d4d4d4;
  --accent: #00d27a;
  --accent-dark: #00a85f;
  --accent-soft: rgba(0,210,122,0.1);
  --strike: #d4d4d4;
  --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg); color: var(--ink);
  line-height: 1.5; overflow-x: hidden; max-width: 100%;
}
.serif { font-family: 'Instrument Serif', serif; font-weight: 400; font-style: italic; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.hero-sub-full { display: inline; }
.hero-sub-short { display: none; }

/* ====== NAV ====== */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 32px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex; justify-content: space-between; align-items: center;
}
.logo { font-weight: 700; font-size: 20px; letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px; }
.logo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; transition: opacity 0.2s; position: relative; }
.nav-links a:not(.btn-primary):hover { opacity: 0.6; }
.nav-links a.active::after { content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }

.btn-primary {
  background: var(--ink); color: white !important;
  padding: 10px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: transform 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { background: #1f1f1f; transform: scale(1.02); opacity: 1 !important; }

.btn-large {
  padding: 16px 28px; font-size: 16px; border-radius: 100px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; cursor: pointer; border: none; font-family: inherit;
}
.btn-large.primary { background: var(--ink); color: white; }
.btn-large.primary:hover { background: #1f1f1f; transform: scale(1.02); }
.btn-large.ghost { background: var(--bg-soft); color: var(--ink); border: 1px solid var(--border); }
.btn-large.ghost:hover { background: #f0f0f0; }

/* ====== TYPOGRAPHY ====== */
h1 { font-size: clamp(44px,7vw,88px); font-weight: 600; letter-spacing: -0.04em; line-height: 0.98; margin-bottom: 24px; }
h1 .serif { font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(38px,5.6vw,66px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.02; margin-bottom: 22px; }
h2 .serif { font-weight: 400; }
h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; }
.section-label {
  font-size: 13px; font-weight: 600; color: var(--accent-dark);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; display: inline-block;
}
.section-sub { font-size: 21px; color: var(--muted); max-width: 580px; line-height: 1.5; }

/* ====== HERO ====== */
.hero {
  padding: 0;
  text-align: center;
  position: relative; overflow: hidden;
  background: url('Images/pexels-cottonbro-5077407.jpg') center top / cover no-repeat;
  animation: heroIn 0.9s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.68);
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: 160px 32px 100px;
}
.hero-below {
  text-align: center;
  padding: 56px 32px 64px;
  max-width: var(--max); margin: 0 auto;
}
.hero-product-intro {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  max-width: 820px; margin: 0 auto 52px; text-align: left;
}

.hero-products-heading {
  text-align: center; margin-bottom: 24px;
}
.hero-products-heading h3 {
  font-size: clamp(22px, 3vw, 32px); font-weight: 600;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.hero-products-heading p {
  font-size: 15px; color: var(--muted);
}
.hpi-item {
  display: flex; align-items: flex-start; gap: 14px;
  flex: 1; min-width: 280px; max-width: 380px;
}
.hpi-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hpi-icon img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); }
.hpi-name { font-size: 15px; font-weight: 600; margin-bottom: 4px; letter-spacing: -0.01em; }
.hpi-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
@keyframes heroIn { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
.hero.small { padding: 160px 32px 60px; }
.hero h1 { color: white; }
.hero .hero-sub { color: rgba(255,255,255,0.72); }
.hero .hero-why { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.68); }
.hero .badge { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); }
.hero-why-line {
  font-size: 13px; color: rgba(255,255,255,0.68); line-height: 1.6;
  max-width: 420px; margin: 0 auto 28px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
}
.hero .badge-dot { box-shadow: 0 0 0 4px rgba(0,210,122,0.3); }
.hero .scroll-hint-arrow { border-color: rgba(255,255,255,0.35); }

.hero-sub {
  font-size: 19px; color: var(--muted); max-width: 540px;
  margin: 0 auto 24px; line-height: 1.5;
}

.hero-trust-row {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin: 0 auto 28px;
}
.hero-trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,210,122,0.13);
  border: 1px solid rgba(0,210,122,0.28);
  color: rgba(255,255,255,0.92);
  font-size: 13px; font-weight: 600;
  padding: 6px 12px; border-radius: 100px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--muted);
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,210,122,0.18); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(0,210,122,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(0,210,122,0.08); }
}

/* ====== HERO PRICE SHOWCASE ====== */
.hero-price-showcase {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin: 40px auto 44px; max-width: 620px;
}
.hps-card {
  background: white; border: 1px solid var(--border);
  border-radius: 22px; padding: 22px 24px;
  min-width: 210px; flex: 1; max-width: 270px;
  box-shadow: 0 20px 60px -16px rgba(0,0,0,0.12), 0 4px 16px -4px rgba(0,0,0,0.06);
  animation: hpsFloat 6s ease-in-out infinite;
  transform: translateY(var(--parallax-y, 0));
  text-align: left;
}
.hps-card-offset { animation-delay: -3s; margin-top: 18px; }
@keyframes hpsFloat {
  0%,100% { transform: translateY(calc(var(--parallax-y,0px) + 0px)); }
  50%      { transform: translateY(calc(var(--parallax-y,0px) - 10px)); }
}
.hps-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hps-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hps-icon img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); }
.hps-name { font-size: 14px; font-weight: 600; margin-bottom: 1px; }
.hps-period { font-size: 11px; color: var(--muted); }
.hps-prices { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.hps-old {
  font-size: 16px; color: var(--muted-2); position: relative;
}
.hps-old::after {
  content: ''; position: absolute;
  left: -2px; right: -2px; top: 50%;
  height: 2px; background: #e53e3e;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  transition-delay: 1.5s;
}
body.loaded .hps-old::after { transform: scaleX(1); }
.hps-new {
  font-size: 32px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink);
}
.hps-save-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.hps-save {
  display: inline-block; background: var(--accent-soft); color: var(--accent-dark);
  padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 700;
}
.hps-btn {
  background: var(--ink); color: white; border: none;
  padding: 8px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  font-family: inherit; transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.hps-btn:hover { background: #1a1a1a; transform: scale(1.03); }

/* ====== SCROLL HINT ====== */
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.scroll-hint { display: flex; justify-content: center; }
.scroll-hint-arrow {
  width: 28px; height: 28px; border-right: 2px solid var(--border-strong); border-bottom: 2px solid var(--border-strong);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.5;
}
@keyframes scrollBounce {
  0%,100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50%      { transform: rotate(45deg) translateY(5px); opacity: 0.7; }
}

/* ====== NUMBERS IMPACT STRIP ====== */
.numbers-strip {
  background: var(--ink); color: white;
  padding: 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.numbers-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.ns-item {
  padding: 52px 32px; text-align: center;
  transition: background 0.3s;
}
.ns-item:hover { background: rgba(255,255,255,0.03); }
.ns-divider { width: 1px; background: rgba(255,255,255,0.08); margin: 24px 0; }
.ns-num {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: clamp(52px,6vw,80px); font-weight: 400;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--accent); margin-bottom: 10px;
}
.ns-label { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 500; letter-spacing: 0.02em; }


/* ====== SECTIONS ====== */
.section { padding: 120px 32px; max-width: var(--max); margin: 0 auto; }
.section.soft { background: var(--bg-soft); max-width: none; }
.section.soft .inner { max-width: var(--max); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

/* ====== PRODUCT CARDS ====== */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); }
.product-card {
  background: white; border: 1px solid var(--border); border-radius: 24px;
  padding: 32px; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 28px 64px -20px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,210,122,0.18); border-color: rgba(0,210,122,0.28); }
.product-card.featured { padding: 40px; }
.product-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: white;
}
.product-card.featured .product-icon { width: 64px; height: 64px; border-radius: 16px; }
.product-icon { display: flex; align-items: center; justify-content: center; }
.product-icon img { width: 56%; height: 56%; object-fit: contain; filter: brightness(0) invert(1); }

.icon-spotify { background: #1db954; }
.icon-youtube { background: #ff0033; }
.icon-xbox    { background: #107c10; }
.icon-steam   { background: #1b2838; }
.icon-gemini  { background: linear-gradient(135deg,#4796ff,#a36cff 60%,#ff7864); }
.icon-grok    { background: #0a0a0a; }
.icon-claude  { background: #d97757; }
.icon-chess   { background: #769656; }
.icon-canva   { background: linear-gradient(135deg,#00c4cc,#7d2ae8); }

.product-name { font-size: 19px; font-weight: 600; margin-bottom: 4px; letter-spacing: -0.01em; }
.product-card.featured .product-name { font-size: 26px; }
.product-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.product-card.featured .product-desc { font-size: 16px; margin-bottom: 30px; }

.price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.price-old { font-size: 16px; color: var(--strike); text-decoration: line-through; text-decoration-color: var(--muted-2); }
.price-new { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; }
.product-card.featured .price-new { font-size: 48px; }
.price-period { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.save-badge { display: inline-block; background: var(--accent-soft); color: var(--accent-dark); padding: 5px 12px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: 24px; }
.product-btn { width: 100%; background: var(--ink); color: white; padding: 14px; border-radius: 100px; border: none; font-size: 14px; font-weight: 500; cursor: pointer; transition: background 0.2s; font-family: inherit; }
.product-btn:hover { background: #1f1f1f; }

/* ====== DARK SECTION ====== */
.dark-section { background: var(--bg-dark); color: white; padding: 120px 32px; position: relative; overflow: hidden; }
.dark-section .inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.dark-section h2 { color: white; }
.dark-section .section-sub { color: rgba(255,255,255,0.65); }
.dark-section .section-label { color: var(--accent); }
.orb { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(70px); z-index: 1; }
.orb-1 { top: -200px; left: -100px; background: radial-gradient(circle, rgba(0,210,122,0.22) 0%, transparent 70%); }
.orb-2 { bottom: -200px; right: -100px; background: radial-gradient(circle, rgba(0,102,255,0.16) 0%, transparent 70%); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 0; text-align: left; }
.feature-card { padding: 28px; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; background: rgba(255,255,255,0.02); transition: all 0.3s; }
.feature-card:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.14); }
.feature-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(0,210,122,0.12); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; }
.feature-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* ====== TESTIMONIALS ====== */
/* ── Video review featured block ─────────────────────────── */
.review-vid-featured {
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 56px;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 28px; padding: 40px; overflow: hidden;
}
.review-vid-player-wrap {
  flex-shrink: 0; width: 260px; border-radius: 18px; overflow: hidden;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.18);
}
.review-vid-player { width: 100%; display: block; }
.review-vid-caption { flex: 1; min-width: 220px; max-width: 380px; text-align: left; }
.review-vid-stars { color: #ffb800; font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; }
.review-vid-quote { font-size: 20px; font-weight: 500; line-height: 1.45; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 16px; }
.review-vid-author { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── Video card in testimonial grid ──────────────────────── */
.testimonial-vid-card { padding: 0; overflow: hidden; }
.testimonial-vid { width: 100%; display: block; max-height: 220px; object-fit: cover; border-radius: 0; }
.testimonial-vid-card .testimonial-stars,
.testimonial-vid-card .testimonial-author { padding: 0 20px; }
.testimonial-vid-card .testimonial-author { padding-bottom: 20px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial { padding: 32px; background: white; border: 1px solid var(--border); border-radius: 20px; }
.testimonial-stars { color: #ffb800; margin-bottom: 14px; font-size: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 16px; line-height: 1.5; margin-bottom: 20px; letter-spacing: -0.005em; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-soft); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: var(--muted); }
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-meta { font-size: 12px; color: var(--muted); }

/* ====== FAQ ====== */
.faq-wrap { max-width: 800px; margin: 0 auto; }
details { border-bottom: 1px solid var(--border); padding: 22px 0; }
details summary { font-size: 18px; font-weight: 500; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; letter-spacing: -0.01em; gap: 16px; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
details[open] summary::after { transform: rotate(45deg); }
details p, details ul { margin-top: 14px; color: var(--muted); font-size: 16px; line-height: 1.6; }
details ul { padding-left: 20px; }
details li { margin-bottom: 6px; }

/* ====== FINAL CTA ====== */
.final-cta { padding: 120px 32px; text-align: center; max-width: 900px; margin: 0 auto; }
.final-cta h2 { margin-bottom: 22px; }
.final-cta p { font-size: 19px; color: var(--muted); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ====== CONTACT ====== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.contact-info-block { margin-bottom: 36px; }
.contact-info-block h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 10px; }
.contact-info-block p { font-size: 17px; font-weight: 500; }
.contact-info-block .sub { font-size: 14px; color: var(--muted); font-weight: 400; margin-top: 4px; }
form.contact-form { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 24px; padding: 36px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 8px; color: var(--ink-2); }
.form-row input, .form-row textarea, .form-row select { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px; background: white; font-family: inherit; font-size: 15px; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(0,0,0,0.04); }
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; background: var(--ink); color: white; padding: 14px; border-radius: 100px; border: none; font-size: 15px; font-weight: 500; cursor: pointer; transition: background 0.2s; font-family: inherit; margin-top: 8px; }
.form-submit:hover { background: #1f1f1f; }

/* ====== INFO BLOCK ====== */
.info-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; border-bottom: 1px solid var(--border); }
.info-block:last-of-type { border-bottom: none; }
.info-block.reverse { direction: rtl; }
.info-block.reverse > * { direction: ltr; }
.info-block-visual { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 24px; padding: 56px 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 280px; }
.info-block-content h3 { font-size: 32px; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 16px; line-height: 1.1; }
.info-block-content p { font-size: 17px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.info-block-content ul { list-style: none; margin-top: 18px; }
.info-block-content ul li { padding: 8px 0 8px 28px; position: relative; font-size: 15px; color: var(--ink-2); }
.info-block-content ul li::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--accent); font-weight: 700; }
.mock-credentials { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 24px; width: 100%; max-width: 340px; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.1); }
.mock-credentials .label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 4px; }
.mock-credentials .value { font-size: 15px; font-family: 'Geist Mono', monospace; color: var(--ink); margin-bottom: 14px; word-break: break-all; }
.mock-credentials .value:last-child { margin-bottom: 0; }
.mock-globe-num { font-family: 'Instrument Serif', serif; font-size: 96px; font-style: italic; color: var(--accent); line-height: 0.9; margin-bottom: 10px; }
.mock-globe-text { font-size: 14px; color: var(--muted); text-align: center; }
.mock-lock { font-size: 80px; color: var(--ink); margin-bottom: 12px; }

/* ====== FOOTER ====== */
footer.site-footer { border-top: 1px solid var(--border); padding: 60px 32px 36px; background: var(--bg-soft); }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 280px; line-height: 1.55; }
.footer-col h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 12px; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 0.6; }
.footer-bottom { max-width: var(--max); margin: 50px auto 0; padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 16px; }

/* ====== MECHANISM — redesigned dark ====== */
.mechanism-section {
  background: var(--bg-dark); color: white;
  padding: 100px 32px; position: relative; overflow: hidden;
}
.mechanism-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 2; }
.mechanism-section .section-label { color: var(--accent); }

.mech-header { text-align: center; margin-bottom: 72px; }
.mech-header h2 { color: white; margin-bottom: 16px; }
.mech-intro { font-size: 19px; color: rgba(255,255,255,0.45); max-width: 440px; margin: 0 auto; line-height: 1.55; }

.mech-steps {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: stretch; gap: 0; margin-bottom: 48px;
}
.mech-step {
  padding: 36px 28px; border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: background 0.3s, border-color 0.3s, transform 0.35s;
}
.mech-step:hover { background: rgba(255,255,255,0.055); border-color: rgba(255,255,255,0.16); transform: translateY(-4px); }
.mech-step.mech-step-featured {
  background: var(--accent); border-color: var(--accent); color: var(--ink);
}
.mech-step.mech-step-featured:hover { background: #00e085; border-color: #00e085; transform: translateY(-4px); }

.mech-step-num {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 52px; font-weight: 400; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.18); line-height: 1; margin-bottom: 14px;
}
.mech-step-featured .mech-step-num { color: rgba(0,0,0,0.2); }

.mech-step-emoji { font-size: 34px; line-height: 1; margin-bottom: 14px; }

.mech-step-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65);
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.mech-step-featured .mech-step-tag { background: rgba(0,0,0,0.15); color: rgba(0,0,0,0.55); }

.mech-step-title { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.25; color: white; }
.mech-step-featured .mech-step-title { color: var(--ink); }
.mech-step-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; }
.mech-step-featured .mech-step-desc { color: rgba(0,0,0,0.55); }

.mech-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: rgba(255,255,255,0.18); padding-top: 100px;
}

.mech-footnote {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.32); line-height: 1.6; text-align: center;
  max-width: 580px; margin: 0 auto;
}
.mf-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }


/* ====== MARQUEE TICKER ====== */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); }
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 10px; padding: 13px 30px; font-size: 13px; font-weight: 500; color: var(--muted); white-space: nowrap; border-right: 1px solid var(--border); transition: background 0.2s; cursor: default; }
.marquee-item:hover { background: var(--bg-soft); }
.marquee-name { color: var(--ink); font-weight: 700; }
.marquee-save { background: var(--accent-soft); color: var(--accent-dark); padding: 3px 9px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.marquee-logo { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; border-radius: 3px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ====== LIVE NOTIFICATION ====== */
.live-notif { position: fixed; bottom: 28px; left: 28px; z-index: 450; background: white; border: 1px solid var(--border); border-radius: 16px; padding: 13px 16px; display: flex; align-items: center; gap: 11px; box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(24px); opacity: 0; pointer-events: none; transition: transform 0.42s cubic-bezier(0.32,0.72,0,1), opacity 0.42s ease; max-width: 290px; }
.live-notif.show { transform: translateY(0); opacity: 1; }
.live-notif-flag { font-size: 22px; line-height: 1; flex-shrink: 0; }
.live-notif-body { flex: 1; min-width: 0; }
.live-notif-text { font-size: 13px; color: var(--muted); line-height: 1.4; }
.live-notif-text strong { color: var(--ink); }
.live-notif-ago { font-size: 11px; color: var(--muted-2); margin-top: 2px; }
.live-notif-live { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; animation: pulse 2s infinite; }

/* ====== POPULAR BADGE ====== */
.popular-badge { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg,#ff6b35,#f7b731); color: white; padding: 5px 11px; border-radius: 100px; font-size: 11px; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.03em; text-transform: uppercase; }
.popular-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.9); animation: pulse 1.4s infinite; }

/* ====== NAV CART ====== */
.nav-cart-btn { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 100px; border: 1.5px solid var(--border); background: white; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 500; color: var(--ink); transition: all 0.2s; }
.nav-cart-btn:hover { border-color: var(--border-strong); background: var(--bg-soft); }
@keyframes cartFlash { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08);border-color:var(--accent)} }
.nav-cart-btn.flash { animation: cartFlash 0.4s ease; }
.cart-count { display: none; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 100px; background: var(--accent); color: white; font-size: 11px; font-weight: 700; line-height: 1; }
.cart-count.visible { display: flex; }
.cart-label { }

/* ====== CART OVERLAY + PANEL ====== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.44); z-index: 500; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-panel { position: fixed; z-index: 600; background: #fff; display: flex; flex-direction: column; top: 0; right: 0; bottom: 0; width: min(430px,94vw); transform: translateX(calc(100% + 30px)); transition: transform 0.44s cubic-bezier(0.32,0.72,0,1); box-shadow: -28px 0 80px rgba(0,0,0,0.1); border-left: 1px solid var(--border); }
.cart-panel.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.cart-header h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.cart-close { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-soft); cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; color: var(--ink); font-family: inherit; }
.cart-close:hover { background: var(--border); }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 28px; display: flex; flex-direction: column; gap: 10px; scrollbar-width: thin; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 180px; height: 100%; text-align: center; color: var(--muted); gap: 10px; }
.cart-empty-icon { font-size: 46px; opacity: 0.38; line-height: 1; }
.cart-empty-text { font-size: 15px; font-weight: 500; }
.cart-empty-hint { font-size: 13px; color: var(--muted-2); max-width: 210px; line-height: 1.5; }
.cart-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 14px; background: var(--bg-soft); animation: itemIn 0.28s ease; }
@keyframes itemIn { from{opacity:0;transform:translateX(10px)} to{opacity:1;transform:none} }
.cart-item-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: white; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-period { font-size: 12px; color: var(--muted); }
.cart-item-price { font-size: 15px; font-weight: 600; flex-shrink: 0; }
.cart-item-remove { background: none; border: none; cursor: pointer; color: var(--muted-2); font-size: 13px; padding: 5px 6px; border-radius: 6px; transition: color 0.15s, background 0.15s; display: flex; align-items: center; flex-shrink: 0; }
.cart-item-remove:hover { color: #e53e3e; background: rgba(229,62,62,0.08); }
.cart-footer { padding: 16px 28px 28px; border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-savings { text-align: center; font-size: 12px; font-weight: 600; color: var(--accent-dark); background: var(--accent-soft); padding: 7px; border-radius: 8px; margin-bottom: 14px; }
.cart-promo-wrap { margin-bottom: 14px; }
.cart-promo-row { display: flex; gap: 8px; }
.cart-promo-input {
  flex: 1; padding: 9px 13px; border: 1px solid var(--border); border-radius: 10px;
  font-size: 13px; font-family: inherit; color: var(--ink); background: var(--bg-soft);
  outline: none; transition: border-color 0.15s;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.cart-promo-input:focus { border-color: var(--ink); background: white; }
.cart-promo-btn {
  padding: 9px 15px; border: 1px solid var(--border); border-radius: 10px;
  background: white; font-size: 13px; font-weight: 600; font-family: inherit;
  cursor: pointer; color: var(--ink); transition: background 0.15s, border-color 0.15s;
  white-space: nowrap; flex-shrink: 0;
}
.cart-promo-btn:hover { background: var(--bg-soft); border-color: var(--border-strong); }
.cart-promo-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.cart-promo-msg { font-size: 12px; margin-top: 6px; min-height: 18px; }
.cart-promo-msg.ok  { color: var(--accent-dark); }
.cart-promo-msg.err { color: #be123c; }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.cart-discount-row { margin-bottom: 10px; }
.cart-discount-label { color: var(--accent-dark); font-weight: 600; }
.cart-discount-val { color: var(--accent-dark); font-weight: 700; }
.cart-grand-row { border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; margin-bottom: 16px; }
.cart-total-label { font-size: 14px; font-weight: 500; color: var(--muted); }
.cart-total-price { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; }
.cart-checkout-btn { width: 100%; background: var(--ink); color: white; padding: 16px; border-radius: 100px; border: none; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.15s; font-family: inherit; margin-bottom: 12px; }
.cart-checkout-btn:hover:not(:disabled) { background: #1a1a1a; transform: scale(1.01); }
.cart-checkout-btn:disabled { opacity: 0.42; cursor: not-allowed; }
.cart-disclaimer { text-align: center; font-size: 12px; color: var(--muted-2); line-height: 1.65; }

/* ====== REQUEST FORM ====== */
.request-form { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease, margin-top 0.28s ease; margin-top: 0; }
.request-form.open { max-height: 200px; opacity: 1; margin-top: 16px; }
.request-form-inner { padding-top: 16px; border-top: 1px solid var(--border); }
.request-form-label { font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 10px; display: block; line-height: 1.5; }
.request-input-row { display: flex; gap: 8px; }
.request-email-input { flex: 1; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 100px; font-family: inherit; font-size: 14px; color: var(--ink); background: white; outline: none; transition: border-color 0.2s; }
.request-email-input:focus { border-color: var(--ink); }
.request-email-input.error { border-color: #e53e3e; animation: shake 0.35s ease; }
@keyframes shake { 0%,100%{transform:none} 30%{transform:translateX(-6px)} 70%{transform:translateX(6px)} }
.request-submit-btn { padding: 11px 16px; background: var(--ink); color: white; border: none; border-radius: 100px; font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.2s; white-space: nowrap; flex-shrink: 0; }
.request-submit-btn:hover { background: #1a1a1a; }
.request-success { display: none; padding: 11px 14px; background: var(--accent-soft); border: 1px solid rgba(0,210,122,0.25); border-radius: 12px; font-size: 14px; color: var(--accent-dark); font-weight: 500; text-align: center; }
.request-success.show { display: block; }
.product-btn.btn-requesting { background: var(--bg-soft) !important; color: var(--ink) !important; border: 1.5px solid var(--border); }

/* ====== STAGGER REVEAL ====== */
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-stagger.in > *:nth-child(1) { opacity:1;transform:none;transition-delay:0ms }
.reveal-stagger.in > *:nth-child(2) { opacity:1;transform:none;transition-delay:50ms }
.reveal-stagger.in > *:nth-child(3) { opacity:1;transform:none;transition-delay:100ms }
.reveal-stagger.in > *:nth-child(4) { opacity:1;transform:none;transition-delay:150ms }
.reveal-stagger.in > *:nth-child(5) { opacity:1;transform:none;transition-delay:200ms }
.reveal-stagger.in > *:nth-child(6) { opacity:1;transform:none;transition-delay:250ms }
.reveal-stagger.in > *:nth-child(7) { opacity:1;transform:none;transition-delay:300ms }

/* ====== INDIVIDUAL ELEMENT REVEALS (data-sr) ====== */
[data-sr] {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1),
              filter 0.85s ease;
}
[data-sr].in { opacity: 1; transform: none !important; filter: none !important; }
[data-sr="up"]     { transform: translateY(44px); }
[data-sr="left"]   { transform: translateX(-44px); }
[data-sr="right"]  { transform: translateX(44px); }
[data-sr="scale"]  { transform: scale(0.88); transform-origin: center; }
[data-sr="blur"]   { transform: translateY(20px); filter: blur(8px); }
[data-sr="flip"]   { transform: perspective(600px) rotateX(14deg) translateY(20px); }

/* ====== SECTION ANIMATIONS — Webflow-style ====== */
.sa-rise {
  opacity: 0; transform: translateY(80px);
  transition: opacity 1.05s cubic-bezier(0.16,1,0.3,1), transform 1.05s cubic-bezier(0.16,1,0.3,1);
}
.sa-fade {
  opacity: 0; transform: scale(0.95) translateY(32px);
  transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
}
.sa-scale {
  opacity: 0; transform: scale(0.88); transform-origin: center top;
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1);
}
.sa-clip {
  opacity: 0.1; clip-path: inset(8% 3% 8% 3% round 36px);
  transition: opacity 1.2s ease, clip-path 1.2s cubic-bezier(0.77,0,0.18,1);
}
.sa-left {
  opacity: 0; transform: translateX(-72px);
  transition: opacity 0.95s cubic-bezier(0.16,1,0.3,1), transform 0.95s cubic-bezier(0.16,1,0.3,1);
}
.sa-right {
  opacity: 0; transform: translateX(72px);
  transition: opacity 0.95s cubic-bezier(0.16,1,0.3,1), transform 0.95s cubic-bezier(0.16,1,0.3,1);
}
.sa-rise.in, .sa-fade.in, .sa-scale.in, .sa-left.in, .sa-right.in { opacity: 1; transform: none !important; }
.sa-clip.in { opacity: 1; clip-path: inset(0% 0% 0% 0% round 0px); }
.sa-reveal {
  opacity: 0; clip-path: inset(0 0 100% 0);
  transition: opacity 0.9s ease, clip-path 0.9s cubic-bezier(0.77,0,0.18,1);
}
.sa-reveal.in { opacity: 1; clip-path: inset(0 0 0% 0); }

/* ====== REVEAL (basic) ====== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ====== HIGHLIGHT MARKER ====== */
.highlight-marker { position: relative; display: inline; white-space: nowrap; }
.highlight-marker::before { content: ''; position: absolute; bottom: 0.1em; left: -0.05em; right: -0.05em; height: 0.4em; background: rgba(0,210,122,0.32); border-radius: 0.1em; z-index: -1; transform: skewX(-2deg) rotate(-0.6deg); }

/* ====== HERO BLOBS ====== */
.hero { position: relative; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.hero > *:not(.hero-blob) { position: relative; z-index: 1; }
.hero-blob-1 { width: 700px; height: 700px; top: -220px; left: 50%; transform: translateX(-55%); background: radial-gradient(circle, rgba(0,210,122,0.18) 0%, transparent 68%); animation: blob1 12s ease-in-out infinite; }
.hero-blob-2 { width: 520px; height: 520px; top: 20px; right: -120px; background: radial-gradient(circle, rgba(80,120,255,0.11) 0%, transparent 68%); animation: blob2 16s ease-in-out infinite; }
@keyframes blob1 { 0%,100%{transform:translateX(-55%) translateY(0) scale(1)} 40%{transform:translateX(-52%) translateY(-28px) scale(1.06)} 70%{transform:translateX(-58%) translateY(12px) scale(0.95)} }
@keyframes blob2 { 0%,100%{transform:translateY(0) scale(1)} 55%{transform:translateY(-32px) scale(1.09)} }

/* ====== SCROLL PROGRESS ====== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg,var(--accent),#00c8ff); z-index: 999; pointer-events: none; transition: width 0.08s linear; }

/* ====== CURSOR GLOW ====== */
#cursor-glow {
  position: fixed; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,210,122,0.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
  transform: translate(-50%, -50%);
  left: -999px; top: -999px;
  transition: left 0.12s ease, top 0.12s ease;
  mix-blend-mode: screen;
}

/* ====== PRICE COMPARISON — scroll-triggered reveal ====== */
.price-col-amount.retail-price { position: relative; }
.price-col-amount.retail-price::after {
  content: ''; position: absolute; left: -2px; right: -2px; top: 50%;
  height: 2.5px; background: #e53e3e; border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1) 0.25s;
}
.prices-revealed .price-col-amount.retail-price::after { transform: scaleX(1); }
.prices-revealed .price-col.ours .price-col-amount {
  animation: pricePopIn 0.5s 0.45s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes pricePopIn { from{opacity:0;transform:scale(0.7)} to{opacity:1;transform:none} }

/* ====== EXPLAINER SECTION ====== */
.explainer-section { padding: 120px 32px; border-bottom: 1px solid var(--border); background: var(--bg); }
.exp-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center; }
.exp-text-label { font-size: 13px; font-weight: 600; color: var(--accent-dark); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.exp-h2 { font-size: clamp(36px,5vw,62px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.02; margin-bottom: 24px; }
.exp-h2 .serif { font-family: 'Instrument Serif', serif; font-weight: 400; font-style: italic; }
.exp-body { font-size: 18px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.exp-body strong { color: var(--ink); }
.price-compare-wrap { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 28px; padding: 8px; overflow: hidden; }
.price-compare-cols { display: grid; grid-template-columns: 1fr 40px 1fr; align-items: center; }
.price-col { padding: 28px 24px; border-radius: 22px; }
.price-col.retail { background: white; border: 1px solid var(--border); }
.price-col.ours { background: var(--ink); color: white; }
.price-col-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.price-col.ours .price-col-label { color: rgba(255,255,255,0.45); }
.price-col-item { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.price-col-item:last-child { margin-bottom: 0; }
.price-col-logo { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.price-col-logo img { width: 22px; height: 22px; object-fit: contain; }
.price-col-logo.sp { background: #1db954; }
.price-col-logo.yt { background: #ff0033; }
.price-col-name { font-size: 13px; font-weight: 500; flex: 1; color: var(--muted); }
.price-col.ours .price-col-name { color: rgba(255,255,255,0.6); }
.price-col-amount { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.price-col.ours .price-col-amount { color: var(--accent); }
.price-col-period { font-size: 11px; color: var(--muted); margin-top: 1px; }
.price-col.ours .price-col-period { color: rgba(255,255,255,0.4); }
.vs-badge { display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--muted-2); }
.price-guarantee { background: var(--accent-soft); border-top: 1px solid rgba(0,210,122,0.2); padding: 14px 24px; font-size: 13px; color: var(--accent-dark); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.analogy-row { display: flex; flex-wrap: wrap; gap: 10px; }
.analogy-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid var(--border); border-radius: 100px; font-size: 14px; color: var(--muted); font-weight: 500; background: white; transition: border-color 0.2s, background 0.2s; }
.analogy-pill:hover { border-color: var(--border-strong); background: var(--bg-soft); }
.pill-emoji { font-size: 16px; }

/* ====== STATS ROW (kept for other pages) ====== */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; margin-top: 64px; }
.stat-cell { background: white; padding: 32px 24px; text-align: center; transition: background 0.2s; }
.stat-cell:hover { background: var(--bg-soft); }
.stat-num { font-size: 42px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; color: var(--ink); }
.stat-num .accent { color: var(--accent-dark); }
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }


/* ====== MOBILE MENU ====== */
.mob-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}
.mob-overlay.open { opacity: 1; visibility: visible; }
.mob-menu {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 48px rgba(0,0,0,0.13);
  transform: translateY(110%);
  transition: transform 0.44s cubic-bezier(0.32,0.72,0,1);
}
.mob-menu.open { transform: translateY(0); }
.mob-top-row {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 18px 12px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.mob-handle {
  width: 36px; height: 4px; background: rgba(0,0,0,0.12); border-radius: 2px;
}
.mob-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-soft); border: 1px solid var(--border); cursor: pointer;
  color: var(--muted-2);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.18s; padding: 0;
}
.mob-close:hover { color: var(--ink); }
.mob-close svg { display: block; flex-shrink: 0; }
.mob-nav { padding: 4px 20px; }
.mob-nav a {
  display: flex; align-items: center; padding: 14px 0;
  font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink-2);
  border-bottom: 1px solid var(--border);
  transition: color 0.18s, padding-left 0.18s;
}
.mob-nav a:last-child { border-bottom: none; }
.mob-nav a:hover, .mob-nav a.active { color: var(--accent-dark); padding-left: 6px; }
.mob-footer {
  padding: 12px 20px 36px;
  border-top: 1px solid var(--border);
  text-align: center;
}
/* ── Mobile currency picker (inside mob-footer) ── */
.mob-cur-row {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 12px; cursor: pointer;
}
.mob-cur-label {
  font-size: 11px; color: var(--muted-2); letter-spacing: 0.02em;
}
.mob-cur-select {
  appearance: none; -webkit-appearance: none;
  background: transparent;
  border: none; border-bottom: 1px solid var(--border);
  padding: 1px 14px 1px 0;
  font-size: 11px; font-weight: 600; color: var(--muted);
  font-family: inherit; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0 center;
}
.mob-cta {
  width: 100% !important; justify-content: center !important;
  background: var(--ink) !important; color: white !important;
  font-size: 15px !important; padding: 15px 24px !important;
}
/* ====== HAMBURGER ====== */
.mob-hamburger {
  display: none;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--bg-soft); border: 1.5px solid var(--border);
  cursor: pointer; flex-shrink: 0;
}
.mob-hamburger span {
  display: block; width: 22px; height: 2.5px;
  background: var(--ink); border-radius: 2px;
}


/* ====== GLOBAL PRICE CHART ====== */
.price-world-section { background: var(--bg-soft); }
.price-world-chart {
  max-width: 720px; margin: 0 auto;
  background: white; border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 8px 40px -12px rgba(0,0,0,0.1);
}
.pwc-header {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 13px 24px;
  background: var(--bg-soft); border-bottom: 1px solid var(--border);
}
.pwc-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.pwc-note-inline { font-size: 11px; color: var(--muted-2); }
.pwc-rows { padding: 6px 24px 16px; }
.pwc-row {
  display: grid; grid-template-columns: 26px 130px 1fr 88px;
  align-items: center; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.pwc-row:last-child { border-bottom: none; }
.pwc-flag { font-size: 18px; text-align: center; line-height: 1; }
.pwc-country { font-size: 14px; font-weight: 600; color: var(--ink); }
.pwc-bar-wrap { height: 10px; background: var(--bg-soft); border-radius: 100px; overflow: hidden; }
.pwc-bar {
  height: 100%; width: 0;
  background: var(--border-strong); border-radius: 100px;
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1) 0.2s;
}
.pwc-bar.in-view { width: var(--w, 0%); }
.pwc-expensive .pwc-bar { background: rgba(220,53,69,0.45); }
.pwc-expensive .pwc-price { color: #b91c1c; font-weight: 700; }
.pwc-price { font-size: 13px; font-weight: 700; color: var(--muted); text-align: right; white-space: nowrap; }
.pwc-divider { display: none; }

.pwc-footer-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--accent-soft); border-top: 1px solid rgba(0,210,122,0.25);
  padding: 14px 28px;
  font-size: 14px; font-weight: 600; color: var(--accent-dark);
}
.pwc-footer-price { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.pwc-ours {
  border-top: 2px solid rgba(0,200,100,0.25) !important;
  border-bottom: none !important;
  padding: 16px 0;
}
.pwc-our-icon {
  width: 26px; height: 26px; border-radius: 7px;
  background: #00c87a;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pwc-our-icon img { width: 15px; height: 15px; object-fit: contain; }
.pwc-ours .pwc-country { color: var(--ink); font-weight: 700; }
.pwc-ours .pwc-bar { background: #00c87a; }
.pwc-our-price { color: #00a055 !important; font-weight: 800; font-size: 14px; }

/* ====== ON REQUEST NOTE ====== */
.on-request-note {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 9px 16px;
  background: rgba(0,0,0,0.04); border: 1px solid var(--border);
  border-radius: 100px; font-size: 13px; color: var(--muted); font-weight: 500;
}

/* ====== CART ICON ====== */
.nav-cart-btn svg { display: block; width: 19px; height: 19px; }

/* ====== MOBILE ====== */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
  .mech-steps { grid-template-columns: 1fr; gap: 0; }
  .mech-arrow { padding-top: 0; padding: 8px 0; transform: rotate(90deg); }
  .contact-wrap { grid-template-columns: 1fr; }
  .info-block { grid-template-columns: 1fr; gap: 32px; padding: 60px 0; }
  .info-block.reverse { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .exp-inner { grid-template-columns: 1fr; gap: 48px; }
  .price-compare-cols { grid-template-columns: 1fr 32px 1fr; }
  .price-col { padding: 20px 16px; }
  .numbers-inner { grid-template-columns: repeat(2,1fr); }
  .ns-divider { display: none; }
  .ns-item { padding: 36px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .ns-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.07); }
}

@media (max-width: 700px) {
  * { box-sizing: border-box; }
  html, body { overflow-x: hidden; width: 100%; max-width: 100vw; }

  /* ── Kill overflow sources ── */
  .hero-blob-1, .hero-blob-2 { display: none; }
  .orb { width: 260px; height: 260px; filter: blur(50px); }
  .hero, .hero.small,
  .dark-section, .mechanism-section,
  .explainer-section, .marquee-wrap,
  .numbers-strip, footer.site-footer { overflow: hidden; }

  /* ── Nav — hamburger left · logo center · cart right ── */
  nav.site-nav {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .logo { justify-self: center; }
  .nav-links {
    display: flex; justify-content: flex-end; align-items: center; gap: 0;
  }
  .nav-links a { display: none !important; }
  .mob-hamburger {
    display: flex;
    background: transparent; border: none; border-radius: 0;
    width: 36px; height: 36px; padding: 0;
  }
  .nav-cart-btn {
    background: transparent; border: none; padding: 6px;
    color: var(--ink);
  }
  .nav-cart-btn svg { width: 26px; height: 26px; }
  .nav-cart-btn .cart-label { display: none; }

  /* ── Consistent 16px horizontal padding on all sections ── */
  .hero, .hero.small,
  .explainer-section,
  .mechanism-section,
  .section,
  .section.soft,
  .dark-section,
  .final-cta,
  footer.site-footer {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* ── Vertical spacing ── */
  .hero, .hero.small { padding-top: 100px; padding-bottom: 40px; }
  .section, .dark-section, .final-cta { padding-top: 52px; padding-bottom: 52px; }
  .explainer-section, .mechanism-section { padding-top: 52px; padding-bottom: 52px; }

  /* ── Inner containers ── */
  .section.soft .inner, .mechanism-inner, .exp-inner { max-width: 100%; margin: 0; padding: 0; }
  .contact-wrap { padding: 0; }
  .form-row-grid { grid-template-columns: 1fr; }

  /* ── Typography ── */
  h1 { font-size: clamp(28px, 8vw, 38px); margin-bottom: 14px; }
  h2 { font-size: clamp(26px, 7vw, 34px); margin-bottom: 14px; }
  .section-sub { font-size: 15px; }
  .hero-sub { font-size: 14px; margin-bottom: 20px; }
  .section-header { margin-bottom: 36px; }
  .section-label { font-size: 11px; margin-bottom: 14px; }

  /* ── Hero ── */
  .badge { font-size: 11px; padding: 5px 11px; margin-bottom: 18px; }
  .hero-sub { font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
  .hero-sub-full { display: none; }
  .hero-sub-short { display: inline; }
  .hero-trust-row { gap: 8px; margin-bottom: 22px; }
  .hero-trust-badge { font-size: 12px; padding: 5px 10px; }
  .hero-price-showcase { flex-direction: column; align-items: stretch; gap: 10px; margin: 24px 0 28px; }
  .hps-card { min-width: unset; width: 100%; max-width: none; margin-top: 0 !important; padding: 16px 18px; }
  .hps-new { font-size: 26px; }
  .hps-name { font-size: 13px; }
  .hps-period { font-size: 10px; }
  .hps-save { font-size: 10px; }
  .hero-cta { gap: 10px; margin-bottom: 36px; }
  .hero-cta .btn-large { padding: 14px 20px; font-size: 14px; width: 100%; justify-content: center; }
  .scroll-hint { display: none; }

  /* ── Numbers strip ── */
  .numbers-inner { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ns-num { font-size: 34px; }
  .ns-label { font-size: 11px; }
  .ns-item { padding: 20px 10px; }

  /* ── Marquee ── */
  .marquee-item { padding: 9px 14px; font-size: 11px; }

  /* ── Mechanism ── */
  .mech-steps { grid-template-columns: 1fr; }
  .mech-step { padding: 20px 16px; border-radius: 16px; }
  .mech-arrow { padding: 2px 0; }
  .mech-header { margin-bottom: 36px; }
  .mech-intro { font-size: 14px; }
  .mech-step-title { font-size: 15px; }
  .mech-step-desc { font-size: 13px; }
  .mech-step-num { font-size: 36px; margin-bottom: 10px; }
  .mech-step-emoji { font-size: 26px; margin-bottom: 10px; }

  /* ── Products ── */
  .grid-2 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .product-card { padding: 16px; border-radius: 16px; }
  .product-card.featured { padding: 20px; }
  .product-icon { width: 40px; height: 40px; border-radius: 11px; margin-bottom: 12px; }
  .product-card.featured .product-icon { width: 44px; height: 44px; }
  .product-name { font-size: 15px; }
  .product-card.featured .product-name { font-size: 17px; }
  .product-desc { font-size: 12px; margin-bottom: 12px; }
  .price-new { font-size: 27px; }
  .product-card.featured .price-new { font-size: 34px; }
  .price-old { font-size: 13px; }
  .price-period { font-size: 12px; }
  .save-badge { font-size: 11px; padding: 4px 9px; margin-bottom: 12px; }
  .popular-badge { font-size: 9px; padding: 4px 8px; margin-bottom: 10px; }
  .product-btn { padding: 11px; font-size: 13px; }

  /* ── Explainer ── */
  .exp-inner { grid-template-columns: 1fr; gap: 28px; }
  .exp-h2 { font-size: clamp(22px,6vw,30px); }
  .exp-body { font-size: 14px; }
  .price-compare-cols { grid-template-columns: 1fr 18px 1fr; }
  .price-col { padding: 10px 8px; border-radius: 12px; }
  .price-col-logo { width: 22px; height: 22px; border-radius: 5px; }
  .price-col-logo img { width: 13px; height: 13px; }
  .price-col-amount { font-size: 12px; }
  .price-col-name { font-size: 9px; }
  .price-col-label { font-size: 8px; margin-bottom: 10px; }
  .price-col-item { gap: 8px; margin-bottom: 12px; }
  .vs-badge { font-size: 10px; }
  .analogy-row { gap: 6px; }
  .analogy-pill { font-size: 11px; padding: 5px 9px; }
  .price-guarantee { font-size: 11px; padding: 9px 12px; }

  /* ── Why Us ── */
  .feature-card { padding: 16px; border-radius: 14px; }
  .feature-icon { width: 34px; height: 34px; font-size: 17px; border-radius: 9px; margin-bottom: 10px; }
  .feature-title { font-size: 14px; margin-bottom: 6px; }
  .feature-desc { font-size: 13px; }

  /* ── Testimonials ── */
  .review-vid-featured { padding: 24px; gap: 24px; margin-bottom: 36px; }
  .review-vid-player-wrap { width: 100%; }
  .review-vid-quote { font-size: 16px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial { padding: 16px; border-radius: 16px; }
  .testimonial-text { font-size: 14px; }
  .testimonial-stars { font-size: 12px; margin-bottom: 10px; }

  /* ── Final CTA ── */
  .final-cta h2 { font-size: clamp(22px,6vw,30px); }
  .final-cta p { font-size: 14px; }

  /* ── Footer ── */
  footer.site-footer { padding-top: 36px; padding-bottom: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { font-size: 12px; max-width: none; margin-top: 10px; }
  .footer-col h4 { font-size: 10px; margin-bottom: 10px; }
  .footer-col a { font-size: 12px; margin-bottom: 7px; }
  .logo-img { height: 24px; }
  .footer-bottom { margin-top: 24px; padding-top: 14px; font-size: 11px; flex-direction: column; gap: 4px; }

  /* ── Cart (floating card with margins) ── */
  .cart-panel {
    top: auto; left: 10px; right: 10px; bottom: 10px; width: auto;
    height: auto; max-height: 82vh;
    border-radius: 20px; border: 1px solid var(--border);
    box-shadow: 0 8px 56px rgba(0,0,0,0.18);
    transform: translateY(calc(100% + 50px));
  }
  .cart-panel.open { transform: translateY(0); }
  .cart-header { padding: 13px 16px 11px; }
  .cart-items { padding: 9px 16px; }
  .cart-footer { padding: 9px 16px 24px; }

  /* ── Live notification (hidden on mobile) ── */
  .live-notif { display: none !important; }

  /* ── Info blocks (how-it-works) ── */
  .info-block { grid-template-columns: 1fr; gap: 20px; padding: 44px 0; }
  .info-block.reverse { direction: ltr; }
  .info-block-visual { padding: 28px 18px; min-height: 160px; }
  .info-block-content h3 { font-size: 20px; }
  .info-block-content p { font-size: 14px; }
  .mock-globe-num { font-size: 64px; }

  /* ── Contact form ── */
  form.contact-form { padding: 18px 14px; border-radius: 18px; }
}

@media (max-width: 700px) {
  .pwc-row { grid-template-columns: 22px 90px 1fr 68px; gap: 8px; padding: 10px 0; }
  .pwc-country { font-size: 12px; }
  .pwc-price { font-size: 11px; }
  .pwc-header { flex-direction: column; align-items: flex-start; gap: 3px; }
  .pwc-note-inline { display: none; }
  .pwc-rows { padding: 4px 16px 12px; }
  .pwc-footer-row { padding: 12px 16px; }
  .pwc-footer-price { font-size: 15px; }
  .price-world-chart { border-radius: 18px; }
  .numbers-strip { padding: 28px 16px; }
  .on-request-note { font-size: 12px; padding: 8px 12px; }
}

/* ====== VIDEO SECTIONS ====== */
.vid-section {
  padding: 100px 32px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vid-section.vid-dark {
  background: var(--bg-dark);
  border-color: rgba(255,255,255,0.06);
}
.vid-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.vid-inner .section-sub { margin: 12px auto 40px; max-width: 520px; }
.vid-wrap {
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 24px 80px -16px rgba(0,0,0,0.22);
  border: 1px solid var(--border);
  background: #000; position: relative;
}
.vid-wrap video {
  width: 100%; display: block;
  max-height: 520px; object-fit: contain;
}
.vid-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.22);
  transition: opacity 0.25s;
  cursor: pointer;
}
.vid-play-overlay.hidden { opacity: 0; pointer-events: none; }
.vid-play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  transition: transform 0.2s, background 0.2s;
}
.vid-wrap:hover .vid-play-btn { transform: scale(1.08); background: #fff; }
.vid-play-btn svg { margin-left: 4px; }
.vid-wrap-sm { max-width: 600px; margin: 0 auto; }
.vid-wrap-sm video { max-height: 360px; }
.vid-section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); color: var(--accent-dark);
  border: 1px solid rgba(0,210,122,0.25);
  border-radius: 100px; font-size: 12px; font-weight: 700;
  padding: 6px 14px; margin-bottom: 20px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
@media (max-width: 700px) {
  .vid-section { padding: 56px 16px; }
  .vid-wrap { border-radius: 14px; }
  .vid-inner .section-sub { margin-bottom: 24px; font-size: 14px; }
}

/* ── Catalogue block ─────────────────────────────────────────── */
.catalogue-block {
  max-width: 780px; margin: 0 auto;
  background: white; border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 8px 40px -12px rgba(0,0,0,0.08);
}
.cat-list { padding: 8px 0; }
.cat-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 24px; cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  position: relative; user-select: none;
}
.cat-item:last-child { border-bottom: none; }
.cat-item:hover { background: var(--bg-soft); }
.cat-item input[type="checkbox"] { display: none; }
.cat-item.selected { background: rgba(0,210,122,0.05); }
.cat-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cat-icon img { width: 20px; height: 20px; object-fit: contain; filter: brightness(0) invert(1); }
.cat-info { flex: 1; min-width: 0; }
.cat-name { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-desc { font-size: 12px; color: var(--muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-price-block { display: flex; align-items: baseline; gap: 6px; flex-shrink: 0; }
.cat-old { font-size: 12px; color: var(--muted-2); text-decoration: line-through; }
.cat-new { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.cat-save {
  font-size: 11px; font-weight: 700; color: var(--accent-dark);
  background: var(--accent-soft); padding: 3px 8px; border-radius: 100px;
  flex-shrink: 0; white-space: nowrap;
}
.cat-tick {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--border-strong);
  transition: all 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.cat-item.selected .cat-tick {
  background: var(--accent); border-color: var(--accent);
}
.cat-item.selected .cat-tick::after {
  content: ''; display: block;
  width: 5px; height: 9px;
  border: 2px solid white; border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
.cat-form {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  background: var(--bg-soft);
}
.cat-form-row { display: flex; gap: 10px; }
.cat-email-input {
  flex: 1; padding: 11px 16px; border: 1px solid var(--border);
  border-radius: 100px; font-size: 14px; font-family: inherit;
  background: white; outline: none; transition: border-color 0.2s;
}
.cat-email-input:focus { border-color: var(--accent); }
.cat-email-input.error { border-color: #e53e3e; animation: shake 0.4s ease; }
.cat-submit-btn {
  background: var(--ink); color: white; border: none;
  padding: 11px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: inherit; white-space: nowrap;
  transition: background 0.2s;
}
.cat-submit-btn:hover { background: #1a1a1a; }
.cat-success {
  display: none; font-size: 14px; font-weight: 600;
  color: var(--accent-dark); padding: 10px 0;
}
.cat-note { font-size: 12px; color: var(--muted); margin-top: 10px; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}
@media (max-width: 700px) {
  .cat-item { padding: 12px 16px; gap: 10px; }
  .cat-desc { display: none; }
  .cat-old { display: none; }
  .cat-form { padding: 16px; }
  .cat-form-row { flex-direction: column; }
  .cat-submit-btn { width: 100%; }
}

/* ── One-time payment badge ─────────────────────────────────── */
.payment-once-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,210,122,0.1); color: var(--accent-dark);
  border: 1px solid rgba(0,210,122,0.28);
  border-radius: 100px; font-size: 11px; font-weight: 700;
  padding: 4px 12px; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── Hero why blurb ─────────────────────────────────────────── */
.hero-why {
  font-size: 12px; color: var(--muted); line-height: 1.6;
  margin-top: 18px; max-width: 440px; margin-left: auto; margin-right: auto;
  padding: 10px 16px; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: 100px;
}

/* ── Telegram floating button ───────────────────────────────── */
#tg-overlay { display: contents; }
.wa-float {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 16px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  z-index: 9999;
  white-space: nowrap;
  background: #fff; color: #111;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 16px; padding: 10px 15px 10px 11px;
  font-size: 13px; font-weight: 500;
  text-decoration: none;
  align-items: center; gap: 7px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  transition: box-shadow 0.2s;
  letter-spacing: -0.01em;
}
@media (max-width: 700px) {
  .wa-float { display: flex; }
}
.wa-float:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.14); }
.wa-float .wa-icon { color: #229ed9; flex-shrink: 0; display: flex; }

/* ── Contact page mobile ────────────────────────────────────── */
@media (max-width: 700px) {
  .contact-section-wrap { padding: 40px 16px 80px; }
  .contact-info-block { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
  .contact-info-block:last-child { border-bottom: none; margin-bottom: 0; }
  .contact-info-block h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
  .contact-info-block p { font-size: 15px; margin: 0 0 2px; }
  .contact-info-block .sub { font-size: 13px; }
}

/* =================================================================
   HERO V2  —  Light · Professional · Kinetic
   ================================================================= */
.hero.hero-v2 {
  background: #ffffff;
  background-image:
    linear-gradient(180deg, #ffffff 0%, #fbfbfa 60%, #f6f6f4 100%);
  padding: 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  color: var(--ink);
}
.hero.hero-v2::before { display: none; }
.hero.hero-v2 .hero-inner {
  position: relative; z-index: 2;
  padding: 150px 32px 90px;
  max-width: 1120px;
}

/* — Background layers (soft pastel aurora) — */
.hero-v2 .hero-bg {
  position: absolute; inset: 0;
  z-index: 0; overflow: hidden; pointer-events: none;
}
.hero-v2 .hero-aurora {
  position: absolute; border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  will-change: transform;
}
.hero-v2 .hero-aurora.a-1 {
  width: 720px; height: 720px;
  top: -240px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,210,122,0.22) 0%, rgba(0,210,122,0) 65%);
  animation: hv2-aurora-1 18s ease-in-out infinite;
}
.hero-v2 .hero-aurora.a-2 {
  width: 540px; height: 540px;
  top: 80px; right: -160px;
  background: radial-gradient(circle, rgba(80,140,255,0.18) 0%, rgba(80,140,255,0) 65%);
  animation: hv2-aurora-2 22s ease-in-out infinite;
}
.hero-v2 .hero-aurora.a-3 {
  width: 460px; height: 460px;
  bottom: -120px; left: -120px;
  background: radial-gradient(circle, rgba(255,180,120,0.16) 0%, rgba(255,180,120,0) 65%);
  animation: hv2-aurora-3 26s ease-in-out infinite;
}
@keyframes hv2-aurora-1 {
  0%,100% { transform: translateX(-50%) translateY(0) scale(1); }
  50%      { transform: translateX(-45%) translateY(40px) scale(1.08); }
}
@keyframes hv2-aurora-2 {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(60px) scale(1.12); }
}
@keyframes hv2-aurora-3 {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-40px) scale(0.9); }
}
.hero-v2 .hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 25%, transparent 78%);
}
.hero-v2 .hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 70%, rgba(255,255,255,0.95) 100%);
}
.hero-v2 .hero-noise { display: none; }

/* — Live chip — */
.hero-v2 .hero-live-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 12px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(10,10,10,0.07);
  border-radius: 100px;
  font-size: 13px; color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 30px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 22px -8px rgba(10,10,10,0.08);
  animation: hv2-chipIn 0.9s 0.05s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-v2 .hero-live-chip strong { font-weight: 600; }
.hero-v2 .hlc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(0,210,122,0.18);
  animation: hv2-pulse 1.8s infinite;
}
.hero-v2 .hlc-sep {
  width: 1px; height: 13px; background: rgba(10,10,10,0.14);
}
.hero-v2 .hlc-stars { color: #ffb800; letter-spacing: -1.5px; font-size: 12px; }
.hero-v2 .hlc-rate { font-variant-numeric: tabular-nums; color: var(--muted); }
.hero-v2 .hlc-rate strong { color: var(--ink); }
@keyframes hv2-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(0,210,122,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(0,210,122,0.06); }
}
@keyframes hv2-chipIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}

/* — Headline — */
.hero.hero-v2 h1.hero-headline {
  color: var(--ink);
  font-size: clamp(40px, 6.4vw, 80px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero-v2 .hh-line-1,
.hero-v2 .hh-line-3 { display: block; }
.hero-v2 .hh-line-1 {
  color: var(--muted);
  font-weight: 500;
  animation: hv2-lineIn 0.9s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-v2 .hh-line-3 {
  color: var(--ink);
  animation: hv2-lineIn 0.9s 0.35s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-v2 .hh-line-3 .serif {
  font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
  background: linear-gradient(120deg, #00a85f 0%, #00d27a 45%, #00a85f 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  animation: hv2-shimmer 5s linear infinite;
}
@keyframes hv2-lineIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hv2-shimmer {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}

/* — Kinetic word rotator — */
.hero-v2 .kinetic-rotator {
  display: inline-grid;
  vertical-align: top;
  position: relative;
  min-width: 320px;
  height: 1.05em;
  overflow: hidden;
  animation: hv2-lineIn 0.9s 0.22s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-v2 .kr-word {
  grid-area: 1 / 1;
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--kr-color, var(--ink));
  opacity: 0;
  transform: translateY(110%) rotateX(-40deg);
  transition:
    opacity 0.55s cubic-bezier(0.16,1,0.3,1),
    transform 0.7s cubic-bezier(0.16,1,0.3,1),
    filter 0.55s ease;
  filter: blur(6px);
}
.hero-v2 .kr-word.is-active {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  filter: blur(0);
}
.hero-v2 .kr-word.is-leaving {
  opacity: 0;
  transform: translateY(-110%) rotateX(40deg);
  filter: blur(6px);
}

/* — Subline — */
.hero.hero-v2 .hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.55;
  margin: 0 auto 36px;
  animation: hv2-lineIn 0.9s 0.45s cubic-bezier(0.16,1,0.3,1) both;
}

/* — Price flash widget — */
.hero-v2 .hero-price-flash {
  display: inline-flex; flex-direction: column; align-items: stretch;
  padding: 14px 22px 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  margin: 0 auto 36px;
  box-shadow:
    0 24px 60px -20px rgba(10,10,10,0.10),
    0 4px 16px -8px rgba(10,10,10,0.06);
  animation: hv2-lineIn 0.9s 0.55s cubic-bezier(0.16,1,0.3,1) both;
  text-align: center;
}
.hero-v2 .hpf-example {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px; display: block;
}
.hero-v2 .hpf-row {
  display: flex; align-items: stretch; gap: 0;
}
.hero-v2 .hpf-from, .hero-v2 .hpf-to {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 4px; padding: 2px 20px;
}
.hero-v2 .hpf-from {
  border-right: 1px dashed var(--border-strong);
}
.hero-v2 .hpf-tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.hero-v2 .hpf-val {
  font-size: 26px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--muted-2);
  position: relative; font-variant-numeric: tabular-nums;
}
.hero-v2 .hpf-val::after {
  content: ''; position: absolute;
  left: -3px; right: -3px; top: 55%;
  height: 2px; background: #e53e3e; border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  transition-delay: 1.2s;
}
body.loaded .hero-v2 .hpf-from .hpf-val::after { transform: scaleX(1); }
.hero-v2 .hpf-dec { font-size: 18px; opacity: 0.7; }
.hero-v2 .hpf-val-new { color: var(--ink); }
.hero-v2 .hpf-val-new::after { display: none; }
.hero-v2 .hpf-arrow {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; color: var(--muted); padding: 0 14px;
  position: relative;
}
.hero-v2 .hpf-arrow-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-dark);
}
.hero-v2 .hpf-arrow svg { overflow: visible; }
.hero-v2 .hpf-arrow-line, .hero-v2 .hpf-arrow-head {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: hv2-draw 0.9s 1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-v2 .hpf-arrow-head { animation-delay: 1.3s; stroke-dasharray: 20; stroke-dashoffset: 20; }
@keyframes hv2-draw { to { stroke-dashoffset: 0; } }
.hero-v2 .hpf-to { position: relative; }
.hero-v2 .hpf-save-pill {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--accent); color: #03130b;
  font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 100px;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 18px -6px rgba(0,210,122,0.45);
  transform: scale(0);
  animation: hv2-pop 0.55s 1.55s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes hv2-pop { to { transform: scale(1); } }

/* — CTA buttons — */
.hero-v2 .hero-cta { margin-bottom: 32px; animation: hv2-lineIn 0.9s 0.65s cubic-bezier(0.16,1,0.3,1) both; }
.hero-v2 .btn-large { transition: transform 0.2s, background 0.2s, box-shadow 0.3s; }
.hero-v2 .btn-large.primary.glow-btn {
  background: var(--ink); color: #fff;
  position: relative;
  box-shadow:
    0 14px 32px -10px rgba(10,10,10,0.35),
    0 0 0 1px rgba(10,10,10,0.6);
}
.hero-v2 .btn-large.primary.glow-btn::before {
  content: ''; position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, #00d27a, #59f0b9, #4796ff, #00d27a);
  background-size: 280% 280%;
  border-radius: inherit;
  z-index: -1;
  opacity: 0.55;
  animation: hv2-cta-glow 5s linear infinite;
  filter: blur(10px);
}
.hero-v2 .btn-large.primary.glow-btn:hover { transform: scale(1.03); }
.hero-v2 .btn-large.primary.glow-btn:hover .btn-arrow { transform: translateX(4px); }
.hero-v2 .btn-large.primary.glow-btn .btn-arrow {
  display: inline-block; transition: transform 0.2s;
}
@keyframes hv2-cta-glow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 280% 50%; }
}
.hero-v2 .btn-large.ghost-dark {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px -4px rgba(10,10,10,0.08);
}
.hero-v2 .btn-large.ghost-dark:hover { background: var(--bg-soft); transform: scale(1.02); }

/* — Trust row — */
.hero-v2 .hero-trust-row {
  margin: 0 auto 56px;
  animation: hv2-lineIn 0.9s 0.75s cubic-bezier(0.16,1,0.3,1) both;
}
.hero.hero-v2 .hero-trust-badge {
  background: rgba(0,210,122,0.08);
  border: 1px solid rgba(0,210,122,0.22);
  color: var(--accent-dark);
}
.hero-v2 .ttb-full { display: inline; }
.hero-v2 .ttb-short { display: none; }

/* — Floating product tickets — */
.hero-v2 .hero-price-showcase {
  margin: 0 auto 64px;
  max-width: 720px;
  animation: hv2-lineIn 0.9s 0.85s cubic-bezier(0.16,1,0.3,1) both;
  position: relative;
}
.hero-v2 .hps-card {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow:
    0 24px 60px -20px rgba(10,10,10,0.12),
    0 6px 18px -8px rgba(10,10,10,0.06);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-v2 .hps-card .hps-name { color: var(--ink); }
.hero-v2 .hps-card .hps-period { color: var(--muted); }
.hero-v2 .hps-card .hps-old { color: var(--muted-2); }
.hero-v2 .hps-card .hps-new { color: var(--ink); }
.hero-v2 .hps-card .hps-save {
  background: var(--accent-soft); color: var(--accent-dark);
}
.hero-v2 .hps-card .hps-btn {
  background: var(--ink); color: #fff;
}
.hero-v2 .hps-card .hps-btn:hover { background: #1f1f1f; transform: scale(1.04); }
.hero-v2 .hps-tilt-l { transform: rotate(-1deg); }
.hero-v2 .hps-tilt-r { transform: rotate(1deg); }
.hero-v2 .hps-tilt-l:hover, .hero-v2 .hps-tilt-r:hover { transform: rotate(0) translateY(-4px); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }
.hero-v2 .hps-flag {
  margin-left: auto;
  font-size: 16px;
  filter: drop-shadow(0 0 6px rgba(255,180,0,0.35));
}
.hero-v2 .hps-glow {
  position: absolute;
  top: -40%; left: -20%;
  width: 140%; height: 70%;
  background: radial-gradient(circle at 50% 0%, rgba(0,210,122,0.10), transparent 60%);
  pointer-events: none;
  opacity: 0.85;
}
.hero-v2 .hps-card:nth-child(2) .hps-glow {
  background: radial-gradient(circle at 50% 0%, rgba(255,80,80,0.08), transparent 60%);
}

/* — Brand strip — */
.hero-v2 .hero-brands {
  margin: 0 auto 40px;
  max-width: 900px;
  animation: hv2-lineIn 0.9s 0.95s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-v2 .hb-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.hero-v2 .hb-strip {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.hero-v2 .hb-track {
  display: flex; gap: 10px;
  width: max-content;
  animation: hv2-marquee 38s linear infinite;
}
.hero-v2 .hb-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px; color: var(--ink); font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px -4px rgba(10,10,10,0.08);
}
.hero-v2 .hb-item:hover {
  border-color: rgba(0,210,122,0.4);
  transform: translateY(-1px);
}
.hero-v2 .hb-item img,
.hero-v2 .hb-item .hb-svg { width: 14px; height: 14px; object-fit: contain; flex-shrink: 0; }
@keyframes hv2-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* — Scroll hint — */
.hero-v2 .scroll-hint { display: flex; justify-content: center; }
.hero.hero-v2 .scroll-hint-arrow { border-color: var(--border-strong); }

/* — Mobile — */
@media (max-width: 700px) {
  .hero.hero-v2 .hero-inner { padding: 110px 16px 60px; }
  .hero-v2 .hero-live-chip { font-size: 11px; padding: 6px 12px; gap: 7px; flex-wrap: wrap; justify-content: center; max-width: 92%; }
  .hero-v2 .hlc-sep { display: none; }
  .hero.hero-v2 h1.hero-headline { font-size: clamp(30px, 9vw, 44px); margin-bottom: 16px; }
  .hero-v2 .kinetic-rotator { min-width: 200px; height: 1.1em; }
  .hero.hero-v2 .hero-sub { font-size: 14px; line-height: 1.6; margin-bottom: 22px; }
  .hero-v2 .hero-price-flash { width: 100%; max-width: 320px; padding: 12px 14px 14px; }
  .hero-v2 .hpf-row { flex-direction: column; gap: 8px; }
  .hero-v2 .hpf-from, .hero-v2 .hpf-to { padding: 8px 12px; width: 100%; flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; }
  .hero-v2 .hpf-from { border-right: none; border-bottom: 1px dashed var(--border-strong); }
  .hero-v2 .hpf-val { font-size: 22px; }
  .hero-v2 .hpf-arrow { transform: rotate(90deg); padding: 0; }
  .hero-v2 .hpf-arrow-label { display: none; }
  .hero-v2 .hpf-save-pill { top: -8px; right: -6px; }
  .hero-v2 .hero-cta { margin-bottom: 24px; }
  .hero-v2 .hero-trust-row {
    margin-bottom: 36px;
    flex-wrap: nowrap;
    gap: 5px;
    width: 100%;
    justify-content: center;
  }
  .hero.hero-v2 .hero-trust-badge {
    font-size: 10.5px;
    padding: 4px 7px;
    gap: 4px;
    flex-shrink: 1;
    white-space: nowrap;
    min-width: 0;
  }
  .hero.hero-v2 .hero-trust-badge svg { width: 11px; height: 11px; flex-shrink: 0; }
  .hero-v2 .ttb-full { display: none; }
  .hero-v2 .ttb-short { display: inline; }
  .hero-v2 .hero-price-showcase { margin-bottom: 40px; }
  .hero-v2 .hps-tilt-l, .hero-v2 .hps-tilt-r { transform: none; }
  .hero-v2 .hero-grid { background-size: 36px 36px; }
  .hero-v2 .hero-aurora.a-1 { width: 460px; height: 460px; top: -140px; }
  .hero-v2 .hero-aurora.a-2 { width: 340px; height: 340px; right: -120px; }
  .hero-v2 .hero-aurora.a-3 { width: 300px; height: 300px; }
  .hero-v2 .scroll-hint { display: none; }
}
