@import url("/fonts/poppins.css");

:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-muted: #eef2f7;
  --text: #0f172a;
  --text-soft: #475569;
  --line: #dbe3ef;
  --accent: #c2410c;
  --accent-dark: #9a3412;
  --accent-soft: #ffedd5;
  --dark: #0b1120;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.phone-link {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-copy {
  padding: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero p.lead {
  margin: 0 0 1.5rem;
  max-width: 42rem;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.fact {
  background: var(--surface-muted);
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
}

.fact-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.fact-value {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 0.25rem;
}

.cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-media {
  min-height: 100%;
  position: relative;
  background: var(--dark);
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.08), rgba(11, 17, 32, 0.3));
}

.content {
  padding: 0 0 4rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
}

.panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1.75rem;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.panel h2,
.panel h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.panel p,
.panel li {
  color: var(--text-soft);
}

.feature-list,
.price-list,
.spec-list,
.mini-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li,
.price-list li,
.spec-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid #e2e8f0;
}

.feature-list li:first-child,
.price-list li:first-child,
.spec-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.list-label {
  color: #64748b;
  font-weight: 700;
}

.list-value {
  color: var(--text);
  font-weight: 800;
  text-align: right;
}

.feature-list li {
  justify-content: flex-start;
}

.feature-list li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 0.45rem;
  flex: 0 0 auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #fff;
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.note {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 1.1rem;
  background: #fff7ed;
  color: var(--accent-dark);
  font-weight: 700;
}

.mini-links {
  display: grid;
  gap: 0.75rem;
}

.mini-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  padding: 1rem 1.1rem;
  background: var(--surface-muted);
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  color: var(--text);
  font-weight: 700;
}

.footer {
  padding: 0 0 3rem;
  color: #64748b;
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 2rem;
  }

  .hero-media {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    min-height: auto;
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .facts,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .panel {
    padding: 1.3rem;
  }
}
