/* ==========================================================================
   Kisnip — v2 landing (voice-first). White canvas, dark-green accent brand.
   Fully self-contained; only borrows the Inter font from base.css.
   ========================================================================== */

.v2 {
  /* Brand: dark green accent on a white canvas */
  --green: #0f5132;         /* dark green — primary accent brand */
  --green-strong: #0a3d26;  /* hover / emphasis */
  --green-bright: #12854f;  /* lively green for small highlights */
  --green-soft: #eef6f1;    /* very light green tint surfaces */
  --green-line: #d5e6dc;

  --ink: #0c1512;
  --body: #34433d;
  --muted: #6b7c73;
  --line: #e7ece9;
  --white: #ffffff;
  --paper: #f7faf8;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --shadow-sm: 0 1px 2px rgba(12, 21, 18, .06), 0 6px 20px rgba(12, 21, 18, .05);
  --shadow-lg: 0 30px 70px rgba(10, 61, 38, .16);

  background: var(--white);
  color: var(--body);
  font-family: var(--font, "Inter", system-ui, sans-serif);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.v2 ::selection { background: var(--green); color: #fff; }
.v2 .container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 28px; }
.v2 h1, .v2 h2, .v2 h3 { color: var(--ink); letter-spacing: -0.03em; line-height: 1.07; margin: 0; }
.v2 p { margin: 0; }
.v2 a { color: inherit; text-decoration: none; }

.v2-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); background: var(--green-soft);
  padding: 7px 13px; border-radius: 999px; border: 1px solid var(--green-line);
}

/* ---------- Buttons ---------- */
.v2-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: 0.96rem; font-weight: 600; line-height: 1;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .14s ease, background .18s ease, box-shadow .2s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.v2-btn:active { transform: translateY(1px); }
.v2 .v2-btn-primary { background: var(--green); color: #fff; }
.v2 .v2-btn-primary:hover { background: var(--green-strong); box-shadow: 0 12px 30px rgba(15, 81, 50, .28); transform: translateY(-1px); }
.v2 .v2-btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.v2 .v2-btn-outline:hover { border-color: var(--green); color: var(--green); }
.v2-btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.v2-btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.v2-btn-block { width: 100%; }

/* ---------- Nav ---------- */
.v2-nav {
  position: sticky; top: 0; z-index: 60; height: 74px; display: flex; align-items: center;
  border-bottom: 1px solid var(--line);
}
/* Blur lives on a pseudo layer so the nav isn't a backdrop root that disables descendant blur (e.g. the language menu). */
.v2-nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,.82); -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px);
}
.v2-nav .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.v2-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.28rem; color: var(--ink); letter-spacing: -0.03em; }
.v2-brand-logo { height: 44px; width: auto; display: block; }
.v2-brand .mark { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: var(--green); color: #fff; }
.v2-brand .mark svg { width: 17px; height: 17px; }
.v2-nav-links { display: flex; align-items: center; gap: 34px; justify-content: center; }
.v2-nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--muted); transition: color .15s ease; }
.v2-nav-links a:hover { color: var(--ink); }
.v2-nav-links .v2-nav-login-m { display: none; }
.v2-nav-cta { display: flex; align-items: center; gap: 12px; justify-self: end; }
.v2-nav-cta .v2-login { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.v2-nav-toggle { display: none; background: transparent; border: 0; color: var(--ink); cursor: pointer; padding: 6px; }

/* ---------- Language switcher ---------- */
.v2-lang { position: relative; }
.v2-lang-btn {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  font: inherit; font-size: 0.86rem; font-weight: 600; padding: 7px 10px; border-radius: 999px;
  transition: border-color .15s ease, background .15s ease;
}
.v2-lang-btn:hover { border-color: var(--green-line); background: var(--green-soft); }
.v2-lang-caret { color: var(--muted); margin-left: 1px; transition: transform .18s ease; }
.v2-lang.open .v2-lang-caret { transform: rotate(180deg); }
.v2-flag { border-radius: 50%; object-fit: cover; flex: none; display: block; }
.v2-lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60; min-width: 96px;
  background: rgba(255,255,255,.82); -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px); border: 1px solid var(--line); border-radius: 18px; padding: 6px;
  box-shadow: 0 14px 34px rgba(12, 21, 18, .12);
  opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.v2-lang.open .v2-lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.v2-lang-menu button + button { margin-top: 2px; }
.v2-lang-menu button {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; cursor: pointer;
  background: transparent; border: 0; color: var(--ink);
  font: inherit; font-size: 0.9rem; font-weight: 500; padding: 8px 12px; border-radius: 999px;
  transition: background .12s ease;
}
.v2-lang-menu button:hover { background: var(--green-soft); }
.v2-lang-menu button.active { color: var(--ink); font-weight: 700; }
.v2-lang-menu button.active::after { content: ""; margin-left: auto; flex: none; width: 15px; height: 15px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat; }

/* ---------- Features dropdown (nav) ---------- */
.v2-nav-dd { position: relative; }
.v2-nav-dd-btn {
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
  background: transparent; border: 0; color: var(--muted);
  font: inherit; font-size: 0.95rem; font-weight: 500; padding: 0;
  transition: color .15s ease;
}
.v2-nav-dd-btn:hover { color: var(--ink); }
.v2-nav-dd-caret { color: var(--muted); transition: transform .18s ease; }
.v2-nav-dd:hover .v2-nav-dd-caret,
.v2-nav-dd.open .v2-nav-dd-caret { transform: rotate(180deg); }
.v2-nav-dd-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; z-index: 60; min-width: 300px;
  background: rgba(255,255,255,.82); -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px); border: 1px solid var(--line); border-radius: 24px; padding: 8px;
  box-shadow: 0 14px 34px rgba(12, 21, 18, .12);
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.v2-nav-dd-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.v2-nav-dd:hover .v2-nav-dd-menu,
.v2-nav-dd.open .v2-nav-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.v2-nav-dd-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 16px; transition: background .12s ease; }
.v2-nav-dd-item:hover { background: var(--green-soft); }
.v2-nav-dd-item::after { content: ""; flex: none; margin-left: auto; width: 16px; height: 16px; background-color: var(--muted); -webkit-mask: center / 16px 16px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E"); mask: center / 16px 16px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E"); opacity: .5; transition: transform .12s ease, opacity .12s ease, background-color .12s ease; }
.v2-nav-dd-item:hover::after { opacity: 1; background-color: var(--green); transform: translateX(2px); }
.v2-nav-dd-ico { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--green-soft); color: var(--green); }
.v2-nav-dd-item:hover .v2-nav-dd-ico { background: #fff; }
.v2-nav-dd-ico svg { width: 18px; height: 18px; }
.v2-nav-dd-txt { display: flex; flex-direction: column; gap: 2px; }
.v2-nav-dd-txt strong { font-size: 0.92rem; font-weight: 650; color: var(--ink); }
.v2-nav-dd-txt em { font-size: 0.82rem; font-style: normal; color: var(--muted); line-height: 1.35; }
.v2-nav-dd-all { display: block; margin-top: 4px; padding: 8px 12px; text-align: center; border-top: 1px solid var(--line); font-size: 0.86rem; font-weight: 500; color: var(--muted); border-radius: 0 0 16px 16px; transition: color .12s ease; }
.v2-nav-dd-all:hover { color: var(--green); }
/* Header-integrated full-width mega menu for long dropdowns (e.g. "For") */
.v2-nav-dd--mega { align-self: stretch; display: flex; align-items: center; }
.v2-nav-dd--mega .v2-nav-dd-btn { height: 74px; }
.v2-nav-dd-menu--mega {
  position: fixed; top: 74px; left: 0; right: 0; width: auto; min-width: 0;
  transform: translateY(-8px);
  background: rgba(255,255,255,.82);
  border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
  box-shadow: 0 26px 40px rgba(12,21,18,.10);
  padding: 26px 0;
}
.v2-nav-dd-menu--mega::before { display: none; }
.v2-nav-dd:hover .v2-nav-dd-menu--mega,
.v2-nav-dd.open .v2-nav-dd-menu--mega { transform: translateY(0); }
.v2-mega-inner {
  width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 14px;
}
.v2-nav-dd-menu--mega .v2-nav-dd-all {
  grid-column: 1 / -1; text-align: left; padding: 10px 12px 4px;
  border-top: 1px solid var(--line); border-radius: 0; margin-top: 8px;
}

/* Multi-column card dropdown (compact alternative to the full-width mega) */
.v2-nav-dd-menu--grid { min-width: 600px; }
.v2-nav-dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 6px; }

/* ---------- Hero (centered) ---------- */
.v2-hero { position: relative; padding: 86px 0 96px; text-align: center; }
.v2-hero::before {
  content: ""; position: absolute; left: 50%; top: 30px; transform: translateX(-50%);
  width: 640px; height: 640px; max-width: 92vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(18,133,79,.12), transparent 62%);
  pointer-events: none; z-index: 0;
}
.v2-hero .container { position: relative; z-index: 1; }
.v2-hero h1 { font-size: clamp(2.7rem, 5.6vw, 4.4rem); font-weight: 800; max-width: 980px; margin: 22px auto 20px; }
.v2-hero h1 .u { color: var(--green); position: relative; white-space: nowrap; }
.v2-hero h1 .u::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 11px; background: var(--green-soft); z-index: -1; border-radius: 4px; }
.v2-hero .v2-hero-lead { font-size: 1.22rem; color: var(--body); max-width: 620px; margin: 0 auto 32px; line-height: 1.6; text-align: center; }
.v2-hero-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.v2-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.v2-hero-mini { margin-top: 26px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--muted); font-size: 0.9rem; flex-wrap: wrap; }
.v2-hero-mini .stars { color: var(--green-bright); letter-spacing: 2px; }
.v2-hero-mini .sep { width: 1px; height: 16px; background: var(--line); }
.v2-trust-mini { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 6px; color: var(--green); font-weight: 600; text-decoration: none; }
.v2-trust-mini:link, .v2-trust-mini:visited, .v2-trust-mini:hover, .v2-trust-mini:focus-visible { color: var(--green); }
.v2-trust-mini span[data-i18n]:not(.v2-trust-tip) { text-underline-offset: 2px; }
.v2-trust-mini:hover span[data-i18n]:not(.v2-trust-tip), .v2-trust-mini:focus-visible span[data-i18n]:not(.v2-trust-tip) { text-decoration: underline; }
.v2-trust-mini svg { color: var(--green); flex: 0 0 auto; }
.v2-cta-box .v2-trust-mini, .v2-cta-box .v2-trust-mini:link, .v2-cta-box .v2-trust-mini:visited, .v2-cta-box .v2-trust-mini:hover, .v2-cta-box .v2-trust-mini svg { color: #fff; }
.v2-trust-tip { position: absolute; top: calc(100% + 10px); left: 50%; width: max-content; max-width: 250px; transform: translateX(-50%) translateY(-4px); padding: 10px 13px; border-radius: 12px; background: #fff; color: var(--body); border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(10,61,38,.18); font-size: 0.8rem; font-weight: 500; line-height: 1.45; text-align: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s; z-index: 30; }
.v2-trust-tip::after { content: ""; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-bottom-color: #fff; }
.v2-trust-mini:hover .v2-trust-tip, .v2-trust-mini:focus-visible .v2-trust-tip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); transition: opacity .16s ease, transform .16s ease, visibility 0s; }

/* Works-with logo strip (above hero demo) */
.v2-works { margin-top: 30px; display: flex; flex-direction: column; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.v2-works-label { color: var(--muted); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.v2-works-logos { list-style: none; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 30px; padding: 0; margin: 0; }
.v2-works-logos li { display: inline-flex; }
.v2-works-logos a { display: inline-flex; }
.v2-works-logos img { height: 23px; width: auto; opacity: .9; filter: brightness(0) invert(0.62); transition: opacity .18s ease, filter .18s ease; }
.v2-works-logos li:hover img { opacity: 1; filter: none; }
.v2-works-light .v2-works-logos img { opacity: .85; filter: brightness(0) invert(1); }
.v2-works-light .v2-works-logos li:hover img { opacity: 1; filter: none; }

/* Review badge (replaces the builder logos): avatars + fractional-star rating.
   Hidden until JS confirms there is at least one approved review. Shares the
   SVG star + rating-mini design used on the reviews-preview page. */
.v2-rev { margin-top: 30px; display: flex; justify-content: center; }
.v2-rev[hidden] { display: none; }
.v2-rev-card { display: inline-flex; align-items: center; gap: 12px; }
a.v2-rev-card { text-decoration: none; color: inherit; border-radius: 12px; transition: opacity .35s ease; }
a.v2-rev-card:hover { opacity: .75; }
.v2-rev-avatars { display: inline-flex; padding: 4px 0; margin: -4px 0; }
.v2-rev-av { position: relative; width: 36px; height: 36px; border-radius: 50%; margin-left: -10px; border: 2px solid var(--white); background: var(--green-soft); color: var(--green); display: inline-flex; align-items: center; justify-content: center; font-size: 0.74rem; font-weight: 700; box-shadow: 0 1px 2px rgba(12, 21, 18, .1); }
.v2-rev-av:first-child { margin-left: 0; }
/* When there are more reviews than shown, fade the trailing avatar to imply more */
.v2-rev-avatars.is-more { -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 42px), transparent); mask-image: linear-gradient(90deg, #000 calc(100% - 42px), transparent); }

/* Reusable SVG star rating with honest fractional fill (--rating 0-5). One
   element, masked by 5 tiled star shapes; brand-colored via --fill/--empty. */
.v2-stars {
  --pct: calc(var(--rating, 0) / 5 * 100%);
  --star: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.6l2.9 5.88 6.49.94-4.7 4.58 1.11 6.46L12 17.9l-5.8 3.05 1.11-6.46-4.7-4.58 6.49-.94L12 2.6Z'/%3E%3C/svg%3E");
  display: inline-block; vertical-align: middle;
  width: 5em; height: 1em; font-size: 18px;
  background: linear-gradient(90deg,
    var(--fill, var(--green-bright)) var(--pct),
    var(--empty, var(--green-line)) var(--pct));
  -webkit-mask: var(--star) left center / 1em 1em repeat-x;
          mask: var(--star) left center / 1em 1em repeat-x;
}
.v2-stars.sm { font-size: 15px; }
.v2-stars.md { font-size: 18px; }
.v2-stars.lg { font-size: 26px; }

/* Compact rating badge: stars + bold score + muted count */
.v2-rating-mini { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--body); white-space: nowrap; }
.v2-rating-mini .score { font-weight: 800; color: var(--green-strong); font-variant-numeric: tabular-nums; }
.v2-rating-mini .count { color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* On the dark-green CTA box, invert for contrast. Fill + ring must be opaque so
   overlapping avatars don't show through each other. */
.v2-cta-box .v2-rev-av { border-color: var(--green-strong); background: #356d53; color: #fff; }
.v2-cta-box .v2-stars { --fill: #7bd6a6; --empty: rgba(255, 255, 255, .28); }
.v2-cta-box .v2-rating-mini { color: rgba(255, 255, 255, .85); }
.v2-cta-box .v2-rating-mini .score { color: #fff; }
.v2-cta-box .v2-rating-mini .count { color: rgba(255, 255, 255, .7); }

/* Same inversion when the badge sits inside a dark pricing band. */
.v2-priceband.dark .v2-rev-av { border-color: var(--green-strong); background: #356d53; color: #fff; }
.v2-priceband.dark .v2-stars { --fill: #7bd6a6; --empty: rgba(255, 255, 255, .28); }
.v2-priceband.dark .v2-rating-mini { color: rgba(255, 255, 255, .85); }
.v2-priceband.dark .v2-rating-mini .score { color: #fff; }
.v2-priceband.dark .v2-rating-mini .count { color: rgba(255, 255, 255, .7); }

/* Detailed skeleton: the 5 avatar circles and 5 stars are always rendered.
   On load the stars fill up (animated --rating) and the initials pop into their
   circles; the count fades in while counting up. No reviews yet -> a single
   empty circle with a 0.0 rating; only a failed fetch collapses the badge.
   --rating is registered so the gradient fill can transition. */
@property --rating { syntax: "<number>"; inherits: false; initial-value: 0; }
.v2-stars { transition: --rating .35s cubic-bezier(.2, .7, .2, 1); }
.v2-sk { background: linear-gradient(100deg, var(--green-soft) 30%, #f5faf7 50%, var(--green-soft) 70%); background-size: 200% 100%; animation: v2-sk-shine 1.25s ease-in-out infinite; }
.v2-sk-bar { height: 12px; border-radius: 6px; display: inline-block; vertical-align: middle; }
.v2-sk-text { width: 116px; }
.v2-sk-text[hidden] { display: none; }
/* While loading, drop the empty score/count so their flex gaps don't push the
   skeleton bar right - it sits straight after the stars, over the average. */
.v2-rev[aria-busy="true"] .score, .v2-rev[aria-busy="true"] .count { display: none; }
@keyframes v2-sk-shine { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.v2-rev-ini { display: inline-block; animation: v2-ini-pop .35s cubic-bezier(.34, 1.3, .5, 1) both; }
@keyframes v2-ini-pop { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }
.v2-num-in { animation: v2-num-fade .35s ease both; }
@keyframes v2-num-fade { from { opacity: 0; } to { opacity: 1; } }
.v2-cta-box .v2-sk { background: linear-gradient(100deg, rgba(255, 255, 255, .14) 30%, rgba(255, 255, 255, .3) 50%, rgba(255, 255, 255, .14) 70%); background-size: 200% 100%; }
.v2-priceband.dark .v2-sk { background: linear-gradient(100deg, rgba(255, 255, 255, .14) 30%, rgba(255, 255, 255, .3) 50%, rgba(255, 255, 255, .14) 70%); background-size: 200% 100%; }
@media (prefers-reduced-motion: reduce) { .v2-sk { animation: none; } .v2-rev-ini { animation: none; } .v2-stars { transition: none; } .v2-num-in { animation: none; } }

/* Feature-page hero: compact left-aligned title block */
.v2-hero-title { text-align: left; padding: 64px 0 44px; }
.v2-hero-title .v2-tag { margin-left: 0; }
.v2-hero-title h1 { margin: 18px 0 16px; max-width: 760px; }
.v2-hero-title .v2-hero-lead { margin: 0; text-align: left; max-width: 620px; }

/* Website-to-start field (hero + end CTA) */
.v2-start { display: flex; gap: 10px; flex-wrap: nowrap; justify-content: center; width: 100%; max-width: 440px; }
.v2-start-field { display: flex; align-items: center; gap: 10px; flex: 1 1 auto; min-width: 0; padding: 5px 5px 5px 22px; background: #fff; border: 1.5px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm); transition: border-color .16s ease, box-shadow .16s ease; text-align: left; }
.v2-start-field:focus-within { border-color: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.v2-start-globe { display: inline-flex; color: var(--muted); flex: 0 0 auto; }
.v2-start-input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font-family: inherit; font-size: 1.02rem; color: var(--body); padding: 13px 0; }
.v2-start-input::placeholder { color: var(--muted); }
.v2-start-btn { flex: 0 0 auto; white-space: nowrap; border-radius: 999px; padding: 13px 26px; }
@media (max-width: 480px) { .v2-start-field { padding-left: 16px; } .v2-start-btn { padding: 12px 18px; } .v2-start-input { font-size: 0.95rem; } }
/* Very narrow phones: stack the text-button start field into full-width rows for
   comfortable tap targets (the demo field's round button variant is untouched). */
@media (max-width: 430px) {
  .v2-start:has(.v2-start-btn) .v2-start-field { flex-wrap: wrap; border-radius: 24px; padding: 8px 8px 8px 18px; }
  .v2-start:has(.v2-start-btn) .v2-start-input { flex-basis: calc(100% - 34px); padding: 9px 0; }
  .v2-start:has(.v2-start-btn) .v2-start-btn { flex: 1 0 100%; padding: 14px 20px; }
}

/* ---------- Section shells ---------- */
.v2-section { padding: 98px 0; }
.v2-section.tint { background: var(--paper); }
.v2-head { max-width: 640px; margin: 0 auto 54px; text-align: center; }
.v2-head h2 { font-size: clamp(2.1rem, 3.8vw, 3rem); font-weight: 800; margin: 16px 0 14px; }
.v2-head h1 { font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.12; margin: 16px 0 14px; overflow-wrap: break-word; hyphens: auto; }
.v2-head p { font-size: 1.12rem; color: var(--muted); line-height: 1.55; }
.v2-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.v2-split-head { position: sticky; top: 100px; }
.v2-split-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.15; margin: 14px 0 22px; }
.v2-split-head h1 { font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.12; margin: 14px 0 22px; overflow-wrap: break-word; hyphens: auto; }
.v2-split-head p { font-size: 1.08rem; color: var(--body); line-height: 1.7; margin: 0 0 18px; }
.v2-split-head p:last-child { margin-bottom: 0; }
.v2-back-link { display: flex; width: max-content; align-items: center; gap: 7px; margin-bottom: 18px; color: var(--muted); font-weight: 600; font-size: .92rem; text-decoration: none; }
.v2-back-link svg { transition: transform .18s ease; }
.v2-back-link:hover { color: var(--green); }
.v2-back-link:hover svg { transform: translateX(-3px); }
.v2-caplist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.v2-caplist li { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 22px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.v2-caplist li:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(15, 81, 50, 0.08); border-color: var(--green-line); }
.v2-caplist-ico { flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; }
.v2-caplist-ico svg { width: 20px; height: 20px; }
.v2-caplist strong { display: block; font-size: 1.05rem; font-weight: 700; margin-bottom: 3px; }
.v2-caplist span { color: var(--muted); font-size: 0.97rem; line-height: 1.55; }
@media (max-width: 860px) { .v2-split { grid-template-columns: 1fr; gap: 34px; } .v2-split > * { min-width: 0; } .v2-split-head { position: static; } }

/* ---------- Bento feature grid ---------- */
.v2-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.v2-cell {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; transition: transform .16s ease, box-shadow .2s ease, border-color .16s ease;
}
.v2-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--green-line); }
.v2-cell.span3 { grid-column: span 3; }
.v2-cell.span2 { grid-column: span 2; }
.v2-cell .ico { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px; background: var(--green-soft); color: var(--green); }
.v2-cell .ico svg { width: 25px; height: 25px; }
.v2-cell h3 { font-size: 1.2rem; margin-bottom: 9px; }
.v2-cell p { font-size: 0.98rem; color: var(--muted); line-height: 1.55; }
.v2-cell.feature-hero { background: linear-gradient(160deg, var(--green), var(--green-strong)); border-color: transparent; color: #fff; }
.v2-cell.feature-hero h3 { color: #fff; font-size: 1.5rem; }
.v2-cell.feature-hero p { color: rgba(255,255,255,.82); }
.v2-cell.feature-hero .ico { background: rgba(255,255,255,.16); color: #fff; }
.v2-cell-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.95rem; font-weight: 600; text-decoration: none; color: var(--green); }
.v2-cell-link svg { transition: transform .16s ease; }
.v2-cell-link:hover svg { transform: translateX(3px); }
.v2-cell.feature-hero .v2-cell-link { color: #fff; }
a.v2-cell { display: block; text-decoration: none; color: inherit; }
a.v2-cell:hover .v2-cell-link svg { transform: translateX(3px); }
.v2-cell.v2-cell-cta { background: var(--green-soft); border-color: var(--green-line); }
.v2-cell.v2-cell-cta .ico { background: #fff; }

/* ---------- Steps (horizontal, connected) ---------- */
.v2-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.v2-steps::before { content: ""; position: absolute; top: 26px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--green-line), var(--green-line)); z-index: 0; }
.v2-step { position: relative; z-index: 1; text-align: center; }
.v2-step .num { width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; background: var(--green); color: #fff; box-shadow: 0 0 0 6px #fff, 0 8px 20px rgba(15,81,50,.24); }
.v2-step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.v2-step p { font-size: 0.95rem; color: var(--muted); line-height: 1.5; }
.v2-steps.cols-3 { grid-template-columns: repeat(3, 1fr); }
.v2-steps.cols-3::before { left: 16.7%; right: 16.7%; }

/* Steps — card variant (feature pages) */
.v2-steps.v2-steps-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v2-steps.v2-steps-cards::before { display: none; }
.v2-steps-cards .v2-step { text-align: left; padding: 34px 30px 30px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; overflow: hidden; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.v2-steps-cards .v2-step:hover { border-color: var(--green-line); transform: translateY(-4px); box-shadow: 0 16px 34px rgba(12, 21, 18, .08); }
.v2-steps-cards .num { width: auto; height: auto; margin: 0 0 20px; border-radius: 0; display: inline-flex; align-items: baseline; font-size: 2.4rem; line-height: 1; font-weight: 800; letter-spacing: -1px; background: none; color: var(--green); box-shadow: none; }
.v2-steps-cards .num::before { content: "0"; opacity: .35; }
.v2-steps-cards .v2-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.v2-steps-cards .v2-step p { font-size: 0.95rem; color: var(--muted); line-height: 1.5; }

/* ---------- Live demo strip ---------- */
.v2-try { max-width: 620px; margin: 0 auto; text-align: center; padding: 46px 40px; border: 1px solid var(--green-line); border-radius: var(--r-lg); background: radial-gradient(560px 240px at 50% -40px, var(--green-soft), transparent 70%), #fff; }
.v2-try-icon { width: 62px; height: 62px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--green); box-shadow: 0 0 0 0 rgba(47,174,111,.45); animation: tryPulse 2.4s ease-out infinite; }
.v2-try-icon svg { width: 28px; height: 28px; }
@keyframes tryPulse { 0% { box-shadow: 0 0 0 0 rgba(47,174,111,.4); } 70% { box-shadow: 0 0 0 18px rgba(47,174,111,0); } 100% { box-shadow: 0 0 0 0 rgba(47,174,111,0); } }
.v2-try h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; margin: 14px 0 12px; }
.v2-try p { color: var(--muted); font-size: 1.05rem; line-height: 1.55; max-width: 460px; margin: 0 auto; }

/* ---------- Use cases ---------- */
.v2-uses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.v2-use { display: flex; gap: 15px; align-items: flex-start; padding: 30px; }
.v2-use-ico { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--green-soft); color: var(--green); }
.v2-use-ico svg { width: 21px; height: 21px; }
.v2-use h3 { font-size: 1.05rem; margin-bottom: 5px; }
.v2-use p { font-size: 0.95rem; color: var(--muted); line-height: 1.5; margin: 0; }

/* ---------- Stat band (dark green accent block) ---------- */
.v2-band { background: var(--paper); color: var(--body); border-block: 1px solid var(--line); }
.v2-band .container { padding-block: 68px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.v2-stat .n { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; color: var(--green); }
.v2-stat .l { color: var(--muted); font-size: 1rem; margin-top: 6px; }
.v2-ticker { width: 100%; max-width: 1200px; margin-inline: auto; padding: 30px 28px; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.v2-ticker-track { display: flex; width: max-content; align-items: center; animation: v2-ticker 34s linear infinite; }
.v2-ticker:hover .v2-ticker-track { animation-play-state: paused; }
.v2-ticker .v2-stat { display: inline-flex; align-items: baseline; gap: 10px; white-space: nowrap; text-align: center; padding: 0 92px; border-right: 1px solid var(--green-line); }
.v2-ticker .v2-stat .n { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; color: var(--green); }
.v2-ticker .v2-stat .l { color: var(--muted); font-size: 1.05rem; margin: 0; }
@keyframes v2-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .v2-ticker-track { animation: none; } }
.v2-demo-stage .v2-ticker.v2-ticker-ondark { width: 100%; max-width: 100%; margin: 2px 0 0; padding: 40px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.v2-ticker-ondark .v2-stat { padding: 0 54px; border-right-color: rgba(255, 255, 255, 0.22); }
.v2-ticker-ondark .v2-stat .n { font-size: 1.5rem; color: #fff; }
.v2-ticker-ondark .v2-stat .l { font-size: 0.85rem; color: rgba(255, 255, 255, 0.72); }

/* ---------- Live demo ---------- */
.v2-demo-stage { position: relative; display: grid; place-items: center; gap: 22px; padding: 40px 16px; border-radius: 28px; border: 1px solid var(--green-line); background: radial-gradient(720px 340px at 50% -60px, rgba(18,133,79,.20), transparent 60%), var(--green-soft); box-shadow: var(--shadow-sm); }
.v2-hero-demo { margin: 48px auto 0; max-width: none; }
.v2-demo-col { position: relative; width: 100%; max-width: 400px; min-height: 500px; }
.v2-demo-frame { width: 100%; max-width: 400px; height: 500px; }
/* Once the card stacks above the frame (≤760px), grow the frame so the centered
   widget panel keeps a gap below the card instead of crowding it. */
@media (max-width: 760px) { .v2-demo-frame { height: 520px; } }

/* ---------- "Watch" button + trailer popup ---------- */
.v2-hero-watch-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 24px; }
.v2-hero-or { display: flex; align-items: center; gap: 14px; width: 100%; color: var(--muted); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.v2-hero-or::before, .v2-hero-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.v2-hero-watch { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border: 1.5px solid var(--line); border-radius: 999px; background: #fff; color: var(--green-strong); font: inherit; font-size: .95rem; font-weight: 600; cursor: pointer; transition: border-color .16s ease, box-shadow .18s ease, transform .14s ease; }
.v2-hero-watch:hover { border-color: var(--green); box-shadow: 0 8px 20px rgba(15,81,50,.14); transform: translateY(-1px); }
.v2-hero-watch svg { flex: 0 0 auto; }
.v2-hero-watch-wrap-cta { margin-top: 40px; }
.v2-feat-watch { margin-top: 22px; }
.v2-video-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px; }
.v2-video-modal[hidden] { display: none; }
.v2-video-modal-backdrop { position: absolute; inset: 0; background: rgba(8, 20, 14, .72); backdrop-filter: blur(4px); animation: v2VideoFade .2s ease; }
.v2-video-modal-dialog { position: relative; width: min(960px, 100%); aspect-ratio: 16 / 9; animation: v2VideoIn .24s cubic-bezier(.2,.8,.2,1); }
.v2-video-modal-dialog video { width: 100%; height: 100%; display: block; border-radius: 16px; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.v2-video-modal-close { position: absolute; top: -14px; right: -14px; width: 40px; height: 40px; border-radius: 50%; border: 0; background: #fff; color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.3); transition: transform .14s ease; }
.v2-video-modal-close:hover { transform: scale(1.06); }
@keyframes v2VideoFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes v2VideoIn { from { opacity: 0; transform: scale(.96) translateY(8px); } to { opacity: 1; transform: none; } }
@media (max-width: 520px) { .v2-video-modal-close { top: 8px; right: 8px; } }

/* Website input built into the stage — a small "try it with your own site" card
   floating in the top-left corner, with the submit button embedded in the field. */
.v2-demo-bar { position: absolute; top: 8px; right: calc(100% + 16px); left: auto; z-index: 5; width: min(340px, calc(50vw - 260px)); text-align: left; }
.v2-demo-card { background: linear-gradient(160deg, var(--green), var(--green-strong)); border-radius: 28px; padding: 18px; box-shadow: 0 14px 36px rgba(0,0,0,.18); }
.v2-demo-bar .v2-demo-bar-label { margin: 0 0 9px; color: #fff; font-size: 0.84rem; font-weight: 700; line-height: 1.3; }
.v2-demo-bar .v2-demo-bar-note { margin: -4px 0 11px; color: rgba(255,255,255,.82); font-size: 0.8rem; font-weight: 500; line-height: 1.4; }
.v2-demo-start { max-width: none; margin: 0; }
.v2-demo-card .v2-demo-divider { display: block; height: 1px; margin: 14px 0 0; background: rgba(255,255,255,.18); }
.v2-demo-card .v2-demo-consent { margin: 12px 2px 0; color: rgba(255,255,255,.72); font-size: 0.68rem; line-height: 1.45; font-weight: 500; text-align: left; }
.v2-demo-card .v2-demo-consent a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.v2-demo-card .v2-demo-consent a:hover { color: rgba(255,255,255,.85); }
.v2-demo-start .v2-start-field { padding: 3px 3px 3px 14px; box-shadow: none; }
.v2-demo-start .v2-start-input { font-size: 0.9rem; padding: 9px 0; }
.v2-demo-btn { position: relative; flex: 0 0 auto; width: 34px; height: 34px; padding: 0; border: 0; border-radius: 50%; display: grid; place-items: center; cursor: pointer; background: var(--green); color: #fff; transition: background .16s ease, transform .16s ease; }
.v2-demo-btn svg { animation: demoIconIn .16s ease; transition: opacity .16s ease, transform .16s ease; }
@keyframes demoIconIn { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: none; } }
.v2-demo-btn:hover { background: var(--green-strong); }
.v2-demo-btn:disabled { cursor: default; transform: none; }
.v2-demo-btn.is-loading svg { opacity: 0; transform: scale(.6); }
.v2-demo-btn::after { content: ""; position: absolute; width: 15px; height: 15px; border-radius: 50%; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; opacity: 0; pointer-events: none; transition: opacity .16s ease; animation: demoSpin .7s linear infinite; }
.v2-demo-btn.is-loading::after { opacity: 1; }
@keyframes demoSpin { to { transform: rotate(360deg); } }
/* On narrow screens the card would cover the widget, so drop it back in flow
   above the frame. */
@media (max-width: 760px) {
  .v2-demo-stage { grid-template-columns: minmax(0, 1fr); }
  .v2-demo-bar { position: static; width: 100%; max-width: 384px; margin: 0 auto; }
  .v2-demo-bar.is-docked { display: none; }
}
/* When the demo docks to the bottom of the viewport, the card detaches with it
   and keeps sticking to the docked widget's top-left (panel is bottom-anchored,
   so its top sits 504px above the viewport bottom: 20px gap + 484px vf panel). */
.v2-demo-bar.is-docked {
  position: fixed; top: auto; left: auto;
  right: calc(50% + min(200px, (100vw - 32px) / 2) + 16px);
  bottom: 504px;
  transform: translateY(100%);
  z-index: 1200;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.v2-demo-bar.is-docked.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.v2-demo-bar.is-docked.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Demo widget docking: once the hero stage scrolls out the top of the view, the
   demo detaches and docks bottom-centre like a real embedded widget; scrolling
   back into the stage returns it home. The undocking exit state shares the same
   fixed layout while the launcher slides back down. */
.v2-demo-frame.is-docked,
.v2-demo-frame.is-undocking {
  position: fixed;
  left: 50%;
  bottom: 20px;
  top: auto;
  width: min(400px, calc(100vw - 32px));
  height: 500px;
  max-height: calc(100dvh - 40px);
  margin: 0;
  z-index: 1200;
  transform: translateX(-50%);
  /* Anchor the widget to the bottom so the minimized launcher keeps a proper
     gap from the bottom edge instead of floating in the frame's centre. */
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.v2-demo-frame.is-docked > *,
.v2-demo-frame.is-undocking > * { height: auto !important; }
.v2-demo-frame.is-docked {
  transition: opacity .3s ease;
  /* Frame is click-through; only the widget's pill/panel re-enable pointer events
     (via pointer-events:auto inside the shadow), so the page behind stays usable. */
  pointer-events: none;
}
/* Fade out at the very bottom of the page so it doesn't cover the footer. */
.v2-demo-frame.is-docked.is-hidden { pointer-events: none; }
@keyframes demoDockIn {
  from { transform: translate(-50%, calc(100% + 40px)); opacity: 0; }
  to   { transform: translateX(-50%); opacity: 1; }
}
@keyframes demoDockOut {
  from { transform: translateX(-50%); opacity: 1; }
  to   { transform: translate(-50%, calc(100% + 40px)); opacity: 0; }
}
.v2-demo-frame.is-returning { animation: demoReturnIn .45s cubic-bezier(.2,.8,.2,1); }
@keyframes demoReturnIn {
  from { transform: translateY(28px) scale(.96); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .v2-demo-frame.is-docked, .v2-demo-frame.is-undocking, .v2-demo-frame.is-returning { animation: none; }
}
/* Match the real widget's mobile spacing/size while docked (14px gap, edge-hugging width). */
@media (max-width: 480px) {
  .v2-demo-frame.is-docked,
  .v2-demo-frame.is-undocking {
    bottom: 14px;
    width: min(400px, calc(100vw - 28px));
    max-height: calc(100dvh - 28px);
  }
}

/* ---------- Pricing ---------- */
.v2-billing-bar { position: relative; display: flex; align-items: center; justify-content: center; margin: 0 auto 44px; }
.v2-billing-bar .v2-billing { margin: 0; }
.v2-billing-bar .v2-cur { position: absolute; right: 0; top: 50%; transform: translateY(-50%); z-index: 40; }
.v2-billing-bar .v2-cur-menu { left: auto; right: 0; }
@media (max-width: 620px) {
  .v2-billing-bar { flex-wrap: wrap; gap: 14px; }
  /* Keep the toggle relatively positioned so the dropdown anchors to it (not the
     whole bar); reset the desktop absolute offsets so it flows normally. */
  .v2-billing-bar .v2-cur { position: relative; top: auto; right: auto; transform: none; }
  .v2-billing-bar .v2-cur-menu { left: 50%; right: auto; transform: translateX(-50%) translateY(4px); }
  .v2-billing-bar .v2-cur.open .v2-cur-menu { transform: translateX(-50%) translateY(0); }
}
.v2-billing { display: flex; width: max-content; margin: 0 auto 44px; padding: 5px; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm); }
.v2-billing button { font-family: inherit; font-size: 0.92rem; font-weight: 600; color: var(--muted); background: transparent; border: 0; cursor: pointer; padding: 10px 20px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; transition: background .16s ease, color .16s ease; }
.v2-billing button.active { background: var(--green); color: #fff; }
.v2-billing .save { font-size: 0.72rem; font-weight: 700; letter-spacing: .04em; color: var(--green); background: var(--green-soft); padding: 3px 8px; border-radius: 999px; }
.v2-billing button.active .save { color: var(--green); background: #fff; }

.v2-cur { position: relative; flex: 0 0 auto; }
.v2-cur-btn {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  font: inherit; font-size: 0.82rem; font-weight: 600; padding: 6px 14px; border-radius: 999px;
  transition: border-color .15s ease, background .15s ease;
}
.v2-cur-btn:hover { border-color: var(--green-line); background: var(--green-soft); }
.v2-cur-caret { color: var(--muted); margin-left: 1px; transition: transform .18s ease; }
.v2-cur.open .v2-cur-caret { transform: rotate(180deg); }
.v2-cur-menu {
  position: absolute; bottom: calc(100% + 8px); left: 0; z-index: 60; min-width: 120px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 6px;
  box-shadow: 0 14px 34px rgba(12, 21, 18, .12);
  opacity: 0; visibility: hidden; transform: translateY(4px); transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.v2-cur.open .v2-cur-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.v2-cur-down .v2-cur-menu { top: calc(100% + 8px); bottom: auto; }
.v2-cur-menu button + button { margin-top: 2px; }
.v2-cur-menu button {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; cursor: pointer;
  background: transparent; border: 0; color: var(--ink);
  font: inherit; font-size: 0.86rem; font-weight: 500; padding: 8px 12px; border-radius: 999px;
  transition: background .12s ease;
}
.v2-cur-menu button:hover { background: var(--green-soft); }
.v2-cur-menu button.active { font-weight: 700; }
.v2-cur-menu button.active::after { content: ""; margin-left: auto; flex: none; width: 15px; height: 15px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat; }

.v2-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.v2-plan { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; }
.v2-plan-notes { margin-top: 34px; display: grid; gap: 7px; text-align: center; }
.v2-plan-notes p { color: var(--muted); font-size: 0.86rem; line-height: 1.5; margin: 0; }

/* ---------- Add-ons (pricing) ---------- */
.v2-addons { margin-top: 26px; background: var(--green-soft); border: 1px solid var(--green-line); border-radius: var(--r-lg); padding: 26px 28px; }
.v2-addons-head { text-align: center; margin-bottom: 20px; }
.v2-addons-head h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 0; }
.v2-addons-head p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; margin: 6px auto 0; max-width: 560px; }
.v2-addons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.v2-addon-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 22px; }
.v2-addon-card-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.v2-addon-card-name { font-size: 0.98rem; font-weight: 700; color: var(--ink); }
.v2-addon-card-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.45; }
.v2-addon-card-price { margin-top: 0; flex-shrink: 0; }
.v2-addon-card-price .amt { font-size: 1.5rem; }
@media (max-width: 620px) {
  .v2-addons { padding: 22px 18px; }
  .v2-addons-grid { grid-template-columns: 1fr; gap: 12px; }
  .v2-addon-card { flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px 18px; }
  .v2-addon-card-price .amt { font-size: 1.3rem; }
}
.v2-fn { color: var(--green); font-weight: 700; font-size: 0.7em; vertical-align: super; margin: 0 1px; }
.v2-plan.featured { border-color: var(--green); box-shadow: 0 24px 60px rgba(15,81,50,.14); }
.v2-plan-badge { position: absolute; top: -12px; left: 28px; font-size: 0.72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--green); padding: 5px 12px; border-radius: 999px; }
.v2-plan-name { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.v2-plan-desc { color: var(--muted); font-size: 0.94rem; margin-top: 6px; min-height: 42px; }
.v2-plan-price { display: flex; align-items: baseline; gap: 4px; margin-top: 12px; }
.v2-plan-price .amt { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.v2-plan-price .per { color: var(--muted); font-weight: 600; }
.v2-plan-note { color: var(--muted); font-size: 0.82rem; margin: 4px 0 22px; }
.v2-plan .v2-btn-block { margin-bottom: 24px; }
.v2-plan-feats { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; border-top: 1px solid var(--line); padding-top: 22px; }
.v2-plan-feats li { position: relative; padding-left: 28px; font-size: 0.94rem; color: var(--body); }
.v2-plan-feats li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230f5132' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- Breadcrumb (feature pages) ---------- */
.v2-crumb { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; font-size: 0.86rem; color: var(--muted); }
.v2-crumb a { color: var(--muted); text-decoration: none; }
.v2-crumb a:hover { color: var(--body); }
.v2-crumb span[aria-hidden] { opacity: 0.5; }
.v2-crumb .cur { color: var(--body); }

/* ---------- FAQ ---------- */
.v2-faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.v2-faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 2px 24px; transition: border-color .16s ease; }
.v2-section.tint .v2-faq details { background: transparent; }
.v2-faq details[open] { border-color: var(--green-line); }
.v2-faq summary { cursor: pointer; list-style: none; padding: 20px 0; font-weight: 600; font-size: 1.04rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.v2-faq summary::-webkit-details-marker { display: none; }
.v2-faq summary::after { content: "+"; color: var(--green); font-size: 1.5rem; font-weight: 300; transition: transform .2s ease; }
.v2-faq details[open] summary::after { transform: rotate(45deg); }
.v2-faq p { color: var(--muted); margin: 0 0 20px; line-height: 1.6; }

/* ---------- CTA ---------- */
.v2-cta { text-align: center; }
.v2-priceband { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding: 34px 40px; border: 1px solid var(--green-line); border-radius: var(--r-lg); background: var(--green-soft); }
.v2-priceband-text h2 { margin: 0 0 8px; font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; color: var(--body); }
.v2-priceband-text p { margin: 0; color: var(--muted); font-size: 1.02rem; max-width: 560px; }
.v2-priceband .v2-btn { flex: none; }
.v2-priceband-actions { display: flex; flex: none; gap: 20px; flex-wrap: wrap; align-items: center; }
.v2-priceband.dark { border-color: var(--green-strong); background: radial-gradient(720px 340px at 50% -60px, rgba(47,174,111,.45), transparent 60%), linear-gradient(160deg, var(--green), var(--green-strong)); }
.v2-priceband.dark .v2-priceband-text h2 { color: #fff; }
.v2-priceband.dark .v2-priceband-text p { color: rgba(255,255,255,.85); }
.v2-priceband.dark .v2-start-field { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); box-shadow: none; }
.v2-priceband.dark .v2-start-field:focus-within { border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.18); }
.v2-priceband.dark .v2-start-globe { color: rgba(255,255,255,.7); }
.v2-priceband.dark .v2-start-input { color: #fff; }
.v2-priceband.dark .v2-start-input::placeholder { color: rgba(255,255,255,.65); }
.v2-priceband.dark .v2-btn-primary { background: #fff; color: var(--green); }
.v2-priceband.dark .v2-btn-primary:hover { background: #fff; color: var(--green-strong); box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.v2-price-link { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-weight: 700; font-size: 1rem; text-decoration: none; }
.v2-price-link svg { transition: transform .18s ease; }
.v2-price-link:hover { color: var(--green-strong); }
.v2-price-link:hover svg { transform: translateX(3px); }
.v2-split-link { display: flex; justify-content: flex-end; margin-top: 24px; }
@media (max-width: 720px) {
  .v2-priceband { padding: 28px 22px; flex-direction: column; align-items: flex-start; gap: 22px; }
  .v2-priceband-actions { width: 100%; }
  .v2-priceband-actions .v2-btn { flex: 1 1 auto; text-align: center; }
}

/* Support prompt (help + contact) below FAQ */
.v2-support { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; margin: 44px auto 0; }
.v2-support-title { font-weight: 700; color: var(--ink); font-size: 1.15rem; }
.v2-support-desc { color: var(--muted); font-size: .95rem; max-width: 460px; margin: 0; }
.v2-support-actions { display: flex; align-items: center; gap: 22px; margin-top: 12px; }
.v2-support-link { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-weight: 600; font-size: .95rem; text-decoration: none; white-space: nowrap; }
.v2-support-link svg { transition: transform .18s ease; }
.v2-support-link:hover { color: var(--green); }
.v2-support-link:hover svg { transform: translateX(3px); }
@media (max-width: 640px) { .v2-support { margin-top: 32px; } }
.v2-cta-box {
  position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 76px 40px;
  background: radial-gradient(720px 340px at 50% -60px, rgba(47,174,111,.45), transparent 60%), linear-gradient(160deg, var(--green), var(--green-strong));
  border: 1px solid var(--green-strong);
}
.v2-cta-box > * { position: relative; z-index: 1; }
.v2-cta-box .v2-tag { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); }
.v2-cta-box h2 { color: #fff; font-size: clamp(2.1rem, 3.8vw, 3rem); font-weight: 800; margin: 16px 0 14px; }
.v2-cta-box p { color: rgba(255,255,255,.85); max-width: 500px; margin: 0 auto 28px; font-size: 1.14rem; }
.v2-cta-box .v2-hero-actions { justify-content: center; }
.v2-cta-box .v2-hero-mini { color: rgba(255,255,255,.75); }
.v2-cta-box .v2-btn-primary { background: #fff; color: var(--green); }
.v2-cta-box .v2-btn-primary:hover { background: #fff; color: var(--green-strong); box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.v2-cta-box .v2-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.v2-cta-box .v2-btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }
.v2-cta-box .v2-start-field { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); box-shadow: none; }
.v2-cta-box .v2-start-field:focus-within { border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.18); }
.v2-cta-box .v2-start-globe { color: rgba(255,255,255,.7); }
.v2-cta-box .v2-start-input { color: #fff; }
.v2-cta-box .v2-start-input::placeholder { color: rgba(255,255,255,.65); }

/* ---------- Footer ---------- */
.v2-footer { border-top: 1px solid var(--line); padding: 44px 0; }
.v2-footer .container { display: flex; flex-direction: column; gap: 40px; }
.v2-foot-brand { display: flex; flex-direction: row; align-items: center; gap: 12px; }
.v2-ch-flag { flex: 0 0 auto; display: block; transform: translate(-6px, -7px); }
.v2-footer .v2-brand-logo { height: 46px; }
.v2-foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 72px; flex-wrap: wrap; }
.v2-foot-intro { display: flex; flex-direction: column; gap: 14px; max-width: 300px; }
.v2-foot-slogan { color: var(--muted); font-size: 0.92rem; line-height: 1.5; margin: 0; }
.v2-foot-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.v2-foot-email { display: inline-flex; align-items: center; gap: 9px; font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.v2-foot-email svg { width: 18px; height: 18px; flex: none; color: var(--green); }
.v2-foot-email:hover { color: var(--green); }
.v2-foot-cols { flex: 0 1 50%; display: flex; justify-content: space-between; gap: 70px; flex-wrap: wrap; }
.v2-foot-col { display: flex; flex-direction: column; gap: 18px; }
.v2-foot-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink); margin: 0 0 6px; }
.v2-foot-col a { font-size: 0.9rem; color: var(--muted); }
.v2-foot-col a:hover { color: var(--green); }
.v2-foot-bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--line); }
.v2-foot-copy { flex: 1; color: #9aa7a0; font-size: 0.8rem; }
.v2-foot-legal { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.v2-foot-legal a { color: #9aa7a0; font-size: 0.8rem; }
.v2-foot-legal a:hover { color: var(--body); }
.v2 .v2-foot-help { flex: 0 0 auto; text-align: center; font-size: 0.9rem; color: var(--muted); }
.v2-foot-help:hover { color: var(--green); }
.v2-footer-links { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 24px; flex-wrap: wrap; }
.v2-footer-links a { font-size: 0.9rem; color: var(--muted); }
.v2-footer-links a:hover { color: var(--green); }
.v2-foot-cookies { display: inline-flex; align-items: center; justify-content: center; color: var(--green); background: var(--green-soft); border: 1px solid var(--green-line); border-radius: 999px; padding: 6px; cursor: pointer; line-height: 0; transition: background .15s ease, border-color .15s ease, color .15s ease; }
.v2-foot-cookies svg { width: 16px; height: 16px; flex: none; }
.v2-foot-cookies:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* ---------- Legal pages ---------- */
.v2-legal-head { background: var(--paper); border-bottom: 1px solid var(--line); }
.v2-legal-head .container { padding-block: 60px 48px; }
.v2-legal-head .v2-tag { margin-bottom: 16px; }
.v2-legal-head h1 { font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 800; }
.v2-legal-head .updated { color: var(--muted); font-size: 0.92rem; margin-top: 12px; }
.v2-legal { padding-block: 56px 80px; }
.v2-legal .container { max-width: 760px; }
.v2-legal-body { color: var(--body); font-size: 1rem; line-height: 1.72; }
.v2-legal-body h2 { font-size: 1.32rem; font-weight: 700; margin: 40px 0 12px; }
.v2-legal-body h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 8px; }
.v2-legal-body p { margin-bottom: 16px; }
.v2-legal-body ul { margin: 0 0 16px; padding-left: 22px; }
.v2-legal-body li { margin-bottom: 8px; }
.v2-legal-body a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.v2-legal-body a:hover { color: var(--green-strong); }
.v2-legal-body strong { color: var(--ink); }
.v2-legal-note { margin-top: 32px; color: var(--muted); font-size: 0.85rem; }

/* ---------- Legal pages — structured reading layout ---------- */
.v2-legal .container.v2-legal-grid {
  max-width: 820px;
  display: block;
}
.v2-legal-grid .v2-legal-body {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 40px 44px;
}

/* Intro paragraph reads as a highlighted lead */
.v2-legal-grid .v2-legal-body > p:first-child {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  margin-bottom: 8px;
}

/* Numbered section headings */
.v2-legal-grid .v2-legal-body h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
  margin: 36px 0 14px;
  font-size: 1.3rem;
  scroll-margin-top: 96px;
}
.v2-legal-grid .v2-legal-body h3 { scroll-margin-top: 96px; }
.v2-legal-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid var(--green-line);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
}
.v2-legal-h-text { flex: 1 1 auto; }

/* On-this-page navigation */
.v2-legal-toc {
  position: sticky;
  top: 96px;
  align-self: start;
}
.v2-legal-toc-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
  padding-left: 14px;
}
#legalToc { display: flex; flex-direction: column; border-left: 2px solid var(--line); }
#legalToc a {
  display: block;
  margin-left: -2px;
  padding: 12px 14px;
  border-left: 2px solid transparent;
  font-size: 0.855rem;
  line-height: 1.4;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s ease, border-color .15s ease;
}
#legalToc a:hover { color: var(--ink); }
#legalToc a.active { color: var(--green); border-left-color: var(--green); font-weight: 600; }

.v2-legal-toc { display: none; }

@media (max-width: 980px) {
  .v2-legal .container.v2-legal-grid { grid-template-columns: minmax(0, 1fr); gap: 0; }
}
@media (max-width: 560px) {
  .v2-legal { padding-block: 32px 56px; }
  .v2-legal-head .container { padding-block: 40px 32px; }
  .v2-legal-grid .v2-legal-body { padding: 24px 20px; border-radius: var(--r-md); }
  .v2-legal-grid .v2-legal-body > p:first-child { padding: 16px 16px; }
  .v2-legal-grid .v2-legal-body h2 { font-size: 1.16rem; gap: 10px; padding-top: 26px; margin: 26px 0 12px; }
  .v2-legal-num { width: 26px; height: 26px; font-size: 0.82rem; }
}

/* ---------- Contact / Help ---------- */
.v2-contact { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.v2-contact-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; text-decoration: none; color: inherit; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.v2-contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--green-line); }
.v2-contact-ico {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 14px; background: var(--green-soft); color: var(--green-strong); margin-bottom: 18px;
}
.v2-contact-card h2 { font-size: 1.24rem; font-weight: 700; margin: 0 0 8px; }
.v2-contact-card p { color: var(--muted); line-height: 1.6; margin: 0 0 16px; }
.v2-contact-link { font-weight: 700; color: var(--green-strong); }
.v2-contact-hours { max-width: 760px; margin: 28px auto 0; text-align: center; }
.v2-contact-hours h2 { font-size: 1.12rem; font-weight: 700; margin: 0 0 8px; }
.v2-contact-hours p { color: var(--muted); line-height: 1.6; margin: 0 auto; max-width: 620px; }

.v2-form-card {
  max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 34px 32px; box-shadow: var(--shadow-sm);
}
.v2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.v2-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.v2-field label { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.v2-input, .v2-textarea, .v2-select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--body);
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 13px 20px; transition: border-color .16s ease, box-shadow .16s ease;
}
.v2-textarea { resize: vertical; min-height: 130px; line-height: 1.55; border-radius: 22px; padding: 14px 20px; }
.v2-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7a72' stroke-width='2.4' 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 18px center; padding-right: 44px;
}
.v2-input::placeholder, .v2-textarea::placeholder { color: var(--muted); }
.v2-input:focus, .v2-textarea:focus, .v2-select:focus { outline: 0; border-color: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }

/* ---------- Custom dropdown (enhances .v2-select) ---------- */
.v2-sel { position: relative; }
.v2-sel-native { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.v2-sel-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: inherit; font-size: 1rem; color: var(--body); text-align: left;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 13px 20px; cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.v2-sel-trigger:hover { border-color: var(--green-line); }
.v2-sel-caret { flex: none; display: grid; place-items: center; color: #6b7a72; }
.v2-sel-caret svg { width: 14px; height: 14px; }
.v2-sel.open .v2-sel-trigger { border-color: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.v2-sel-menu {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 30;
  background: #fff; border: 1px solid var(--line); border-radius: 26px;
  box-shadow: 0 18px 44px rgba(10, 61, 38, .16); padding: 10px; margin: 0;
  list-style: none; max-height: 300px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
  transform-origin: top center; animation: v2-sel-in .16s ease;
}
.v2-sel-menu[hidden] { display: none; }
.v2-sel-menu.closing { animation: v2-sel-out .14s ease forwards; }
@keyframes v2-sel-in { from { opacity: 0; transform: translateY(-6px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes v2-sel-out { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(-6px) scale(.98); } }
.v2-sel-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 18px; border-radius: 999px; cursor: pointer; font-size: 0.98rem; color: var(--ink);
  transition: background .12s ease, color .12s ease;
}
.v2-sel-opt:hover, .v2-sel-opt.active { background: var(--green-soft); color: var(--green-strong); }
.v2-sel-opt[aria-selected="true"] { font-weight: 600; }
.v2-sel-check { width: 16px; height: 16px; flex: none; opacity: 0; color: var(--green); }
.v2-sel-opt[aria-selected="true"] .v2-sel-check { opacity: 1; }
.v2-form-card .v2-btn-block { margin-top: 6px; }
.v2-form-submit { display: block; margin: 8px auto 0; min-width: 220px; }
.v2 .v2-form-note { margin: 14px 0 0; text-align: center; color: var(--muted); font-size: 0.85rem; }

/* ---------- Animations ---------- */
@keyframes v2-ping { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.85); opacity: 0; } }
@keyframes v2-eq { 0%, 100% { transform: scaleY(.4); } 50% { transform: scaleY(1); } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .v2-bento { grid-template-columns: repeat(2, 1fr); }
  .v2-plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .v2-cell.span3, .v2-cell.span2 { grid-column: span 1; }
  .v2-steps { grid-template-columns: repeat(2, 1fr); }
  .v2-steps.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .v2-steps.v2-steps-cards { grid-template-columns: repeat(2, 1fr); }
  .v2-uses { grid-template-columns: repeat(2, 1fr); }
  .v2-steps::before { display: none; }
  .v2-band .container { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 720px) {
  .v2 .container { padding-inline: 20px; }
  .v2-nav .container { display: flex; justify-content: space-between; align-items: center; }
  .v2-nav-links, .v2-nav-cta .v2-login { display: none; }
  .v2-nav-toggle { display: inline-flex; }
  .v2-nav-cta { gap: 10px; }
  .v2-nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px 20px 22px;
    max-height: calc(100vh - 74px); overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .v2-nav-links.open > a { padding: 12px 4px; font-size: 1.02rem; }
  .v2-nav-links.open .v2-nav-dd { width: 100%; }
  .v2-nav-links.open .v2-nav-dd-btn { width: 100%; justify-content: space-between; padding: 12px 4px; font-size: 1.02rem; color: var(--ink); }
  .v2-nav-links.open .v2-nav-dd-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    min-width: 0; box-shadow: none; border: 0; border-radius: 0; padding: 0 0 0 6px;
    max-height: 0; overflow: hidden; transition: max-height .22s ease;
  }
  .v2-nav-links.open .v2-nav-dd.open .v2-nav-dd-menu { max-height: 440px; }
  .v2-nav-links.open .v2-nav-dd.open .v2-nav-dd-menu--grid { max-height: 900px; }
  .v2-nav-links.open .v2-nav-dd--mega { display: block; align-self: auto; }
  .v2-nav-links.open .v2-nav-dd--mega .v2-nav-dd-btn { height: auto; }
  .v2-nav-links.open .v2-nav-dd-menu--mega { position: static; transform: none; padding: 0 0 0 6px; box-shadow: none; border: 0; background: transparent; }
  .v2-nav-links.open .v2-nav-dd--mega.open .v2-nav-dd-menu--mega { max-height: 1200px; }
  .v2-nav-links.open .v2-mega-inner { display: block; max-width: none; padding: 0; }
  .v2-nav-links.open .v2-nav-dd-menu--grid { min-width: 0; transform: none; }
  .v2-nav-links.open .v2-nav-dd-grid { display: block; }
  .v2-nav-links.open .v2-nav-dd-menu::before { display: none; }
  .v2-nav-links.open .v2-nav-login-m { display: block; margin-top: 8px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink); font-weight: 600; }
  .v2-nav-links.open #langSwitch { display: block; margin-top: 12px; }
  .v2-nav-links.open .v2-lang-btn { width: 100%; justify-content: flex-start; padding: 12px 14px; font-size: 0.95rem; }
  .v2-nav-links.open .v2-lang-caret { margin-left: auto; }
  .v2-nav-links.open .v2-lang-menu { top: auto; bottom: calc(100% + 8px); left: 0; right: 0; transform: translateY(4px); }
  .v2-nav-links.open .v2-lang.open .v2-lang-menu { transform: translateY(0); }
  .v2-hero { padding: 52px 0 64px; }
  .v2-hero .v2-hero-lead { font-size: 1.08rem; margin-bottom: 26px; }
  .v2-hero-demo { margin-top: 36px; }
  .v2-section { padding: 66px 0; }
  .v2-head { margin-bottom: 40px; }
  .v2-bento { grid-template-columns: 1fr; }
  .v2-steps { grid-template-columns: 1fr; }
  .v2-steps.cols-3 { grid-template-columns: 1fr; }
  .v2-steps.v2-steps-cards { grid-template-columns: 1fr; }
  .v2-uses { grid-template-columns: 1fr; }
  .v2-contact { grid-template-columns: 1fr; }
  .v2-form-row { grid-template-columns: 1fr; gap: 0; }
  .v2-cta-box { padding: 52px 24px; }
  .v2-footer .container { gap: 32px; }
  .v2-foot-brand { align-items: center; justify-content: center; }
  .v2-foot-top { flex-direction: column; align-items: stretch; gap: 36px; }
  .v2-foot-intro { align-items: flex-start; max-width: none; }
  .v2-foot-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .v2-foot-col { align-items: flex-start; gap: 14px; }
  .v2-foot-bar { flex-direction: column; text-align: center; gap: 14px; }
  .v2-footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .v2 .container { padding-inline: 16px; }
  .v2-nav-cta { gap: 8px; }
  .v2-hero { padding: 40px 0 52px; }
  .v2-hero h1 { font-size: clamp(2.1rem, 8.6vw, 3rem); margin: 18px auto 16px; }
  .v2-hero .v2-hero-lead { font-size: 1.02rem; }
  .v2-tag { font-size: 0.68rem; padding: 6px 11px; }
  .v2-section { padding: 52px 0; }
  .v2-head h2 { font-size: clamp(1.7rem, 7.4vw, 2.2rem); }
  .v2-head p { font-size: 1rem; }
  .v2-cell { padding: 24px; }
  .v2-cell.feature-hero h3 { font-size: 1.32rem; }
  .v2-works-logos { gap: 22px; }
  .v2-cta-box { padding: 44px 20px; }
  .v2-cta-box h2 { font-size: clamp(1.7rem, 7.4vw, 2.2rem); }
  .v2-cta-box p { font-size: 1.02rem; }
  .v2-form-card { padding: 24px 20px; }
  .v2-form-submit { width: 100%; min-width: 0; }
  .v2-contact { grid-template-columns: 1fr; }
}


@media (prefers-reduced-motion: reduce) {
  .v2-device-orb .ring, .v2-eq span { animation: none; }
}
