:root {
  --bg: #07080a;
  --bg-2: #0c0f13;
  --surface: #13181f;
  --surface-2: #1a212b;
  --line: rgba(244, 241, 234, 0.09);
  --line-strong: rgba(244, 241, 234, 0.16);
  --text: #f4f1ea;
  --muted: #a8b0bb;
  --faint: #7c8694;
  --accent: #e85d2c;
  --accent-2: #2ec4b6;
  --accent-soft: rgba(232, 93, 44, 0.14);
  --accent-2-soft: rgba(46, 196, 182, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --radius-sm: 14px;
  --header: 76px;
  --max: 1180px;
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.7em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

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

.section {
  padding: 5.5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-2);
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent-2);
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}

.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 8, 10, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 8, 10, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
}

.brand img {
  width: auto;
  height: 52px;
  max-width: min(280px, 46vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.55rem 0.8rem;
  color: var(--muted);
  font-weight: 560;
  font-size: 0.94rem;
  border-radius: 10px;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  background: #151b23;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 0.45rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  transition-delay: 0.15s;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 0.8rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 650;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, #ff7544, var(--accent));
  color: #fff;
  box-shadow: 0 10px 30px rgba(232, 93, 44, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--accent);
}

.btn-phone {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--line);
  padding-inline: 1rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--text);
  margin: 0 auto;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.35) 0%, rgba(7, 8, 10, 0.62) 42%, rgba(7, 8, 10, 0.94) 100%),
    radial-gradient(ellipse at 20% 20%, rgba(232, 93, 44, 0.18), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.1rem);
  max-width: 14ch;
  margin-bottom: 1rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.hero .lead {
  font-size: 1.18rem;
  max-width: 48ch;
  margin-bottom: 1.8rem;
  color: #d5dbe3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-meta strong {
  color: var(--text);
}

/* Trust */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  padding: 1.5rem 0.4rem;
}

.trust-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Cards */
.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 1.1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.card:hover {
  border-color: var(--line-strong);
}

a.card {
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

a.card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 93, 44, 0.4);
}

code {
  font-size: 0.9em;
  background: #0d1117;
  padding: 0.1em 0.4em;
  border-radius: 6px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.45rem;
}

.icon-chip {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.icon-chip.teal {
  background: var(--accent-2-soft);
  color: var(--accent-2);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.split-media {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.checklist li {
  padding: 0.55rem 0 0.55rem 1.6rem;
  position: relative;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  position: absolute;
  left: 0;
  top: 0.95rem;
}

/* Video */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 0;
  width: 100%;
  padding: 0;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 3px;
}

.video-card h3 {
  font-size: 1rem;
  padding: 1rem 1rem 0.25rem;
}

.video-card p {
  padding: 0 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.05rem 2.4rem 1.05rem 1.2rem;
  font-weight: 650;
  list-style: none;
  position: relative;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 1.05rem;
  color: var(--accent);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}

.contact-card dt {
  color: var(--faint);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1rem;
}

.contact-card dd {
  margin: 0.2rem 0 0;
  font-size: 1.08rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.form {
  display: grid;
  gap: 0.85rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form input,
.form textarea,
.form select {
  background: #0d1117;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid rgba(232, 93, 44, 0.45);
  border-color: var(--accent);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #080a0d;
  padding: 3.5rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
}

.site-footer h2 {
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin: 0.45rem 0;
}

.site-footer a:hover {
  color: var(--text);
}

.legal-bar {
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  justify-content: space-between;
  align-items: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
}

.legal-note {
  color: var(--faint);
  font-size: 0.82rem;
  margin: 1rem 0 1.3rem;
  max-width: 90ch;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.badges a img {
  width: min(100%, 380px);
  height: auto;
  background: #fff;
  border-radius: 999px;
}

.mobile-cta {
  display: none;
}

/* Cookie */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  background: #161c25;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin-inline: auto;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner a,
.prose a,
.lead a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Page hero */
.page-hero {
  padding: 4.2rem 0 2.2rem;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(232, 93, 44, 0.14), transparent 40%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  max-width: 18ch;
}

.breadcrumbs {
  color: var(--faint);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.breadcrumbs a:hover {
  color: var(--text);
}

.prose {
  max-width: 78ch;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.prose h3 {
  margin-top: 1.4rem;
  font-size: 1.18rem;
}

.prose ul,
.prose ol {
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--faint);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Utility */
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.band {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.band-top {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .brand img {
    height: 42px;
    max-width: min(200px, 42vw);
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    background: #0d1117;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    max-height: calc(100vh - var(--header));
    overflow: auto;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding-left: 0.6rem;
  }

  .header-cta .btn-phone {
    display: none;
  }

  .trust-grid,
  .grid-3,
  .grid-4,
  .video-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    bottom: 5.2rem;
  }

  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(8, 10, 13, 0.94);
    border-top: 1px solid var(--line);
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
    gap: 0.6rem;
  }

  .mobile-cta .btn {
    flex: 1;
  }

  body {
    padding-bottom: 4.6rem;
  }
}

@media (min-width: 700px) and (max-width: 980px) {
  .grid-2,
  .video-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}
