/* ============================================
   STEEV V3 — Page Styles (index + features)
   Requires style-v3-base.css loaded first
   ============================================ */

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden; padding: 120px 24px 80px;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(120px);
  pointer-events: none; will-change: transform;
}
.orb-1 {
  width: 600px; height: 600px; top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(250,204,21,.15) 0%, transparent 70%);
  animation: orbA 12s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px; bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(10,132,255,.07) 0%, transparent 70%);
  animation: orbB 15s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(250,204,21,.05) 0%, transparent 60%);
  animation: orbC 8s ease-in-out infinite;
}
@keyframes orbA { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(60px,40px) scale(1.1); } 66% { transform: translate(-40px,20px) scale(.95); } }
@keyframes orbB { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-50px,-30px) scale(1.05); } 66% { transform: translate(30px,-50px) scale(.9); } }
@keyframes orbC { 0%,100% { opacity: .4; transform: translate(-50%,-50%) scale(1); } 50% { opacity: .8; transform: translate(-50%,-50%) scale(1.3); } }

.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(250,204,21,.06); border: 1px solid rgba(250,204,21,.1);
  padding: 8px 20px; border-radius: 100px;
  font-family: var(--mono); font-size: 13px; color: var(--yellow);
  margin-bottom: 32px; opacity: 0; animation: fadeUp 1s var(--ease-out) .2s forwards;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--yellow); border-radius: 50%;
  box-shadow: 0 0 12px var(--yellow-glow); animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero h1 {
  font-size: clamp(44px, 7vw, 80px); font-weight: 700;
  letter-spacing: -3px; line-height: 1; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 1s var(--ease-out) .4s forwards;
}
.glow {
  background: linear-gradient(135deg, var(--yellow) 0%, #FDE68A 50%, var(--yellow) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { background-position: 0% center; } 50% { background-position: 200% center; } }

.hero-sub {
  font-size: 19px; color: var(--text-2); max-width: 480px; margin: 0 auto 48px;
  line-height: 1.65; opacity: 0; animation: fadeUp 1s var(--ease-out) .6s forwards;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s var(--ease-out) .8s forwards;
}
.hero-meta {
  font-family: var(--mono); font-size: 13px; color: var(--text-3); margin-top: 32px;
  opacity: 0; animation: fadeUp 1s var(--ease-out) 1s forwards;
}

/* === SOCIAL PROOF BAR === */
.proof-bar {
  padding: 28px 0; border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04); background: rgba(255,255,255,.015);
}
.proof-inner { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-2); }
.proof-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--yellow-dim); border: 1px solid rgba(250,204,21,.08);
  display: flex; align-items: center; justify-content: center;
}
.proof-val { font-family: var(--mono); font-weight: 700; color: var(--text); font-size: 16px; }
.proof-label { font-size: 11px; color: var(--text-3); }

/* === FEATURES BENTO === */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bento-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 32px 28px; position: relative; overflow: hidden;
  transition: all .5s var(--ease);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.bento-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 50%), rgba(250,204,21,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .5s;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover {
  border-color: rgba(250,204,21,.12); transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.bento-card.span-2 { grid-column: span 2; }
.bento-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(250,204,21,.15), rgba(250,204,21,.05));
  border: 1px solid rgba(250,204,21,.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.bento-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.3px; }
.bento-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
/* Hero feature with phone */
.bento-hero {
  grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column;
  justify-content: space-between; min-height: 480px;
}
.bento-phone {
  margin-top: 20px; align-self: center; width: 220px; height: 440px;
  background: #111; border-radius: 36px; border: 3px solid #222;
  overflow: hidden; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.6); animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 20px; background: #000; border-radius: 10px; z-index: 2;
}
.phone-screen {
  padding: 36px 14px 14px; height: 100%;
  background: linear-gradient(180deg, #0B141A, #0D1B24);
  display: flex; flex-direction: column;
}
/* WhatsApp bubbles inside phone */
.wa-head { display: flex; align-items: center; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 10px; }
.wa-av { width: 28px; height: 28px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: #000; }
.wa-n { font-size: 13px; font-weight: 600; }
.wa-s { font-size: 9px; color: var(--green); }
.wa-b { max-width: 90%; padding: 8px 12px; border-radius: 12px; font-size: 11px; line-height: 1.5; margin-bottom: 5px; }
.wa-in { background: #1F2C34; align-self: flex-start; border-bottom-left-radius: 4px; }
.wa-out { background: #005C4B; align-self: flex-end; border-bottom-right-radius: 4px; }
.wa-t { font-size: 8px; color: rgba(255,255,255,.3); float: right; margin-left: 6px; margin-top: 2px; }
.wa-dots { display: flex; gap: 3px; align-self: flex-start; background: #1F2C34; padding: 10px 14px; border-radius: 12px; border-bottom-left-radius: 4px; }
.wa-dots span { width: 5px; height: 5px; background: rgba(255,255,255,.3); border-radius: 50%; animation: dotB 1.4s ease infinite; }
.wa-dots span:nth-child(2) { animation-delay: .15s; }
.wa-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes dotB { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }

/* === HOW IT WORKS === */
.steps-row { display: flex; gap: 24px; justify-content: center; }
.step-card {
  flex: 0 0 320px; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 40px 28px; text-align: center;
  transition: all .5s var(--ease);
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(250,204,21,.12); }
.step-num {
  width: 56px; height: 56px; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--yellow), #FDE68A);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 700; font-size: 22px; color: #000;
  box-shadow: 0 8px 32px var(--yellow-glow);
}
.step-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.step-connector { display: flex; align-items: center; justify-content: center; margin-bottom: 48px; }
.step-line { flex: 1; height: 2px; max-width: 120px; background: linear-gradient(90deg, transparent, rgba(250,204,21,.3), transparent); }
.step-dot { width: 10px; height: 10px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 16px var(--yellow-glow); flex-shrink: 0; }

/* === COMPARISON === */
.compare-stack { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }
.ci { display: flex; align-items: center; justify-content: space-between; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px; padding: 18px 24px; transition: all .4s var(--ease); }
.ci:hover { transform: translateX(4px); }
.ci.steev { background: linear-gradient(135deg, rgba(250,204,21,.08), rgba(250,204,21,.02)); border-color: rgba(250,204,21,.2); box-shadow: 0 0 60px rgba(250,204,21,.04); }
.ci-name { font-size: 15px; font-weight: 500; min-width: 140px; }
.ci.steev .ci-name { font-weight: 700; color: var(--yellow); }
.ci-desc { font-size: 13px; color: var(--text-3); flex: 1; text-align: center; }
.ci.steev .ci-desc { color: rgba(250,204,21,.6); }
.ci-price { font-family: var(--mono); font-size: 14px; color: var(--text-3); min-width: 100px; text-align: right; }
.ci.steev .ci-price { color: var(--yellow); font-weight: 700; }
.ci-logo { width: 24px; height: 24px; background: var(--yellow); border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; color: #000; margin-right: 10px; vertical-align: middle; }

/* === PRICING === */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 56px; font-size: 14px; font-weight: 500; color: var(--text-2); }
.toggle-pill { width: 48px; height: 26px; background: rgba(255,255,255,.07); border-radius: 13px; position: relative; cursor: pointer; transition: background .4s; border: 1px solid var(--glass-border); }
.toggle-pill.on { background: var(--yellow); border-color: transparent; }
.toggle-dot { width: 22px; height: 22px; background: #fff; border-radius: 11px; position: absolute; top: 1px; left: 1px; transition: transform .4s var(--ease-spring); box-shadow: 0 1px 3px rgba(0,0,0,.3); }
.toggle-pill.on .toggle-dot { transform: translateX(22px); }
.toggle-save { font-family: var(--mono); font-size: 10px; color: var(--yellow); background: var(--yellow-dim); padding: 4px 10px; border-radius: 8px; }

.pricing-row { display: grid; grid-template-columns: 240px 300px 240px; gap: 16px; justify-content: center; align-items: start; }
.pc { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 24px; padding: 24px 20px; position: relative; transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease); backdrop-filter: blur(20px); }
.pc.pop { padding: 32px 24px; }
.pc:hover { transform: translateY(-8px); }
.pc.pop { border-color: rgba(250,204,21,.25); background: linear-gradient(180deg, rgba(250,204,21,.06) 0%, rgba(255,255,255,.03) 50%, var(--glass) 100%); box-shadow: 0 0 80px rgba(250,204,21,.06); }
.pc.pop:hover { box-shadow: 0 0 100px rgba(250,204,21,.1), 0 20px 60px rgba(0,0,0,.4); }
.pc-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--yellow), #FDE68A); color: #000; font-family: var(--mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 18px; border-radius: 100px; }
.pc-tier { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.pc-price { font-size: 36px; font-weight: 700; letter-spacing: -1.5px; margin-bottom: 4px; line-height: 1; }
.pc-price span { font-size: 14px; color: var(--text-2); font-weight: 400; }
.pc.pop .pc-price { font-size: 44px; }
.pc.pop .pc-price span { font-size: 16px; }
.pc-period { font-family: var(--mono); font-size: 12px; color: var(--text-3); margin-bottom: 8px; }
.pc-trial { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--yellow); margin-bottom: 28px; }
.pc-line { height: 1px; background: var(--glass-border); margin-bottom: 28px; }
.pc-list { list-style: none; margin-bottom: 20px; }
.pc-list li { font-size: 13px; color: var(--text-2); padding: 5px 0; display: flex; align-items: flex-start; gap: 10px; }
.pc-list li::before { content: ''; width: 5px; height: 5px; background: var(--yellow); border-radius: 50%; margin-top: 8px; flex-shrink: 0; box-shadow: 0 0 8px rgba(250,204,21,.3); }
.pc-btn { width: 100%; padding: 16px; border-radius: 16px; font-family: var(--font); font-weight: 700; font-size: 15px; border: none; cursor: pointer; text-align: center; display: block; transition: all .35s var(--ease); text-decoration: none; }
.pc-btn:hover { transform: translateY(-2px); text-decoration: none; }
.pc-btn.fill { background: var(--yellow); color: #000; }
.pc-btn.fill:hover { box-shadow: 0 8px 32px var(--yellow-glow); }
.pc-btn.outline { background: rgba(255,255,255,.04); color: var(--text); border: 1px solid var(--glass-border); }
.pc-btn.outline:hover { border-color: rgba(255,255,255,.15); }

/* === APP SECTION === */
.app-inner { display: flex; align-items: center; justify-content: space-between; gap: 64px; }
.app-content { flex: 1; }
.app-content .s-label, .app-content .s-title, .app-content .s-sub,
.app-content .section-label, .app-content .section-title, .app-content .section-subtitle { text-align: left; margin-left: 0; }
.app-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
.app-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.app-features li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--yellow-dim); border: 1px solid rgba(250,204,21,.15); flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23FACC15' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 10px; }
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--glass-border); border-radius: 14px; padding: 10px 18px 10px 14px; transition: all .3s var(--ease); cursor: pointer; text-decoration: none; }
.store-btn:hover { border-color: rgba(255,255,255,.15); transform: translateY(-2px); background: rgba(255,255,255,.07); text-decoration: none; }
.store-btn-icon { width: 24px; height: 24px; flex-shrink: 0; }
.store-btn-small { font-size: 9px; color: var(--text-3); letter-spacing: .3px; }
.store-btn-big { font-size: 16px; font-weight: 600; white-space: nowrap; }
/* Device mockups */
.devices { display: flex; align-items: flex-end; gap: 24px; flex-shrink: 0; }
.iphone { position: relative; width: 260px; border-radius: 40px; overflow: hidden; border: 3px solid #222; box-shadow: 0 40px 100px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.04); background: #000; }
.iphone-notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 80px; height: 22px; background: #000; border-radius: 11px; z-index: 2; }
.iphone-pwr { position: absolute; right: -5px; top: 110px; width: 3px; height: 36px; background: #333; border-radius: 0 2px 2px 0; }
.iphone-vol1 { position: absolute; left: -5px; top: 95px; width: 3px; height: 24px; background: #333; border-radius: 2px 0 0 2px; }
.iphone-vol2 { position: absolute; left: -5px; top: 128px; width: 3px; height: 24px; background: #333; border-radius: 2px 0 0 2px; }
.watch { width: 130px; height: 165px; background: #0F0F10; border-radius: 40px; border: 3px solid #222; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.7); display: flex; flex-direction: column; padding: 16px 14px; position: relative; }
.watch-crown { position: absolute; right: -7px; top: 42px; width: 5px; height: 18px; background: #333; border-radius: 0 3px 3px 0; }
.watch-side { position: absolute; right: -6px; top: 68px; width: 3px; height: 14px; background: #333; border-radius: 0 2px 2px 0; }
/* Mock dashboard */
.mock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mock-greet { font-size: 18px; font-weight: 700; }
.mock-date { font-size: 10px; color: var(--text-3); }
.mock-rings { display: flex; gap: 8px; }
.mock-ring { width: 40px; height: 40px; position: relative; }
.mock-ring svg { transform: rotate(-90deg); }
.mock-ring-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--mono); font-size: 8px; font-weight: 600; }
.mock-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 12px; margin-bottom: 8px; }
.mock-card-title { font-family: var(--mono); font-size: 8px; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.mock-card-val { font-family: var(--mono); font-size: 18px; font-weight: 700; }
.mock-card-sub { font-size: 9px; color: var(--text-3); }

/* === SHOP === */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shop-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 24px; overflow: hidden; transition: all .4s var(--ease); display: flex; flex-direction: column; }
.shop-card:hover { transform: translateY(-6px); border-color: rgba(250,204,21,.12); }
.shop-img-wrap { background: #000; aspect-ratio: 1; overflow: hidden; padding: 0; display: flex; align-items: center; justify-content: center; }
.shop-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-info { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.shop-name { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.shop-desc { font-size: 13px; color: var(--text-3); line-height: 1.5; margin-bottom: auto; padding-bottom: 16px; }
.shop-price-row { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--glass-border); }
.shop-price { font-family: var(--mono); font-size: 20px; font-weight: 700; color: var(--yellow); }
.shop-soon { font-family: var(--mono); font-size: 10px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; background: rgba(255,255,255,.04); padding: 4px 10px; border-radius: 6px; }

/* === BLOG CAROUSEL === */
/* Blog category filters */
.blog-filter {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  color: var(--text-3); background: var(--glass); border: 1px solid var(--glass-border);
  padding: 5px 12px; border-radius: 100px; cursor: pointer;
  transition: all .3s var(--ease); letter-spacing: .5px;
}
.blog-filter:hover { color: var(--text); border-color: rgba(255,255,255,.15); }
.blog-filter.active {
  color: #000; background: var(--yellow); border-color: var(--yellow);
}
.blog-card.hidden { display: none; }

.blog-carousel, .blog-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding: 8px calc((100vw - min(1120px, 100vw - 48px)) / 2 + 24px); scrollbar-width: none;
}
.blog-carousel::-webkit-scrollbar, .blog-track::-webkit-scrollbar { display: none; }
.blog-card {
  flex-shrink: 0; width: 280px; background: var(--glass);
  border: 1px solid var(--glass-border); border-radius: 20px;
  padding: 28px; scroll-snap-align: start; display: flex; flex-direction: column;
  transition: all .4s var(--ease); text-decoration: none;
}
.blog-card:hover { border-color: rgba(250,204,21,.12); transform: translateY(-3px); text-decoration: none; }
.blog-tag { font-family: var(--mono); font-size: 10px; font-weight: 600; color: var(--yellow); background: var(--yellow-dim); padding: 3px 8px; border-radius: 6px; width: fit-content; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.blog-title { font-size: 16px; font-weight: 600; line-height: 1.35; margin-bottom: 8px; color: var(--text); }
.blog-excerpt { font-size: 13px; color: var(--text-3); line-height: 1.5; margin-bottom: auto; padding-bottom: 12px; }
.blog-meta { font-family: var(--mono); font-size: 11px; color: var(--text-3); }
.blog-nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; }
.blog-arrow { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--glass-border); background: var(--glass); color: var(--text-2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.blog-arrow:hover { border-color: var(--yellow); color: var(--yellow); }
.blog-dots { display: flex; gap: 6px; align-items: center; }
.blog-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-3); opacity: .3; transition: opacity .2s, background .2s; cursor: pointer; border: none; padding: 8px; background-clip: content-box; box-sizing: content-box; }
.blog-dot.active { opacity: 1; background: var(--yellow); }

/* === TESTIMONIALS === */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
/* Support both old and new class names */
.tc, .testimonial-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 36px 28px; transition: all .4s var(--ease);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.tc:hover, .testimonial-card:hover { border-color: rgba(250,204,21,.1); transform: translateY(-4px); }
.tc-quote { font-size: 72px; color: var(--yellow); opacity: .1; position: absolute; top: 12px; left: 20px; line-height: 1; font-family: Georgia, serif; }
.tc-stars, .testimonial-stars { color: var(--yellow); font-size: 13px; margin-bottom: 20px; letter-spacing: 3px; }
.tc-text, .testimonial-text { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 24px; font-style: italic; position: relative; z-index: 1; flex: 1; }
.tc-author, .testimonial-author { font-family: var(--mono); font-size: 12px; color: var(--text-3); margin-top: auto; }

/* === FINAL CTA === */
.final-cta { padding: 160px 0; text-align: center; position: relative; overflow: hidden; }

/* === FEATURES PAGE === */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.feature-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 28px 24px; transition: all .4s var(--ease);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 50%), rgba(250,204,21,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .5s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { border-color: rgba(250,204,21,.12); transform: translateY(-4px); }
.feature-icon { margin-bottom: 16px; line-height: 1; }
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* === PAGE-LEVEL RESPONSIVE === */
@media (max-width: 960px) {
  .app-inner { flex-direction: column; text-align: center; }
  .app-content .s-label, .app-content .s-title, .app-content .s-sub,
  .app-content .section-label, .app-content .section-title, .app-content .section-subtitle { text-align: center; margin: 0 auto; }
  .app-features { justify-items: center; }
  .store-badges { justify-content: center; }
  .devices { flex-direction: column; align-items: center; }
  .iphone { width: 220px; }
  .watch { width: 110px; height: 140px; }
}
/* ===== MOBILE - FULL OPTIMIZATION ===== */
@media (max-width: 768px) {
  /* Global */
  html, body { overflow-x: hidden !important; width: 100%; }
  *, *::before, *::after { max-width: 100vw; }
  .container { padding: 0 16px; overflow: hidden; }
  .section { padding: 48px 0; }
  .section-alt { padding: 48px 0; }
  .s-label, .section-label { font-size: 10px; letter-spacing: 2px; margin-bottom: 10px; }
  .s-title, .section-title { font-size: 24px; letter-spacing: -0.5px; margin-bottom: 10px; }
  .s-sub, .section-subtitle { font-size: 13px; margin-bottom: 28px; line-height: 1.6; }

  /* Hero */
  .hero { padding: 100px 16px 36px; min-height: auto; }
  .hero-badge { font-size: 11px; padding: 6px 14px; margin-bottom: 20px; }
  .hero h1 { font-size: 24px !important; letter-spacing: -0.5px; margin-bottom: 14px; line-height: 1.15; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; line-height: 1.5; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-hero, .btn-ghost { width: 100%; justify-content: center; font-size: 15px; padding: 14px 20px; border-radius: 14px; }
  .hero-meta { font-size: 11px; margin-top: 20px; }
  .orb { display: none; }

  /* Proof bar */
  .proof-bar { padding: 20px 0; }
  .proof-inner { gap: 12px 20px; justify-content: center; flex-wrap: wrap; }
  .proof-item { gap: 8px; font-size: 12px; }
  .proof-icon { width: 28px; height: 28px; border-radius: 8px; }
  .proof-icon svg { width: 12px; height: 12px; }
  .proof-val { font-size: 13px; }
  .proof-label { font-size: 10px; }

  /* Bento features */
  .bento { grid-template-columns: 1fr; gap: 10px; }
  .bento-card.span-2, .bento-hero { grid-column: span 1; grid-row: span 1; min-height: auto; }
  .bento-card { padding: 20px 18px; border-radius: 18px; }
  .bento-icon { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 14px; }
  .bento-icon svg { width: 18px; height: 18px; }
  .bento-card h3 { font-size: 16px; }
  .bento-card p { font-size: 13px; }

  /* Steps */
  .steps-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .step-card { flex: auto; padding: 24px 18px; border-radius: 18px; }
  .step-num { width: 40px; height: 40px; font-size: 16px; border-radius: 10px; margin-bottom: 16px; }
  .step-card h3 { font-size: 16px; }
  .step-card p { font-size: 13px; }

  /* Comparison */
  .compare-stack { gap: 4px; }
  .ci { padding: 12px 16px; border-radius: 12px; }
  .ci-desc { display: none; }
  .ci-name { min-width: auto; flex: 1; font-size: 14px; }
  .ci-price { font-size: 13px; min-width: 80px; }
  .ci-logo { width: 20px; height: 20px; font-size: 10px; margin-right: 8px; }

  /* Pricing */
  .pricing-toggle { margin-bottom: 24px; font-size: 13px; gap: 10px; }
  .toggle-save { font-size: 9px; }
  .pricing-row { grid-template-columns: 1fr !important; gap: 12px; max-width: 340px; margin: 0 auto; }
  .pc, .pc.pop { width: 100% !important; padding: 24px 20px !important; border-radius: 20px; }
  .pc[style*="align-self"] { align-self: stretch !important; }
  .pc-price, .pc.pop .pc-price { font-size: 32px !important; }
  .pc-price span, .pc.pop .pc-price span { font-size: 14px !important; }
  .pc-badge { font-size: 9px; padding: 5px 14px; top: -12px; }
  .pc-tier { font-size: 10px; margin-bottom: 12px; }
  .pc-period { font-size: 11px; }
  .pc-trial { font-size: 11px; margin-bottom: 20px; }
  .pc-line { margin-bottom: 20px; }
  .pc-list { margin-bottom: 20px; }
  .pc-list li { font-size: 13px; padding: 4px 0; }
  .pc-btn { padding: 14px; font-size: 14px; border-radius: 14px; }

  /* App */
  .app-features { grid-template-columns: 1fr 1fr !important; gap: 6px 12px; max-width: 100% !important; }
  .app-features li { font-size: 12px; }
  .app-features li::before { width: 16px; height: 16px; background-size: 8px; }
  .iphone { width: 240px !important; border-radius: 32px !important; }
  .iphone-notch { width: 64px; height: 18px; }
  .iphone-pwr, .iphone-vol1, .iphone-vol2 { display: none; }
  .store-badges { justify-content: center; gap: 8px; }
  .store-btn { padding: 8px 12px; border-radius: 12px; }
  .store-btn-icon { width: 20px; height: 20px; }
  .store-btn-small { font-size: 8px; }
  .store-btn-big { font-size: 13px; }

  /* Shop */
  .shop-grid { grid-template-columns: 1fr; gap: 12px; max-width: 340px; margin: 0 auto; }
  .shop-card { border-radius: 18px; }
  .shop-name { font-size: 15px; }
  .shop-desc { font-size: 12px; }
  .shop-price { font-size: 18px; }

  /* Blog */
  .blog-carousel, .blog-track { padding: 8px 16px !important; overflow-x: auto; }
  .blog-card { width: 260px !important; padding: 20px !important; border-radius: 16px; }
  .blog-title { font-size: 15px; }
  .blog-excerpt { font-size: 12px; }
  .blog-tag { font-size: 9px; }
  .blog-filter { font-size: 9px; padding: 4px 10px; }
  .blog-nav { margin-top: 20px; }
  .blog-arrow { width: 32px; height: 32px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 10px; }
  .tc { padding: 24px 18px; border-radius: 18px; }
  .tc-quote { font-size: 48px; top: 8px; left: 14px; }
  .tc-text { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
  .tc-stars { font-size: 12px; margin-bottom: 14px; }
  .tc-author { font-size: 11px; }

  /* Final CTA */
  .final-cta { padding: 64px 0; }
  .final-cta .s-title { font-size: 24px !important; }
  .final-cta .btn-hero { font-size: 16px !important; padding: 16px 32px !important; }

  /* Features page */
  .features-grid { grid-template-columns: 1fr; }
}
</style>
/* force redeploy */
/* v3 */
