@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Noto+Naskh+Arabic:wght@500;700&family=Noto+Serif+Hebrew:wght@500;600;700&family=Rubik:wght@400;500;700;800&family=Sora:wght@400;500;700;800&family=Tajawal:wght@400;500;700;800&display=swap");

/* styles.css */
:root{
  --bg:#09060b;
  --bg2:#14080e;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.12);
  --ink:#f3f6ff;
  --muted: rgba(243,246,255,.82);
  --muted2: rgba(243,246,255,.68);

  --brand:#c73535;
  --brand2:#ff9253;
  --warn:#ffcb6b;

  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;

  --max: 1120px;

  --font-body-he: "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head-he: "Noto Serif Hebrew", "Times New Roman", serif;
  --font-body-latin: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head-latin: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body-ar: "Tajawal", "Noto Naskh Arabic", system-ui, sans-serif;
  --font-head-ar: "Noto Naskh Arabic", "Tajawal", serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font-body-he);
  color:var(--ink);
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(199,53,53,.34), transparent 55%),
    radial-gradient(650px 450px at 10% 10%, rgba(255,146,83,.2), transparent 55%),
    radial-gradient(900px 700px at 50% 120%, rgba(129,22,36,.22), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.55;
  letter-spacing: .002em;
}

h1,h2,h3{
  font-family: var(--font-head-he);
  letter-spacing: .01em;
  font-weight:700;
}

.brand__name{
  font-family: var(--font-head-latin);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

html[lang="he"] body{
  font-family: var(--font-body-he);
}

html[lang="he"] h1,
html[lang="he"] h2,
html[lang="he"] h3,
html[lang="he"] .brand__name{
  font-family: var(--font-body-he);
  letter-spacing: .01em;
}

html[lang="he"] h1,
html[lang="he"] h2,
html[lang="he"] h3{
  font-family: var(--font-head-he);
  letter-spacing: 0;
}

html[lang="en"] body,
html[lang="fr"] body,
html[lang="ru"] body{
  font-family: var(--font-body-latin);
  letter-spacing: .005em;
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="fr"] h1,
html[lang="fr"] h2,
html[lang="fr"] h3,
html[lang="ru"] h1,
html[lang="ru"] h2,
html[lang="ru"] h3,
html[lang="fr"] .brand__name,
html[lang="ru"] .brand__name,
html[lang="en"] .brand__name{
  font-family: var(--font-body-latin);
  letter-spacing: .01em;
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="fr"] h1,
html[lang="fr"] h2,
html[lang="fr"] h3,
html[lang="ru"] h1,
html[lang="ru"] h2,
html[lang="ru"] h3{
  font-family: var(--font-head-latin);
  letter-spacing: .01em;
}

html[lang="ar"] body{
  font-family: var(--font-body-ar);
  letter-spacing: 0;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] .brand__name{
  font-family: var(--font-body-ar);
  letter-spacing: 0;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3{
  font-family: var(--font-head-ar);
  letter-spacing: 0;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
p{margin:0 0 12px}
h1,h2,h3{margin:0 0 10px; line-height:1.15}
h1{font-size:clamp(30px, 4.2vw, 54px); letter-spacing:-.02em}
h2{font-size:clamp(22px, 2.4vw, 34px); letter-spacing:-.01em}
h3{font-size:clamp(18px, 1.8vw, 22px)}
strong{font-weight:800}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px; top:16px;
  width:auto;height:auto;
  padding:10px 14px;
  background:rgba(0,0,0,.65);
  border:1px solid var(--line);
  border-radius:12px;
  z-index:9999;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background:rgba(9,6,11,.62);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
  flex-wrap:nowrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand__mark{
  display:grid;
  place-items:center;
  width:42px;height:42px;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(199,53,53,.22), rgba(255,146,83,.14));
  border:1px solid rgba(255,255,255,.12);
  color:var(--ink);
}
.brand__text{display:flex;align-items:baseline;gap:8px;white-space:nowrap}
.brand__name{font-weight:700}
.brand__tag{font-size:12px;color:var(--muted2)}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  row-gap:8px;
  gap:14px;
  color:var(--muted);
  font-weight:600;
}
.nav a{
  padding:9px 10px;
  border-radius:12px;
  white-space:nowrap;
}
.nav a:hover{background:rgba(255,255,255,.06)}
.nav__cta{
  background:linear-gradient(135deg, rgba(199,53,53,.25), rgba(255,146,83,.18));
  border:1px solid rgba(255,255,255,.14);
}
.nav__auth{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  font-weight:800;
}
.nav__auth--primary{
  background:linear-gradient(135deg, rgba(199,53,53,.35), rgba(255,146,83,.18));
}
.nav--mobile{display:none}
.nav--desktop{
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.nav--desktop::-webkit-scrollbar{display:none}
.nav--desktop a{flex:0 0 auto}

.nav__item{
  position:relative;
  flex:0 0 auto;
}

.nav__trigger{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.nav__item--menu .nav__trigger::after{
  content:"▾";
  font-size:10px;
  opacity:.78;
}

.nav__menu{
  position:absolute;
  top:calc(100% + 8px);
  inset-inline-start:0;
  min-width:250px;
  padding:10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(9,6,11,.96);
  box-shadow:0 20px 44px rgba(0,0,0,.45);
  display:grid;
  gap:6px;
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:45;
}

.nav__menu-link{
  display:block;
  padding:9px 10px;
  border-radius:10px;
  color:var(--ink);
  font-size:13px;
  font-weight:600;
  line-height:1.3;
}

.nav__menu-link:hover{
  background:rgba(255,255,255,.07);
}

.nav__item--menu:hover .nav__menu,
.nav__item--menu:focus-within .nav__menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

@media (min-width: 981px){
  .nav--desktop{display:flex !important}
  .nav--mobile{display:none !important}
  .brand__tag{display:none}
}

.ai-quickbar{
  display:none;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(16,8,12,.58);
}
.ai-quickbar__inner{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:nowrap;
  overflow-x:auto;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  padding:10px 0;
}
.ai-quickbar__inner::-webkit-scrollbar{display:none}
.ai-quickbar__label{
  font-size:12px;
  font-weight:900;
  color:var(--muted2);
  padding-inline-end:4px;
}
.ai-quickbar__item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:var(--ink);
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
  cursor:pointer;
}
.ai-quickbar__item:hover{
  background:linear-gradient(135deg, rgba(199,53,53,.22), rgba(255,146,83,.14));
}
button.ai-quickbar__item{
  font-family:inherit;
}

@media (min-width: 981px){
  .ai-quickbar{display:block}
  .ai-quickbar__label{display:none}
}

.nav--mobile summary{
  list-style:none;
  cursor:pointer;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:var(--ink);
  font-weight:800;
}
.nav--mobile summary::-webkit-details-marker{display:none}
.nav__panel{
  margin-top:10px;
  padding:10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(16,8,12,.92);
  display:flex;
  flex-direction:column;
  gap:6px;
  box-shadow: var(--shadow);
}

.hero{
  padding:34px 0 18px;
}

.hero__cinema{
  margin:0 0 22px;
  overflow:hidden;
  border-radius:30px;
  position:relative;
  border:1px solid rgba(255,110,69,.28);
  background:linear-gradient(120deg, rgba(27,5,8,.86), rgba(6,8,19,.84));
  box-shadow: 0 28px 70px rgba(0,0,0,.5);
}

.hero__cinema::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(255,82,24,.2), transparent 58%),
    radial-gradient(780px 400px at 88% 110%, rgba(81,111,255,.2), transparent 58%);
  mix-blend-mode:screen;
  opacity:.95;
}

.hero__cinemaGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:minmax(170px, 24vw) minmax(170px, 24vw);
  gap:1px;
  background:rgba(255,255,255,.08);
}

.hero__shot{
  position:relative;
  overflow:hidden;
  padding:14px 16px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:8px;
  min-height:170px;
}

.hero__shot::before{
  content:"";
  position:absolute;
  inset:-10%;
  pointer-events:none;
  opacity:.7;
  background:
    linear-gradient(120deg, rgba(0,0,0,.22), rgba(0,0,0,.58)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.02) 0 1px,
      transparent 1px 3px
    );
}

.hero__shot > *{
  position:relative;
  z-index:1;
}

.hero__shot--a{
  justify-content:flex-start;
  background:
    radial-gradient(420px 280px at 15% 30%, rgba(255,122,62,.32), transparent 62%),
    radial-gradient(520px 300px at 85% 10%, rgba(139,0,0,.48), transparent 68%),
    linear-gradient(135deg, #490909 0%, #1f0909 58%, #0f0b14 100%);
}

.hero__shot--b{
  background:
    radial-gradient(380px 220px at 75% 25%, rgba(255,186,116,.26), transparent 62%),
    radial-gradient(360px 220px at 12% 80%, rgba(77,17,0,.35), transparent 66%),
    linear-gradient(140deg, #1d1112 0%, #0a0e16 54%, #15120c 100%);
}

.hero__shot--c{
  background:
    radial-gradient(380px 220px at 74% 15%, rgba(59,121,255,.28), transparent 60%),
    radial-gradient(370px 250px at 30% 90%, rgba(255,63,43,.3), transparent 62%),
    linear-gradient(140deg, #06132a 0%, #0a0d17 60%, #1d0909 100%);
}

.hero__shot--d{
  background:
    radial-gradient(400px 200px at 22% 80%, rgba(255,176,76,.28), transparent 62%),
    radial-gradient(300px 200px at 86% 10%, rgba(92,56,255,.3), transparent 65%),
    linear-gradient(135deg, #13060a 0%, #090a15 56%, #170a0a 100%);
}

.hero__cinemaMetaRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}

.hero__cinemaMeta{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(243,246,255,.82);
}

.hero__cinemaBrand{
  margin-top:22px;
  font-size:clamp(24px, 4.8vw, 58px);
  line-height:1;
  letter-spacing:.08em;
  font-family: var(--font-head-latin);
  color:rgba(255,239,229,.96);
  text-transform:uppercase;
}

html[lang="he"] .hero__cinemaBrand{
  font-family: var(--font-head-he);
  letter-spacing:.03em;
}

html[lang="ar"] .hero__cinemaBrand{
  font-family: var(--font-head-ar);
  letter-spacing:0;
}

.hero__cinemaQuote{
  margin:0;
  max-width:32ch;
  color:rgba(248,250,255,.92);
  font-size:clamp(14px, 2vw, 22px);
  line-height:1.35;
}

.hero__cinemaQuoteAuthor{
  color:rgba(243,246,255,.72);
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.hero__cinemaAction{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:6px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
  color:#f3f6ff;
  text-decoration:none;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  background:linear-gradient(135deg, rgba(199,53,53,.5), rgba(255,146,83,.28));
  box-shadow:0 12px 26px rgba(0,0,0,.32);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hero__cinemaAction:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 30px rgba(0,0,0,.36);
  border-color:rgba(255,255,255,.38);
}

.hero__cinemaFooter{
  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(243,246,255,.82);
}

.hero__inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}
.eyebrow{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight:800;
  color:rgba(243,246,255,.86);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  margin:0 0 14px;
}
.lead{font-size:clamp(16px, 1.2vw, 18px); color:var(--muted); max-width: 60ch}

.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 10px}

.badges{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.badges li{
  font-size:12px;
  font-weight:700;
  color:rgba(243,246,255,.86);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.card{
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}

.hero__card{
  padding:18px;
  position:relative;
  overflow:hidden;
}
.hero__card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(500px 300px at 90% 0%, rgba(199,53,53,.22), transparent 55%),
    radial-gradient(480px 280px at 10% 20%, rgba(255,146,83,.14), transparent 55%);
  pointer-events:none;
  opacity:.9;
}
.hero__card > *{position:relative}
.hero__cardTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:rgba(243,246,255,.92);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.mini{font-size:12px;color:var(--muted2)}
.hero__cardTitle{font-size:18px;margin:10px 0 10px}

.checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.checklist li{
  position:relative;
  padding-inline-start: 26px;
  color:var(--muted);
}
.checklist li::before{
  content:"✓";
  position:absolute;
  inset-inline-start:0;
  top:0;
  width:18px;height:18px;
  display:grid;
  place-items:center;
  border-radius:6px;
  background:rgba(255,146,83,.16);
  border:1px solid rgba(255,146,83,.25);
  color:rgba(243,246,255,.95);
  font-weight:900;
  font-size:12px;
}
.checklist--compact{gap:8px}
.checklist--compact li{font-size:14px}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:14px 0 14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.10);
}
.kpi{font-weight:900;font-size:20px}
.kpi__label{font-size:12px;color:var(--muted2)}

.section{
  padding:46px 0;
}
section[id]{
  scroll-margin-top: 110px;
}
.section--soft{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top:1px solid rgba(255,255,255,.07);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.section__head{
  margin-bottom:18px;
}
.sub{color:var(--muted); max-width: 70ch}

.grid{
  display:grid;
  gap:14px;
}
.grid--2{grid-template-columns:1fr 1fr}
.grid--3{grid-template-columns:repeat(3, 1fr)}

.offer{
  padding:18px;
}
.offer__head{margin-bottom:10px}
.offer__desc{color:var(--muted2); margin:0}
.offer--featured{
  border-color: rgba(199,53,53,.35);
  background:
    radial-gradient(600px 300px at 90% -10%, rgba(199,53,53,.25), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  position:relative;
}
.offer__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:900;
  color:rgba(255,255,255,.95);
  background:rgba(199,53,53,.22);
  border:1px solid rgba(199,53,53,.28);
  padding:7px 10px;
  border-radius:999px;
  margin-bottom:10px;
}

.price{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin:10px 0 12px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
}
.price__from{color:var(--muted2); font-weight:700}
.price__num{font-weight:900;font-size:26px; letter-spacing:-.02em}
.price__unit{color:var(--muted2); font-weight:700}

.note{
  margin-top:16px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(243,246,255,.86);
}

.iconCard{
  padding:16px;
}
.iconCard__icon{
  width:42px;height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  margin-bottom:10px;
  font-size:20px;
}

.callout{
  margin-top:16px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,146,83,.22);
  background:rgba(255,146,83,.08);
  color:rgba(243,246,255,.88);
}

.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.steps__item{
  padding:16px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  position:relative;
  overflow:hidden;
}
.steps__item::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(420px 120px at 15% 0%, rgba(199,53,53,.18), transparent 55%);
  opacity:.8;
  pointer-events:none;
}
.steps__item > *{position:relative}
.steps__title{font-weight:900;margin-bottom:6px}
.steps__text{color:var(--muted)}

.guide{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  transition: transform .18s ease;
}
.guide:hover{transform: translateY(-2px)}
.guide p{color:var(--muted); margin:0}
.guide__more{color:rgba(243,246,255,.86); font-weight:800}

.faq{
  display:grid;
  gap:10px;
}
.faq__item{
  padding:12px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.faq__item summary{
  cursor:pointer;
  font-weight:900;
  color:rgba(243,246,255,.92);
}
.faq__item p{color:var(--muted); margin:10px 0 0}

.section--cta{
  padding:54px 0 64px;
  background:
    radial-gradient(900px 450px at 30% 0%, rgba(255,146,83,.16), transparent 60%),
    radial-gradient(800px 420px at 80% 40%, rgba(199,53,53,.22), transparent 60%);
  border-top:1px solid rgba(255,255,255,.08);
}
.cta{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
  align-items:start;
}
.cta__copy p{color:var(--muted); max-width: 60ch}
.cta__actions{display:flex;gap:10px;flex-wrap:wrap;margin:14px 0 8px}

.form{
  padding:16px;
}
.form label{
  display:grid;
  gap:8px;
  font-weight:800;
  color:rgba(243,246,255,.90);
  margin-bottom:12px;
}
.form input, .form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.22);
  color:var(--ink);
  outline:none;
}
.form input::placeholder, .form textarea::placeholder{color:rgba(243,246,255,.45)}
.form input:focus, .form textarea:focus{
  border-color: rgba(199,53,53,.45);
  box-shadow: 0 0 0 4px rgba(199,53,53,.16);
}
.form__row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.fineprint{font-size:12px;color:var(--muted2); margin:10px 0 0}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:rgba(243,246,255,.92);
  font-weight:900;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn--primary{
  border-color: rgba(199,53,53,.34);
  background: linear-gradient(135deg, rgba(199,53,53,.55), rgba(255,146,83,.22));
}
.btn--ghost{
  background:rgba(255,255,255,.02);
}
.btn--full{width:100%}
.btn[disabled]{opacity:.55; cursor:not-allowed; transform:none}

.footer{
  padding:28px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.12);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:12px;
  align-items:center;
}
.footer__name{font-weight:900}
.footer__muted, .muted{color:var(--muted2); font-size:12px}
.footer__links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  color:var(--muted);
  font-weight:700;
}
.footer__links a{padding:8px 10px;border-radius:12px}
.footer__links a:hover{background:rgba(255,255,255,.05)}
.footer__meta{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
  color:var(--muted2);
  font-size:12px;
}
.dot{opacity:.6}

@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr}
  .hero__cinemaGrid{
    grid-template-rows:minmax(160px, 38vw) minmax(160px, 38vw);
  }
  .cta{grid-template-columns:1fr}
  .grid--3{grid-template-columns:1fr}
  .grid--2{grid-template-columns:1fr}
  .footer__inner{grid-template-columns:1fr; text-align:center}
  .footer__meta{justify-content:center; flex-wrap:wrap}
  .header__inner{align-items:center; flex-wrap:wrap}
  .brand__text{flex-direction:column; align-items:flex-start; gap:2px}
  .nav--desktop{display:none}
  .nav--mobile{display:block}
  .form__row{grid-template-columns:1fr}
}

@media (max-width: 680px){
  .hero__cinemaGrid{
    grid-template-columns:1fr;
    grid-template-rows:repeat(4, minmax(120px, auto));
  }
  .hero__shot{
    min-height:120px;
  }
  .hero__cinemaBrand{
    margin-top:10px;
    font-size:clamp(22px, 9.2vw, 40px);
  }
}

@media (prefers-reduced-motion: reduce){
  .btn, .guide{transition:none}
  .guide:hover{transform:none}
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .header,
  .auth-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(9, 6, 11, 0.92) !important;
  }

  .hero__cinema,
  .card,
  .nav__panel,
  .auth-card {
    box-shadow: none !important;
  }

  .hero__cinema::after,
  .hero__card::before,
  .steps__item::before {
    display: none !important;
  }
}
