/* ===== Design tokens ===== */
:root {
  --bg: #0b1220;
  --bg-2: #0f1830;
  --surface: #121d36;
  --surface-2: #16223f;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef2fb;
  --muted: #9aa6c4;
  --brand: #ffc930;
  --brand-2: #ffb300;
  --accent: #36c2ff;
  --ok: #4ade80;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1140px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -10%, #16224400 40%, transparent),
              var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: "Sora", "Manrope", sans-serif; line-height: 1.15; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--brand); color: #1a1300; padding: 10px 16px; border-radius: 8px;
  font-weight: 700; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 0.95rem; border: 1px solid transparent;
  padding: 11px 20px; border-radius: 999px; cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #1a1300; box-shadow: 0 10px 26px -10px rgba(255, 201, 48, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(255, 201, 48, 0.85); }
.btn-outline { border-color: var(--line); color: var(--text); background: rgba(255, 255, 255, 0.02); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-light { background: #fff; color: #0b1220; }
.btn-light:hover { transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(0, 0, 0, 0.25); color: #1a1300; }
.btn-outline-light:hover { background: rgba(0, 0, 0, 0.08); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(11, 18, 32, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(11, 18, 32, 0.9); }
.header-inner { display: flex; align-items: center; gap: 20px; height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.2rem; }
.brand-mark {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2)); color: #1a1300;
  box-shadow: 0 8px 20px -8px rgba(255, 201, 48, 0.7);
}
.brand-logo { display: block; flex: none; width: 46px; height: 46px; }
.site-footer .brand-logo { width: 42px; height: 42px; }
.brand-text { letter-spacing: -0.03em; }
.brand-accent { color: var(--brand); }

.nav { margin-inline: auto; }
.nav-list { display: flex; gap: 28px; }
.nav-list a { color: var(--muted); font-weight: 600; font-size: 0.95rem; position: relative; padding: 6px 0; transition: color 0.2s; }
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--brand);
  transition: width 0.25s var(--ease);
}
.nav-list a:hover { color: var(--text); }
.nav-list a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.btn-phone span { font-variant-numeric: tabular-nums; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; padding: 72px 0 64px; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -200px 0 auto auto; width: 700px; height: 700px;
  background: radial-gradient(closest-side, rgba(255, 201, 48, 0.18), transparent 70%);
  filter: blur(10px); pointer-events: none; right: -120px;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; position: relative; }

.eyebrow { color: var(--brand); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 18px; }
.hero h1 .hl { color: var(--brand); }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 30px; }

.hero-trust { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong { font-family: "Sora", sans-serif; font-size: 1.6rem; color: var(--text); }
.hero-trust span { color: var(--muted); font-size: 0.85rem; }

/* Hero card */
.hero-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: 22px; padding: 18px; box-shadow: var(--shadow);
  position: relative;
}
.hero-card-top { display: flex; gap: 7px; margin-bottom: 8px; }
.hero-card-top .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.bolt-visual {
  display: grid; place-items: center; padding: 26px 0 30px; color: var(--brand);
  filter: drop-shadow(0 12px 30px rgba(255, 201, 48, 0.45));
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-card-meta { display: grid; gap: 7px; }
.meta-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--muted); }
.meta-row .ok { color: var(--ok); font-weight: 700; }
.bar { height: 7px; border-radius: 999px; background: rgba(255, 255, 255, 0.07); overflow: hidden; margin-bottom: 4px; }
.bar i { display: block; height: 100%; width: var(--w); border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--brand)); }

/* ===== Strip ===== */
.strip { border-block: 1px solid var(--line); background: rgba(255, 255, 255, 0.015); }
.strip-inner { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; padding: 18px 22px; color: var(--muted); font-weight: 600; font-size: 0.9rem; }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-block: 1px solid var(--line); }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ===== Cards / services ===== */
.grid { display: grid; gap: 18px; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.service { transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s; }
.service:hover { transform: translateY(-6px); border-color: rgba(255, 201, 48, 0.4); box-shadow: var(--shadow); }
.service .ic {
  width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.5rem;
  border-radius: 14px; background: rgba(255, 201, 48, 0.1); border: 1px solid rgba(255, 201, 48, 0.25);
  margin-bottom: 16px;
}
.service h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service p { color: var(--muted); font-size: 0.95rem; }

/* ===== Why ===== */
.why-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.why-copy h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 28px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; }
.check { display: grid; place-items: center; width: 24px; height: 24px; flex: none; border-radius: 50%; background: rgba(74, 222, 128, 0.15); color: var(--ok); font-size: 0.8rem; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; text-align: center;
}
.stat strong { display: block; font-family: "Sora", sans-serif; font-size: 2.4rem; color: var(--brand); line-height: 1; }
.stat span { color: var(--muted); font-size: 0.9rem; margin-top: 8px; display: block; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; position: relative;
}
.step-no { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--brand); }
.step h3 { font-size: 1.1rem; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ===== CTA band ===== */
.cta-band { background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #1a1300; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; padding: 52px 22px; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-band p { font-weight: 600; opacity: 0.85; margin-top: 6px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Contact ===== */
.contact-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 14px; }
.contact-list { display: grid; gap: 16px; margin-top: 28px; }
.contact-list li { display: flex; gap: 14px; align-items: center; }
.ci-ic { width: 46px; height: 46px; flex: none; display: grid; place-items: center; font-size: 1.2rem; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); }
.ci-label { display: block; font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.contact-list a, .contact-list div > span:last-child { font-weight: 700; }
.contact-list a:hover { color: var(--brand); }

/* Opening hours table */
.hours {
  width: 100%; margin-top: 26px; border-collapse: collapse;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.hours caption {
  text-align: left; font-family: "Sora", sans-serif; font-weight: 700; font-size: 1rem;
  padding: 16px 18px; border-bottom: 1px solid var(--line); color: var(--text);
}
.hours th, .hours td { padding: 11px 18px; font-size: 0.95rem; text-align: left; }
.hours th { font-weight: 600; color: var(--muted); width: 50%; }
.hours td { font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.hours tr:not(:last-child) th, .hours tr:not(:last-child) td { border-bottom: 1px solid var(--line); }
.hours tr.closed td { color: #ff8585; }

.contact-form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--text); font: inherit; font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #5e6a89; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255, 201, 48, 0.18);
}
.field input.invalid, .field textarea.invalid { border-color: #ff6b6b; box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15); }
.form-note { font-size: 0.9rem; font-weight: 600; min-height: 1.2em; }
.form-note.success { color: var(--ok); }
.form-note.error { color: #ff8585; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 40px; }
.footer-brand p { color: var(--muted); margin-top: 14px; max-width: 280px; font-size: 0.95rem; }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; color: var(--muted); font-size: 0.95rem; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 22px 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.85rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 420px; }
  .why-inner, .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { justify-content: space-between; }

  .site-header.menu-open .nav {
    display: block; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 12px 22px 20px; margin: 0;
  }
  .site-header.menu-open .nav-list { flex-direction: column; gap: 4px; }
  .site-header.menu-open .nav-list a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .site-header.menu-open .nav-list a::after { display: none; }
  .site-header.menu-open .header-cta { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg-2); padding: 0 22px 20px; }

  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .services-grid, .steps, .stats, .checklist, .footer-inner, .field-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; }
  .cta-inner { padding: 40px 22px; }
}
