* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

/* Header / Nav */
.header {
  display: flex;
  justify-content: space-between;
  padding: 16px 40px;
  align-items: center;
  background: #000;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #111;
}

.logo {
  height: 56px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
}

.nav-links a:hover {
  color: #ff7700;
}

.header-btn {
  padding: 8px 18px;
  border: 2px solid #ff7700;
  color: #ff7700;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  white-space: nowrap;
}

.header-btn:hover {
  background: #ff7700;
  color: #000;
  transform: translateY(-1px);
}

/* Sections */

section {
  padding: 80px 20px;
}

section h1,
section h2 {
  text-align: center;
}

section h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-subtext {
  text-align: center;
  color: #bbbbbb;
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 0.98rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Hero */

.hero {
  text-align: center;
  padding: 140px 20px 120px;
  background:
    radial-gradient(circle at top center, #ff770020, transparent 55%),
    #000;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo {
  display: block;
  margin: 0 auto 24px;
  max-width: 360px;
  width: min(70vw, 360px);
  height: auto;
}

.hero .subtext {
  font-size: 1.15rem;
  color: #dddddd;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */

.btn-primary {
  background: linear-gradient(135deg, #ff6a00, #ff3c00);
  padding: 14px 24px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1rem;
  border: none;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s, opacity 0.1s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px #ff6a0033;
  opacity: 0.95;
}

.btn-secondary {
  border: 2px solid #ff7700;
  padding: 12px 24px;
  color: #ff7700;
  text-decoration: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  transition: background 0.1s, color 0.1s, transform 0.1s;
}

.btn-secondary:hover {
  background: #ff7700;
  color: #000;
  transform: translateY(-1px);
}

/* Generic grids / cards */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.grid p {
  background: #111;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid #222;
  font-size: 0.96rem;
}

/* Specific sections */

.problems {
  background: #050505;
}

.system {
  background:
    radial-gradient(circle at center, #ff770015, transparent 60%),
    #000;
  text-align: center;
}

.system .grid p {
  text-align: left;
}

.stats {
  background: #050505;
  text-align: center;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.stat-card {
  padding: 24px;
  border-radius: 18px;
  background: #111;
  border: 1px solid #222;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ff6a00;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.95rem;
  color: #cccccc;
}

.guarantee {
  background:
    linear-gradient(135deg, #120600, #000);
  border-top: 1px solid #221007;
  border-bottom: 1px solid #221007;
  text-align: center;
}

.guarantee-box {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid #ff770033;
  padding: 32px 22px;
  background: #0a0502;
}

.guarantee-box p {
  margin-bottom: 24px;
  color: #f1f1f1;
  font-size: 0.98rem;
}

/* Pricing */

.pricing {
  background: #050505;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.price-card {
  border: 1px solid #222;
  padding: 32px 24px;
  border-radius: 20px;
  background: #111;
  max-width: 360px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.price-card:nth-child(2) {
  border-color: #ff6a00;
  box-shadow: 0 0 28px #ff6a0026;
}

.price-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.price {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffb27a;
  margin-bottom: 12px;
}

.price-note {
  font-size: 0.85rem;
  color: #aaaaaa;
  margin-bottom: 16px;
}

.price-card ul {
  list-style: none;
  padding-left: 0;
}

.price-card li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
  color: #dddddd;
}

.price-card li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: #ff7700;
}

/* About */

.about {
  background: #000;
  text-align: center;
}

.about p {
  max-width: 720px;
  margin: 0 auto 16px;
  color: #d0d0d0;
  font-size: 0.96rem;
}

.about-highlight {
  font-weight: 700;
  color: #ffb27a;
  margin-top: 16px;
  font-size: 1.05rem;
}

/* Final CTA */

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at center, #ff770020, transparent 60%),
    #050505;
}

.final-cta p {
  max-width: 600px;
  margin: 0 auto 24px;
  color: #d0d0d0;
  font-size: 0.97rem;
}

/* Contact / Forms */

.page-hero {
  padding: 110px 20px 40px;
  background:
    radial-gradient(circle at top center, #ff770020, transparent 55%),
    #000;
  text-align: center;
}

.page-hero p {
  max-width: 600px;
  margin: 10px auto 0;
  color: #cccccc;
}

.content-section {
  max-width: 900px;
  margin: 0 auto 60px;
}

.form-card {
  background: #111;
  border-radius: 18px;
  border: 1px solid #222;
  padding: 24px 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.form-row label {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: #cccccc;
}

.form-row input,
.form-row textarea {
  background: #050505;
  border-radius: 8px;
  border: 1px solid #333;
  padding: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #ff7700;
}

/* Calendly container */

.calendly-wrapper {
  margin-top: 24px;
  min-height: 680px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #222;
  background: #050505;
}

/* Legal pages */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #d0d0d0;
}

.legal-content h2 {
  text-align: left;
  margin: 32px 0 10px;
}

.legal-content p {
  margin-bottom: 10px;
}

/* Footer */

footer {
  padding: 24px 20px;
  text-align: center;
  border-top: 1px solid #222;
  font-size: 0.85rem;
  color: #888;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

footer a {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
}

footer a:hover {
  color: #ff7700;
}

/* Responsive */

@media (max-width: 768px) {
  .header {
    padding: 12px 16px;
  }

  .logo {
    height: 64px;
  }

  .nav-links {
    display: none; /* simple mobile; can add burger later */
  }

  .hero {
    padding: 110px 16px 80px;
  }

  section {
    padding: 60px 16px;
  }

  section h1 {
    font-size: 2.4rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .price-card {
    max-width: 100%;
  }
}

