@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;900&display=swap');

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

:root {
  --navy: #0E1F2E;
  --navy-light: #162B3E;
  --navy-mid: #1A3347;
  --orange: #F26B2A;
  --orange-dark: #D95E22;
  --white: #FFFFFF;
  --muted: #9DB0C0;
  --muted-dark: #6B8A9E;
  --border: rgba(157, 176, 192, 0.15);
  --max-width: 1100px;
}


body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img { max-width: 100%; display: block; }

/* ─── NAV ─── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 31, 46, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
}

.nav-logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

/* ─── BUTTONS ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ─── SECTIONS ─── */

section {
  padding: 96px 24px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

p + p {
  margin-top: 16px;
}

/* ─── HERO ─── */

#hero {
  padding: 120px 24px 96px;
  text-align: center;
}

#hero .section-label {
  margin-bottom: 24px;
}

#hero h1 {
  max-width: 780px;
  margin: 0 auto 24px;
}

#hero .sub {
  font-size: 20px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── PROBLEM ─── */

#problem {
  background: var(--navy-light);
}

#problem .container {
  max-width: 780px;
}

#problem h2 {
  margin-bottom: 32px;
}

#problem p {
  font-size: 18px;
}

.stat-callout {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--navy-mid);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

/* ─── MECHANISM ─── */

#mechanism .container > .sub {
  font-size: 18px;
  color: var(--muted);
  margin-top: 16px;
  margin-bottom: 56px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
}

.step-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.step h3 {
  margin-bottom: 12px;
}

/* ─── OFFER ─── */

#offer {
  background: var(--navy-light);
}

#offer .container {
  max-width: 780px;
}

#offer h2 {
  margin-bottom: 28px;
}

#offer p {
  font-size: 18px;
}

.offer-callout {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(242,107,42,0.15) 0%, rgba(242,107,42,0.05) 100%);
  border: 1px solid rgba(242,107,42,0.35);
  border-radius: 12px;
  padding: 28px 32px;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

/* ─── OBJECTIONS ─── */

#objections .container > h2 {
  margin-bottom: 56px;
}

.objections-list {
  display: grid;
  gap: 28px;
  max-width: 780px;
}

.objection {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  background: var(--navy-light);
}

.objection-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.objection-a {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ─── DEMO ─── */

#demo {
  background: var(--navy-light);
  text-align: center;
}

#demo h2 {
  margin-bottom: 20px;
}

#demo .sub {
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
}

.demo-placeholder {
  max-width: 780px;
  margin: 0 auto 40px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.demo-placeholder:hover {
  border-color: rgba(242,107,42,0.4);
}

.play-icon {
  width: 72px;
  height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-left: 4px;
}

/* ─── ABOUT ─── */

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

#about {
  background: var(--navy-light);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 72px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  filter: grayscale(100%);
  display: block;
}

.about-text h2 {
  margin: 16px 0 28px;
  line-height: 1.1;
}

.about-text p {
  font-size: 17px;
}

.about-text p + p {
  margin-top: 16px;
}

.about-sig {
  margin-top: 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    max-width: 320px;
  }
}

/* ─── FOR WHO ─── */

#for-who .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

#for-who h2 {
  margin-bottom: 36px;
  grid-column: 1 / -1;
}

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

.check-list li, .x-list li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(242,107,42,0.15);
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23F26B2A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

.x-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(157,176,192,0.08);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%236B8A9E' stroke-width='1.8' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

.list-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 20px;
}

/* ─── HOW TO START ─── */

#how-to-start {
  background: var(--navy-light);
}

#how-to-start h2 {
  margin-bottom: 56px;
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.start-step {
  padding: 32px;
  background: var(--navy-mid);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.start-step-num {
  font-size: 42px;
  font-weight: 900;
  color: rgba(242,107,42,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.start-step p {
  font-size: 16px;
  margin-top: 0;
}

#how-to-start .cta-center {
  text-align: center;
}

/* ─── FINAL CTA ─── */

#final-cta {
  text-align: center;
  padding: 120px 24px;
}

#final-cta h2 {
  max-width: 640px;
  margin: 0 auto 20px;
}

#final-cta .body {
  color: var(--muted);
  font-size: 20px;
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

#final-cta .body p { font-size: 20px; }

.final-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sub-cta {
  font-size: 14px;
  color: var(--muted-dark);
}

/* ─── FOOTER ─── */

footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}

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

.footer-logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.footer-logo span { color: var(--orange); }

.footer-tagline {
  font-size: 13px;
  color: var(--muted-dark);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-legal {
  width: 100%;
  font-size: 13px;
  color: var(--muted-dark);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ─── INNER PAGES ─── */

.page-header {
  padding: 80px 24px 64px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 17px;
  color: var(--muted);
}

.page-content {
  padding: 64px 24px 96px;
}

.page-content .container {
  max-width: 760px;
}

.page-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--white);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  font-size: 16px;
  margin-top: 12px;
}

.page-content ul {
  margin-top: 12px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-content ul li {
  font-size: 16px;
  color: var(--muted);
}

/* ─── CONTACT FORM ─── */

.contact-container {
  max-width: 1000px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 6px;
}

.contact-item span {
  font-size: 16px;
  color: var(--white);
}

.contact-form-wrap {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

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

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

.form-group select option {
  background: var(--navy-mid);
}

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

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

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .start-steps { grid-template-columns: 1fr; }
  #for-who .container { grid-template-columns: 1fr; gap: 40px; }
  #for-who h2 { grid-column: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { max-width: 280px; }
}

@media (max-width: 640px) {
  section { padding: 72px 20px; }
  #hero { padding: 80px 20px 72px; }

  .nav-links { display: none; }
  .nav-inner { padding: 0 20px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }

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

  .page-header { padding: 60px 20px 48px; }
  .page-content { padding: 48px 20px 72px; }
}
