/* =========================================================
   ENOMA — BASE DESIGN SYSTEM (v1)
   Used across ALL pages
   ========================================================= */

/* -------------------------
   CSS VARIABLES (BRAND)
------------------------- */
:root {
  --blue: #211551;
  --lavender: #9A8CFF;
  --green: #50A684;

  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #1c1c1c;
  --muted: #6b7280;
  --border: #e5e7eb;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;

  --shadow-sm: 0 6px 18px rgba(0,0,0,0.06);
  --shadow-md: 0 14px 35px rgba(0,0,0,0.08);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.15);
}

/* -------------------------
   RESET / GLOBALS
------------------------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.hidden {
  display: none;
}

/* -------------------------
   LAYOUT
------------------------- */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 3rem 1.25rem;
}

.container--narrow {
  max-width: 720px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
}

/* -------------------------
   TYPOGRAPHY
------------------------- */
h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--blue);
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--blue);
  margin: 0 0 0.5rem;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

p {
  color: var(--muted);
  margin: 0.25rem 0;
}

.small {
  font-size: 0.85rem;
  color: var(--muted);
}

/* -------------------------
   CARDS / SECTIONS
------------------------- */
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.section {
  margin-top: 3rem;
}

.section-divider {
  height: 1px;
  margin: 3rem 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.08),
    transparent
  );
}

/* -------------------------
   BUTTONS / CTAs
------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

 .btn-primary {
      background: #9a8cff;
      color: #0b0a14;
      padding: 0.85rem 1.6rem;
      border-radius: 999px;
      font-weight: 700;
      text-decoration: none;
  position: relative;
  box-shadow:
    0 0 0 0 rgba(154, 140, 255, 0.6);
  border: none;
  outline: none;
    }




/* -------------------------
   FORMS
------------------------- */
form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 10;
}

input,
select,
textarea {
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--lavender);
}

/* -------------------------
   HEADER / NAV
------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1;
  background: white;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
}

/* -------------------------
   HERO (OPTIONAL)
------------------------- */
.hero {
  background:
    radial-gradient(
      80% 60% at 50% 0%,
      #2a2270 0%,
      #120f33 45%,
      #0b0a14 100%
    );
  color: white;
  padding: 4rem 1.5rem;
}

.hero h1 {
  color: white;
}

.hero p {
  color: rgba(255,255,255,0.9);
  max-width: 520px;
}

.hero-actions {
  align-items: center;
}
.hero-actions a:not(.btn-primary) {
  opacity: 0.85;
  transition: opacity .2s;
}
.hero-actions a:not(.btn-primary):hover {
  opacity: 1;
}

.hero-meta {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #aab0ff;
}



/* -------------------------
   FOOTER
------------------------- */
.footer {
  margin-top: 4rem;
  padding: 3rem 1.5rem;
  background: var(--blue);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 768px) {
  .container {
    padding: 2.5rem 1.25rem;
  }

  h1 {
    font-size: 2.1rem;
  }
}

.nav {
  position: relative;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  background: white;

}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  color: #211551;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a,
.nav-links button {
  margin-left: 16px;
  color: #211551;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

/* NAV CTA BUTTON */
.nav-cta {
  background-color: #9a8cff !important;
  color: #0b0a14 !important;

  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: none;
}


.nav-cta:hover {
  background-color: #b2a8ff !important;
  color: #0b0a14 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(154, 140, 255, 0.45);
}

.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(154, 140, 255, 0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 22px;   /* adjust if needed */
  width: auto;
  display: block;
}

.site-footer {
  background: #211551; /* your dark blue */
  color: #ffffff;
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    gap: 16px;
  }
}

/* HOW IT WORKS — TIMELINE */
.how-timeline {
  max-width: 900px;
}

.how-subhead {
  max-width: 640px;
  margin: 0.75rem auto 3rem;
  color: #6b7280;
  line-height: 1.7;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  position: relative;
}

/* Vertical connector line */
.timeline-step::before {
  content: "";
  position: absolute;
  left: 31px;
  top: -2rem;
  height: calc(100% + 2rem);
  width: 2px;
  background: rgba(154, 140, 255, 0.35);
  z-index: 0;
}

.timeline-step:first-child::before {
  top: 50%;
  height: 50%;
}

.timeline-step:last-child::before {
  height: 50%;
}

/* Circle node */
.timeline-node {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid #9a8cff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #211551;
  z-index: 1;
}

/* Horizontal bar */
.timeline-bar {
  background: #1a1450;
  color: #ffffff;
  padding: 1.25rem 1.75rem;
  border-radius: 14px;
}

.timeline-bar h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.timeline-bar p {
  margin: 0;
  color: #d7d9ff;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 640px) {
  .timeline-step {
    grid-template-columns: 1fr;
  }

  .timeline-step::before {
    display: none;
  }

  .timeline-node {
    margin-bottom: 0.75rem;
  }
}

/* PROGRESS MODULE */
.how-progress {
  max-width: 900px;
}

.progress-steps {
  position: relative;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* vertical rail */
.progress-steps::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 36px;
  bottom: 36px;
  width: 4px;
  background: rgba(154, 140, 255, 0.25);
}

/* step */
.progress-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1.25rem;
  align-items: center;
  position: relative;
  padding: 2.5rem 0;
min-height: 180px;

}

/* filled rail for active steps */
.progress-step.active::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -0;
  height: 100%;
  width: 2px;
  background: #9a8cff;
}

/* dot */
.progress-dot {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #0b0a14;
  border: 3px solid #9a8cff;
  color: #9a8cff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.progress-step.active .progress-dot {
  background: #9a8cff;
  color: #0b0a14;
}

/* card */
.progress-card {
  background: linear-gradient(180deg, #1a1450, #0b0a14);
  color: white;
  padding: 1.25rem 1.75rem;
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
min-height: 200px;
}

.progress-step.active .progress-card {
  box-shadow: 0 10px 30px rgba(154, 140, 255, 0.25);
}

.progress-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;           /* ↑ from ~1.05rem */
  font-weight: 800;
  letter-spacing: -0.02em;
}

.progress-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(207, 209, 255, 0.8);
}

/* hover = Framer feel */
.progress-card:hover {
  transform: translateX(4px);
}

/* mobile */
@media (max-width: 640px) {
  .progress-step {
    grid-template-columns: 1fr;
  }

  .progress-steps::before,
  .progress-step.active::before {
    display: none;
  }

  .progress-dot {
    margin-bottom: 1rem;
  }
}

/* Base card */
.progress-card {
  background: linear-gradient(180deg, #1a1450, #0b0a14);
  color: white;
  padding: 1.75rem 2.25rem;
  border-radius: 16px;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    background 0.5s ease;
}

/* ACTIVE STEP = HERO MOMENT */
.progress-step.active .progress-card {
  transform: translateX(12px) scale(1.02);
  background: linear-gradient(180deg, #2a1f7a, #0b0a14);
  box-shadow:
    0 20px 60px rgba(154, 140, 255, 0.35);
}

.progress-step.active .progress-card h3 {
  font-size: 1.85rem;          /* even bigger when active */
}

.progress-step.active .progress-card p {
  color: #ffffff;
}

.progress-dot {
  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease;
}

.progress-step.active .progress-dot {
  transform: scale(1.15);
}

.progress-step.active::before {
  animation: growLine 0.5s ease forwards;
}

@keyframes growLine {
  from { height: 0; }
  to { height: calc(100% + 2rem); }
}

.how-progress h2 {
  font-size: clamp(2.2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item-wrapper {
  border-radius: 14px;
  overflow: hidden;
  background: #111;
}

.faq-item {
  all: unset;
  width: 100%;
  cursor: pointer;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 500;
}

.faq-item:hover {
  background: #1a1a1a;
}

.faq-question {
  text-align: left;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #0c0c0c;
  color: #d1d1d1;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 1rem;
}

.faq-item.active + .faq-answer {
  max-height: 200px;
  padding-top: 0.75rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.hero-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-pill {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: #f1f2f6;
  font-size: 0.9rem;
  line-height: 1.1;
}

.hero-pill small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
}

.hero-pill span {
  font-weight: 500;
  color: #111;
}

.hero-pill.location { background:#eef2ff; }
.hero-pill.availability { background:#ecfdf5; }





.services-header {
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.services-header h2 {
  margin-bottom: 0.35rem;
}

.services-intro {
  color: #4b5563;
}

.final-cta {
  background: linear-gradient(
    180deg,
    #ffffff,
    #f7f8fc
  );
  border-radius: 20px;
  padding: 4.5rem 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.final-cta h2 {
  margin-bottom: 0.75rem;
}

.final-cta p {
  margin-bottom: 1.75rem;
}

.final-cta {
  background: linear-gradient(
    180deg,
    rgba(154,140,255,0.10),
    rgba(154,140,255,0.03)
  );
  border-radius: 24px;
  padding: 5rem 2rem;
}

.final-cta .btn-primary {
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

.final-cta::before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    #9a8cff,
    rgba(154,140,255,0.4)
  );
}

.final-cta .btn-primary:hover {
  transform: translateY(-1px);
}









