:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #6b7280;
  --accent: #b8744f;
  --accent-soft: #f97316;
  --border: #e5e7eb;
  --radius: 14px;
  --shadow-soft: 0 18px 35px rgba(15, 23, 42, 0.25);
  --shadow-card: 0 12px 24px rgba(15, 23, 42, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #f3f4f6;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: #f9fafb;
}

.section-highlight {
  background: #0f172a;
  color: #f9fafb;
}

.section-intro {
  max-width: 640px;
  margin: 8px 0 32px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #f9fafb;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.logo span {
  color: var(--accent-soft);
}

.hero {
  background: radial-gradient(circle at top left, #1f2937, #020617);
  color: #f9fafb;
  padding: 80px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: #facc15;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 12px;
}

.hero-sub {
  margin: 0 0 16px;
  color: #e5e7eb;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  color: #e5e7eb;
}

.hero-bullets li::before {
  content: "• ";
  color: var(--accent-soft);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.hero-note {
  font-size: 0.85rem;
  color: #9ca3af;
  max-width: 440px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: #020617;
  border-radius: 24px;
  padding: 14px 14px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-card img {
  border-radius: 18px;
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.hero-price-tag {
  display: inline-flex;
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-card-title {
  margin: 10px 4px 4px;
  font-weight: 600;
}

.hero-card-text {
  margin: 0 4px 0;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.btn-primary,
.btn-ghost,
.btn-link {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #f9fafb;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  background: #9a5f3f;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
}

.btn-ghost {
  background: transparent;
  color: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding-inline: 18px;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn-link {
  background: transparent;
  color: #e5e7eb;
  padding-inline: 0;
  padding-block: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.cards-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-card);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.card p:last-child {
  margin-bottom: 0;
}

.list {
  padding-left: 1.2rem;
  margin: 0 0 8px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.form-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: flex-start;
}

.form-copy h2 {
  margin-top: 0;
}

.form-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.form-bullets li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-bullets li::before {
  content: "✓ ";
  color: #22c55e;
}

.form {
  background: #020617;
  color: #e5e7eb;
}

.form .field {
  margin-bottom: 14px;
}

.form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #020617;
  color: #f9fafb;
  font: inherit;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #6b7280;
}

.form-note {
  font-size: 0.8rem;
  color: #9ca3af;
}

.form-success {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #4ade80;
}

.form-error {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #f97373;
}

.site-footer {
  padding: 32px 0 40px;
  background: #020617;
  color: #9ca3af;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.footer-cta {
  font-weight: 500;
}

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

  .hero-visual {
    justify-content: center;
  }

  .section,
  .hero {
    padding-inline: 0;
  }
}

@media (max-width: 600px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  .header-inner {
    padding-block: 8px;
  }
}

