:root {
  --bg: #050816;
  --bg-soft: #0b1020;
  --bg-alt: #080c18;
  --accent: #ff6b3d;
  --accent-soft: rgba(255, 107, 61, 0.14);
  --accent-strong: #ff835c;
  --text: #f9fafb;
  --muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --nav-height: 72px;
  --transition-fast: 160ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1f2937 0, #020617 42%, #020617 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  padding: 4.5rem 0;
  background: radial-gradient(circle at top, #1e293b33 0, #020617 50%);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.7rem;
}

.section-header h2 {
  font-size: clamp(2.1rem, 2.4vw, 2.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.96),
    rgba(2, 6, 23, 0.9),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.26);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: conic-gradient(
    from 210deg,
    #f97316,
    #fb7185,
    #22c55e,
    #f97316
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-weight: 700;
  font-size: 0.95rem;
}

.logo-text {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-block: 0.2rem;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #f97316, #facc15);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, #111827, #020617);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  width: 18px;
  background: #e5e7eb;
  border-radius: 999px;
  margin-inline: auto;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.btn {
  border-radius: var(--radius-pill);
  border: none;
  padding: 0.62rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 140ms ease, box-shadow 140ms ease,
    background 180ms ease, color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #020617;
  box-shadow: 0 14px 35px rgba(248, 113, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(248, 113, 22, 0.4);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(248, 113, 22, 0.85);
  background: radial-gradient(circle at top left, #111827, #020617);
}

.btn-outline {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
}

.btn-outline:hover {
  border-color: rgba(248, 113, 22, 0.9);
  background: radial-gradient(circle at top, #1e293b, #020617);
}

/* Hero */
.hero {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #f97316;
  font-size: 0.74rem;
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 3.3vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.9rem;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 32rem;
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.9rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-stats .stat-number {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #e5e7eb;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1.1rem;
}

.hero-card {
  border-radius: 20px;
  background: radial-gradient(circle at top left, #1f2937, #020617);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card-main {
  overflow: hidden;
}

.hero-card-main img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.hero-card-body {
  padding: 1.1rem 1.2rem 1.2rem;
}

.hero-card-body h3 {
  font-size: 1.1rem;
  margin: 0 0 0.2rem;
}

.hero-card-body p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.hero-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: #e5e7eb;
}

.hero-card-meta span:last-child {
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.78rem;
}

.hero-card-secondary {
  padding: 1.1rem 1.2rem 1.3rem;
}

.hero-card-secondary h4 {
  font-size: 0.96rem;
  margin: 0 0 0.55rem;
}

.hero-card-secondary ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-card-secondary li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-right: 0.45rem;
  background: linear-gradient(to right, #f97316, #facc15);
}

.hero-card-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #f97316;
  text-decoration: none;
}

.hero-card-link:hover {
  color: #facc15;
}

/* Chips */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  background: rgba(15, 23, 42, 0.8);
  color: var(--muted);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast), transform 120ms ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(248, 113, 22, 0.9);
}

.chip-active {
  background: radial-gradient(circle at top, #f97316, #f97316);
  color: #020617;
  border-color: transparent;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.card {
  background: radial-gradient(circle at top left, #111827, #020617);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card-img {
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 220ms ease-out;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-pill {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(248, 250, 252, 0.18);
  color: #e5e7eb;
}

.card-pill-soft {
  background: rgba(248, 113, 22, 0.9);
  border-color: transparent;
  color: #020617;
}

.card-body {
  padding: 1rem 1.05rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.card-body h3 {
  font-size: 0.98rem;
  margin: 0;
}

.card-body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.price {
  font-weight: 600;
  color: #f9fafb;
}

.tag {
  padding: 0.08rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--muted);
}

.card .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, #111827, #020617);
  padding: 1.2rem 1.3rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
  background: conic-gradient(from 210deg, #f97316, #facc15, #f97316);
  color: #020617;
  font-weight: 600;
}

.step-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.step-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

/* Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.highlight-copy h2 {
  font-size: 1.9rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.highlight-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.highlight-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #e5e7eb;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at top, #22c55e, #4ade80);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.highlight-panel {
  border-radius: 22px;
  padding: 1.5rem 1.5rem 1.4rem;
  background: radial-gradient(circle at top, #0f172a, #020617);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
}

.highlight-panel h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.delivery-window {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.delivery-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, #020617, #020617);
  padding: 1.2rem 1.3rem 1.3rem;
  color: var(--muted);
  font-size: 0.9rem;
  opacity: 0.5;
  transform: scale(0.97);
  transition: opacity 200ms ease, transform 200ms ease,
    border-color 200ms ease;
}

.testimonial-card blockquote {
  margin: 0 0 0.6rem;
}

.testimonial-card figcaption {
  font-size: 0.82rem;
  color: #e5e7eb;
}

.testimonial-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(248, 113, 22, 0.85);
}

/* Footer */
.footer {
  padding: 2.8rem 0 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(to top, #020617, #020617ee, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  font-size: 0.88rem;
}

.footer-logo .logo-mark {
  transform: scale(0.95);
}

.footer-text {
  color: var(--muted);
  margin-top: 0.6rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  display: grid;
  gap: 0.3rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.newsletter-form input {
  flex: 1 1 170px;
  min-width: 0;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.85);
  padding: 0.6rem 0.8rem;
  color: var(--text);
  font-size: 0.88rem;
}

.newsletter-form input::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.newsletter-form input:focus-visible {
  outline: 2px solid rgba(248, 113, 22, 0.9);
  outline-offset: 1px;
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%) translateY(120%);
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.96);
  color: var(--text);
  font-size: 0.86rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 40;
}

.toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Utilities */
[hidden] {
  display: none !important;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.3rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlights-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset-inline: 0;
    top: var(--nav-height);
    transform: translateY(-110%);
    background: radial-gradient(circle at top, #020617f0, #020617f5);
    border-bottom: 1px solid rgba(148, 163, 184, 0.26);
    padding: 0.8rem 1.3rem 1.1rem;
    flex-direction: column;
    gap: 0.9rem;
    align-items: flex-start;
    transition: transform 180ms ease-out;
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.6rem, 520px);
  }

  .navbar {
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-stats {
    gap: 1.2rem;
  }

  .section {
    padding-block: 3.3rem;
  }

  .section-alt {
    padding-block: 3.3rem;
  }
}

