/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BASE */
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  color: #1b1b1f;
  background: #f6f7fb;
}

html {
  scroll-behavior: smooth;
}

/* LAYOUT */
.container {
  width: min(900px, 94vw);
  margin: 0 auto;
}

.split span {
  display: block;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 900px;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 110px 20px 90px;
  }
}

/* LOGO */
.logo {
  margin-bottom: 8px;
}

/* DRAGON */
#randomImage {
  display: block;
  margin: 10px auto;
  width: min(90%, 550px);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* HERO TEXT */
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.4;
}

.hero-sub span {
  display: block;
}

.hero-sub span:nth-child(1) {
  opacity: 0.6;
}

.hero-sub span:nth-child(2) {
  opacity: 0.75;
  color: rgba(255,255,255,0.75);
}

.hero-sub span:last-child {
  opacity: 1;
  font-weight: 650;
  font-size: 1.15em;
}

/* HERO LINK */
.hero-link {
  color: var(--dragon-color, #f97316);
  text-shadow: 0 0 4px var(--dragon-color, #f97316)22;
  text-decoration: none;
  cursor: pointer;
}

.hero-link:hover {
  color: var(--dragon-segment, #e07a1a);
  opacity: 0.85;
}

/* DARK BACKGROUND */
.dark-section {
  background: linear-gradient(180deg, #0f172a, #020617);
}

/* SECTIONS */
.section {
  width: 100%;
  padding: 64px 0;
  min-height: 40vh;
}

.section .container {
  padding: 0 20px;
}

.section-light {
  background: #ffffff;
  color: #111;
}

.section-accent {
  background: color-mix(in srgb, var(--dragon-light) 40%, white);
  color: #111;
}

.section:first-of-type {
  min-height: 50vh;
}

.section p {
  margin-top: 10px;
  max-width: 640px;
}

.section p + p {
  margin-top: 25px;
}

/* TEXT */
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* 🔥 better readability */
.section p {
  font-size: 1.1rem;
  max-width: 640px;
}

/* CARDS */
.cards {
  display: grid;
  gap: 1.25rem; /* slightly more breathing room */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 40px;
  margin-bottom: 4ma0px;
}

.card {
  background: color-mix(in srgb, var(--dragon-light) 80%, white);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}

.card::before {
  content: "";
  display: block;
  height: 3px;
  width: 40px;
  margin-bottom: 16px;
  background: var(--dragon-color);
  border-radius: 2px;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--dragon-color);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* 🔥 FIX: you were targeting h2, but cards use h3 */
.card h3 {
  margin-bottom: 0.75rem;
  color: var(--dragon-color);
}

/* PRICING */
.pricing {
  text-align: center;
}

.pricing-intro {
  margin: 15px auto 30px;
  max-width: 600px;
  opacity: 0.8;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 30px;
}

.price-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--dragon-color);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--dragon-color);
  margin: 10px 0;
}

.price-card ul {
  list-style: none;
  padding: 0;
}

.price-card li {
  margin: 6px 0;
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--dragon-color);
}

.included {
  margin: 30px 0;
  text-align: center;
}

.included ul {
  list-style: none;
  padding: 0;
}

.included li {
  margin: 6px 0;
}

.addons {
  margin-top: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.addons ul {
  list-style: none;
  padding: 0;
}

.addons li {
  margin: 6px 0;
}

/* 🔥 STEPS (now styled, not plain text) */
.steps {
  list-style: none;
  padding: 0;
}

.steps li {
  margin-bottom: 14px;
  font-size: 1.05rem;
  position: relative;
  padding-left: 20px;
}

.steps li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--dragon-color);
  font-weight: bold;
}

.contact-email {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-email a {
  color: var(--dragon-color);
  text-decoration: none;
}

.contact-email a:hover {
  opacity: 0.8;
}

/* FOOTER */
.footer {
  background: #0b0b0b;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

/* BRAND COLOR */
.peel {
  color: var(--dragon-color, #f97316);
  text-shadow: 0 0 6px var(--dragon-color, #f97316)33;
}c