/* Oaks Profit Landing - Styles */

:root {
  --bg: #020617;
  --bg-alt: #020617;
  --card: #020617;
  --border-subtle: rgba(148, 163, 184, 0.4);
  --muted: #9ca3af;
  --text: #e5e7eb;
  --text-soft: #9ca3af;
  --primary: #22c55e;
  --primary-soft: rgba(34, 197, 94, 0.15);
  --accent: #22c55e;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.95);
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.2), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.15), transparent 55%),
    #020617;
  color: var(--text);
}

body {
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout base */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85), transparent);
  border-bottom: 1px solid rgba(15, 23, 42, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #bbf7d0, #22c55e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #022c22;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4), 0 12px 25px rgba(5, 46, 22, 0.9);
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-link:hover {
  color: #e5e7eb;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 3px 0;
  border-radius: 999px;
}

/* Buttons */
.btn {
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(to bottom right, #22c55e, #4ade80);
  color: #022c22;
  box-shadow: 0 16px 35px rgba(22, 163, 74, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(22, 163, 74, 0.85);
}

.btn-outline {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.btn-outline:hover {
  border-color: rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 1);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.35);
  color: var(--text-soft);
}

.btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.btn.full {
  width: 100%;
}

/* Hero */
.hero {
  padding: 3.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2rem;
  align-items: center;
}

.hero-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a5b4fc;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.highlight {
  color: #bbf7d0;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-soft);
  max-width: 32rem;
  margin-bottom: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-note {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Hero card */
.hero-card {
  position: relative;
}

.hero-card-inner {
  border-radius: 1.4rem;
  padding: 1.25rem 1.2rem 1.15rem;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 55%), #020617;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-soft);
}

.hero-card-inner h2 {
  font-size: 1rem;
  margin: 0 0 0.8rem;
}

.hero-metrics {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
}

.hero-metrics li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(31, 41, 55, 0.9);
}

.hero-metrics li:last-child {
  border-bottom: none;
}

.metric-label {
  color: #9ca3af;
}

.metric-value {
  font-weight: 500;
}

.hero-card-foot {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section.alt {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), transparent 60%);
}

.section-header {
  text-align: left;
  margin-bottom: 1.6rem;
}

.section-header h2 {
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}

.section-header p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Cards */
.card {
  border-radius: 1.2rem;
  padding: 1.15rem 1.15rem 1.1rem;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(31, 41, 55, 0.95);
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.card.primary {
  border-color: rgba(34, 197, 94, 0.6);
  background: radial-gradient(circle at top left, rgba(22, 163, 74, 0.32), rgba(15, 23, 42, 0.95));
}

.card.contrast {
  background: rgba(15, 23, 42, 0.95);
}

/* Lists */
.list {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.list li {
  padding: 0.28rem 0;
  position: relative;
  padding-left: 1.2rem;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.08rem;
  color: #4ade80;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.step {
  border-radius: 1rem;
  padding: 1rem 0.95rem 0.95rem;
  border: 1px solid rgba(31, 41, 55, 0.95);
  background: rgba(15, 23, 42, 0.95);
}

.step-number {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.14);
  color: #bbf7d0;
  margin-bottom: 0.45rem;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.plan-card {
  border-radius: 1.3rem;
  padding: 1.2rem 1.1rem 1.1rem;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(31, 41, 55, 0.95);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.plan-card.featured {
  border-color: rgba(34, 197, 94, 0.8);
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.22), rgba(15, 23, 42, 0.96));
  box-shadow: var(--shadow-soft);
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.6);
  margin-bottom: 0.1rem;
}

.plan-tag {
  font-size: 0.8rem;
  margin: 0;
  color: var(--text-soft);
}

.plan-price {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0.2rem 0 0.4rem;
}

.plan-price span {
  vertical-align: baseline;
}

.plan-price span:first-child {
  font-size: 0.85rem;
  color: #9ca3af;
}

.plan-period {
  font-size: 0.8rem;
  color: #9ca3af;
}

.section-footnote {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: #6b7280;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.testimonial {
  border-radius: 1.2rem;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(31, 41, 55, 0.95);
  background: rgba(15, 23, 42, 0.96);
}

.testimonial-text {
  font-size: 0.9rem;
  margin: 0 0 0.45rem;
}

.testimonial-author {
  font-size: 0.78rem;
  color: #9ca3af;
  margin: 0;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border-radius: 0.9rem;
  border: 1px solid rgba(31, 41, 55, 0.95);
  background: rgba(15, 23, 42, 0.95);
  padding: 0.4rem 0.85rem;
}

.faq-item summary {
  list-style: none;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.35rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* CTA final */
.cta-final {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  padding: 1.4rem 0 1.6rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: #6b7280;
}

.footer-risk {
  font-size: 0.76rem;
  color: #6b7280;
  max-width: 420px;
}

/* Modal (popup lead) */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
}

.modal__content {
  position: relative;
  max-width: 420px;
  width: 100%;
  margin: 1.5rem;
  padding: 1.75rem 1.5rem 1.4rem;
  border-radius: 1.25rem;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-soft);
  color: #e5e7eb;
}

.modal__content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.modal__content p {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 1.3rem;
  cursor: pointer;
}

.modal__close:hover {
  color: #f9fafb;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field label {
  font-size: 0.8rem;
  color: #9ca3af;
}

.field input {
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #020617;
  color: #e5e7eb;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
}

.field input::placeholder {
  color: #6b7280;
}

.field input:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

.checkbox input {
  margin-top: 0.15rem;
}

.form__hint {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  margin-top: 0.25rem;
}

.btn.btn--block {
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero {
    padding-top: 2.6rem;
  }
}

@media (max-width: 780px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-inner {
    gap: 0.75rem;
  }
  .header-inner .btn-outline {
    display: none;
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .plans {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonials {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .modal__content {
    margin: 1rem;
    padding: 1.4rem 1.15rem 1.2rem;
  }
}
