:root {
  --bg: #fff7eb;
  --ink: #0f2033;
  --muted: #445363;
  --card: #fffdf8;
  --line: #e8dcc8;
  --brand: #e85d04;
  --brand-deep: #bb3e03;
  --accent: #1a9c8d;
  --shadow: 0 18px 50px rgba(15, 32, 51, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content-width: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.5;
  background:
    radial-gradient(circle at 8% 8%, rgba(232, 93, 4, 0.14) 0%, transparent 30%),
    radial-gradient(circle at 92% 22%, rgba(26, 156, 141, 0.16) 0%, transparent 30%),
    repeating-linear-gradient(
      -38deg,
      rgba(15, 32, 51, 0.04),
      rgba(15, 32, 51, 0.04) 2px,
      transparent 2px,
      transparent 18px
    ),
    var(--bg);
}

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

.shell {
  width: min(var(--content-width), calc(100% - 2.2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(255, 247, 235, 0.9);
  border-bottom: 1px solid rgba(232, 220, 200, 0.85);
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

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

.desktop-nav a {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #2a3a50;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: rgba(15, 32, 51, 0.07);
  border-color: rgba(15, 32, 51, 0.12);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.65rem 1rem;
  font-weight: 600;
  transition: 220ms ease;
  background: var(--ink);
  color: #fff;
  white-space: nowrap;
}

.cta:hover {
  transform: translateY(-2px);
  background: #1d3557;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0.5rem 0 0.9rem;
}

.mobile-nav a {
  display: block;
  padding: 0.65rem 0.1rem;
  font-weight: 600;
  color: #21344d;
}

.mobile-nav .cta {
  margin-top: 0.4rem;
  width: fit-content;
}

main {
  padding-bottom: 2.2rem;
}

.hero {
  padding: 3.2rem 0 1.8rem;
  display: grid;
  gap: 1.15rem;
}

.eyebrow {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(232, 93, 4, 0.35);
  background: rgba(232, 93, 4, 0.1);
  color: var(--brand-deep);
  padding: 0.4rem 0.85rem;
  font-weight: 600;
  font-size: 0.9rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

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

p {
  margin: 0;
}

.hero p {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.1vw, 1.18rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
}

.btn.brand {
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: #fff;
}

.btn.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.section {
  padding: 1.4rem 0;
}

.section-title {
  margin-bottom: 0.9rem;
  font-size: clamp(1.45rem, 3.4vw, 2.2rem);
}

.section-intro {
  color: var(--muted);
  max-width: 66ch;
  margin: 0 0 1rem;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 1rem;
}

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

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

.cards-equal .card {
  min-height: 165px;
}

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

.screen-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 340px;
  margin: 0 auto;
}

.screen-frame {
  height: 530px;
  padding: 0.55rem;
  background: #edf1f5;
  border-bottom: 1px solid var(--line);
}

.screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  background: #f4f6f8;
  border-radius: 18px;
}

.screen-card figcaption {
  padding: 0.75rem 0.8rem 0.9rem;
  font-weight: 600;
  color: #1f3147;
  min-height: 64px;
}

.price-card {
  border-top: 5px solid var(--brand);
}

.tier-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.tier-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0.65rem 0.7rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
}

.tier-list strong {
  font-family: "Sora", sans-serif;
  white-space: nowrap;
}

.includes-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px dashed #d8c7ad;
}

.includes-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.26rem;
}

.terms-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
}

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

.step {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.step span {
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.07em;
}

.step h3 {
  margin-top: 0.4rem;
  font-size: 1.05rem;
}

.step p {
  margin-top: 0.32rem;
  color: var(--muted);
}

.contact-block {
  border: 1px solid rgba(15, 32, 51, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(26, 156, 141, 0.1), rgba(255, 255, 255, 0.95)),
    #fff;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1rem;
}

.contact-block p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 0.65rem;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e2c3f;
  display: grid;
  gap: 0.32rem;
}

input,
textarea {
  font: inherit;
  border-radius: 10px;
  border: 1px solid #c9d2da;
  padding: 0.62rem 0.72rem;
  background: #fff;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

footer {
  border-top: 1px solid rgba(232, 220, 200, 0.9);
  padding: 1rem 0 1.8rem;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .topbar-inner {
    min-height: 72px;
  }

  .brand-logo {
    height: 36px;
    max-width: 170px;
  }

  .mobile-nav.open {
    display: block;
  }

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

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

  .terms-list {
    grid-template-columns: 1fr;
  }

  .contact-block {
    grid-template-columns: 1fr;
  }

  .cta.desktop-only {
    display: none;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(var(--content-width), calc(100% - 1.2rem));
  }

  .hero {
    padding-top: 2.2rem;
  }

  h1 {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
    max-width: 13ch;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 1.1rem 0;
  }

  .grid-3,
  .grid-2,
  .screens-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .screen-frame {
    height: 470px;
  }

  .tier-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}
