:root {
  --bg: #f6f4f1;
  --surface: #ffffff;
  --surface-soft: #f2ede8;
  --text: #1c1c1c;
  --muted: #5f5b56;
  --line: #dfd8d1;
  --brand: #f22821;
  --brand-dark: #bf1914;
  --ink: #111111;
  --shadow: 0 24px 64px rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 14px 36px rgba(17, 17, 17, 0.05);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", "Aptos", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(242, 40, 33, 0.06), transparent 26%),
    radial-gradient(circle at left top, rgba(17, 17, 17, 0.03), transparent 22%),
    linear-gradient(180deg, #fcfbf9 0%, var(--bg) 100%);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(246, 244, 241, 0.88);
  border-bottom: 1px solid rgba(223, 216, 209, 0.72);
}

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

.brand-logo { width: 248px; height: auto; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-link { font-size: 0.96rem; color: var(--muted); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 28px rgba(242, 40, 33, 0.26); }
.button-primary:hover { background: var(--brand-dark); }
.button-secondary,
.button-ghost { background: #fff; color: var(--text); border: 1px solid var(--line); }

.hero { padding: 4.25rem 0 2.8rem; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand);
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.hero h1 { max-width: 12ch; font-size: clamp(3rem, 6vw, 5rem); }
.hero-subtitle,
.lead {
  max-width: 64ch;
  margin: 1.2rem 0 0;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.2rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.trust-strip li,
.check-list li,
.plan-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
}

.trust-strip li::before,
.check-list li::before,
.plan-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--brand);
}

.hero-panel,
.hero-card,
.info-card,
.price-card,
.reg-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-panel { padding: 1.1rem; }

.hero-frame {
  display: grid;
  gap: 1rem;
  padding: 0.2rem;
}

.info-card,
.price-card,
.reg-card { padding: 1.5rem; }

.metric-label,
.plan-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: rgba(242, 40, 33, 0.1);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-card strong,
.reg-name {
  color: var(--ink);
  display: block;
}
.hero-card p,
.info-card p,
.price-card p,
.reg-card p { color: var(--muted); }

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 420px;
  background: #ece4dc;
}

.hero-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-photo-copy {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.22), rgba(17, 17, 17, 0.74));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-photo-copy strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.15;
}

.hero-photo-copy p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.section { padding: 3.15rem 0; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.5)); }
.section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.check-list,
.plan-list { margin: 0; padding: 0; list-style: none; }

.pricing-grid,
.reg-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

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

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.powered-by {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.powered-by-inline {
  margin-top: 0;
  justify-items: end;
  text-align: right;
}

.powered-label {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--muted);
}

.powered-logo {
  display: block;
  object-fit: contain;
}

.powered-logo-ssc {
  width: min(100%, 152px);
  height: auto;
}

.powered-logo-panorays {
  width: min(100%, 124px);
  height: auto;
}

.price-card.featured {
  border-color: rgba(17, 17, 17, 0.22);
  background:
    radial-gradient(circle at top right, rgba(242, 40, 33, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(17,17,17,0.03), rgba(255,255,255,0.96)),
    #fff;
  transform: translateY(-0.15rem);
}

.plan-copy {
  min-height: 6.2rem;
  margin-top: 1.2rem;
}

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

.reg-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 245px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,244,240,0.96));
}

.reg-name {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.reg-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.06rem;
  line-height: 1.18;
}

.reg-reference {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.cta-panel {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: center;
}

.cta-actions { display: grid; gap: 0.85rem; }

@media (max-width: 1040px) {
  .hero-grid,
  .section-grid,
  .cta-panel { grid-template-columns: 1fr; }

  .pricing-grid,
  .reg-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .nav-actions { width: 100%; flex-wrap: wrap; }
  .brand-logo { width: 210px; }
  .hero { padding-top: 2.6rem; }

  .trust-strip,
  .hero-metrics { grid-template-columns: 1fr; }

  .button { width: 100%; }
  .hero-actions { flex-direction: column; }
  .plan-topline { align-items: flex-start; flex-direction: column; }
  .powered-by-inline { justify-items: start; text-align: left; }
}
