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

:root {
  --navy: #0A0F1E;
  --navy-mid: #111827;
  --navy-light: #1C2740;
  --cream: #F5F2EC;
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --gold: #E8C97A;
  --silver: #8B9BB4;
  --white: #FFFFFF;
  --text-dim: #6B7A99;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(10, 15, 30, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(1.15) drop-shadow(0 0 10px rgba(37, 99, 235, 0.45));
  transition: filter 0.3s;
}

.logo-img:hover {
  filter: brightness(1.3) drop-shadow(0 0 16px rgba(37, 99, 235, 0.7));
}

footer .logo .logo-img {
  height: 42px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 38px;
}

nav ul a {
  color: var(--silver);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

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

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  transition: background 0.25s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--blue-light) !important;
  transform: translateY(-1px);
  color: var(--white) !important;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(37, 99, 235, 0.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232, 201, 122, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 155, 180, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 155, 180, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.2s;
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 32px;
}

.hero-headline .line {
  display: block;
  overflow: hidden;
}

.hero-headline .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}

.hero-headline .line-inner.animate {
  animation: lineUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-headline .accent {
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  color: var(--silver);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.1s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.3s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
  color: var(--silver);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s;
}

.btn-secondary:hover {
  color: var(--cream);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.6s;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--text-dim);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scanLine 2s ease-in-out infinite 2s;
}

.hero-badge {
  position: absolute;
  right: 60px;
  bottom: 80px;
  background: var(--navy-light);
  border: 1px solid rgba(139, 155, 180, 0.15);
  border-radius: 16px;
  padding: 20px 26px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.5s;
}

.hero-badge .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-badge .lbl {
  font-size: 12px;
  color: var(--silver);
  margin-top: 4px;
}

/* ─── SECTIONS COMMON ─── */
section {
  position: relative;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.7;
  max-width: 500px;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.from-left {
  transform: translateX(-60px);
}

.reveal.from-right {
  transform: translateX(60px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── SERVICES ─── */
#services {
  padding: 120px 60px;
  background: var(--navy-mid);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.service-card {
  background: var(--navy-light);
  border: 1px solid rgba(139, 155, 180, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-4px);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─── PRICING ─── */
#pricing {
  padding: 120px 60px;
  background: var(--navy);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 72px;
}

.pricing-header .section-sub {
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-card {
  background: var(--navy-light);
  border: 1px solid rgba(139, 155, 180, 0.1);
  border-radius: 20px;
  padding: 44px 40px;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 20px 60px rgba(37, 99, 235, 0.2);
}

.pricing-card.featured:hover {
  box-shadow: 0 0 0 1px var(--blue-light), 0 30px 80px rgba(37, 99, 235, 0.3);
}

.plan-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.plan-badge.gold {
  background: linear-gradient(135deg, #C9972A, #E8C97A);
  color: var(--navy);
}

.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 32px;
  line-height: 1.6;
}

.plan-price {
  margin-bottom: 36px;
}

.plan-price .amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.plan-price .amount .dollar {
  font-size: 28px;
  vertical-align: super;
}

.plan-price .cadence {
  font-size: 14px;
  color: var(--silver);
  margin-top: 6px;
}

.plan-divider {
  height: 1px;
  background: rgba(139, 155, 180, 0.1);
  margin-bottom: 32px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--cream);
  line-height: 1.5;
}

.plan-features li .check {
  width: 18px;
  height: 18px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  color: var(--blue-light);
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 15px 28px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
}

.plan-cta.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.plan-cta.primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
}

.plan-cta.outline {
  border: 1.5px solid rgba(139, 155, 180, 0.3);
  color: var(--cream);
}

.plan-cta.outline:hover {
  border-color: var(--cream);
  background: rgba(245, 242, 236, 0.05);
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ─── PROCESS ─── */
#process {
  padding: 120px 60px;
  background: var(--navy-mid);
  overflow: hidden;
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
}

.process-step {
  text-align: center;
  padding: 0 20px;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  border: 1.5px solid rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-light);
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.process-step:hover .step-num {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.12);
}

.process-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─── CONTACT ─── */
#contact {
  padding: 120px 60px;
  background: var(--navy);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-text .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.contact-item-text a,
.contact-item-text span {
  font-size: 15px;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-text a:hover {
  color: var(--blue-light);
}

/* ─── FORM ─── */
.contact-form {
  background: var(--navy-light);
  border: 1px solid rgba(139, 155, 180, 0.1);
  border-radius: 20px;
  padding: 44px 40px;
}

.contact-form h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-form>p {
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(10, 15, 30, 0.6);
  border: 1.5px solid rgba(139, 155, 180, 0.15);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(139, 155, 180, 0.08);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .logo {
  font-size: 18px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

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

footer .copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* ─── KEYFRAMES ─── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scanLine {
  0% {
    left: -100%;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav {
    padding: 20px 24px;
  }

  nav ul {
    display: none;
  }

  #hero {
    padding: 120px 24px 80px;
  }

  .hero-badge {
    display: none;
  }

  .hero-scroll-hint {
    left: 24px;
  }

  #services,
  #pricing,
  #process,
  #contact {
    padding: 80px 24px;
  }

  .services-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 36px 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .hero-headline .line-inner,
  .hero-label,
  .hero-sub,
  .hero-actions,
  .hero-scroll-hint,
  .hero-badge {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}