/* ============================================================
   IPTVIA — Web marketing site (cinematic redesign)
   Netflix.com / Apple TV+ inspired. Dark, premium, full-bleed.
   Pairs with ../../colors_and_type.css tokens.
   ============================================================ */
:root {
  --bg: #050507;
  --bg-2: #0c0c10;
  --accent: #e50914;
  --accent-2: #e50914;
  --accent-deep: #e50914;
  --text: #ffffff;
  --muted: rgba(255,255,255,.64);
  --muted-2: rgba(255,255,255,.42);
  --card: rgba(255,255,255,.035);
  --card-2: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.09);
  --maxw: 1240px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }

/* ---------------- Typography ---------------- */
.eyebrow { display: inline-block; color: var(--accent-2); font-weight: 700; font-size: 13px;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 18px; }
h1 { font-size: clamp(44px, 8.2vw, 94px); line-height: .98; font-weight: 800; letter-spacing: -.04em; }
h2 { font-size: clamp(32px, 5vw, 56px); line-height: 1.04; font-weight: 800; letter-spacing: -.03em; }
h3 { font-size: 21px; font-weight: 700; letter-spacing: -.01em; }
.lead { color: var(--muted); font-size: clamp(17px, 2.1vw, 21px); line-height: 1.55; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head h2 { margin-bottom: 18px; }
.section-head .lead { font-size: 18px; }

/* ---------------- Buttons ---------------- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px;
  padding: 16px 30px; border-radius: 100px; cursor: pointer; border: 1.5px solid transparent;
  font-family: inherit; transition: transform .2s cubic-bezier(.2,.7,.3,1), background .25s, border-color .25s, box-shadow .25s; }
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 30px rgba(229,9,20,.45); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-3px); box-shadow: 0 16px 44px rgba(229,9,20,.6); }
.btn-outline { background: rgba(255,255,255,.04); color: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.btn-outline:hover { border-color: #fff; transform: translateY(-3px); background: rgba(255,255,255,.08); }

/* ---------------- Nav ---------------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s, border-color .3s, backdrop-filter .3s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(7,7,9,.72); backdrop-filter: saturate(160%) blur(18px); border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 900; font-size: 23px; letter-spacing: .02em; }
.brand img { width: 32px; height: 32px; border-radius: 9px; }
.brand b { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; padding: 9px 16px; border-radius: 100px; transition: color .2s, background .2s; cursor: pointer; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-links a.player { color: #fff; border: 1px solid var(--border); }
.nav-links a.player:hover { border-color: var(--accent); background: transparent; }
.nav-cta { background: var(--accent) !important; color: #fff !important; font-weight: 700; padding: 10px 22px !important; }
.nav-cta:hover { background: var(--accent-2) !important; }
.burger { display: none; margin-left: auto; background: none; border: 0; color: #fff; cursor: pointer; padding: 8px; }
.burger svg { width: 28px; height: 28px; }

/* ---------------- Hero ---------------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(70% 55% at 22% 30%, rgba(229,9,20,.30), transparent 60%),
    radial-gradient(60% 50% at 88% 12%, rgba(229,9,20,.16), transparent 62%),
    radial-gradient(90% 70% at 50% 120%, rgba(140,8,16,.28), transparent 70%),
    linear-gradient(180deg, #08080b 0%, #050507 60%); }
/* faint angled poster collage behind hero (cinematic, Netflix-like) */
.hero-collage { position: absolute; top: -8%; right: -6%; width: 62%; height: 116%; z-index: -1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; transform: rotate(8deg) scale(1.08);
  opacity: .5; mask-image: radial-gradient(70% 80% at 60% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 80% at 60% 40%, #000 30%, transparent 78%); }
.hero-collage .col { display: flex; flex-direction: column; gap: 16px; }
.hero-collage .col:nth-child(even) { transform: translateY(-40px); }
.hero-collage .tile { width: 100%; aspect-ratio: 2/3; border-radius: 12px; border: 1px solid rgba(255,255,255,.06); }

.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 48px; align-items: center; width: 100%; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { max-width: 540px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; color: var(--muted); font-size: 14.5px; }
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 5px rgba(61,220,132,.16); }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; perspective: 1600px; }
.phone { width: 300px; height: 608px; border-radius: 46px; padding: 13px; position: relative;
  background: linear-gradient(155deg, #2c2c32, #0c0c0f); border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 50px 120px rgba(0,0,0,.7), 0 0 80px rgba(229,9,20,.18);
  transform: rotateY(-12deg) rotateX(3deg); animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: rotateY(-12deg) rotateX(3deg) translateY(0); } 50% { transform: rotateY(-12deg) rotateX(3deg) translateY(-16px); } }
.phone::before { content: ''; position: absolute; top: 17px; left: 50%; transform: translateX(-50%); width: 116px; height: 28px; background: #050505; border-radius: 16px; z-index: 3; }
.phone-screen { width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: #000; }
.ps-shot { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.ps-logo { color: var(--accent); font-weight: 900; font-size: 17px; letter-spacing: 2px; margin: 0 4px 12px; }
.ps-hero { height: 188px; border-radius: 14px; margin-bottom: 14px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(229,9,20,.5), rgba(0,0,0,.4)), linear-gradient(135deg, #3a1620, #0e0e12); }
.ps-hero::after { content: ''; position: absolute; left: 14px; bottom: 14px; width: 90px; height: 30px; border-radius: 7px; background: #fff; opacity: .92; }
.ps-rowlbl { height: 10px; width: 42%; background: rgba(255,255,255,.16); border-radius: 5px; margin: 0 4px 11px; }
.ps-row { display: flex; gap: 9px; margin-bottom: 14px; }
.ps-poster { flex: 0 0 78px; height: 112px; border-radius: 9px; border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(140deg, #232329, #131318); }
.ps-poster.red { background: linear-gradient(140deg, rgba(229,9,20,.55), #1a0a0c); }
.ps-poster.blue { background: linear-gradient(140deg, #15233c, #0b0d14); }
.ps-poster.green { background: linear-gradient(140deg, #123329, #0a0f0c); }

/* ---------------- Logo strip ---------------- */
.strip { padding: 40px 0 10px; }
.strip-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; }
.strip .chip { display: flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 100px;
  background: var(--card); border: 1px solid var(--border); font-weight: 600; font-size: 14.5px; color: var(--muted); }
.strip .chip .ic { font-size: 20px; }
.strip .chip svg { width: 19px; height: 19px; flex: 0 0 auto; }
.strip .chip .lg-ic { display: inline-flex; width: 19px; height: 19px; flex: 0 0 auto; }
.strip .chip .lg-ic svg { width: 100%; height: 100%; }
.brand .lg-ic { display: inline-flex; align-items: center; justify-content: center; width: 17px; height: 17px; flex: 0 0 auto; }
.brand .lg-ic svg { width: 100%; height: 100%; }
.brand .lg-ic[data-logo="samsung"], .brand .lg-ic[data-logo="formuler"] { width: auto; height: 13px; }
.strip .chip .lg-ic[data-logo="samsung"] { width: auto; height: 14px; }
.store-badge .ic .lg-ic { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; }
.store-badge .ic .lg-ic svg { width: 100%; height: 100%; }

/* ---------------- Section frame ---------------- */
.sec { padding: 130px 0; }
.sec-tight { padding: 90px 0; }

/* ---------------- Features (3D flip cards) ---------------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat { background: transparent; border: 0; padding: 0; height: 280px; perspective: 1300px; cursor: pointer; }
.feat-inner { position: relative; width: 100%; height: 100%; transition: transform .6s cubic-bezier(.4,.2,.2,1); transform-style: preserve-3d; }
.feat:hover .feat-inner, .feat.flipped .feat-inner { transform: rotateY(180deg); }
.feat-face { position: absolute; inset: 0; border-radius: 22px; border: 1px solid var(--border); padding: 32px 30px;
  display: flex; flex-direction: column; backface-visibility: hidden; -webkit-backface-visibility: hidden; overflow: hidden; }
.feat-front { background: var(--card); justify-content: center; align-items: flex-start; transition: border-color .3s; }
.feat:hover .feat-front { border-color: rgba(229,9,20,.4); }
.feat-back { background: #1a1a1a; transform: rotateY(180deg); border-color: rgba(229,9,20,.45); }
.feat .ic { width: 62px; height: 62px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; background: #e50914; box-shadow: 0 8px 22px rgba(229,9,20,.4); }
.feat .ic svg { width: 30px; height: 30px; color: #fff; }
.feat-front h3 { font-size: 21px; }
.feat-back h3 { color: #e50914; font-size: 19px; margin-bottom: 12px; }
.feat-back p { color: var(--muted); font-size: 13.6px; line-height: 1.55; }
.feat-more { margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 6px; color: #e50914; font-weight: 700; font-size: 13.5px; cursor: pointer; }
.feat-more:hover { gap: 9px; }
.feat-more svg { width: 15px; height: 15px; transition: transform .2s; }

/* ---------------- Feature modal ---------------- */
.modal-overlay { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(0,0,0,.72); backdrop-filter: blur(7px); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { width: 100%; max-width: 600px; max-height: 86vh; overflow-y: auto; background: #111111; border: 1px solid #222222;
  border-radius: 24px; padding: 40px; position: relative; transform: scale(.95); transition: transform .3s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 40px 100px rgba(0,0,0,.6); }
.modal-overlay.open .modal { transform: scale(1); }
.modal-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid #222;
  background: rgba(255,255,255,.04); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.modal-close:hover { background: rgba(255,255,255,.1); border-color: #e50914; }
.modal-close svg { width: 20px; height: 20px; }
.modal-ic { width: 72px; height: 72px; border-radius: 20px; background: #e50914; box-shadow: 0 8px 24px rgba(229,9,20,.4);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.modal-ic svg { width: 36px; height: 36px; color: #fff; }
.modal h3 { font-size: 28px; font-weight: 800; letter-spacing: -.02em; line-height: 1.12; margin-bottom: 20px; padding-right: 40px; }
.modal-body p { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 16px; }
.modal-body p:last-child { margin-bottom: 0; }
.modal-body ul { list-style: none; display: grid; gap: 14px; margin: 0 0 16px; padding: 0; }
.modal-body ul:last-child { margin-bottom: 0; }
.modal-body li { color: var(--muted); font-size: 14.5px; line-height: 1.55; padding-left: 24px; position: relative; }
.modal-body li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 2px; background: #e50914; }
.modal-body li strong { color: #fff; font-weight: 700; }
.modal-body .sublist { margin: 10px 0 0; gap: 8px; }
.modal-body .sublist li { font-size: 13.5px; padding-left: 20px; }
.modal-body .sublist li::before { width: 5px; height: 5px; border-radius: 50%; background: var(--muted-2); top: 7px; }
@media (prefers-reduced-motion: reduce) { .modal-overlay, .modal { transition: opacity .3s, visibility .3s; } .modal { transform: none; } }
@media (max-width: 600px) { .modal { padding: 30px 22px; } .modal h3 { font-size: 23px; } }
@media (prefers-reduced-motion: reduce) { .feat-inner { transition: none; } }

/* ---------------- Devices ---------------- */
.devices-band { background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head .lead strong { color: #fff; }
.usp-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 900px; margin: 0 auto 56px; }
.usp { display: flex; align-items: center; gap: 16px; padding: 22px 24px; border-radius: 20px; background: var(--card); border: 1px solid var(--border); }
.usp .usp-n { font-size: 42px; font-weight: 800; letter-spacing: -.03em; color: #e50914; line-height: 1; flex: 0 0 auto; min-width: 46px; text-align: center; }
.usp b { display: block; font-size: 15.5px; }
.usp span { color: var(--muted-2); font-size: 12.5px; }
.plat-cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.plat-cat { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 30px; transition: transform .3s, border-color .3s, background .3s; }
.plat-cat:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.2); background: var(--card-2); }
.cat-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.cat-ic { width: 56px; height: 56px; border-radius: 17px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; box-shadow: 0 10px 26px rgba(0,0,0,.4); }
.cat-ic svg { width: 28px; height: 28px; color: #fff; }
.cat-head h3 { font-size: 19px; }
.cat-head .cat-sub { display: block; color: var(--muted-2); font-size: 12.5px; font-weight: 500; margin-top: 3px; }
.brandrow { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.brand { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 100px; background: rgba(255,255,255,.05); border: 1px solid var(--border); font-size: 13.5px; font-weight: 600; }
.brand svg { width: 17px; height: 17px; flex: 0 0 auto; }
.cat-note { color: var(--muted-2); font-size: 12.8px; line-height: 1.5; }
.devices { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.device .ic svg { width: 46px; height: 46px; }
.device .ic { display: flex; align-items: center; justify-content: center; }
.store-badge .ic { display: flex; align-items: center; justify-content: center; }
.store-badge .ic svg { width: 24px; height: 24px; display: block; }
.pricing.pricing-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; align-items: stretch; }
.device { text-align: center; padding: 38px 16px; border-radius: 20px; border: 1px solid transparent; transition: border-color .3s, background .3s, transform .3s; }
.device:hover { border-color: var(--border); background: var(--card); transform: translateY(-6px); }
.device .ic { font-size: 46px; margin-bottom: 16px; }
.device h3 { font-size: 17px; }
.device p { color: var(--muted-2); font-size: 13px; margin-top: 5px; }

/* ---------------- Pricing ---------------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: center; }
.price { background: var(--card); border: 1px solid var(--border); border-radius: 26px; padding: 40px 34px; display: flex; flex-direction: column; transition: transform .3s, border-color .3s; }
.price:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.2); }
.price.featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(229,9,20,.14), rgba(255,255,255,.03));
  box-shadow: 0 30px 80px rgba(229,9,20,.22); transform: scale(1.05); position: relative; z-index: 2; }
.price.featured:hover { transform: scale(1.05) translateY(-6px); }
.price .reco { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff;
  font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; white-space: nowrap; }
.price .tag { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 18px; }
.price .amount { font-size: 52px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.price .amount small { font-size: 17px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price .save { color: #3ddc84; font-size: 14.5px; font-weight: 700; margin-top: 8px; }
.price .per-month { color: var(--muted-2); font-size: 13.5px; font-weight: 500; margin-top: 6px; }
.price ul { list-style: none; margin: 28px 0 32px; display: grid; gap: 14px; }
.price li { color: var(--muted); font-size: 15px; display: flex; gap: 12px; align-items: flex-start; line-height: 1.4; }
.price li svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 1px; color: var(--accent-2); }
.price .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ---------------- FAQ ---------------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(229,9,20,.4); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: #fff; cursor: pointer;
  padding: 24px 26px; font-size: 17.5px; font-weight: 600; display: flex; justify-content: space-between; gap: 18px; align-items: center; font-family: inherit; }
.faq-q .plus { color: var(--accent-2); font-size: 28px; line-height: 1; transition: transform .3s; flex: 0 0 auto; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a p { padding: 0 26px 26px; color: var(--muted); font-size: 15.5px; }

/* ---------------- CTA band ---------------- */
.cta-band { text-align: center; border-radius: 32px; padding: 80px 32px; overflow: hidden; position: relative;
  background: radial-gradient(80% 140% at 50% 0%, rgba(229,9,20,.28), transparent 60%), rgba(255,255,255,.03);
  border: 1px solid var(--border); }
.cta-band h2 { margin-bottom: 16px; }
.cta-band .lead { margin: 0 auto 34px; max-width: 560px; }

/* ---------------- Footer ---------------- */
.footer { border-top: 1px solid var(--accent); background: #060608; padding: 72px 0 36px; margin-top: 40px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; margin-bottom: 54px; }
.footer-top .brand { font-size: 22px; }
.footer-top p { color: var(--muted-2); max-width: 380px; font-size: 14.5px; }
.footer-cols { display: grid; grid-template-columns: 1.1fr 1.1fr 1.3fr 1.4fr; gap: 40px; }
.footer-col h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); margin-bottom: 18px; font-weight: 700; }
.footer-col a { display: block; color: var(--muted-2); font-size: 14.5px; margin-bottom: 12px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-dl { display: grid; gap: 11px; }
.store-badge { display: flex; align-items: center; gap: 12px; padding: 12px 18px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--border); transition: border-color .2s, transform .2s; cursor: pointer; }
.store-badge:hover { border-color: var(--accent); transform: translateY(-2px); }
.store-badge .ic { font-size: 24px; }
.store-badge small { display: block; color: var(--muted-2); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.store-badge b { font-size: 15px; font-weight: 700; }
.store-badge.soon { opacity: .5; }
.footer-bottom { margin-top: 54px; padding-top: 30px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; color: var(--muted-2); font-size: 13px; }
.footer-bottom .fb-left { display: flex; align-items: center; gap: 12px; }
.footer-bottom .fb-left img { width: 24px; height: 24px; border-radius: 7px; }
.footer-bottom .fb-center { text-align: center; }
.footer-bottom .fb-right { display: flex; justify-content: flex-end; gap: 16px; }
.footer-bottom .fb-right a { color: var(--muted-2); transition: color .2s; display: inline-flex; }
.footer-bottom .fb-right a:hover { color: var(--accent); }
.footer-bottom .fb-right svg { width: 21px; height: 21px; }

/* ---------------- Scroll reveal ---------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .phone { animation: none; } }

/* ---------------- Responsive ---------------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-btns, .hero-badge { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-collage { display: none; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .plat-cats { grid-template-columns: 1fr; }
  .devices { grid-template-columns: repeat(3, 1fr); }
  .pricing, .pricing.pricing-2 { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price.featured { transform: none; }
  .price.featured:hover { transform: translateY(-6px); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom .fb-left, .footer-bottom .fb-right { justify-content: center; }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(7,7,9,.98); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border);
    padding: 16px 24px 26px; gap: 6px; transform: translateY(-130%); transition: transform .35s; }
  .nav-links a { padding: 15px 8px; font-size: 17px; border-radius: 12px; }
  .nav.open .nav-links { transform: none; }
  .burger { display: inline-flex; }
  .sec { padding: 90px 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .usp-strip { grid-template-columns: 1fr; }
  .devices { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: clamp(40px, 13vw, 60px); }
}
