/* ============================================================
   Minutly — landing page
   Brand: primary #0E03C9, secondary #0ACFE4
   ============================================================ */

:root {
  --primary: #0E03C9;
  --primary-2: #2A1FE4;
  --secondary: #0ACFE4;
  --secondary-2: #4DE3F2;
  --ink: #08093b;
  --ink-2: #2b2d5c;
  --muted: #6b6f9a;
  --line: #e6e7f5;
  --bg: #ffffff;
  --bg-2: #f5f6ff;
  --bg-3: #eef0ff;
  --success: #18b26b;
  --shadow-sm: 0 2px 8px rgba(14, 3, 201, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(14, 3, 201, 0.25);
  --shadow-lg: 0 40px 80px -32px rgba(14, 3, 201, 0.45);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: clip; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
  width: 100%;
}

h1, h2, h3, h4, .display {
  font-family: 'Sora', system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; color: var(--ink-2); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 50%, var(--secondary) 130%);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(14, 3, 201, 0.55);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  background-size: 250% 100%;
  background-position: 200% 0;
  transition: background-position 0.7s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -10px rgba(14, 3, 201, 0.7); }
.btn-primary:hover::after { background-position: -100% 0; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #131561; }
.btn-sm { height: 42px; padding: 0 18px; font-size: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 56px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 88% -10%, rgba(10, 207, 228, 0.18), transparent 60%),
    radial-gradient(700px 500px at 5% 10%, rgba(14, 3, 201, 0.08), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, #f3f4ff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 4; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 24px; height: 24px; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: grid; place-items: center;
  color: #fff; font-size: 12px;
}
.hero h1 {
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.035em;
}
.hero h1 .accent {
  background: linear-gradient(110deg, var(--primary) 20%, var(--secondary) 90%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  position: relative;
  white-space: nowrap;
}
.hero h1 .accent::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 999px;
  opacity: 0.18;
}
.hero-sub {
  margin-top: 24px;
  font-size: 18px; line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 36px; align-items: center; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 32px; margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta .stat-num {
  font-family: 'Sora'; font-weight: 700; font-size: 26px; color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-meta .stat-lbl { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ----- Hero phone stack ----- */
.hero-stage {
  position: relative;
  height: 640px;
  display: grid; place-items: center;
  min-width: 0;
}
.hero-stage::before {
  content: ''; position: absolute;
  left: 50%; top: 50%;
  width: 560px; height: 560px;
  margin-left: -280px; margin-top: -280px;
  background:
    radial-gradient(closest-side, rgba(10, 207, 228, 0.22), transparent 75%),
    radial-gradient(closest-side at 35% 60%, rgba(14, 3, 201, 0.16), transparent 70%);
  filter: blur(8px);
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}
.hero-rings {
  position: absolute; left: 50%; top: 50%;
  width: 480px; height: 480px;
  margin-left: -240px; margin-top: -240px;
  z-index: 0;
  pointer-events: none;
}
.hero-rings::before, .hero-rings::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(14, 3, 201, 0.18);
  animation: ringspin 28s linear infinite;
}
.hero-rings::after {
  inset: 40px;
  border-color: rgba(10, 207, 228, 0.25);
  animation: ringspin 22s linear infinite reverse;
}
@keyframes ringspin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-wave {
  position: absolute;
  left: 50%; bottom: 78px;
  transform: translateX(-50%);
  display: flex; align-items: flex-end; gap: 5px;
  height: 36px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.hero-wave span {
  display: block;
  width: 4px;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  border-radius: 4px;
  animation: wave 1.1s ease-in-out infinite;
}
.hero-wave span:nth-child(1)  { height: 30%;  animation-delay: 0s;    }
.hero-wave span:nth-child(2)  { height: 70%;  animation-delay: -0.1s; }
.hero-wave span:nth-child(3)  { height: 45%;  animation-delay: -0.2s; }
.hero-wave span:nth-child(4)  { height: 85%;  animation-delay: -0.3s; }
.hero-wave span:nth-child(5)  { height: 60%;  animation-delay: -0.4s; }
.hero-wave span:nth-child(6)  { height: 100%; animation-delay: -0.5s; }
.hero-wave span:nth-child(7)  { height: 55%;  animation-delay: -0.6s; }
.hero-wave span:nth-child(8)  { height: 75%;  animation-delay: -0.7s; }
.hero-wave span:nth-child(9)  { height: 40%;  animation-delay: -0.8s; }
.hero-wave span:nth-child(10) { height: 65%;  animation-delay: -0.9s; }
.hero-wave span:nth-child(11) { height: 80%;  animation-delay: -1.0s; }
.hero-wave span:nth-child(12) { height: 35%;  animation-delay: -1.1s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.55); }
  50% { transform: scaleY(1); }
}
.hero-stage-floor {
  position: absolute; left: 50%; bottom: 70px;
  width: 560px; height: 80px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(14, 3, 201, 0.18), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}
.coverflow {
  position: relative;
  width: 100%; height: 100%;
  z-index: 1;
  perspective: 1400px;
}
.phone {
  position: absolute; left: 50%; top: 50%;
  width: 260px; height: 540px;
  margin-left: -130px; margin-top: -270px;
  border-radius: 42px;
  padding: 8px;
  background: linear-gradient(180deg, #14163c, #0a0b22);
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.06),
    0 30px 60px -20px rgba(8, 9, 59, 0.55),
    0 60px 100px -50px rgba(14, 3, 201, 0.45);
  transition: transform 0.7s cubic-bezier(.22,.94,.3,1.01),
              opacity 0.6s ease, filter 0.6s ease;
  cursor: pointer;
  will-change: transform, opacity;
}
.phone .screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.phone .screen img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.phone .notch {
  position: absolute; left: 50%; top: 10px;
  transform: translateX(-50%);
  width: 70px; height: 18px;
  background: #0a0b22;
  border-radius: 12px;
  z-index: 3;
}
.phone[data-pos="center"] { z-index: 5; transform: translate3d(0, 0, 0) scale(1.05) rotateY(0deg); }
.phone[data-pos="center"]:hover { transform: translate3d(0, -8px, 0) scale(1.08) rotateY(-3deg); }
.phone[data-pos="left"]   { z-index: 3; transform: translate3d(-180px, 24px, 0) scale(0.82) rotateY(22deg); filter: brightness(0.78) saturate(0.85); }
.phone[data-pos="left"]:hover { transform: translate3d(-180px, 16px, 0) scale(0.86) rotateY(18deg); filter: brightness(0.92) saturate(1); }
.phone[data-pos="right"]  { z-index: 3; transform: translate3d(180px, 24px, 0) scale(0.82) rotateY(-22deg); filter: brightness(0.78) saturate(0.85); }
.phone[data-pos="right"]:hover { transform: translate3d(180px, 16px, 0) scale(0.86) rotateY(-18deg); filter: brightness(0.92) saturate(1); }
.phone[data-pos="hidden"] { opacity: 0; transform: scale(0.5); pointer-events: none; }
.phone[data-pos="center"] .screen::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  background-size: 250% 100%;
  animation: shimmer 4.5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}
@keyframes shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -100% 0; }
}

.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(14, 3, 201, 0.06);
  z-index: 6;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  animation: floaty 5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.float-chip:hover { transform: translateY(-4px) scale(1.04); box-shadow: var(--shadow-lg); }
.float-chip .ico { position: relative; }
.float-chip .ico.green::after, .float-chip .ico.live::after {
  content: ''; position: absolute; top: -2px; right: -2px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #18b26b; border: 2px solid #fff;
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(24, 178, 107, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(24, 178, 107, 0); }
}
.float-chip .ico {
  min-width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}
.float-chip .ico.green { background: linear-gradient(135deg, #18b26b, #4de3a8); }
.float-chip .ico.amber { background: linear-gradient(135deg, #ffb300, #ffd86b); }
.float-chip .t { font-size: 13px; color: var(--ink); }
.float-chip .s { font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 2px; }

.fc-1 { top: 70px;    left: 12px;  animation-delay: 0s;    }
.fc-2 { top: 140px;   right: 8px;  animation-delay: -1.6s; }
.fc-3 { bottom: 140px; left: 18px; animation-delay: -3.2s; }
.fc-4 { bottom: 110px; right: 14px;animation-delay: -2.4s; }

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-dots {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; gap: 10px; justify-content: center;
  z-index: 9;
}
.hero-dots button {
  width: 28px; height: 6px; border-radius: 999px;
  background: rgba(14,3,201,0.18);
  border: 0; cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dots button.active {
  width: 44px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* ============================================================
   CATEGORIES STRIP
   ============================================================ */
.strip {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.strip-label {
  text-align: center;
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 28px;
}
.strip-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.strip-row .cat {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 18px 8px;
  border-radius: var(--radius);
  background: var(--bg-2);
  font-family: 'Sora'; font-weight: 600; font-size: 14px;
  color: var(--ink);
  transition: all 0.25s cubic-bezier(.2,.9,.3,1.1);
  border: 1px solid transparent;
  cursor: pointer;
}
.strip-row .cat:hover {
  background: #fff;
  border-color: rgba(14,3,201,0.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: var(--primary);
}
.strip-row .cat svg { width: 28px; height: 28px; color: var(--primary); transition: transform 0.35s cubic-bezier(.2,.9,.3,1.2); }
.strip-row .cat:hover svg { transform: scale(1.15) rotate(-6deg); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section { padding: 120px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  font-family: 'Sora'; font-weight: 600;
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 14px;
  background: rgba(14, 3, 201, 0.08);
  border-radius: 999px;
  margin-bottom: 20px;
}
.section h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  max-width: 720px;
}
.section-sub {
  font-size: 18px; color: var(--muted);
  margin-top: 18px; max-width: 620px;
}
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head.center h2, .section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1.1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feat::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, -10%), rgba(10, 207, 228, 0.18), transparent 50%);
  opacity: 0; transition: opacity 0.35s ease;
  pointer-events: none;
}
.feat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14,3,201,0.18);
}
.feat:hover::before { opacity: 1; }
.feat:hover .ico { transform: scale(1.08) rotate(-4deg); }
.feat .ico { transition: transform 0.35s cubic-bezier(.2,.9,.3,1.2); }
.feat .ico {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  margin-bottom: 24px;
}
.feat .ico svg { width: 26px; height: 26px; }
.feat h3 { font-size: 22px; font-weight: 600; }
.feat p { margin-top: 12px; font-size: 15px; color: var(--muted); }

.feat.big {
  grid-column: span 6;
  background: linear-gradient(135deg, var(--primary) 0%, #1f15db 70%, var(--secondary) 160%);
  color: #fff;
  border: 0;
  padding: 44px;
  min-height: 320px;
  position: relative;
}
.feat.big h3, .feat.big p { color: #fff; }
.feat.big p { opacity: 0.85; }
.feat.big h3 { font-size: 28px; max-width: 360px; line-height: 1.2; }
.feat.big .ico {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.18);
}
.feat.big::before {
  content: '';
  position: absolute; right: -60px; bottom: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,207,228,0.45), transparent 70%);
  opacity: 1;
}
.feat.med { grid-column: span 3; }
.feat.full { grid-column: span 12; padding: 0; overflow: hidden; }

.feat-phone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: center;
}
.feat-phone .copy { padding: 56px; }
.feat-phone .copy h3 { font-size: 32px; max-width: 380px; }
.feat-phone .copy p { margin-top: 16px; font-size: 16px; max-width: 420px; }
.feat-phone .imgbox {
  position: relative;
  height: 100%;
  min-height: 460px;
  display: grid; place-items: center;
  background:
    radial-gradient(closest-side at 60% 50%, rgba(10,207,228,0.25), transparent 70%),
    linear-gradient(135deg, rgba(14,3,201,0.08), rgba(10,207,228,0.05));
}
.feat-phone .phone-static {
  width: 240px; height: 500px;
  border-radius: 38px;
  padding: 7px;
  background: linear-gradient(180deg, #14163c, #0a0b22);
  box-shadow: var(--shadow-lg);
}
.feat-phone .phone-static .screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
}
.feat-phone .phone-static img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1.1), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.step::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(.2,.9,.3,1.1);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(14,3,201,0.18); }
.step:hover::after { transform: scaleX(1); }
.step:hover .ico { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; transform: scale(1.06); }
.step .ico { transition: all 0.35s ease; }
.step .num {
  position: absolute; top: 24px; right: 24px;
  font-family: 'Sora'; font-weight: 700;
  font-size: 60px;
  background: linear-gradient(180deg, rgba(14,3,201,0.18), rgba(10,207,228,0.08));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.step .ico {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--bg-3);
  display: grid; place-items: center;
  color: var(--primary);
  margin-bottom: 28px;
}
.step h3 { font-size: 22px; font-weight: 600; }
.step p { margin-top: 12px; color: var(--muted); font-size: 15px; }

/* ============================================================
   FOR EXPERTS (dark band)
   ============================================================ */
.experts {
  background: var(--ink);
  color: #fff;
  border-radius: 40px;
  padding: 80px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.experts::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(closest-side, rgba(10,207,228,0.25), transparent 70%);
}
.experts::after {
  content: '';
  position: absolute; left: 30%; bottom: -200px;
  width: 600px; height: 400px;
  background: radial-gradient(closest-side, rgba(14,3,201,0.45), transparent 70%);
}
.experts > * { position: relative; z-index: 1; }
.experts .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(10,207,228,0.18);
  color: var(--secondary-2);
  font-family: 'Sora'; font-weight: 600;
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.experts h2 { color: #fff; font-size: clamp(34px, 3.6vw, 52px); }
.experts p.lead { color: rgba(255,255,255,0.7); font-size: 18px; margin-top: 18px; max-width: 480px; }
.experts ul {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; gap: 16px;
}
.experts ul li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px;
}
.experts ul li svg {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 8px;
  padding: 5px;
  flex-shrink: 0;
}
.experts .cta { margin-top: 40px; display: flex; gap: 12px; flex-wrap: wrap; }

.experts-visual {
  position: relative;
  display: grid; place-items: center;
  min-height: 540px;
}
.experts-visual .phone-static {
  width: 280px; height: 580px;
  border-radius: 44px;
  padding: 8px;
  background: linear-gradient(180deg, #14163c, #050624);
  box-shadow: 0 60px 100px -20px rgba(0,0,0,0.5);
  position: relative; z-index: 2;
}
.experts-visual .phone-static .screen { width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: #fff; }
.experts-visual .phone-static img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.experts-visual .float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 16px 20px;
  color: #fff;
  z-index: 3;
  animation: floaty 5s ease-in-out infinite;
}
.experts-visual .float-card.a { top: 60px;   left: -10px; animation-delay: 0s;    }
.experts-visual .float-card.b { bottom: 90px; right: -30px; animation-delay: -2.5s; }
.experts-visual .float-card .lbl { font-size: 12px; opacity: 0.7; }
.experts-visual .float-card .val { font-family: 'Sora'; font-weight: 700; font-size: 22px; margin-top: 4px; }
.experts-visual .float-card .val.green { color: #5be9b0; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stats .stat {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, var(--bg-2));
  border: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1.1), box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.stats .stat::after {
  content: ''; position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 207, 228, 0.18), transparent 65%);
  transition: transform 0.5s ease;
}
.stats .stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stats .stat:hover::after { transform: scale(1.5); }
.stats .stat .num {
  font-family: 'Sora'; font-weight: 700;
  font-size: 56px; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.stats .stat .lbl { margin-top: 10px; color: var(--ink-2); font-weight: 500; }

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.download {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #1f15db 50%, var(--secondary) 130%);
  padding: 80px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.download::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(closest-side at 80% 30%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(closest-side at 10% 80%, rgba(10,207,228,0.4), transparent 60%);
  pointer-events: none;
}
.download > * { position: relative; z-index: 1; }
.download h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
}
.download p { color: rgba(255,255,255,0.85); font-size: 18px; margin-top: 16px; max-width: 460px; }
.download .badges { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  transition: transform 0.2s;
  cursor: pointer;
}
.store-badge:hover { transform: translateY(-2px); color: var(--ink); }
.store-badge svg { width: 30px; height: 30px; }
.store-badge .top { font-size: 11px; opacity: 0.7; line-height: 1; }
.store-badge .bot { font-family: 'Sora'; font-weight: 700; font-size: 18px; line-height: 1.2; margin-top: 4px; }

.download-art {
  display: grid; place-items: center;
  min-height: 380px;
  position: relative;
}
.download-art .phone-mini {
  width: 220px; height: 460px;
  border-radius: 36px;
  padding: 7px;
  background: linear-gradient(180deg, #14163c, #0a0b22);
  box-shadow: 0 40px 80px -10px rgba(0,0,0,0.4);
}
.download-art .phone-mini .screen { width: 100%; height: 100%; border-radius: 30px; overflow: hidden; background: #fff; }
.download-art .phone-mini img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { height: 580px; }
  .feat.big, .feat.med { grid-column: span 6; }
  .feat-phone { grid-template-columns: 1fr; }
  .experts { grid-template-columns: 1fr; padding: 56px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .strip-row { grid-template-columns: repeat(3, 1fr); }
  .download { grid-template-columns: 1fr; padding: 56px; }
  .foot { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .section { padding: 80px 0; }
  .hero { padding: 40px 0 64px; }
  .features { grid-template-columns: 1fr; }
  .feat, .feat.big, .feat.med { grid-column: span 12; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .strip-row { grid-template-columns: repeat(2, 1fr); }
  .experts { padding: 40px 28px; border-radius: 28px; }
  .download { padding: 40px 28px; border-radius: 28px; }
  .foot { grid-template-columns: 1fr; gap: 28px; }
  .legal { flex-direction: column; gap: 12px; }
  .hero-stage { height: 520px; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}