/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0c0c0c;
  --bg-dark: #080808;
  --bg-card: #141414;
  --bg-card-border: #222;
  --accent: #e8ff47;
  --accent-hover: #d4eb35;
  --text: #f0f0f0;
  --text-muted: #888;
  --text-dim: #555;
  --max-w: 1100px;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== UTILITY ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #0c0c0c;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--bg-card-border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
  background: var(--accent);
  color: #0c0c0c;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.btn-sm:hover {
  background: var(--accent-hover);
}

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1a1a1a;
  padding: 16px 0;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

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

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.badge {
  display: inline-block;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px 0;
}

.section-dark {
  background: var(--bg-dark);
  border-top: 1px solid #151515;
  border-bottom: 1px solid #151515;
}

.section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 32px;
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--accent);
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== INCLUDES LIST ===== */
.includes-list {
  list-style: none;
  max-width: 600px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.includes-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  color: var(--text);
}

.check {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
  align-items: start;
}

.plan {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.plan-featured {
  border-color: var(--accent);
  background: #111;
}

.plan-badge {
  display: inline-block;
  background: var(--accent);
  color: #0c0c0c;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--accent);
  margin-bottom: 24px;
}

.plan-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.plan-features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.plan .btn {
  width: 100%;
  text-align: center;
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.step {
  text-align: center;
  padding: 8px;
}

.step-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== BOOKING ===== */
.booking-embed {
  margin-top: 48px;
}

.booking-placeholder {
  background: var(--bg-card);
  border: 1px dashed var(--bg-card-border);
  border-radius: var(--radius);
  padding: 80px 40px;
  text-align: center;
  color: var(--text-muted);
}

.booking-placeholder p {
  font-size: 18px;
  margin-bottom: 8px;
}

.booking-note {
  font-size: 13px !important;
  color: var(--text-dim) !important;
  margin-bottom: 28px !important;
}

/* ===== BOOKING FORM ===== */
.booking-form {
  max-width: 640px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group select option {
  background: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: -8px;
}

.hidden {
  display: none;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid #1a1a1a;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== FOOTER CTA ===== */
.footer-cta {
  text-align: center;
}

.footer-cta p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  border-top: 1px solid #151515;
  padding: 40px 0;
  text-align: center;
}

footer .logo {
  display: block;
  margin-bottom: 8px;
}

footer p {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 4px;
}

.footer-small {
  font-size: 12px !important;
  margin-top: 16px !important;
}

.footer-email {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
}

.footer-email:hover {
  text-decoration: underline;
}

/* ===== WHO THIS IS FOR ===== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.who-col {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.who-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
}

.who-label-yes {
  background: rgba(232, 255, 71, 0.1);
  color: var(--accent);
}

.who-label-no {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.who-list li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.who-yes .who-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.who-no .who-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--text-dim);
}

@media (max-width: 640px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FORM RISK REVERSAL ===== */
.form-risk {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  padding: 14px 20px;
  background: rgba(232, 255, 71, 0.04);
  border: 1px solid rgba(232, 255, 71, 0.12);
  border-radius: 8px;
}

/* ===== BLOG ===== */
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link-active {
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 0;
}

.blog-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 32px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: left center;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}

.blog-card-body {
  padding: 20px 24px 24px;
}

.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.blog-meta {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* Blog post */
.blog-post {
  padding: 60px 0 80px;
}

.blog-post-container {
  max-width: 720px;
}

.blog-back {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.blog-back:hover {
  color: var(--text);
}

.blog-header-img {
  width: 100%;
  border-radius: var(--radius);
  margin-top: 28px;
  display: block;
}

.blog-post-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 16px 0 24px;
}

.blog-post-intro {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.7;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 48px;
}

.blog-post-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.blog-post-body p {
  margin-bottom: 24px;
}

.blog-post-body h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 48px 0 16px;
  color: var(--text);
  text-align: left;
}

.blog-post-body ul {
  margin: 0 0 24px 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-post-body ul li {
  color: var(--text-muted);
  line-height: 1.65;
}

.blog-post-body strong {
  color: var(--text);
  font-weight: 600;
}

.blog-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-cta {
  margin-top: 64px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.blog-cta h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-cta p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero {
    padding: 70px 0 60px;
  }

  .section {
    padding: 64px 0;
  }

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

  .cards {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}
