/*
 * layout-ver2.css — ver_2 homepage (src/layouts/ver_2/*).
 *
 * Loaded via a <link> tag (see app/layout.tsx's deferred-CSS list), NOT
 * imported in JS — this repo keeps all CSS out of the JS bundle
 * deliberately (see CLAUDE.md "Static Assets"). Everything here is
 * scoped under the `.v2-` prefix (or nested inside `.v2-root`) so it can
 * never collide with the legacy Bootstrap/master.css classes the rest of
 * the site still uses.
 *
 * Tune the overall look from the token list below — every section reuses
 * these variables instead of hardcoded values, so re-theming (or
 * swapping the accent color, radius, spacing scale) is a one-place edit.
 */

.v2-root {
  --v2-color-bg: #ffffff;
  --v2-color-bg-muted: #f6f7fb;
  --v2-color-text: #12141a;
  --v2-color-text-muted: #5b6472;
  /* Every P2 – Paragraph Medium element (.v2-text-p2, .v2-card-text)
     uses this specific gray, per design spec — kept as its own token
     rather than reusing --v2-color-text-muted since the two aren't
     necessarily meant to move together. */
  --v2-color-text-secondary: #505050;
  --v2-color-primary: #2f6fed;
  --v2-color-primary-dark: #1f4fc4;
  --v2-color-primary-soft: #eaf1ff;
  --v2-color-dark: #0e1116;
  --v2-color-dark-soft: #1b1f28;
  --v2-color-border: #e5e8ee;
  --v2-color-success: #1fa971;
  --v2-radius-sm: 10px;
  --v2-radius-md: 16px;
  --v2-radius-lg: 24px;
  --v2-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --v2-shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --v2-shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
  --v2-space-section: 96px;
  --v2-space-section-sm: 56px;
  --v2-container-width: 1160px;

  font-family: var(--font-inter), Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--v2-color-text);
  background: var(--v2-color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.v2-root .container {
  max-width: var(--v2-container-width);
}

/* ---------------------------------------------------------------------
 * Reveal-on-scroll animation primitive (src/layouts/ver_2/components/Reveal.jsx)
 * Fully declarative — change duration/easing/distance here and every
 * section picks it up. Respects prefers-reduced-motion (Reveal.jsx
 * itself skips the observer and renders already-visible in that case).
 * ------------------------------------------------------------------- */
.v2-reveal {
  opacity: 0;
  transform: translateY(var(--v2-reveal-distance, 24px));
  transition:
    opacity var(--v2-reveal-duration, 600ms) cubic-bezier(0.16, 1, 0.3, 1) var(--v2-reveal-delay, 0ms),
    transform var(--v2-reveal-duration, 600ms) cubic-bezier(0.16, 1, 0.3, 1) var(--v2-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.v2-reveal--in {
  opacity: 1;
  transform: translateY(0);
}

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

  .v2-device-slide {
    transition: none;
  }
}

/* ---------------------------------------------------------------------
 * Type scale — full reusable design-system scale (Heading X-Large/Large/
 * Medium/Small, Label Large→X-Small, Paragraph Large→X-Small), desktop
 * values below with the mobile column of the same spec swapped in under
 * 768px. Apply as a utility class alongside a component's own layout
 * class, e.g. <p className="v2-hero-subtitle v2-text-p1">. Component-
 * specific classes (.v2-hero-subtitle, .v2-section-subheading, ...)
 * should only ever carry spacing/color/max-width — never font shorthand
 * — so every text style stays defined in exactly one place and a size
 * change here updates everywhere it's used at once.
 * ------------------------------------------------------------------- */
.v2-text-h1 { font-weight: 700; font-size: 48px; line-height: 56px; letter-spacing: -0.02em; }
.v2-text-h2 { font-weight: 700; font-size: 40px; line-height: 48px; letter-spacing: -0.02em; }
.v2-text-h3 { font-weight: 700; font-size: 32px; line-height: 40px; letter-spacing: 0; }
.v2-text-h4 { font-weight: 700; font-size: 24px; line-height: 32px; letter-spacing: 0; }
.v2-text-l1 { font-weight: 600; font-size: 18px; line-height: 24px; letter-spacing: 0; }
.v2-text-l2 { font-weight: 600; font-size: 16px; line-height: 20px; letter-spacing: 0; }
.v2-text-l3 { font-weight: 600; font-size: 14px; line-height: 16px; letter-spacing: 0; }
.v2-text-l4 { font-weight: 600; font-size: 12px; line-height: 16px; letter-spacing: 0.04em; }
.v2-text-p1 { font-weight: 400; font-size: 18px; line-height: 28px; letter-spacing: 0; }
.v2-text-p2 { font-weight: 400; font-size: 16px; line-height: 24px; letter-spacing: 0; color: var(--v2-color-text-secondary); }
.v2-text-p3 { font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: 0; }
.v2-text-p4 { font-weight: 400; font-size: 12px; line-height: 20px; letter-spacing: 0; }

@media (max-width: 767px) {
  .v2-text-h1 { font-size: 32px; line-height: 40px; letter-spacing: -0.02em; }
  .v2-text-h2 { font-size: 28px; line-height: 36px; letter-spacing: -0.02em; }
  .v2-text-h3 { font-size: 24px; line-height: 32px; }
  .v2-text-h4 { font-size: 20px; line-height: 28px; }
  .v2-text-l1 { font-size: 16px; line-height: 22px; }
  .v2-text-l2 { font-size: 14px; line-height: 20px; }
  .v2-text-l3 { font-size: 13px; line-height: 16px; }
  .v2-text-l4 { font-size: 12px; line-height: 16px; letter-spacing: 0.04em; }
  .v2-text-p1 { font-size: 16px; line-height: 24px; }
  .v2-text-p2 { font-size: 14px; line-height: 20px; }
  .v2-text-p3 { font-size: 13px; line-height: 16px; }
  .v2-text-p4 { font-size: 12px; line-height: 16px; }
}

/* Button copy has its own -2% tracking at the same size/weight as L1,
   kept separate from .v2-text-l1 since a plain Label elsewhere in the
   scale does NOT carry that tracking. */
.v2-text-btn-lg {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.02em;
}

.v2-text-center {
  text-align: center;
}

/* ---------------------------------------------------------------------
 * Base type / layout helpers
 * ------------------------------------------------------------------- */
.v2-section {
  padding: var(--v2-space-section) 0;
}

.v2-section--muted {
  background: var(--v2-color-bg-muted);
}

.v2-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--v2-color-primary);
  margin: 0 0 12px;
}

/* Bordered pill badge (Hero's "Mobile-first digital signage",
   ValueProps' "Simple digital signage", ...) — width follows the text,
   pair with a .v2-text-* utility for the actual type (e.g. v2-text-l3)
   rather than hardcoding font-size/weight here. */
.v2-eyebrow--badge-auto {
  /* display:flex + width:fit-content (not inline-flex) so this centers
     itself via margin:auto regardless of the parent's text-align — an
     inline-flex box only centers if the parent happens to set
     text-align:center (true in Hero, not true in every section). */
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  margin: 0 auto 24px;
  border: 1px solid var(--v2-color-border);
  border-radius: 8px;
  color: var(--v2-color-text-muted);
  text-transform: none;
  letter-spacing: 0;
}

.v2-eyebrow--center {
  text-align: center;
}

.v2-section-heading {
  /* H2 – Heading Large from the type scale (see the .v2-text-h2 tokens
     above); expressed directly here rather than requiring every section
     file to add a second className, but the actual numbers must stay in
     sync with .v2-text-h2 if the scale ever changes. */
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--v2-color-text);
}

.v2-section-heading--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.v2-section-subheading {
  /* P1 – Paragraph Large from the type scale (see .v2-text-p1). */
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: var(--v2-color-text-muted);
  margin: 0 0 48px;
}

.v2-section-subheading--center {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.v2-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.v2-card-title {
  /* H4 – Heading Small from the type scale (see .v2-text-h4). */
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 10px;
  color: var(--v2-color-text);
}

.v2-card-text {
  /* P2 – Paragraph Medium from the type scale (see .v2-text-p2). */
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--v2-color-text-secondary);
  margin: 0;
}

.v2-card {
  background: var(--v2-color-bg);
  border: 1px solid var(--v2-color-border);
  border-radius: var(--v2-radius-lg);
  padding: 32px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.v2-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow-md);
  border-color: transparent;
}

.v2-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--v2-radius-md);
  background: var(--v2-color-primary-soft);
  color: var(--v2-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.v2-icon-badge--sm {
  width: 48px;
  height: 48px;
  font-size: 18px;
  border-radius: var(--v2-radius-sm);
}

/* ---------------------------------------------------------------------
 * Buttons
 * ------------------------------------------------------------------- */
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  padding: 13px 26px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.v2-btn:hover,
.v2-btn:focus-visible {
  transform: translateY(-2px);
}

.v2-btn:focus-visible {
  outline: 2px solid var(--v2-color-primary);
  outline-offset: 2px;
}

.v2-btn--lg {
  padding: 15px 32px;
  font-size: 16px;
}

.v2-btn--block {
  width: 100%;
}

.v2-btn--primary {
  background: var(--v2-color-primary);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(47, 111, 237, 0.28);
}

.v2-btn--primary:hover {
  background: var(--v2-color-primary-dark);
  color: #ffffff;
}

.v2-btn--ghost {
  background: transparent;
  color: var(--v2-color-text);
  border-color: var(--v2-color-border);
}

.v2-btn--ghost:hover {
  border-color: var(--v2-color-text);
  color: var(--v2-color-text);
}

.v2-btn--outline {
  background: transparent;
  color: var(--v2-color-primary);
  border-color: var(--v2-color-primary);
}

.v2-btn--outline:hover {
  background: var(--v2-color-primary);
  color: #ffffff;
}

/* ---------------------------------------------------------------------
 * Header (src/components/v2/Header.jsx)
 * ------------------------------------------------------------------- */
.v2h-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.v2h-header--scrolled {
  border-bottom-color: #e5e8ee;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.v2h-inner {
  max-width: 1160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}

.v2h-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.v2h-logo img {
  height: 24px;
  width: auto;
}

.v2h-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.v2h-nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: color 160ms ease;
}

.v2h-nav-link:hover {
  color: #12141a;
}

.v2h-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.v2h-lang {
  display: flex;
  align-items: center;
}

.v2h-cta {
  padding: 10px 22px;
  font-size: 14px;
}

.v2h-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.v2h-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #12141a;
  border-radius: 2px;
}

.v2h-mobile-panel {
  display: none;
}

@media (max-width: 991px) {
  .v2h-nav {
    display: none;
  }

  .v2h-lang,
  .v2h-cta {
    display: none;
  }

  .v2h-burger {
    display: flex;
  }

  .v2h-mobile-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border-top: 1px solid #e5e8ee;
  }

  .v2h-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .v2h-mobile-nav .v2h-nav-link {
    padding: 12px 4px;
    font-size: 16px;
    border-bottom: 1px solid #f0f1f4;
  }

  .v2h-mobile-lang {
    display: flex;
    justify-content: center;
    padding-top: 4px;
  }
}

/* ---------------------------------------------------------------------
 * Footer (src/components/v2/Footer.jsx)
 * ------------------------------------------------------------------- */
.v2f-footer {
  background: var(--v2-color-bg);
  color: var(--v2-color-text-secondary);
  padding: 72px 0 48px;
}

.v2f-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
}

.v2f-logo img {
  height: 26px;
  width: auto;
  display: block;
}

.v2f-tagline {
  margin: 16px 0 0;
  max-width: 240px;
}

.v2f-column-title {
  margin: 0 0 20px;
  color: var(--v2-color-text);
}

.v2f-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.v2f-links a {
  color: var(--v2-color-text-secondary);
  text-decoration: none;
  transition: color 160ms ease;
}

.v2f-links a:hover {
  color: var(--v2-color-primary);
}

.v2f-social {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 40px;
  padding: 32px 0 0;
  border-top: 1px solid var(--v2-color-border);
}

.v2f-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--v2-color-border);
  border-radius: 8px;
  color: var(--v2-color-text);
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease;
}

.v2f-social-pill:hover {
  border-color: var(--v2-color-primary);
  color: var(--v2-color-primary);
}

.v2f-social-pill i {
  font-size: 15px;
}

.v2f-copyright {
  text-align: center;
  margin: 0;
}

@media (max-width: 991px) {
  .v2f-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

@media (max-width: 575px) {
  .v2f-top {
    grid-template-columns: 1fr;
  }

  .v2f-social {
    justify-content: center;
  }
}

/* ---------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------- */
.v2-hero {
  padding: 72px 0 40px;
  background: linear-gradient(180deg, var(--v2-color-primary-soft) 0%, var(--v2-color-bg) 62%);
}

.v2-hero-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.v2-hero-title {
  /* type comes from the .v2-text-h1 utility applied in Hero.jsx */
  margin: 0 0 20px;
}

/* Wide screens get more horizontal room and a nowrap headline (matches
   the approved design, which keeps the title on one line); anything
   narrower falls back to normal wrapping so the text can never clip. */
@media (min-width: 1280px) {
  .v2-hero-inner {
    max-width: 960px;
  }

  .v2-hero-title {
    white-space: nowrap;
  }

  .v2-hero-subtitle {
    max-width: 780px;
    white-space: nowrap;
  }
}

.v2-hero-title-highlight {
  color: var(--v2-color-primary);
}

.v2-hero-subtitle {
  /* type comes from the .v2-text-p1 utility applied in Hero.jsx */
  color: var(--v2-color-text-muted);
  margin: 0 auto 32px;
  max-width: 520px;
}

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

/* Fixed pixel sizing per design spec — guarded to tablet/desktop only so
   it never fights the mobile ".v2-hero-actions .v2-btn { width:100% }"
   full-width column layout further down this file. */
@media (min-width: 768px) {
  .v2-hero-actions .v2-btn--primary.v2-btn--lg {
    width: 215px;
    height: 56px;
    border-radius: 8px;
    padding: 0 24px;
  }

  .v2-hero-actions .v2-btn--ghost.v2-btn--lg {
    width: 156px;
    height: 56px;
    border-radius: 8px;
    padding: 0 24px;
    border-width: 1.5px;
  }
}

.v2-hero-trust {
  /* type comes from the .v2-text-p3 utility applied in Hero.jsx */
  color: var(--v2-color-text-muted);
  margin: 0;
}

.v2-hero-mockup-wrap {
  margin: 64px auto 0;
  display: flex;
  justify-content: center;
}

/* ---------------------------------------------------------------------
 * DeviceMockup (src/components/v2/ui/DeviceMockup.jsx)
 * "Phone in front, TV/display behind" composition using the real frame
 * artwork (public/assets/img/v2/device-*-frame.png). Each frame image
 * bakes its gray screen fill INTO the PNG (not a transparent cutout), so
 * `.v2-device-screen` is layered ON TOP, sized/positioned to the exact
 * measured screen-rect of that specific image (see DeviceMockup.jsx's
 * SCREEN_RECT constants — these two must stay in sync if the artwork is
 * ever re-exported at different margins). `.v2-device-slide`/
 * `.v2-device-media` are the actual animate/crossfade targets.
 * ------------------------------------------------------------------- */
.v2-device-mockup {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1.8;
}

.v2-device-rings {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.v2-device-rings span {
  position: absolute;
  left: 18%;
  top: 30%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 50%;
}

.v2-device-rings span:nth-child(1) {
  width: 140%;
  height: 140%;
}

.v2-device-rings span:nth-child(2) {
  width: 190%;
  height: 190%;
}

.v2-device-rings span:nth-child(3) {
  width: 240%;
  height: 240%;
}

.v2-device-rings span:nth-child(4) {
  width: 290%;
  height: 290%;
}

.v2-device-rings span:nth-child(5) {
  width: 340%;
  height: 340%;
}

.v2-device-frame {
  position: absolute;
}

/* Root of DeviceFrame.jsx (the single-device reusable piece) — provides
   the positioning context for .v2-device-screen. Inside DeviceMockup's
   Hero composition this just fills its absolutely-positioned parent
   (.v2-device-frame--display/--phone above); used standalone (e.g.
   ValueProps' cards) it's sized by whatever wraps it instead. */
.v2-device-frame-standalone {
  position: relative;
  width: 100%;
}

.v2-device-frame--display {
  left: 10%;
  top: 0;
  width: 90%;
  z-index: 1;
  filter: drop-shadow(var(--v2-shadow-lg));
}

.v2-device-frame--phone {
  left: 0;
  top: 6%;
  width: 26%;
  z-index: 2;
  filter: drop-shadow(var(--v2-shadow-lg));
}

.v2-device-frame-art {
  display: block;
  width: 100%;
  height: auto;
}

.v2-device-screen {
  position: absolute;
  overflow: hidden;
  background: #e4e4e4;
}

.v2-device-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.v2-device-slide--active {
  opacity: 1;
}

.v2-device-media,
.v2-device-demo-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-device-demo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 6px;
}

/* ---------------------------------------------------------------------
 * Value props (mobile app + player)
 * ------------------------------------------------------------------- */
.v2-value-props {
  /* 192px from the Hero device mockup's bottom edge to this section's
     eyebrow badge: Hero's own bottom padding is 40px, so this section
     needs 152px of top padding to make up the rest — expressed as an
     offset from the shared --v2-space-section token (not a flat 152px)
     so it still shrinks proportionally at the section's own mobile
     breakpoints instead of staying fixed. */
  padding-top: calc(var(--v2-space-section) + 56px);
}

.v2-value-props-row {
  --bs-gutter-x: 32px;
  row-gap: 32px;
}

.v2-value-prop-card {
  height: 100%;
  background: #fafafa;
  display: flex;
  flex-direction: column;
}

.v2-value-prop-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--v2-color-text-muted);
  text-transform: uppercase;
}

.v2-value-prop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0063e6;
  flex-shrink: 0;
}

.v2-value-prop-title {
  margin: 0 0 10px;
  color: var(--v2-color-text);
}

.v2-value-prop-text {
  /* Paragraph's own bottom margin IS the required 32px gap down to the
     device mockup(s) right after it — no separate top margin on
     .v2-value-prop-device, that would double it up. Color comes from
     the .v2-text-p2 utility (#505050) applied alongside this class in
     JSX — not set here, so it never fights that utility's color. */
  margin: 0 0 32px;
}

.v2-value-prop-device {
  display: flex;
  align-items: flex-start;
}

.v2-value-prop-device--phone {
  justify-content: center;
  gap: 16px;
}

/* Exact design dimensions (216x440 / 444x255) expressed via
   width + aspect-ratio + max-width:100% rather than a flat width+height,
   so each frame still shrinks proportionally on a narrow card instead of
   overflowing it — the frame-art <img> below is stretched to fill that
   box exactly (its own intrinsic ratio is close but not identical to
   these design dimensions). */
.v2-value-prop-device--phone .v2-device-frame-standalone {
  width: 216px;
  max-width: 100%;
  aspect-ratio: 216 / 440;
  flex-shrink: 0;
}

.v2-value-prop-device--display .v2-device-frame-standalone {
  width: 444px;
  max-width: 100%;
  aspect-ratio: 444 / 255;
  margin: 0 auto;
}

.v2-value-prop-device--phone .v2-device-frame-art,
.v2-value-prop-device--display .v2-device-frame-art {
  width: 100%;
  height: 100%;
}

.v2-value-prop-platforms {
  /* 32px below the device mockup above it. */
  margin-top: 32px;
}

.v2-value-prop-platforms-label {
  /* Color comes from the .v2-text-p2 utility, applied alongside this
     class in JSX. */
  margin: 0 0 12px;
}

.v2-platform-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.v2-platform-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--v2-color-text-muted);
  background: var(--v2-color-bg);
  border: 1px solid var(--v2-color-border);
  border-radius: 8px;
}

/* ---------------------------------------------------------------------
 * Steps
 * ------------------------------------------------------------------- */
.v2-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: v2-step;
}

.v2-steps {
  background: #fafafa;
}

.v2-step-card {
  background: var(--v2-color-bg);
  border: 1px solid var(--v2-color-border);
  border-radius: var(--v2-radius-lg);
  padding: 32px 32px 0;
  position: relative;
  /* Phone mockup bleeds off the bottom edge, clipped by the card's own
     rounded corners — height is a deliberate approximation of the
     design (shorter than a full unclipped phone), tune this one value
     to bleed more/less. */
  height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.v2-step-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--v2-color-text-muted);
}

.v2-step-title {
  margin: 0 0 10px;
  color: var(--v2-color-text);
}

.v2-step-text {
  margin: 0 0 24px;
}

.v2-step-device {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.v2-step-device .v2-device-frame-standalone {
  width: 216px;
  max-width: 100%;
  aspect-ratio: 216 / 440;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------
 * Use cases
 * ------------------------------------------------------------------- */
.v2-use-cases-row {
  --bs-gutter-x: 32px;
  row-gap: 32px;
}

.v2-use-case-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.v2-use-case-device {
  width: 100%;
  display: flex;
  justify-content: center;
}

.v2-use-case-device .v2-device-frame-standalone {
  width: 336px;
  max-width: 100%;
  aspect-ratio: 336 / 190;
}

.v2-use-case-device .v2-device-frame-art {
  width: 100%;
  height: 100%;
}

.v2-use-case-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 36px;
  padding: 0 16px;
  border: 1.5px solid var(--v2-color-border);
  border-radius: 8px;
  color: var(--v2-color-text);
  background: var(--v2-color-bg);
}

/* "View all solutions" — its own fixed size/radius, distinct from the
   Hero buttons (215/156x56, radius 8px) which share .v2-btn--lg. */
/* Shared "outline CTA" sizing — UseCases' "View all solutions" and Faq's
   "See all FAQs" both use this (any bordered secondary CTA the same
   size should reuse it too, rather than re-declaring the dimensions). */
.v2-btn--outline-md {
  width: 192px;
  height: 56px;
  border-radius: 12px;
  padding: 0 24px;
  border-width: 1.5px;
}

/* ---------------------------------------------------------------------
 * Features
 * ------------------------------------------------------------------- */
.v2-features {
  background: #fafafa;
}

.v2-features-row {
  --bs-gutter-x: 24px;
  row-gap: 24px;
}

.v2-feature-card {
  height: 100%;
  padding: 28px;
}

/* ---------------------------------------------------------------------
 * Pricing
 * ------------------------------------------------------------------- */
.v2-billing-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: var(--v2-color-bg-muted);
  border: 1px solid var(--v2-color-border);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
}

.v2-billing-toggle-btn {
  border: none;
  background: transparent;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--v2-color-text-muted);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.v2-billing-toggle-btn--active {
  background: var(--v2-color-bg);
  color: var(--v2-color-text);
  box-shadow: var(--v2-shadow-sm);
}

.v2-pricing-row {
  --bs-gutter-x: 24px;
  row-gap: 24px;
  align-items: stretch;
}

.v2-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.v2-pricing-card--highlight {
  background: var(--v2-color-dark);
  border-color: var(--v2-color-dark);
  color: #ffffff;
  transform: scale(1.03);
}

.v2-pricing-card--highlight .v2-card-title,
.v2-pricing-card--highlight .v2-pricing-amount {
  color: #ffffff;
}

.v2-pricing-card--highlight .v2-card-text,
.v2-pricing-card--highlight .v2-pricing-period,
.v2-pricing-card--highlight .v2-pricing-features li {
  color: #b7bfcc;
}

.v2-pricing-card--highlight .v2-pricing-features li i {
  color: #8db4ff;
}

.v2-pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--v2-color-primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.v2-pricing-desc {
  margin-bottom: 20px;
}

.v2-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 24px;
}

.v2-pricing-amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--v2-color-text);
}

.v2-pricing-period {
  font-size: 13.5px;
  color: var(--v2-color-text-muted);
}

.v2-pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.v2-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--v2-color-text-muted);
}

.v2-pricing-features li i {
  color: var(--v2-color-success);
  margin-top: 3px;
  font-size: 12px;
}

/* "Get started"/"Contact sales" — its own fixed size, distinct from
   .v2-btn--block (full-width, still used by Header's mobile CTA). */
.v2-pricing-cta {
  width: 288px;
  max-width: 100%;
  height: 64px;
  gap: 6px;
  padding: 0 24px;
  border-radius: 8px;
  margin: 0 auto;
}

.v2-pricing-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--v2-color-text-muted);
  margin: 40px 0 0;
}

/* ---------------------------------------------------------------------
 * Comparison table
 * ------------------------------------------------------------------- */
.v2-comparison {
  background: #fafafa;
}

.v2-comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--v2-radius-lg);
  border: 1px solid var(--v2-color-border);
  background: var(--v2-color-bg);
}

.v2-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.v2-comparison-table th,
.v2-comparison-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--v2-color-border);
}

/* Header row uses L3 (see .v2-text-l3) plus an uppercase/tracking
   treatment layered on top — that transform is a table-header
   convention, not part of the type scale itself. */
.v2-comparison-table thead th {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--v2-color-text-muted);
}

/* Row label (feature name) uses L2 (see .v2-text-l2). */
.v2-comparison-table tbody th {
  color: var(--v2-color-text);
}

.v2-comparison-table tbody tr:last-child th,
.v2-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.v2-comparison-cell--adcast {
  color: var(--v2-color-primary);
  font-weight: 700;
}

/* ---------------------------------------------------------------------
 * Testimonials
 * ------------------------------------------------------------------- */
.v2-testimonials-row {
  --bs-gutter-x: 24px;
  row-gap: 24px;
}

.v2-testimonial-card {
  height: 100%;
  margin: 0;
}

.v2-testimonial-quote-mark {
  font-size: 22px;
  color: var(--v2-color-primary);
  opacity: 0.5;
}

.v2-testimonial-quote {
  /* type comes from the .v2-text-p2 utility applied in Testimonials.jsx */
  color: var(--v2-color-text);
  margin: 16px 0 24px;
}

.v2-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.v2-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.v2-testimonial-name {
  display: block;
  color: var(--v2-color-text);
}

.v2-testimonial-role {
  display: block;
  color: var(--v2-color-text-muted);
}

/* ---------------------------------------------------------------------
 * FAQ
 * ------------------------------------------------------------------- */
.v2-faq {
  background: #fafafa;
}

.v2-faq-container {
  max-width: 760px;
}

.v2-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-faq-item {
  border: 1px solid var(--v2-color-border);
  border-radius: var(--v2-radius-md);
  overflow: hidden;
  background: var(--v2-color-bg);
}

.v2-faq-item-heading {
  margin: 0;
}

.v2-faq-question {
  /* type on the inner <span> comes from the .v2-text-l1 utility */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  text-align: left;
  padding: 20px 24px;
  color: var(--v2-color-text);
  cursor: pointer;
}

.v2-faq-icon {
  color: var(--v2-color-text-muted);
  flex-shrink: 0;
}

.v2-faq-question--open .v2-faq-icon {
  color: var(--v2-color-text);
}

.v2-faq-body-wrap {
  height: 0;
  overflow: hidden;
  transition: height 280ms ease;
}

.v2-faq-body {
  /* P2 – Paragraph Medium from the type scale (see .v2-text-p2), which
     also sets the #505050 color. */
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 0 24px 20px;
  color: var(--v2-color-text-secondary);
}

/* ---------------------------------------------------------------------
 * Download CTA
 * ------------------------------------------------------------------- */
.v2-download-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fafafa;
  border-radius: 32px;
  padding: 56px 64px;
}

.v2-download-content {
  flex: 1;
  min-width: 0;
  max-width: 480px;
}

.v2-download-content .v2-section-heading,
.v2-download-content .v2-section-subheading {
  margin: 0 0 16px;
}

.v2-download-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.v2-download-btn {
  height: 52px;
}

.v2-download-badge img {
  display: block;
  height: 52px;
  width: auto;
}

.v2-download-phone {
  position: absolute;
  right: 64px;
  top: -32px;
  bottom: -32px;
  width: 260px;
}

.v2-download-phone .v2-device-frame-standalone {
  width: 100%;
  height: 100%;
}

.v2-download-phone .v2-device-frame-art {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .v2-download-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 40px 24px;
  }

  .v2-download-content {
    max-width: none;
  }

  .v2-download-content .v2-value-prop-label,
  .v2-download-actions {
    justify-content: center;
  }

  .v2-download-phone {
    display: none;
  }
}

/* ---------------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------------- */
@media (max-width: 991px) {
  .v2-root {
    --v2-space-section: 72px;
  }

  .v2-steps-list {
    grid-template-columns: 1fr;
  }

  .v2-pricing-card--highlight {
    transform: none;
  }
}

@media (max-width: 767px) {
  .v2-root {
    --v2-space-section: 56px;
  }

  .v2-hero {
    padding: 48px 0 24px;
  }

  .v2-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .v2-hero-actions .v2-btn {
    width: 100%;
  }

  .v2-card {
    padding: 24px;
  }

  .v2-section-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .v2-section-subheading {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
  }

  .v2-card-title {
    font-size: 20px;
    line-height: 28px;
  }

  .v2-card-text {
    font-size: 14px;
    line-height: 20px;
  }

  .v2-faq-body {
    font-size: 14px;
    line-height: 20px;
  }

  .v2-use-cases-row [class*='col-'] {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .v2-hero-mockup-wrap {
    margin-top: 40px;
  }

  .v2-billing-toggle {
    width: 100%;
  }

  .v2-billing-toggle-btn {
    flex: 1;
  }
}


/* blogLayout=2 approved header treatment */
.v2-site-shell .v2h-header {
  min-height: 112px;
  display: flex;
  align-items: center;
  background: rgba(247, 249, 252, 0.96);
  border-bottom: 1px solid rgba(18, 20, 26, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.v2-site-shell .v2h-header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: #e8ebf0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.v2-site-shell .v2h-inner {
  width: calc(100% - 96px);
  max-width: 1760px;
  min-height: 112px;
  margin: 0 auto;
  padding: 0;
  gap: 48px;
}

.v2-site-shell .v2h-logo img {
  width: 178px;
  height: auto;
  display: block;
}

.v2-site-shell .v2h-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(26px, 2.2vw, 48px);
}

.v2-site-shell .v2h-nav-link {
  position: relative;
  padding: 42px 0;
  color: #11131a;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.v2-site-shell .v2h-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 32px;
  height: 2px;
  border-radius: 999px;
  background: #2f6fed;
  transition: right 180ms ease;
}

.v2-site-shell .v2h-nav-link:hover,
.v2-site-shell .v2h-nav-link:focus-visible {
  color: #2f6fed;
}

.v2-site-shell .v2h-nav-link:hover::after,
.v2-site-shell .v2h-nav-link:focus-visible::after {
  right: 0;
}

.v2-site-shell .v2h-actions {
  gap: 0;
}

.v2-site-shell .v2h-lang .language-switcher-toggle {
  width: 48px;
  height: 48px;
  margin-left: 18px;
  padding: 0;
  border-radius: 8px;
  background: #27282c;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  box-shadow: none;
}

.v2-site-shell .v2h-lang .language-switcher-list {
  top: 54px;
  right: 0;
  min-width: 160px;
  padding: 10px 8px;
  border: 1px solid #e5e8ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
}

.v2-site-shell .v2h-lang .lang-option {
  margin: 0 !important;
  padding: 8px 10px;
  border-radius: 7px;
  color: #161922;
  font-size: 14px;
}

.v2-site-shell .v2h-lang .lang-option:hover,
.v2-site-shell .v2h-lang .lang-option.active {
  color: #2f6fed;
  background: #eef4ff;
}

@media (max-width: 1199px) {
  .v2-site-shell .v2h-inner {
    width: calc(100% - 48px);
    gap: 28px;
  }

  .v2-site-shell .v2h-logo img {
    width: 156px;
  }

  .v2-site-shell .v2h-nav {
    gap: 24px;
  }

  .v2-site-shell .v2h-nav-link {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .v2-site-shell .v2h-header,
  .v2-site-shell .v2h-inner {
    min-height: 80px;
  }

  .v2-site-shell .v2h-inner {
    width: calc(100% - 40px);
  }

  .v2-site-shell .v2h-logo img {
    width: 148px;
  }

  .v2-site-shell .v2h-nav {
    display: none;
  }

  .v2-site-shell .v2h-lang {
    display: none;
  }

  .v2-site-shell .v2h-burger {
    width: 46px;
    height: 46px;
    border: 1px solid #e1e5eb;
    border-radius: 10px;
    background: #fff;
  }

  .v2-site-shell .v2h-mobile-panel {
    top: 80px;
    padding: 20px 24px 28px;
    border-top: 1px solid #e8ebf0;
    background: #fff;
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.12);
  }

  .v2-site-shell .v2h-mobile-nav .v2h-nav-link {
    padding: 14px 0;
    font-size: 17px;
  }

  .v2-site-shell .v2h-mobile-nav .v2h-nav-link::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .v2-site-shell .v2h-inner {
    width: calc(100% - 32px);
  }

  .v2-site-shell .v2h-logo img {
    width: 138px;
  }
}


/* blogLayout=2 approved footer treatment */
.v2-root .v2f-footer {
  position: relative;
  overflow: hidden;
  color: #f7f9ff;
  background:
    radial-gradient(circle at 10% 20%, rgba(47, 111, 237, 0.22), transparent 30%),
    linear-gradient(135deg, #111a2a 0%, #0b111b 58%, #0a0f18 100%);
}

.v2-root .v2f-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(47, 111, 237, 0.08), transparent 34%);
}

.v2-root .v2f-main {
  position: relative;
  z-index: 1;
  max-width: 1760px;
  display: grid;
  grid-template-columns: minmax(330px, 1.7fr) repeat(4, minmax(150px, 1fr));
  gap: clamp(40px, 4vw, 88px);
  padding-top: 72px;
  padding-bottom: 66px;
}

.v2-root .v2f-brand {
  min-width: 0;
}

.v2-root .v2f-logo {
  display: inline-flex;
  margin-bottom: 22px;
}

.v2-root .v2f-logo img {
  width: 216px;
  height: auto;
  filter: brightness(0) invert(1);
}

.v2-root .v2f-description {
  max-width: 370px;
  margin: 0;
  color: #aebdd3;
  font-size: 16px;
  line-height: 1.6;
}

.v2-root .v2f-accent,
.v2-root .v2f-heading-line {
  display: block;
  width: 48px;
  height: 2px;
  margin: 24px 0;
  border-radius: 999px;
  background: #2f6fed;
}

.v2-root .v2f-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  color: #aebdd3;
  font-size: 14px;
  line-height: 1.5;
  font-style: normal;
}

.v2-root .v2f-address strong {
  margin-bottom: 2px;
  color: #fff;
  font-weight: 700;
}

.v2-root .v2f-store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.v2-root .v2f-store-links a {
  display: inline-flex;
  border: 1px solid rgba(174, 189, 211, 0.28);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.v2-root .v2f-store-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(141, 180, 255, 0.72);
}

.v2-root .v2f-store-links img {
  display: block;
  width: auto;
  height: 44px;
}

.v2-root .v2f-column h2 {
  margin: 0;
  color: #d7e5ff;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.v2-root .v2f-column .v2f-heading-line {
  width: 34px;
  margin: 16px 0 22px;
  opacity: 0.85;
}

.v2-root .v2f-column ul,
.v2-root .v2f-social {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v2-root .v2f-column ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.v2-root .v2f-column a,
.v2-root .v2f-column button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #eef3fb;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.v2-root .v2f-column a:hover,
.v2-root .v2f-column button:hover {
  color: #8db4ff;
  transform: translateX(3px);
}

.v2-root .v2f-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(79, 135, 241, 0.42);
  background: rgba(3, 8, 15, 0.28);
}

.v2-root .v2f-bottom-inner {
  max-width: 1900px;
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.v2-root .v2f-bottom p {
  margin: 0;
  color: #9fb2cf;
  font-size: 13px;
}

.v2-root .v2f-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.v2-root .v2f-social a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f2f6fc;
  border: 1px solid rgba(174, 189, 211, 0.38);
  border-radius: 50%;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.v2-root .v2f-social a:hover {
  color: #fff;
  border-color: #2f6fed;
  background: #2f6fed;
  transform: translateY(-3px);
}

@media (max-width: 1199px) {
  .v2-root .v2f-main {
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 52px 44px;
  }

  .v2-root .v2f-brand {
    grid-row: span 2;
  }
}

@media (max-width: 767px) {
  .v2-root .v2f-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
    padding-top: 52px;
    padding-bottom: 48px;
  }

  .v2-root .v2f-brand {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .v2-root .v2f-logo img {
    width: 184px;
  }

  .v2-root .v2f-bottom-inner {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .v2-root .v2f-social {
    flex-wrap: wrap;
  }
}

@media (max-width: 479px) {
  .v2-root .v2f-main {
    grid-template-columns: 1fr;
  }

  .v2-root .v2f-brand {
    grid-column: auto;
  }

  .v2-root .v2f-store-links img {
    height: 40px;
  }

  .v2-root .v2f-social {
    gap: 9px;
  }

  .v2-root .v2f-social a {
    width: 42px;
    height: 42px;
  }
}


/* blogLayout=2 footer spacing correction */
.v2-root .v2f-footer {
  padding: 0;
}

.v2-root .v2f-main {
  width: calc(100% - 96px);
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: minmax(300px, 1.55fr) repeat(4, minmax(140px, 1fr));
  gap: clamp(32px, 3vw, 58px);
  padding: 54px 0 46px;
}

.v2-root .v2f-logo {
  margin-bottom: 16px;
}

.v2-root .v2f-logo img {
  width: 188px;
}

.v2-root .v2f-description {
  font-size: 15px;
  line-height: 1.5;
}

.v2-root .v2f-accent {
  margin: 18px 0;
}

.v2-root .v2f-address {
  gap: 2px;
  line-height: 1.45;
}

.v2-root .v2f-store-links {
  margin-top: 18px;
  gap: 10px;
}

.v2-root .v2f-store-links img {
  height: 40px;
}

.v2-root .v2f-column .v2f-heading-line {
  margin: 12px 0 18px;
}

.v2-root .v2f-column ul {
  gap: 11px;
}

.v2-root .v2f-column a,
.v2-root .v2f-column button {
  font-size: 14px;
  line-height: 1.45;
}

.v2-root .v2f-bottom-inner {
  width: calc(100% - 96px);
  max-width: 1440px;
  min-height: 78px;
  margin: 0 auto;
  padding: 0;
}

.v2-root .v2f-social {
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 0;
  background: transparent;
}

.v2-root .v2f-social::before,
.v2-root .v2f-social::after {
  display: none;
  content: none;
}

.v2-root .v2f-social a {
  width: 42px;
  height: 42px;
}

@media (max-width: 1199px) {
  .v2-root .v2f-main {
    width: calc(100% - 64px);
    grid-template-columns: 1.35fr repeat(2, 1fr);
    gap: 42px 36px;
  }

  .v2-root .v2f-bottom-inner {
    width: calc(100% - 64px);
  }
}

@media (max-width: 767px) {
  .v2-root .v2f-main {
    width: calc(100% - 40px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
    padding: 44px 0 38px;
  }

  .v2-root .v2f-bottom-inner {
    width: calc(100% - 40px);
    gap: 20px;
    padding: 24px 0;
  }
}

@media (max-width: 479px) {
  .v2-root .v2f-main,
  .v2-root .v2f-bottom-inner {
    width: calc(100% - 32px);
  }

  .v2-root .v2f-main {
    grid-template-columns: 1fr;
  }
}


/* blogLayout=2 — same scroll behavior as layout 1 */
.v2-site-shell .v2h-header {
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
  will-change: transform, opacity;
}

.v2-site-shell .v2h-header.v2h-header--hidden {
  transform: translateY(-105%);
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .v2-site-shell .v2h-header {
    transition: none;
  }
}


/* blogLayout=2 — rebuilt floating header */
.v2-site-shell .v2h-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: auto;
  padding: 18px clamp(18px, 2.7vw, 54px) 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.v2-site-shell .v2h-shell {
  position: relative;
  width: 100%;
  max-width: 1940px;
  margin: 0 auto;
}

.v2-site-shell .v2h-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(176px, 0.8fr) auto minmax(360px, 0.9fr);
  align-items: center;
  min-height: 92px;
  padding: 12px 20px 12px 38px;
  color: #111426;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 51, 88, 0.07);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(21, 38, 72, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.v2-site-shell .v2h-header--scrolled .v2h-bar {
  box-shadow: 0 12px 34px rgba(21, 38, 72, 0.16);
}

.v2-site-shell .v2h-logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.v2-site-shell .v2h-logo img {
  display: block;
  width: 181px;
  height: auto;
}

.v2-site-shell .v2h-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.55vw, 12px);
}

.v2-site-shell .v2h-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 52px;
  padding: 0 15px;
  color: #111426;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  background: transparent;
  border: 0;
  border-radius: 999px;
  transition: color .2s ease, background-color .2s ease;
}

.v2-site-shell .v2h-nav-link::after {
  display: none;
}

.v2-site-shell .v2h-nav-link:hover,
.v2-site-shell .v2h-nav-link:focus-visible,
.v2-site-shell .v2h-solutions.is-open .v2h-solutions-trigger {
  color: #1261f5;
  background: #edf4ff;
}

.v2-site-shell .v2h-solutions {
  position: static;
}

.v2-site-shell .v2h-solutions-trigger {
  cursor: pointer;
}

.v2-site-shell .v2h-mega-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  z-index: 2;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  width: min(1075px, calc(100vw - 100px));
  padding: 30px 30px 28px;
  visibility: hidden;
  opacity: 0;
  color: #12162a;
  background: rgba(255, 255, 255, 0.985);
  border: 1px solid rgba(31, 51, 88, 0.08);
  border-radius: 0 0 22px 22px;
  box-shadow: 0 24px 60px rgba(27, 45, 82, 0.17);
  transform: translate(-50%, -10px);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity .2s ease, transform .25s ease, visibility .2s ease;
}

.v2-site-shell .v2h-solutions.is-open .v2h-mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.v2-site-shell .v2h-mega-intro {
  display: flex;
  flex-direction: column;
  padding: 12px 8px 0;
}

.v2-site-shell .v2h-eyebrow {
  margin-bottom: 16px;
  color: #7c879f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.v2-site-shell .v2h-mega-intro h2 {
  margin: 0 0 12px;
  color: #111426;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.v2-site-shell .v2h-mega-intro p {
  margin: 0 0 22px;
  color: #7a879f;
  font-size: 15px;
  line-height: 1.55;
}

.v2-site-shell .v2h-all-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
  min-height: 48px;
  padding: 0 20px;
  color: #1261f5;
  font-size: 14px;
  font-weight: 700;
  background: #edf4ff;
  border-radius: 999px;
  transition: transform .2s ease, background-color .2s ease;
}

.v2-site-shell .v2h-all-button:hover {
  background: #e1edff;
  transform: translateY(-2px);
}

.v2-site-shell .v2h-help {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: #20263a;
}

.v2-site-shell .v2h-help-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  font-size: 18px;
  background: #f3f6fb;
  border-radius: 12px;
}

.v2-site-shell .v2h-help span:last-child {
  display: flex;
  flex-direction: column;
}

.v2-site-shell .v2h-help strong {
  font-size: 12px;
  line-height: 1.35;
}

.v2-site-shell .v2h-help small {
  margin-top: 2px;
  color: #8a95aa;
  font-size: 10px;
}

.v2-site-shell .v2h-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 20px;
}

.v2-site-shell .v2h-solution-card {
  display: block;
  min-width: 0;
  color: #15192b;
}

.v2-site-shell .v2h-solution-card > img {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.v2-site-shell .v2h-solution-card:hover > img {
  box-shadow: 0 12px 25px rgba(20, 44, 85, .15);
  transform: translateY(-3px);
}

.v2-site-shell .v2h-card-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 27px;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.v2-site-shell .v2h-card-caption strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.28;
  text-overflow: ellipsis;
}

.v2-site-shell .v2h-arrow {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.v2-site-shell .v2h-card-caption .v2h-arrow {
  width: 27px;
  height: 27px;
  color: #64718b;
  background: #f1f4f9;
  border-radius: 50%;
}

.v2-site-shell .v2h-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.v2-site-shell .v2h-search {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  color: #14182a;
  background: #f8faff;
  border-radius: 50%;
}

.v2-site-shell .v2h-lang {
  display: flex;
  align-items: center;
  min-height: 49px;
  padding: 0 8px;
  background: #f8faff;
  border-radius: 999px;
}

.v2-site-shell .v2h-sign-in {
  padding: 14px 12px;
  color: #111426;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.v2-site-shell .v2h-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 25px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(135deg, #1768f6, #0755e8);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(18, 97, 245, .25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.v2-site-shell .v2h-get-started:hover {
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 97, 245, .34);
  transform: translateY(-2px);
}

.v2-site-shell .v2h-burger,
.v2-site-shell .v2h-mobile-panel {
  display: none;
}

@media (max-width: 1439px) {
  .v2-site-shell .v2h-bar {
    grid-template-columns: 164px auto minmax(240px, auto);
    min-height: 82px;
    padding: 10px 14px 10px 28px;
  }

  .v2-site-shell .v2h-logo img {
    width: 160px;
  }

  .v2-site-shell .v2h-nav-link {
    padding: 0 10px;
    font-size: 14px;
  }

  .v2-site-shell .v2h-search,
  .v2-site-shell .v2h-sign-in {
    display: none;
  }

  .v2-site-shell .v2h-get-started {
    min-height: 50px;
    padding: 0 19px;
  }
}

@media (max-width: 1099px) {
  .v2-site-shell .v2h-header {
    padding: 12px 16px 0;
  }

  .v2-site-shell .v2h-bar {
    display: flex;
    justify-content: space-between;
    min-height: 68px;
    padding: 10px 12px 10px 22px;
  }

  .v2-site-shell .v2h-logo img {
    width: 151px;
  }

  .v2-site-shell .v2h-nav,
  .v2-site-shell .v2h-search,
  .v2-site-shell .v2h-lang,
  .v2-site-shell .v2h-sign-in,
  .v2-site-shell .v2h-get-started {
    display: none;
  }

  .v2-site-shell .v2h-actions {
    margin-left: auto;
  }

  .v2-site-shell .v2h-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0 13px;
    background: #edf4ff;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
  }

  .v2-site-shell .v2h-burger span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0;
    background: #14182a;
    border-radius: 3px;
    transition: transform .22s ease, opacity .18s ease;
  }

  .v2-site-shell .v2h-burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .v2-site-shell .v2h-burger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .v2-site-shell .v2h-burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .v2-site-shell .v2h-mobile-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
    max-height: calc(100vh - 105px);
    padding: 18px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: rgba(255, 255, 255, .985);
    border: 1px solid rgba(31, 51, 88, .08);
    border-radius: 26px;
    box-shadow: 0 20px 50px rgba(21, 38, 72, .17);
    transform: translateY(-12px) scale(.985);
    transform-origin: top;
    pointer-events: none;
    transition: opacity .2s ease, transform .25s ease, visibility .2s ease;
  }

  .v2-site-shell .v2h-mobile-panel.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .v2-site-shell .v2h-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .v2-site-shell .v2h-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 10px;
    color: #14182a;
    font-size: 17px;
    font-weight: 650;
    border-bottom: 1px solid #edf0f5;
  }

  .v2-site-shell .v2h-mobile-solutions-trigger {
    width: 100%;
    background: transparent;
    border: 0;
  }

  .v2-site-shell .v2h-mobile-solutions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease, padding .35s ease;
  }

  .v2-site-shell .v2h-mobile-solutions.is-open {
    max-height: 900px;
    padding: 12px 0 18px;
    opacity: 1;
  }

  .v2-site-shell .v2h-mobile-solutions a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 8px;
    color: #20263a;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.25;
    background: #f6f8fc;
    border-radius: 12px;
  }

  .v2-site-shell .v2h-mobile-solutions img {
    flex: 0 0 68px;
    width: 68px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
  }

  .v2-site-shell .v2h-mobile-solutions .v2h-mobile-view-all {
    justify-content: center;
    grid-column: 1 / -1;
    min-height: 48px;
    color: #1261f5;
    background: #edf4ff;
  }

  .v2-site-shell .v2h-mobile-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #edf0f5;
  }

  .v2-site-shell .v2h-mobile-lang {
    min-width: 0;
  }

  .v2-site-shell .v2h-mobile-sign-in {
    padding: 12px;
    color: #14182a;
    font-weight: 650;
  }

  .v2-site-shell .v2h-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    color: #fff;
    font-weight: 700;
    background: #1261f5;
    border-radius: 999px;
  }
}

@media (max-width: 599px) {
  .v2-site-shell .v2h-header {
    padding: 10px 10px 0;
  }

  .v2-site-shell .v2h-bar {
    min-height: 62px;
    padding-left: 17px;
  }

  .v2-site-shell .v2h-logo img {
    width: 137px;
  }

  .v2-site-shell .v2h-burger {
    width: 43px;
    height: 43px;
    padding: 0 11px;
  }

  .v2-site-shell .v2h-burger span {
    width: 21px;
  }

  .v2-site-shell .v2h-mobile-panel {
    top: calc(100% + 7px);
    max-height: calc(100vh - 90px);
    padding: 14px;
    border-radius: 20px;
  }

  .v2-site-shell .v2h-mobile-solutions {
    grid-template-columns: 1fr;
  }

  .v2-site-shell .v2h-mobile-solutions a {
    min-height: 66px;
  }

  .v2-site-shell .v2h-mobile-footer {
    grid-template-columns: 1fr 1fr;
  }

  .v2-site-shell .v2h-mobile-lang {
    grid-column: 1 / -1;
  }

  .v2-site-shell .v2h-mobile-sign-in,
  .v2-site-shell .v2h-mobile-cta {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-site-shell .v2h-mega-menu,
  .v2-site-shell .v2h-mobile-panel,
  .v2-site-shell .v2h-mobile-solutions,
  .v2-site-shell .v2h-burger span {
    transition: none;
  }
}


/* Keep desktop dropdowns open while the pointer moves into them */
@media (min-width: 1100px) {
  .v2-site-shell .v2h-solutions {
    position: relative;
  }

  .v2-site-shell .v2h-solutions::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 24px;
    content: "";
  }

  .v2-site-shell .v2h-mega-menu {
    top: calc(100% + 20px);
  }

  .v2-site-shell .v2h-lang .language-switcher-toggle {
    position: relative;
  }

  .v2-site-shell .v2h-lang .language-switcher-list {
    top: 100%;
    margin-top: 0;
  }
}


/* blogLayout=2 — language selector matching the floating header */
.v2-site-shell .v2h-lang {
  min-height: 49px;
  padding: 0;
  background: transparent;
}

.v2-site-shell .v2h-lang .language-switcher-dropdown {
  display: flex;
  align-items: center;
}

.v2-site-shell .v2h-lang .language-switcher-toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: auto;
  min-width: 92px;
  height: 49px;
  margin: 0;
  padding: 0 16px;
  color: #17213a;
  font-size: 15px;
  font-weight: 700;
  background: #f7f9fd;
  border: 1px solid rgba(35, 72, 135, .04);
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.v2-site-shell .v2h-lang .language-switcher-toggle:hover {
  color: #1261f5;
  background: #eef4ff;
  box-shadow: 0 8px 22px rgba(31, 78, 160, .08);
}

.v2-site-shell .v2h-lang .language-switcher-label {
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}

.v2-site-shell .v2h-lang .language-switcher-label::before {
  content: "🌐";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  font-size: 17px;
  line-height: 1;
}

.v2-site-shell .v2h-lang .language-switcher-label::after {
  width: 7px;
  height: 7px;
  margin: -4px 0 0 1px;
  border-right: 1.7px solid #58709b;
  border-bottom: 1.7px solid #58709b;
  content: "";
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.v2-site-shell .v2h-lang .language-switcher-toggle:hover .language-switcher-label::after {
  border-color: #1261f5;
}

.v2-site-shell .v2h-lang .language-switcher-list {
  top: 100%;
  right: 0;
  min-width: 174px;
  margin-top: 0;
  padding: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, .99);
  border: 1px solid rgba(31, 51, 88, .08);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(21, 38, 72, .15);
}

.v2-site-shell .v2h-lang .lang-option {
  min-height: 38px;
  padding: 9px 12px;
  color: #35415a;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
}

.v2-site-shell .v2h-lang .lang-option:hover,
.v2-site-shell .v2h-lang .lang-option.active {
  color: #1261f5;
  background: #eef4ff;
}


/* Compact helper card inside the Solutions mega menu */
.v2-site-shell .v2h-help {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
  padding: 10px 12px;
  background: #f7f9fd;
  border: 1px solid rgba(31, 78, 160, .05);
  border-radius: 14px;
}

.v2-site-shell .v2h-help-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #27314a;
  font-size: 16px;
  line-height: 1;
  background: #edf2fb;
  border-radius: 10px;
}

.v2-site-shell .v2h-help span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.v2-site-shell .v2h-help strong,
.v2-site-shell .v2h-help small {
  display: block;
  margin: 0;
  padding: 0;
}

.v2-site-shell .v2h-help strong {
  color: #20263a;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.v2-site-shell .v2h-help small {
  color: #8995aa;
  font-size: 10px;
  line-height: 1.3;
}


/* blogLayout=2 — compact and fully visible mobile navigation */
@media (max-width: 1099px) {
  .v2-site-shell .v2h-mobile-panel {
    padding: 14px 16px 16px;
    background: #fff;
  }

  .v2-site-shell .v2h-mobile-nav {
    gap: 0;
  }

  .v2-site-shell .v2h-mobile-link {
    min-height: 46px;
    padding: 0 8px;
    font-size: 15px;
    line-height: 1.2;
    border-bottom-color: #edf1f7;
  }

  .v2-site-shell .v2h-mobile-footer {
    display: grid;
    grid-template-columns: minmax(90px, .65fr) minmax(150px, 1.35fr);
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .v2-site-shell .v2h-mobile-lang {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .v2-site-shell .v2h-mobile-lang .language-switcher-text-wrap {
    display: block;
    width: 100%;
    overflow: visible;
  }

  .v2-site-shell .v2h-mobile-lang .language-switcher-text {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    width: 100%;
    max-width: none;
    height: auto;
    padding: 0;
    overflow: visible;
    white-space: normal;
    transform: none;
  }

  .v2-site-shell .v2h-mobile-lang .lang-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 44px;
    height: 36px;
    margin: 0;
    padding: 0 11px;
    color: #56647d;
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
    background: #f5f7fb;
    border: 1px solid #e9edf5;
    border-radius: 999px;
  }

  .v2-site-shell .v2h-mobile-lang .lang-chip:hover,
  .v2-site-shell .v2h-mobile-lang .lang-chip.active {
    color: #fff;
    background: #1261f5;
    border-color: #1261f5;
  }

  .v2-site-shell .v2h-mobile-lang .language-more-indicator {
    display: none;
  }

  .v2-site-shell .v2h-mobile-sign-in,
  .v2-site-shell .v2h-mobile-cta {
    min-height: 46px;
    padding: 0 16px;
    font-size: 14px;
    border-radius: 999px;
  }

  .v2-site-shell .v2h-mobile-sign-in {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #17213a;
    background: #f5f7fb;
  }

  .v2-site-shell .v2h-mobile-cta {
    gap: 8px;
  }
}

@media (max-width: 599px) {
  .v2-site-shell .v2h-mobile-panel {
    padding: 10px 12px 14px;
  }

  .v2-site-shell .v2h-mobile-link {
    min-height: 44px;
    font-size: 14px;
  }

  .v2-site-shell .v2h-mobile-footer {
    grid-template-columns: 1fr 1.45fr;
  }

  .v2-site-shell .v2h-mobile-lang .language-switcher-text {
    gap: 6px;
  }

  .v2-site-shell .v2h-mobile-lang .lang-chip {
    min-width: 40px;
    height: 34px;
    padding: 0 9px;
    font-size: 11px;
  }
}


/* Header glass effect and centered desktop language dropdown */
.v2-site-shell .v2h-bar {
  background: rgba(255, 255, 255, .86);
  border-color: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 48px rgba(21, 38, 72, .12);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

@media (min-width: 1100px) {
  .v2-site-shell .v2h-lang .language-switcher-list {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: top center;
  }
}

@media (max-width: 1099px) {
  .v2-site-shell .v2h-mobile-panel {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px) saturate(135%);
    -webkit-backdrop-filter: blur(20px) saturate(135%);
  }
}


/* Mobile language carousel: one row with a persistent overflow cue */
@media (max-width: 1099px) {
  .v2-site-shell .v2h-mobile-lang .language-switcher-text-wrap {
    position: relative;
    display: block;
    width: 100%;
    padding-right: 46px;
    overflow: hidden;
  }

  .v2-site-shell .v2h-mobile-lang .language-switcher-text {
    display: flex;
    flex-wrap: nowrap;
    gap: 7px;
    width: 100%;
    max-width: none;
    padding: 0 4px 5px 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .v2-site-shell .v2h-mobile-lang .language-switcher-text::-webkit-scrollbar {
    display: none;
  }

  .v2-site-shell .v2h-mobile-lang .lang-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .v2-site-shell .v2h-mobile-lang .language-more-indicator {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 46px;
    height: 36px;
    color: #1261f5;
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .94) 34%);
    pointer-events: none;
  }
}

@media (max-width: 599px) {
  .v2-site-shell .v2h-mobile-lang .language-switcher-text {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .v2-site-shell .v2h-mobile-lang .language-more-indicator {
    height: 34px;
  }
}


/* Open mobile navigation must remain fully opaque */
@media (max-width: 1099px) {
  .v2-site-shell .v2h-mobile-panel,
  .v2-site-shell .v2h-mobile-panel.is-open {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .v2-site-shell .v2h-mobile-lang .language-more-indicator {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff 34%);
  }
}


/* Preserve horizontal centering during the language menu entrance animation */
@keyframes v2LangFadeCentered {
  from {
    opacity: 0;
    transform: translate(-50%, -5px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (min-width: 1100px) {
  .v2-site-shell .v2h-lang .language-switcher-list {
    animation: v2LangFadeCentered .18s ease-out both;
  }
}


/* blogLayout=2 home hero refinement */
.v2-site-shell .welcome_area {
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  background-color: #f5f8fd !important;
  background-image:
    radial-gradient(circle at 88% 18%, rgba(35, 105, 255, .17) 0, rgba(35, 105, 255, 0) 32%),
    radial-gradient(circle at 8% 78%, rgba(31, 190, 220, .10) 0, rgba(31, 190, 220, 0) 29%),
    linear-gradient(135deg, #f8faff 0%, #f3f7fd 52%, #f8fbff 100%) !important;
  color: #111318;
  font-family: var(--font-inter), Inter, Arial, sans-serif;
}

.v2-site-shell .welcome_area::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(52, 91, 155, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 91, 155, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 88%);
  content: "";
  pointer-events: none;
}

.v2-site-shell .welcome_area > .container {
  width: calc(100% - 96px);
  max-width: 1680px;
  margin-right: auto;
  margin-left: auto;
}

.v2-site-shell .welcome_area .home-hero-copy {
  position: relative;
  z-index: 2;
  width: 56%;
  max-width: 860px;
  flex: 0 0 56%;
}

.v2-site-shell .welcome_area .title2 {
  max-width: 840px;
}

.v2-site-shell .welcome_area .title2 h1 {
  max-width: 790px;
  margin: 0;
  color: #15172b;
  font-family: var(--font-inter), Inter, Arial, sans-serif;
  font-size: clamp(58px, 5.15vw, 88px);
  font-weight: 750;
  letter-spacing: -.055em;
  line-height: .98;
}

.v2-site-shell .welcome_area .hero-subtitle,
.v2-site-shell .welcome_area .lead,
.v2-site-shell .welcome_area .hero-cta-note {
  color: #647b98;
  font-family: var(--font-inter), Inter, Arial, sans-serif;
}

.v2-site-shell .welcome_area .hero-subtitle {
  max-width: 720px;
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.52;
}

.v2-site-shell .welcome_area .lead {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.6;
}

.v2-site-shell .welcome_area .illas_box {
  right: clamp(42px, 5vw, 105px);
  max-width: min(620px, 34vw);
}

.v2-site-shell .welcome_area .illas_box::before {
  position: absolute;
  top: 13%;
  left: 5%;
  z-index: -1;
  width: 92%;
  height: 68%;
  background: radial-gradient(ellipse, rgba(37, 111, 255, .17), rgba(43, 184, 224, .07) 48%, transparent 72%);
  filter: blur(18px);
  content: "";
  pointer-events: none;
}

@media (min-width: 1800px) {
  .v2-site-shell .welcome_area > .container {
    max-width: 1760px;
  }

  .v2-site-shell .welcome_area .illas_box {
    right: max(70px, calc((100vw - 1840px) / 2));
    max-width: 650px;
  }
}

@media (max-width: 1199px) {
  .v2-site-shell .welcome_area {
    min-height: 690px;
  }

  .v2-site-shell .welcome_area > .container {
    width: calc(100% - 64px);
  }

  .v2-site-shell .welcome_area .home-hero-copy {
    width: 58%;
    flex-basis: 58%;
  }

  .v2-site-shell .welcome_area .title2 h1 {
    font-size: clamp(50px, 5.5vw, 69px);
  }

  .v2-site-shell .welcome_area .illas_box {
    right: 24px;
    max-width: 470px;
  }
}

@media (max-width: 1023px) {
  .v2-site-shell .welcome_area {
    min-height: 0;
  }

  .v2-site-shell .welcome_area > .container {
    width: calc(100% - 48px);
  }

  .v2-site-shell .welcome_area .home-hero-copy {
    width: 100%;
    max-width: 780px;
    flex-basis: 100%;
    margin: 0 auto;
  }

  .v2-site-shell .welcome_area .title2 {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .v2-site-shell .welcome_area {
    padding-top: 76px !important;
    padding-bottom: 62px !important;
    background-image:
      radial-gradient(circle at 92% 8%, rgba(35, 105, 255, .14), transparent 34%),
      linear-gradient(160deg, #f8faff 0%, #f2f7fd 100%) !important;
  }

  .v2-site-shell .welcome_area > .container {
    width: calc(100% - 32px);
    padding-right: 0;
    padding-left: 0;
  }

  .v2-site-shell .welcome_area .title2 h1 {
    font-size: clamp(42px, 12vw, 58px);
    letter-spacing: -.05em;
    line-height: 1;
  }

  .v2-site-shell .welcome_area .hero-subtitle {
    font-size: 18px;
  }
}


/* blogLayout=2 home hero — compact spacing and richer blue background */
@media (min-width: 1200px) {
  .v2-site-shell .welcome_area {
    height: auto !important;
    min-height: 720px;
    padding: 88px 0 72px !important;
  }

  .v2-site-shell .welcome_area.home-hero-spacious,
  .v2-site-shell .welcome_area.home-hero-fr {
    padding-top: 88px !important;
  }

  .v2-site-shell .welcome_area > .container,
  .v2-site-shell .welcome_area.home-hero-spacious > .container,
  .v2-site-shell .welcome_area.home-hero-fr > .container {
    padding-top: 0 !important;
  }

  .v2-site-shell .welcome_area .illas_box {
    top: 88px;
  }
}

.v2-site-shell .welcome_area::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 23% 25%, rgba(47, 111, 237, .10) 0 3px, transparent 4px),
    radial-gradient(circle at 30% 18%, rgba(47, 111, 237, .08) 0 2px, transparent 3px),
    radial-gradient(circle at 55% 78%, rgba(33, 180, 221, .10) 0 3px, transparent 4px),
    radial-gradient(circle at 77% 16%, rgba(47, 111, 237, .08) 0 2px, transparent 3px),
    radial-gradient(ellipse at 50% 112%, rgba(70, 153, 255, .13), transparent 48%);
  background-size: 310px 260px, 410px 330px, 360px 300px, 460px 360px, 100% 100%;
  content: "";
  pointer-events: none;
}

@media (max-width: 1199px) {
  .v2-site-shell .welcome_area {
    padding-top: 72px !important;
    padding-bottom: 64px !important;
  }

  .v2-site-shell .welcome_area > .container,
  .v2-site-shell .welcome_area.home-hero-spacious > .container,
  .v2-site-shell .welcome_area.home-hero-fr > .container {
    padding-top: 0 !important;
  }
}

@media (max-width: 767px) {
  .v2-site-shell .welcome_area {
    padding-top: 54px !important;
    padding-bottom: 52px !important;
  }

  .v2-site-shell .welcome_area::after {
    background:
      radial-gradient(circle at 12% 18%, rgba(47, 111, 237, .10) 0 2px, transparent 3px),
      radial-gradient(circle at 88% 34%, rgba(33, 180, 221, .10) 0 2px, transparent 3px),
      radial-gradient(ellipse at 50% 108%, rgba(70, 153, 255, .12), transparent 52%);
    background-size: 220px 190px, 250px 210px, 100% 100%;
  }
}


/* Continue each page hero background behind the floating header */
.v2-site-shell .v2h-header {
  background: #f5f6f2;
}

/* Home hero */
.v2-site-shell:has(.welcome_area) .v2h-header {
  background-color: #f5f8fd;
  background-image:
    radial-gradient(circle at 88% 145%, rgba(35, 105, 255, .14), transparent 42%),
    linear-gradient(135deg, #f8faff 0%, #f3f7fd 62%, #f8fbff 100%);
}

/* Blog and editorial pages */
.v2-site-shell:has(.blog-v2-page) .v2h-header,
.v2-site-shell:has(.single-blog-v2) .v2h-header {
  background: #fafaf8;
}

/* Solutions starts with a warmer hero background; continue it behind the header. */
.v2-site-shell:has(.solutions-v2-page) .v2h-header {
  background: #f4f5f1;
}

/* Brand notice */
.v2-site-shell:has(.brand-notice-v2) .v2h-header {
  background: #f4f5f1;
}

/* Legal, delete-account and other modern content pages */
.v2-site-shell:has(.legal-v2-shell) .v2h-header {
  background: #f5f6f2;
}

@media (max-width: 1099px) {
  .v2-site-shell .v2h-header {
    background-size: cover;
  }

  .v2-site-shell .v2h-mobile-panel,
  .v2-site-shell .v2h-mobile-panel.is-open {
    background: #fff;
  }
}


/* Strong page-aware header backdrop continuity */
body:has(.blog-v2-page) .v2-site-shell .v2h-header {
  background: #fafaf8;
}

body:has(.solutions-v2-page) .v2-site-shell .v2h-header {
  background: #f4f5f1;
}

body:has(.pricing-v2-page) .v2-site-shell .v2h-header {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 159, 28, .15), transparent 25%),
    #f5f6f2;
}


/* Keep hash-linked sections visible below the floating header */
.v2-site-shell [id] {
  scroll-margin-top: 148px;
}

@media (max-width: 1099px) {
  .v2-site-shell [id] {
    scroll-margin-top: 106px;
  }
}

@media (max-width: 599px) {
  .v2-site-shell [id] {
    scroll-margin-top: 92px;
  }
}


/* Support hero backdrop behind the floating header */
body:has(.support-v2) .v2-site-shell .v2h-header {
  background:
    radial-gradient(circle at 86% 145%, rgba(23, 100, 239, .12), transparent 38%),
    #f5f8fd;
}


/* Softer contact card for layout 2 */
.v2-site-shell .contact-v2-soft {
  background: #f5f8fd;
  padding: 44px 0;
}
.v2-site-shell .contact-v2-soft__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  overflow: hidden;
  border: 1px solid #dce6f5;
  border-radius: 22px;
  background:
    radial-gradient(circle at 91% 0, rgba(23, 100, 239, .09), transparent 31%),
    #fff;
  padding: 32px clamp(28px, 4vw, 52px);
  box-shadow: 0 18px 50px rgba(31, 63, 111, .08);
}
.v2-site-shell .contact-v2-soft__copy {
  min-width: 0;
}
.v2-site-shell .contact-v2-soft__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #1764ef;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.v2-site-shell .contact-v2-soft__copy h2 {
  margin: 0 0 8px;
  color: #15172b;
  font-family: var(--font-inter), Inter, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 750;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.v2-site-shell .contact-v2-soft__copy p {
  margin: 0;
  color: #60718b;
  font-size: 16px;
  line-height: 1.55;
}
.v2-site-shell .contact-v2-soft__button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  flex: 0 0 min(100%, 350px);
  min-height: 76px;
  border: 1px solid #cdddf7;
  border-radius: 15px;
  background: #edf4ff;
  padding: 12px 16px;
  color: #15172b;
  text-align: left;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.v2-site-shell .contact-v2-soft__button:hover {
  border-color: #a9c5f5;
  color: #15172b;
  box-shadow: 0 12px 26px rgba(23, 100, 239, .12);
  transform: translateY(-2px);
}
.v2-site-shell .contact-v2-soft__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #1764ef;
}
.v2-site-shell .contact-v2-soft__icon svg {
  width: 21px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.v2-site-shell .contact-v2-soft__button small,
.v2-site-shell .contact-v2-soft__button strong {
  display: block;
}
.v2-site-shell .contact-v2-soft__button small {
  margin-bottom: 2px;
  color: #4d5f79;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
}
.v2-site-shell .contact-v2-soft__button strong {
  color: #15172b;
  font-size: 15px;
  font-weight: 800;
}
.v2-site-shell .contact-v2-soft__button b {
  color: #1764ef;
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .v2-site-shell .contact-v2-soft {
    padding: 30px 0;
  }
  .v2-site-shell .contact-v2-soft__card {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
    padding: 27px 22px;
  }
  .v2-site-shell .contact-v2-soft__button {
    flex-basis: auto;
    width: 100%;
  }
}
