:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-soft: #fff7ed;
  --orange-soft-2: #ffedd5;
  --header-bg: #020617;
  --footer-bg: #020617;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
}

/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

.section--tight {
  padding: 3rem 0;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.4rem;
}

.section-heading h2 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
}

/* Header / nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header-bg);
  color: #e5e7eb;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #e5e7eb;
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link--active::after,
.nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

.nav-phone {
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.nav-phone-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  font-size: 0.7rem;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(248, 113, 22, 0.45);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  border: 1px solid #d1d5db;
  color: var(--text-main);
}

.btn-outline:hover {
  background: #f3f4f6;
}

.btn-light {
  background: #ffffff;
  color: var(--orange-dark);
}

.btn-block {
  width: 100%;
}

/* Hero slider */

.hero {
  background: radial-gradient(circle at top left, #f97316 0, #020617 55%);
  color: #f9fafb;
}

.hero--slider {
  padding: 4.25rem 0 4rem;
}

.hero-slider {
  position: relative;
  border-radius: 1.75rem;
  background: radial-gradient(
    circle at top left,
    rgba(248, 250, 252, 0.24),
    rgba(15, 23, 42, 0.96)
  );
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.65);
}

.hero-slide {
  display: none;
  align-items: center;
}

.hero-slide.active {
  display: flex;
}

.hero-slide-inner {
  padding: 2.6rem 2.2rem 2.8rem;
  max-width: 38rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #fed7aa;
  margin: 0 0 0.7rem;
}

.hero-slide h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
}

.hero-subtitle {
  margin: 0 0 1.7rem;
  color: #e5e7eb;
  max-width: 34rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-indicators {
  position: absolute;
  right: 2.1rem;
  bottom: 1.8rem;
  display: flex;
  gap: 0.45rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-dot.active {
  background: #fed7aa;
  transform: scale(1.15);
}

/* Layout helpers */

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  margin-bottom: 0.6rem;
  font-size: 0.93rem;
  color: var(--text-main);
}

/* Cards and grids */

.card-grid {
  display: grid;
  gap: 1.6rem;
}

.card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.3rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.card--soft {
  background: var(--orange-soft);
  border-color: rgba(248, 113, 22, 0.25);
}

.card-number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 0.35rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-muted);
}

/* Benefits & testimonials */

.benefits {
  background: var(--orange-soft);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #374151;
}

.testimonial-name {
  margin-top: 0.75rem;
  font-weight: 600;
}

/* CTA strip */

.cta-strip {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 1.25rem;
  padding: 1.7rem 1.8rem;
  color: #fffbeb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-strip h2 {
  margin: 0 0 0.35rem;
}

.cta-strip p {
  margin: 0;
  max-width: 26rem;
}

/* Image tiles */

.media-section {
  background: #ffffff;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.tile {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #000;
}

/* 16:9 ratio */
.tile::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.35s ease;
}

.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.15)
  );
  opacity: 0.35;
  transition: opacity 0.25s ease;
}

.tile-label {
  position: absolute;
  left: 1.2rem;
  bottom: 1.1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fffbeb;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.45);
}

.tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.tile:hover img {
  transform: scale(1.08);
}

.tile:hover .tile-overlay {
  opacity: 0.1;
}

/* Glass disclaimer banner */

.disclaimer-banner {
  padding: 3.5rem 0 3.2rem;
  background: radial-gradient(circle at top, #020617, #020617 55%);
}

.disclaimer-glass {
  max-width: 840px;
  margin: 0 auto;
  padding: 2.3rem 2.1rem 2.4rem;
  border-radius: 1.7rem;
  background: linear-gradient(
    135deg,
    rgba(148, 163, 184, 0.25),
    rgba(15, 23, 42, 0.85)
  );
  border: 1px solid rgba(248, 250, 252, 0.22);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.7);
  color: #f9fafb;
  text-align: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.disclaimer-glass h2 {
  margin: 0.2rem 0 0.7rem;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fef9c3;
}

.disclaimer-glass h2 + p {
  margin-top: 0.4rem;
}

.disclaimer-glass p {
  margin: 0 0 0.8rem;
  font-size: 0.93rem;
  line-height: 1.7;
  color: #e5e7eb;
}

.disclaimer-glass h2:nth-of-type(2) {
  margin-top: 1.4rem;
}

/* Footer */

.site-footer {
  background: var(--footer-bg);
  color: #9ca3af;
  margin-top: 3rem;
  padding: 2.7rem 0 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
  font-size: 0.9rem;
}

.footer-brand h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  color: #e5e7eb;
}

.footer-brand p {
  margin: 0;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
  margin-bottom: 0.7rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.4rem;
}

.footer-list a {
  color: #9ca3af;
}

.footer-list a:hover {
  color: #e5e7eb;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* Utilities */

.text-muted {
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 1024px) {
  .split-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 3.5rem;
    background: var(--header-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1.5rem 1.2rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.5);
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-phone {
    width: 100%;
    justify-content: center;
    margin-top: 0.4rem;
  }

  section {
    padding: 3rem 0;
  }

  .card-grid--4,
  .card-grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero--slider {
    padding: 3.5rem 0 3.25rem;
  }

  .hero-slide-inner {
    padding: 2.2rem 1.6rem 2.5rem;
  }

  .hero-indicators {
    left: 50%;
    right: auto;
    bottom: 1.4rem;
    transform: translateX(-50%);
  }

  .disclaimer-glass {
    padding: 2rem 1.6rem 2.1rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .media-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
