:root{
  --bg:#ffffff; --ink:#1d1d1f; --muted:#6e6e73; --line:#e6e6eb;
  --accent:#ff3b30; --accent-2:#ff5a36; --radius:18px; --max:1100px;
  --grad:linear-gradient(135deg,var(--accent-2),var(--accent));
}
*{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
body{
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);background:var(--bg);line-height:1.5;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}
.wrap{max-width:var(--max);margin:0 auto;padding:0 22px}
.btn-badge img{height:54px;width:auto}
.badge-row{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.rating{font-size:14px;color:var(--muted)}
.rating strong{color:var(--ink)}

/* Hero */
.hero{padding:72px 0 56px}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center}
.hero .icon{width:84px;height:84px;border-radius:20px;box-shadow:0 8px 26px rgba(0,0,0,.14);margin-bottom:22px}
.hero h1{font-size:clamp(38px,6vw,60px);letter-spacing:-.02em;line-height:1.04;font-weight:800}
.hero .tagline{font-size:20px;color:var(--muted);margin:14px 0 10px;font-weight:600}
.hero .lead{font-size:18px;color:var(--muted);max-width:30ch;margin-bottom:28px}
.hero-shot{justify-self:center;width:min(300px,72vw)}
.hero-shot img{width:100%;height:auto;border-radius:30px;box-shadow:0 24px 60px rgba(0,0,0,.22)}

/* Features */
.section{padding:64px 0;border-top:1px solid var(--line)}
.section h2{font-size:clamp(26px,4vw,38px);letter-spacing:-.02em;font-weight:800;margin-bottom:8px}
.section .sub{color:var(--muted);font-size:17px;margin-bottom:40px}
.features{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.feature{padding:26px;border:1px solid var(--line);border-radius:var(--radius);background:#fafafc}
.feature .k{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:rgba(255,59,48,.10);color:var(--accent);margin-bottom:16px}
.feature .k svg{width:22px;height:22px}
.feature h3{font-size:18px;font-weight:700;margin-bottom:6px}
.feature p{color:var(--muted);font-size:15px}

/* Showcase */
.shots{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.shots img{border-radius:22px;border:1px solid var(--line)}

/* Value strip */
.value{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;text-align:center}
.value .v{font-size:30px;font-weight:800;background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.value .l{color:var(--muted);font-size:15px;margin-top:6px}

/* CTA + footer */
.cta{padding:72px 0;text-align:center;border-top:1px solid var(--line)}
.cta h2{font-size:clamp(26px,4vw,40px);font-weight:800;letter-spacing:-.02em;margin-bottom:24px}
.cta .badge-row{justify-content:center}
footer{padding:34px 0;border-top:1px solid var(--line);color:var(--muted);font-size:14px}
footer .wrap{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap}
footer a{color:var(--muted);text-decoration:none}
footer a:hover{color:var(--ink)}

@media(max-width:860px){
  .hero-grid{grid-template-columns:1fr;gap:36px}
  .hero{padding:48px 0 36px}
  .hero .lead{max-width:none}
  .features{grid-template-columns:repeat(2,1fr)}
  .shots{grid-template-columns:1fr;max-width:340px;margin:0 auto}
  .value{grid-template-columns:1fr;gap:30px}
  footer .wrap{flex-direction:column;gap:10px}
}
@media(max-width:480px){ .features{grid-template-columns:1fr} }
