:root{
  --blue:#2563EB;
  --blue-dark:#1D4ED8;
  --emerald:#10B981;
  --charcoal:#0F172A;
  --slate:#475569;
  --slate-light:#94A3B8;
  --white:#FFFFFF;
  --gray-bg:#F8FAFC;
  --border:#E2E8F0;
  --radius:20px;
  --shadow-sm:0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:0 8px 24px rgba(15,23,42,0.08);
  --shadow-lg:0 24px 60px rgba(15,23,42,0.12);
  --font-display: -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{ font-family: var(--font-body); color: var(--charcoal); background: var(--white); line-height:1.6; -webkit-font-smoothing: antialiased; }
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
.container{ max-width:1180px; margin:0 auto; padding:0 32px; }
h1,h2,h3{ font-family: var(--font-display); font-weight:700; letter-spacing:-0.02em; }
.eyebrow{ font-family: var(--font-body); font-weight:700; font-size:13px; letter-spacing:0.14em; text-transform:uppercase; color: var(--blue); }
.eyebrow.on-dark{ color:#7DD3FC; }

.nav{ position: sticky; top:0; z-index:50; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-bottom:1px solid var(--border); }
.nav-inner{ max-width:1180px; margin:0 auto; padding:18px 32px; display:flex; align-items:center; justify-content:space-between; }
.logo{ font-family: var(--font-display); font-weight:800; font-size:20px; color:var(--charcoal); display:flex; align-items:center; gap:10px; }
.logo-mark{ width:32px; height:32px; border-radius:9px; background:linear-gradient(135deg, var(--blue), var(--emerald)); display:flex; align-items:center; justify-content:center; color:white; font-size:16px; }
.logo span{ color: var(--blue); }
.nav-links{ display:flex; gap:32px; align-items:center; font-size:15px; font-weight:500; color:var(--slate); }
.nav-links a:hover{ color: var(--charcoal); }
.nav-cta{ background:var(--charcoal); color:white !important; padding:10px 20px; border-radius:10px; font-weight:600; font-size:14px; }
.nav-mobile-hide{ display:flex; }
@media (max-width:820px){ .nav-mobile-hide{ display:none; } }

.hero{
  position:relative; overflow:hidden;
  background: radial-gradient(1100px 600px at 18% -10%, #3B82F6 0%, transparent 60%),
              radial-gradient(900px 500px at 100% 0%, #10B981 0%, transparent 55%),
              linear-gradient(180deg, #0B1B4D 0%, #142B6B 55%, #0F1E52 100%);
  color:white; padding: 96px 0 120px;
}
.hero-grid{ display:grid; grid-template-columns: 1.05fr 0.95fr; gap:56px; align-items:center; }
@media (max-width:960px){ .hero-grid{ grid-template-columns:1fr; text-align:center; } }
.hero h1{ font-size: clamp(38px, 5vw, 58px); line-height:1.06; margin:18px 0 22px; }
.hero h1 .accent{ background: linear-gradient(90deg, #7DD3FC, var(--emerald)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p.lead{ font-size:18px; color:#CBD5E1; max-width:520px; margin-bottom:26px; }
@media (max-width:960px){ .hero p.lead{ margin-left:auto; margin-right:auto; } }
.hero-badges{ display:flex; flex-wrap:wrap; gap:14px 22px; margin-bottom:34px; }
@media (max-width:960px){ .hero-badges{ justify-content:center; } }
.badge-check{ display:flex; align-items:center; gap:8px; font-size:14px; color:#E2E8F0; font-weight:500; }
.badge-dot{ width:18px; height:18px; border-radius:50%; background: var(--emerald); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.badge-dot svg{ width:11px; height:11px; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }
@media (max-width:960px){ .hero-ctas{ justify-content:center; } }
.btn{ display:inline-flex; align-items:center; gap:8px; padding:15px 26px; border-radius:12px; font-weight:600; font-size:15px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; cursor:pointer; border:none; }
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color:white; box-shadow: 0 10px 30px rgba(37,99,235,0.35); }
.btn-primary:hover{ box-shadow: 0 14px 36px rgba(37,99,235,0.45); }
.btn-primary .sub{ display:block; font-size:11px; font-weight:500; opacity:0.85; }
.btn-ghost{ background: rgba(255,255,255,0.08); color:white; border:1px solid rgba(255,255,255,0.25); backdrop-filter: blur(6px); }
.btn-ghost:hover{ background: rgba(255,255,255,0.14); }
.btn-dark{ background: var(--charcoal); color:white; }
.btn-dark:hover{ box-shadow: 0 12px 28px rgba(15,23,42,0.3); }

.phone-stage{ position:relative; display:flex; justify-content:center; align-items:center; min-height:560px; }
.phone{ position:relative; width:260px; border-radius:36px; overflow:hidden; border:6px solid #0B1220; box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06); z-index:3; animation: floatY 6s ease-in-out infinite; }
.phone img{ display:block; width:100%; }
@keyframes floatY{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.float-card{ position:absolute; background: rgba(15,23,42,0.55); border:1px solid rgba(255,255,255,0.14); backdrop-filter: blur(14px); border-radius:16px; padding:14px 18px; box-shadow: var(--shadow-lg); font-size:13px; color:#E2E8F0; z-index:4; animation: floatY2 7s ease-in-out infinite; }
.float-card .num{ font-family: var(--font-display); font-weight:700; font-size:20px; color:white; }
.float-card .lbl{ color:#94A3B8; font-size:12px; }
.float-card .head{ display:flex; align-items:center; gap:8px; font-weight:600; color:white; margin-bottom:6px; font-size:13px; }
.fc-1{ top:6%; left:-4%; animation-delay:0.2s; }
.fc-2{ bottom:18%; left:-8%; animation-delay:1s; }
.fc-3{ top:12%; right:-8%; animation-delay:0.6s; }
.fc-4{ bottom:10%; right:-6%; animation-delay:1.4s; }
@keyframes floatY2{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }
@media (max-width:960px){ .float-card{ display:none; } .phone-stage{ min-height:auto; margin-top:20px; } }

section{ padding:100px 0; }
.section-head{ text-align:center; max-width:660px; margin:0 auto 56px; }
.section-head h2{ font-size: clamp(28px,3.4vw,40px); margin:14px 0 14px; }
.section-head p{ color:var(--slate); font-size:17px; }
.gray{ background: var(--gray-bg); }
.dark{ background: linear-gradient(180deg, #0B1530, #0F1B3D); color:white; }
.dark .section-head p{ color:#94A3B8; }

.feature-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:28px; }
@media (max-width:900px){ .feature-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:620px){ .feature-grid{ grid-template-columns:1fr;} }
.feature-card{ background:white; border:1px solid var(--border); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; display:flex; flex-direction:column; }
.feature-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card .shot{ background: linear-gradient(180deg, #EEF2FF, #F8FAFC); padding:26px 26px 0; display:flex; justify-content:center; }
.feature-card .shot img{ width:150px; border-radius:16px; box-shadow: 0 14px 30px rgba(15,23,42,0.16); }
.feature-card .body{ padding:26px 26px 30px; }
.feature-card .icon{ width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:14px; }
.feature-card h3{ font-size:19px; margin-bottom:8px; }
.feature-card p{ color:var(--slate); font-size:14.5px; }
.icon-purple{ background:#F3E8FF; } .icon-green{ background:#D1FAE5; } .icon-blue{ background:#DBEAFE; }
.icon-orange{ background:#FFEDD5; } .icon-red{ background:#FEE2E2; } .icon-slate{ background:#E2E8F0; }

.badge-row{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-bottom:64px; }
.biz-badge{ background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); color:#E2E8F0; padding:12px 22px; border-radius:999px; font-size:14.5px; font-weight:500; display:flex; align-items:center; gap:10px; transition: background .2s ease, transform .2s ease; }
.biz-badge:hover{ background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.biz-badge .dot{ width:8px; height:8px; border-radius:50%; background: var(--emerald); }

.why-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
@media (max-width:900px){ .why-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:560px){ .why-grid{ grid-template-columns:1fr;} }
.why-card{ background: rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:18px; padding:28px 24px; }
.why-card .icon{ font-size:26px; margin-bottom:14px; }
.why-card h3{ font-size:17px; margin-bottom:8px; color:white; }
.why-card p{ color:#94A3B8; font-size:14px; }

.steps{ display:flex; justify-content:space-between; align-items:flex-start; gap:12px; flex-wrap:wrap; }
.step{ flex:1; min-width:150px; text-align:center; position:relative; }
.step .circle{ width:56px; height:56px; border-radius:50%; background: linear-gradient(135deg, var(--blue), var(--emerald)); color:white; font-family:var(--font-display); font-weight:700; font-size:20px; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; box-shadow: 0 10px 24px rgba(37,99,235,0.28); }
.step h4{ font-size:15.5px; margin-bottom:6px; font-family:var(--font-display); }
.step p{ font-size:13px; color:var(--slate); }
.step-connector{ position:absolute; top:28px; left:calc(50% + 40px); right:calc(-50% + 40px); height:2px; background: var(--border); z-index:0; }
.step:last-child .step-connector{ display:none; }
@media (max-width:820px){ .step-connector{ display:none; } .steps{ justify-content:center; } }

.gallery-grid{ display:grid; grid-template-columns: repeat(6, 1fr); gap:20px; }
@media (max-width:960px){ .gallery-grid{ grid-template-columns: repeat(3,1fr);} }
@media (max-width:560px){ .gallery-grid{ grid-template-columns: repeat(2,1fr);} }
.gallery-item{ text-align:center; }
.gallery-item .frame{ border-radius:20px; overflow:hidden; border:5px solid #0F172A; box-shadow: var(--shadow-md); transition: transform .2s ease; }
.gallery-item:hover .frame{ transform: translateY(-6px); }
.gallery-item .cap{ margin-top:12px; font-size:13.5px; font-weight:600; color:var(--slate); }

.why-choose-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; max-width:900px; margin:0 auto; }
@media (max-width:820px){ .why-choose-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .why-choose-grid{ grid-template-columns:1fr; } }
.why-choose-item{ background: var(--gray-bg); border:1px solid var(--border); border-radius:14px; padding:20px 22px; font-weight:600; font-size:15.5px; color: var(--charcoal); display:flex; align-items:center; gap:10px; }

.pricing-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; max-width:980px; margin:0 auto; }
@media (max-width:820px){ .pricing-grid{ grid-template-columns:1fr; } }
.price-card{ background:white; border:1px solid var(--border); border-radius: var(--radius); padding:34px 28px; box-shadow: var(--shadow-sm); position:relative; }
.price-card.featured{ border:2px solid var(--blue); box-shadow: var(--shadow-md); transform: scale(1.03); }
.price-card .tag{ position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--blue); color:white; font-size:12px; font-weight:700; padding:5px 14px; border-radius:999px; letter-spacing:0.04em; }
.price-card h3{ font-size:18px; margin-bottom:6px; }
.price-card .amount{ font-family:var(--font-display); font-size:36px; font-weight:800; margin:14px 0 4px; }
.price-card .amount span{ font-size:14px; font-weight:500; color:var(--slate); }
.price-card .trial{ font-size:13px; color:var(--emerald); font-weight:600; margin-bottom:20px; }
.price-card ul{ list-style:none; margin-bottom:24px; }
.price-card li{ font-size:14px; color:var(--slate); padding:7px 0; display:flex; gap:8px; align-items:flex-start; }
.price-card li:before{ content:"✓"; color:var(--emerald); font-weight:700; }

.faq{ max-width:760px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--border); }
.faq-q{ padding:22px 4px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-weight:600; font-size:16px; }
.faq-q .plus{ font-size:22px; color:var(--blue); transition: transform .2s ease; }
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; color:var(--slate); font-size:14.5px; }
.faq-item.open .faq-a{ max-height:200px; padding-bottom:20px; }

.cta-band{ background: linear-gradient(120deg, var(--blue) 0%, #1E40AF 55%, #0F766E 100%); color:white; text-align:center; padding:88px 0; }
.cta-band h2{ font-size: clamp(28px,3.6vw,42px); margin-bottom:16px; }
.cta-band p{ color:#DBEAFE; font-size:17px; margin-bottom:34px; }
.cta-buttons{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

footer{ background: var(--charcoal); color:#94A3B8; padding:56px 0 28px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:40px; margin-bottom:40px; }
@media (max-width:700px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h4{ color:white; font-size:14px; margin-bottom:16px; font-family:var(--font-body); }
.footer-grid ul{ list-style:none; }
.footer-grid li{ margin-bottom:10px; font-size:14px; }
.footer-grid a:hover{ color:white; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.08); padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; }

.fade-up{ opacity:0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible{ opacity:1; transform: translateY(0); }
