/* --- Global Styles & Variables --- */
:root {
  --bg-dark: #121218;
  --panel-dark: #1e2130;
  --accent-gold: #e0c070;
  --text-primary: #e0e8ff;
  --text-secondary: #a0a8c0;
  --border-color: rgba(80, 85, 110, 0.5);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-secondary);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Exo 2", sans-serif;
  color: var(--text-primary);
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 40px;
  text-align: center;
}
h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}
h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

section {
  padding: 80px 20px;
  border-bottom: 1px solid var(--border-color);
}
section:last-of-type {
  border-bottom: none;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

strong {
  color: var(--accent-gold);
  font-weight: 500;
}

/* --- Jumbotron Section --- */
.jumbotron {
  display: flex;
  height: 100vh;
  min-height: 600px;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}
.logo-container {
  flex: 1 0 33%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--border-color);
  height: 100%;
}
.main-logo {
  max-width: 50%;
  height: auto;
}
.headline-container {
  flex: 2 0 67%;
  padding: 5%;
}
.headline-container h3 {
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 20px;
}

/* --- Problem Section --- */
.problem-section .story-content {
  background-color: var(--panel-dark);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.story-content p {
  margin-bottom: 1.5em;
}
.story-content .intro {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--text-primary);
}
.story-content .question {
  font-style: italic;
  color: var(--text-primary);
}
.story-content .truth {
  font-weight: 600;
  color: var(--text-primary);
}

/* --- Solution Section --- */
.solution-section .intro-text {
  max-width: 700px;
  margin: 0 auto 40px auto;
  text-align: center;
  font-size: 1.1rem;
}
.solution-list {
  list-style: none;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
.solution-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}
.solution-list li:first-child {
  border-top: 1px solid var(--border-color);
}

/* --- Features Section --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
  align-items: center;
}

.feature-item {
  background-color: var(--panel-dark);
  padding: 30px 35px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.feature-item h4 {
  margin-bottom: 15px;
  color: var(--accent-gold);
}

/* For feature items that are just an image */
.feature-item.feature-item-image {
  padding: 0;
  overflow: hidden;
  background-color: transparent;
}

.feature-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.feature-item-image:hover img {
  opacity: 1;
}

.feature-item.feature-item-large {
  grid-column: span 2;
  text-align: center;
}

/* --- Promise Section --- */
.promise-section {
  text-align: center;
}
.promise-section .intro-text {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
}
.no-fees {
  background-color: var(--panel-dark);
  border: 1px solid var(--border-color);
  padding: 15px;
  margin: 30px auto;
  display: inline-block;
  font-family: "Exo 2", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: 6px;
}
.one-time-fee {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-top: 20px;
}

/* --- CTA Section (Form) --- */
.cta-section form {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--panel-dark);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.cta-section h3 {
  text-align: center;
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-group input {
  width: 100%;
  padding: 12px;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 1rem;
}
.cta-button {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #f0d080;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 192, 112, 0.2);
}
.hidden {
  display: none;
}

/* --- Footer --- */
.site-footer {
  padding: 30px;
  text-align: center;
  font-size: 0.9rem;
}

/* --- Responsive Tweaks --- */
@media (max-width: 768px) {
  .jumbotron {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .logo-container {
    flex-basis: auto;
    width: 100%;
    height: 300px;
    padding: 40px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .headline-container {
    flex-basis: auto;
    padding: 40px 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

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

  .feature-item.feature-item-large {
    grid-column: span 1;
  }

  .feature-item:nth-child(3) {
    order: 1;
  }

  .feature-item:nth-child(4) {
    order: 2;
  }
}
