/* =============================================================
   CloudColleague — Landing v2 styles
   Adds on top of /colors_and_type.css. All custom tokens are
   referenced via :root vars.
   ============================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-page);
  color: var(--fg-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button { cursor: pointer; font-family: inherit; border: 0; background: transparent; }
img { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

.v2-page {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(110,200,255,0.20) 0%, rgba(110,200,255,0) 60%),
    radial-gradient(60% 50% at 0% 30%, rgba(17,183,244,0.10) 0%, rgba(17,183,244,0) 60%),
    var(--bg-page);
}

/* ---------- shared ---------- */
.v2-section { padding: 80px 0; }
.v2-section-cats { padding-top: 40px; }
.v2-section-head { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin-bottom: 36px; }
.v2-section-head.v2-head-row { flex-direction: row; align-items: flex-end; justify-content: space-between; max-width: none; }
.v2-section-sub { font-size: 18px; line-height: 28px; color: var(--fg-body); margin: 0; }

.v2-eyebrow {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px;
  border-radius: 999px; background: rgba(2,132,199,0.08); color: var(--sky-700);
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em; width: max-content;
}
.v2-eyebrow-blue { color: var(--sky-600); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.v2-eyebrow-on-dark {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px;
  border-radius: 999px; background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.92);
  font-size: 12px; font-weight: 600;
}

.v2-h2 { font-family: Poppins; font-weight: 600; font-size: 44px; line-height: 1.1; letter-spacing: -0.022em; color: var(--neutral-900); margin: 0; }

.v2-link, .v2-link-fwd { color: var(--sky-700); font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.v2-link-fwd:hover { color: var(--sky-600); }

/* ---------- buttons ---------- */
.v2-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: 100px; font-family: Poppins; font-weight: 600; font-size: 14px; line-height: 22px; transition: all .15s ease-out; }
.v2-btn-primary { background: var(--sky-600); color: #fff; box-shadow: 0 4px 14px rgba(2,132,199,0.30); }
.v2-btn-primary:hover { background: var(--sky-700); }
.v2-btn-ghost { color: var(--neutral-700); background: transparent; }
.v2-btn-ghost:hover { background: var(--neutral-100); }

.v2-cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px;
  background: linear-gradient(180deg, #57C3FF 0%, #2B8FF2 100%);
  color: #fff; font-family: Poppins; font-weight: 600; font-size: 15px;
  box-shadow: 0 12px 26px -12px rgba(17,100,244,0.55), inset 0 1px 0 1px rgba(255,255,255,0.18);
  transition: filter .15s ease-out, transform .12s ease-out;
}
.v2-cta-pill:hover { filter: brightness(1.05); }
.v2-cta-pill:active { transform: scale(0.98); }

.v2-cta-pill-gradient { display: inline-flex; align-items: center; gap: 8px; padding: 16px 26px; border-radius: 999px; background: linear-gradient(180deg, #57C3FF 0%, #2B8FF2 100%); color: #fff; font-family: Inter; font-weight: 700; font-size: 16px; box-shadow: 0 12px 26px -12px rgba(17,100,244,0.55), inset 0 1px 0 1px rgba(255,255,255,0.18); }
.v2-cta-pill-ghost   { display: inline-flex; align-items: center; gap: 8px; padding: 16px 26px; border-radius: 999px; color: #fff; font-family: Inter; font-weight: 700; font-size: 16px; border: 1px solid rgba(255,255,255,0.24); }

/* ---------- NAV ---------- */
.v2-nav {
  position: sticky; top: 14px; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 24px;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(24px);
  border-radius: 100px;
  box-shadow: 0 4px 60px rgba(8,47,73,0.10), inset 0 1px 0 0 rgba(255,255,255,0.5);
  border: 1px solid rgba(2,132,199,0.06);
  margin-top: 14px;
}
.v2-nav-brand { display: flex; align-items: center; gap: 10px; }
.v2-nav-brand img { width: 36px; height: 24px; object-fit: contain; }
.v2-nav-brand span { font-family: Outfit, sans-serif; font-weight: 500; font-size: 18px; letter-spacing: -0.01em; color: var(--sky-600); }
.v2-nav-links { display: flex; gap: 4px; }
.v2-nav-links a { padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--neutral-700); border-radius: 100px; cursor: pointer; transition: all .15s ease-out; }
.v2-nav-links a:hover { color: var(--sky-700); background: rgba(2,132,199,0.06); }
.v2-nav-links a.active { color: var(--sky-700); background: rgba(2,132,199,0.10); }
.v2-nav-actions { display: flex; gap: 6px; align-items: center; }
.v2-nav-actions .v2-link { padding: 0 10px; font-size: 12px; font-weight: 500; color: var(--neutral-600); }

/* ---------- HERO ---------- */
.v2-hero { position: relative; padding: 96px 0 64px; }
.v2-hero-bg {
  position: absolute; inset: -100px 0 0; pointer-events: none; z-index: -1;
  background:
    radial-gradient(40% 30% at 50% 5%, rgba(56,189,248,0.20) 0%, rgba(56,189,248,0) 70%),
    radial-gradient(30% 20% at 18% 40%, rgba(110,200,255,0.20) 0%, rgba(110,200,255,0) 70%),
    radial-gradient(30% 20% at 82% 40%, rgba(110,200,255,0.20) 0%, rgba(110,200,255,0) 70%);
}
.v2-hero-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.v2-hero-title {
  margin: 8px 0 0; max-width: 920px;
  font-family: Poppins; font-weight: 600; font-size: 64px; line-height: 1.05; letter-spacing: -0.022em;
  text-align: center; color: var(--sky-900);
}
.v2-hero-title em { font-style: normal; font-weight: 500; color: var(--sky-600); background: linear-gradient(90deg, #0284C7, #38BDF8); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.v2-hero-sub { margin: 0; max-width: 700px; font-size: 19px; line-height: 28px; color: var(--neutral-700); text-align: center; }

/* Intent panel */
.v2-intent-panel {
  width: 100%; max-width: 1100px; margin-top: 28px;
  background: #fff;
  border: 1px solid rgba(2,132,199,0.10);
  border-radius: 24px;
  box-shadow: 0 32px 64px -16px rgba(8,47,73,0.12), 0 4px 16px rgba(2,132,199,0.06);
  display: grid; grid-template-columns: 360px 1fr;
  overflow: hidden;
}
.v2-intent-list { display: flex; flex-direction: column; padding: 12px; background: linear-gradient(180deg, #F7FAFF 0%, #FFFFFF 100%); border-right: 1px solid var(--neutral-100); gap: 6px; }

.v2-intent {
  display: flex; align-items: stretch; width: 100%;
  text-align: left; padding: 14px 16px;
  border-radius: 16px; background: transparent;
  transition: background .15s ease-out, transform .15s ease-out;
}
.v2-intent:hover { background: rgba(2,132,199,0.06); }
.v2-intent.expanded { background: #fff; box-shadow: 0 4px 14px rgba(8,47,73,0.08), 0 0 0 1px rgba(2,132,199,0.12); }
.v2-intent-head { display: flex; align-items: center; gap: 14px; width: 100%; }
.v2-intent-icon {
  width: 44px; height: 44px; border-radius: 12px; flex: 0 0 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(2,132,199,0.10); color: var(--intent-accent, var(--sky-600));
  transition: background .15s ease-out, color .15s ease-out;
}
.v2-intent.expanded .v2-intent-icon { background: var(--intent-accent, var(--sky-600)); color: #fff; }
.v2-intent-title { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.v2-intent-h { font-family: Poppins; font-weight: 600; font-size: 16px; color: var(--neutral-900); }
.v2-intent-b { font-size: 12.5px; color: var(--neutral-500); line-height: 18px; margin-top: 2px; }
.v2-intent-chevron { color: var(--neutral-400); flex: 0 0 20px; }
.v2-intent.expanded .v2-intent-chevron { color: var(--intent-accent, var(--sky-600)); }

.v2-intent-detail { padding: 28px 28px 24px; display: flex; flex-direction: column; gap: 18px; min-height: 230px; animation: v2-fade .4s ease-out; }
@keyframes v2-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.v2-intent-form { display: flex; flex-direction: column; gap: 16px; }
.v2-form-row { display: grid; grid-template-columns: 1fr 240px max-content; gap: 12px; align-items: flex-end; }
.v2-form-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.v2-form-field label { font-size: 12px; font-weight: 600; color: var(--neutral-700); padding-left: 2px; }
.v2-input { display: flex; align-items: center; gap: 10px; background: #fff; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--neutral-200); transition: all .15s ease-out; }
.v2-input:focus-within { border-color: var(--sky-600); box-shadow: 0 0 0 4px rgba(2,132,199,0.12); }
.v2-input input { flex: 1; min-width: 0; border: 0; outline: 0; font: 400 15px/22px Poppins; color: var(--neutral-800); background: transparent; }
.v2-input input::placeholder { color: var(--neutral-400); }
.v2-chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.v2-chip { padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--neutral-700); background: var(--neutral-100); transition: all .15s ease-out; }
.v2-chip:hover { background: var(--sky-100); color: var(--sky-700); }
.v2-chip.active { background: var(--sky-100); color: var(--sky-700); box-shadow: inset 0 0 0 1px var(--sky-200); }

.v2-intent-hint {
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--neutral-500);
}
.v2-intent-hint svg { color: var(--accent-green); flex: 0 0 14px; }

.v2-trust-strip {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-top: 28px; padding: 8px 22px;
  background: rgba(224,242,254,0.5); backdrop-filter: blur(20px);
  border-radius: 999px; border: 1px solid var(--sky-200);
  font-size: 13px; color: var(--neutral-800);
}
.v2-trust-item { display: inline-flex; align-items: center; gap: 6px; color: var(--neutral-800); }
.v2-trust-item svg { color: var(--sky-600); }
.v2-trust-strip .dot { width: 3px; height: 3px; border-radius: 999px; background: var(--sky-700); }

/* ---------- LIVE ACTIVITY ---------- */
.v2-live {
  margin-top: 16px;
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.95) 100%);
  border: 1px solid rgba(2,132,199,0.10);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(8,47,73,0.06);
}
.v2-live-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.v2-live-pulse { width: 10px; height: 10px; border-radius: 999px; background: #16A34A; box-shadow: 0 0 0 0 rgba(22,163,74,0.6); animation: v2-pulse 2s infinite; }
.v2-live-pulse.off { background: #98A2B3; animation: none; }
@keyframes v2-pulse { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.6); } 70% { box-shadow: 0 0 0 10px rgba(22,163,74,0); } 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); } }
.v2-live-label { font-size: 13px; font-weight: 600; color: var(--neutral-700); letter-spacing: 0.02em; text-transform: uppercase; }
.v2-live-meta  { font-size: 11.5px; color: var(--neutral-500); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

.v2-live-grid { display: grid; grid-template-columns: repeat(3, max-content) 1fr; gap: 32px; align-items: center; }
.v2-counter { display: flex; flex-direction: column; gap: 2px; padding-right: 32px; border-right: 1px solid var(--neutral-100); }
.v2-counter:nth-child(3) { border-right: 0; }
.v2-counter-n { font-family: Poppins; font-weight: 700; font-size: 32px; line-height: 1; color: var(--sky-900); letter-spacing: -0.02em; }
.v2-counter-l { font-size: 12.5px; color: var(--neutral-500); margin-top: 4px; }

.v2-feed { overflow: hidden; height: 44px; position: relative; }
.v2-feed-window { position: relative; height: 44px; }
.v2-feed-row {
  position: absolute; inset: 0;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 100px;
  background: var(--row-bg); color: var(--row-fg);
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1), opacity .4s ease-out;
}
.v2-feed-row.rest { opacity: 0; pointer-events: none; }
.v2-feed-row.active { opacity: 1; }
.v2-feed-icon { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 999px; background: rgba(255,255,255,0.6); }
.v2-feed-text { font-weight: 600; font-size: 13px; color: var(--neutral-900); }
.v2-feed-loc { font-size: 12px; color: var(--neutral-500); }

/* ---------- SMART MATCH ---------- */
.v2-match-panel {
  background: #fff; border: 1px solid rgba(2,132,199,0.10); border-radius: 24px;
  box-shadow: 0 32px 64px -16px rgba(8,47,73,0.10);
  overflow: hidden;
}
.v2-match-input {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 28px;
  background: linear-gradient(180deg, #F7FAFF 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--neutral-100);
}
.v2-match-typed { flex: 1; font-family: Poppins; font-weight: 500; font-size: 20px; color: var(--neutral-900); }
.v2-caret { animation: v2-blink 1s steps(1) infinite; color: var(--sky-600); }
@keyframes v2-blink { 50% { opacity: 0; } }
.v2-match-shortcut { padding: 4px 10px; border-radius: 8px; background: var(--neutral-100); border: 1px solid var(--neutral-200); font-size: 12px; color: var(--neutral-500); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

.v2-match-results { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.v2-match-row {
  display: grid; grid-template-columns: 56px 44px 1fr max-content 44px;
  align-items: center; gap: 18px;
  padding: 14px 16px; border-radius: 16px;
  background: #fff; transition: background .15s ease-out;
  opacity: 0; transform: translateY(8px);
  animation: v2-rise .5s ease-out forwards;
}
.v2-match-row:hover { background: var(--sky-50); }
@keyframes v2-rise { to { opacity: 1; transform: none; } }
.v2-match-pct { position: relative; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-family: Poppins; font-weight: 700; font-size: 13px; color: var(--sky-700); }
.v2-match-pct small { font-size: 9px; }
.v2-match-pct span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 1px; }
.v2-ring { position: absolute; inset: 0; width: 44px; height: 44px; }
.v2-match-avatar { width: 44px; height: 44px; border-radius: 999px; object-fit: cover; }
.v2-match-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.v2-match-title { font-weight: 600; font-size: 15px; color: var(--neutral-900); }
.v2-match-sub { font-size: 12.5px; color: var(--neutral-500); }
.v2-match-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.v2-tag { font-size: 11px; padding: 2px 8px; border-radius: 999px; background: var(--neutral-100); color: var(--neutral-700); font-weight: 500; }
.v2-match-pay { font-family: Poppins; font-weight: 600; font-size: 14px; color: var(--neutral-800); }
.v2-match-cta { width: 36px; height: 36px; border-radius: 999px; background: var(--sky-100); color: var(--sky-700); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.v2-match-cta:hover { background: var(--sky-200); }

.v2-match-foot { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px; border-top: 1px solid var(--neutral-100); background: #FCFCFD; font-size: 12.5px; color: var(--neutral-500); }
.v2-match-foot span { display: inline-flex; align-items: center; gap: 6px; }
.v2-match-foot svg { color: var(--accent-green); }

/* ---------- AUSTRALIA MAP ---------- */
.v2-map-panel { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: stretch; }
.v2-map-canvas {
  background: linear-gradient(180deg, #F7FAFF 0%, #FFFFFF 100%);
  border: 1px solid rgba(2,132,199,0.10);
  border-radius: 24px; padding: 12px; min-height: 480px;
  box-shadow: 0 8px 28px rgba(8,47,73,0.06);
}
.v2-map-svg { width: 100%; height: auto; display: block; }
.v2-state { cursor: pointer; transition: transform .2s cubic-bezier(0.16, 1, 0.3, 1); }
.v2-state:hover { transform: translateY(-3px); }
.v2-state rect { transition: fill .2s ease-out, stroke .2s ease-out, filter .25s ease-out; }

.v2-map-side {
  background: var(--sky-900); color: #fff; border-radius: 24px; padding: 28px;
  display: flex; flex-direction: column; gap: 20px; position: relative; overflow: hidden;
  background:
    radial-gradient(60% 60% at 0% 0%, rgba(56,189,248,0.30) 0%, rgba(56,189,248,0) 60%),
    radial-gradient(60% 50% at 100% 100%, rgba(110,200,255,0.20) 0%, rgba(110,200,255,0) 60%),
    var(--sky-900);
}
.v2-map-side-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.v2-map-side-head .v2-eyebrow-blue { color: rgba(110,200,255,0.95); }
.v2-map-state { margin: 4px 0 0; font-family: Poppins; font-weight: 600; font-size: 22px; line-height: 28px; }
.v2-map-count { text-align: right; }
.v2-map-count .big { display: block; font-family: Poppins; font-weight: 700; font-size: 28px; color: #fff; line-height: 1; }
.v2-map-count .lbl { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 4px; display: block; }

.v2-map-list { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.v2-map-list-h { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.v2-map-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); transition: background .15s ease-out; }
.v2-map-row:hover { background: rgba(255,255,255,0.10); }
.v2-map-bullet { width: 6px; height: 6px; border-radius: 999px; }
.v2-map-role { flex: 1; font-size: 14px; font-weight: 500; color: #fff; }
.v2-map-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; background: #fff; color: var(--sky-700); font-weight: 600; font-size: 14px; align-self: flex-start; }
.v2-map-cta:hover { background: var(--sky-50); }

/* ---------- HOW IT WORKS TABS ---------- */
.v2-tabs { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; background: var(--neutral-100); margin-bottom: 32px; }
.v2-tab { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; font-family: Poppins; font-weight: 600; font-size: 14px; color: var(--neutral-600); transition: all .15s ease-out; }
.v2-tab:hover { color: var(--neutral-800); }
.v2-tab.active { background: #fff; color: var(--sky-700); box-shadow: 0 1px 3px rgba(16,24,40,0.10); }
.v2-how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.v2-how-card {
  background: #fff; border: 1px solid rgba(2,132,199,0.10); border-radius: 20px;
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transform: translateY(8px);
  animation: v2-rise .4s ease-out forwards;
  transition: transform .15s ease-out, box-shadow .15s ease-out;
}
.v2-how-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px -8px rgba(8,47,73,0.10); }
.v2-how-num { font-family: Poppins; font-weight: 600; font-size: 11px; letter-spacing: 0.08em; color: var(--sky-700); }
.v2-how-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--sky-100); color: var(--sky-700); display: flex; align-items: center; justify-content: center; }
.v2-how-title { margin: 0; font-family: Poppins; font-weight: 600; font-size: 18px; line-height: 26px; color: var(--neutral-900); }
.v2-how-desc { margin: 0; font-size: 14px; line-height: 22px; color: var(--neutral-600); }
.v2-how-cta-row { display: flex; gap: 16px; align-items: center; margin-top: 28px; }

/* ---------- CATEGORIES V2 ---------- */
.v2-cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.v2-cat-card {
  position: relative; min-height: 240px;
  border-radius: 20px; overflow: hidden;
  background-size: cover; background-position: center;
  padding: 18px; display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .2s ease-out, box-shadow .2s ease-out;
}
.v2-cat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -16px rgba(8,47,73,0.30); }
.v2-cat-tag { align-self: flex-start; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.18); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.20); color: #fff; font-size: 11px; font-weight: 600; }
.v2-cat-foot { display: flex; justify-content: space-between; align-items: flex-end; }
.v2-cat-title { font-family: Poppins; font-weight: 600; font-size: 20px; line-height: 26px; color: #fff; }
.v2-cat-count { font-size: 13px; color: rgba(255,255,255,0.78); margin-top: 2px; }
.v2-cat-arrow { width: 38px; height: 38px; border-radius: 999px; background: rgba(255,255,255,0.18); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.20); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.v2-cat-card:hover .v2-cat-arrow { background: rgba(255,255,255,0.35); }

/* ---------- TESTIMONIALS V2 ---------- */
.v2-quote-card {
  position: relative; padding: 40px 44px; border-radius: 24px;
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(56,189,248,0.25) 0%, rgba(56,189,248,0) 60%),
    var(--sky-900);
  color: #fff;
  overflow: hidden;
  animation: v2-fade .4s ease-out;
}
.v2-quote-card::after { content: "“"; position: absolute; right: 0; top: -80px; font-family: Poppins; font-weight: 700; font-size: 300px; line-height: 1; color: rgba(110,200,255,0.10); pointer-events: none; }
.v2-stars { color: var(--accent-yellow); letter-spacing: 3px; font-size: 14px; }
.v2-stars-big { color: var(--accent-yellow); letter-spacing: 4px; font-size: 22px; }
.v2-stars-row { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.v2-stars-sub { font-size: 13px; color: var(--neutral-500); }
.v2-quote-text { font-family: Poppins; font-weight: 600; font-size: 26px; line-height: 36px; letter-spacing: -0.01em; color: #fff; margin: 18px 0 26px; max-width: 800px; }
.v2-quote-who { display: flex; gap: 12px; align-items: center; }
.v2-quote-who img { width: 44px; height: 44px; border-radius: 999px; object-fit: cover; }
.v2-quote-name { font-family: Inter; font-weight: 700; font-size: 14px; color: #fff; }
.v2-quote-role { font-family: Inter; font-size: 12.5px; color: rgba(255,255,255,0.65); }
.v2-quote-dots { position: absolute; right: 40px; bottom: 40px; display: flex; gap: 6px; }
.v2-dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.30); transition: background .15s, width .15s; }
.v2-dot:hover { background: rgba(255,255,255,0.55); }
.v2-dot.active { background: #fff; width: 20px; border-radius: 999px; }

/* ---------- CTA V2 ---------- */
.v2-section-cta { padding: 60px 0 100px; }
.v2-cta-panel {
  position: relative; overflow: hidden; padding: 0;
  border-radius: 32px;
  background: var(--sky-900);
  color: #fff;
  min-height: 480px;
  display: flex; flex-direction: column;
  isolation: isolate;
}
.v2-cta-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: 0.55;
}
.v2-cta-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(60% 60% at 10% 0%, rgba(8,183,225,0.55) 0%, rgba(17,100,244,0) 60%),
    radial-gradient(50% 50% at 90% 100%, rgba(110,200,255,0.30) 0%, rgba(110,200,255,0) 60%),
    linear-gradient(180deg, rgba(8,47,73,0.55) 0%, rgba(8,47,73,0.85) 100%);
}
.v2-cta-content { position: relative; z-index: 2; padding: 80px 56px; display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center; }
.v2-cta-title { margin: 0; font-family: Inter; font-weight: 700; font-size: 64px; line-height: 1.04; letter-spacing: -0.036em; color: #fff; }
.v2-cta-sub { margin: 0; max-width: 720px; font-family: Poppins; font-size: 18px; line-height: 28px; color: rgba(255,255,255,0.85); }
.v2-cta-row { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; justify-content: center; }
.v2-cta-meta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 16px; color: rgba(255,255,255,0.75); font-size: 13px; }
.v2-cta-meta span { display: inline-flex; align-items: center; gap: 6px; }
.v2-cta-meta svg { color: rgba(255,255,255,0.95); }
.v2-cta-meta .dot { width: 3px; height: 3px; border-radius: 999px; background: rgba(255,255,255,0.4); align-self: center; }

/* ---------- FOOTER V2 ---------- */
.v2-footer {
  margin: 0 -80px;
  padding: 80px;
  background:
    linear-gradient(180deg, rgba(10,48,87,0.97), rgba(10,48,87,0.97)),
    radial-gradient(60% 40% at 0% 0%, rgba(56,189,248,0.12), rgba(56,189,248,0) 60%);
  color: #fff;
}
.v2-footer-top { padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.v2-footer-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; }
.v2-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.v2-footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.72); transition: color .15s ease-out; }
.v2-footer-col a:hover { color: #fff; }
.v2-footer-h { font-family: Poppins; font-weight: 600; font-size: 14px; color: #fff; margin-bottom: 16px; letter-spacing: 0.02em; }
.v2-footer-addr { margin: 0 0 8px; font-size: 13.5px; line-height: 22px; color: rgba(255,255,255,0.72); }
.v2-footer-contact { font-size: 13.5px; color: rgba(110,200,255,0.95); }
.v2-footer-contact:hover { color: #fff; }

.v2-footer-mid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.v2-footer-brand-block { display: flex; flex-direction: column; gap: 16px; }
.v2-footer-brand { display: flex; align-items: center; gap: 10px; }
.v2-footer-brand img { width: 36px; height: 24px; object-fit: contain; }
.v2-footer-brand span { font-family: Outfit, sans-serif; font-weight: 500; font-size: 22px; color: #fff; letter-spacing: -0.01em; }
.v2-footer-tag { margin: 0; max-width: 460px; font-size: 14px; line-height: 22px; color: rgba(255,255,255,0.72); }
.v2-footer-social { display: flex; gap: 10px; margin-top: 4px; }
.v2-social-btn { width: 38px; height: 38px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); color: rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center; transition: all .15s ease-out; }
.v2-social-btn:hover { background: rgba(56,189,248,0.18); color: #fff; border-color: rgba(110,200,255,0.40); }

.v2-footer-subscribe { display: flex; flex-direction: column; gap: 12px; }
.v2-sub-h { font-family: Poppins; font-weight: 600; font-size: 16px; color: #fff; }
.v2-sub-p { margin: 0; font-size: 13px; line-height: 20px; color: rgba(255,255,255,0.65); max-width: 360px; }
.v2-sub-form { display: flex; gap: 8px; padding: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; max-width: 420px; transition: border-color .15s ease-out; }
.v2-sub-form:focus-within { border-color: rgba(110,200,255,0.50); }
.v2-sub-form input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; padding: 8px 14px; font: 400 14px/22px Poppins; color: #fff; }
.v2-sub-form input::placeholder { color: rgba(255,255,255,0.40); }
.v2-sub-form button { padding: 10px 20px; border-radius: 100px; background: linear-gradient(180deg, #57C3FF 0%, #2B8FF2 100%); color: #fff; font: 600 14px Poppins; box-shadow: 0 4px 12px rgba(17,100,244,0.30), inset 0 1px 0 1px rgba(255,255,255,0.18); }
.v2-sub-form button:hover { filter: brightness(1.05); }

.v2-footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; color: rgba(255,255,255,0.60); font-size: 12.5px; }
.v2-footer-stores { display: flex; gap: 10px; }
.v2-store { display: inline-block; padding: 8px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; font-size: 11px; line-height: 14px; color: #fff; }
.v2-store strong { display: block; font-size: 9px; font-weight: 500; color: rgba(255,255,255,0.6); margin-bottom: 2px; }

/* ---------- FLOATING HELP ---------- */
.v2-fab-wrap { position: fixed; right: 24px; bottom: 24px; z-index: 40; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.v2-fab {
  width: 56px; height: 56px; border-radius: 999px;
  background: linear-gradient(180deg, #57C3FF 0%, #2B8FF2 100%);
  color: #fff;
  box-shadow: 0 12px 26px -8px rgba(17,100,244,0.55), inset 0 1px 0 1px rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s ease-out;
}
.v2-fab:hover { transform: scale(1.05); }
.v2-fab-panel {
  width: 300px; padding: 18px; border-radius: 16px;
  background: #fff; box-shadow: 0 20px 40px -8px rgba(8,47,73,0.20), 0 4px 12px rgba(8,47,73,0.10);
  border: 1px solid rgba(2,132,199,0.10);
  display: flex; flex-direction: column; gap: 12px;
  animation: v2-fade .25s ease-out;
}
.v2-fab-head { display: flex; justify-content: space-between; align-items: center; }
.v2-fab-h { font-family: Poppins; font-weight: 600; font-size: 14px; color: var(--neutral-900); }
.v2-fab-x { width: 28px; height: 28px; border-radius: 999px; background: var(--neutral-100); color: var(--neutral-600); display: flex; align-items: center; justify-content: center; }
.v2-fab-x:hover { background: var(--neutral-200); }
.v2-fab-p { margin: 0; font-size: 13px; line-height: 20px; color: var(--neutral-600); }
.v2-fab-link { font-size: 12.5px; color: var(--neutral-500); }
