/* Stitch-inspired light layout — 6 Gears */

:root {
  --navy: #0f2744;
  --navy-muted: #1c3d6f;
  --ink: #1a2332;
  --muted: #5b6678;
  --line: #e4e9f0;
  --surface: #ffffff;
  --surface-subtle: #f4f6f9;
  --surface-card: #eef1f6;
  --teal-soft: #e6f6f3;
  --blue-soft: #e8eef8;
  --slate-soft: #e9edf3;
  --purple-soft: #f0eaf8;
  --star: #f4b942;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 45px rgba(15, 39, 68, 0.08);
  --container: min(1120px, calc(100% - 2.5rem));
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--surface);
}

h1,
h2,
h3 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

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

a:hover {
  color: var(--navy);
  text-decoration: underline;
}

p {
  margin: 0 0 1rem;
}

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

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.35rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.logo-mark:hover {
  text-decoration: none;
  opacity: 0.85;
}

.logo-icon {
  display: grid;
  place-items: center;
}

.logo-word {
  color: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.95rem, 2.4vw, 1.85rem);
}

.nav-links a {
  font-weight: 500;
  font-size: 0.955rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--navy);
  text-decoration: none;
}

.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 12px 25px rgba(15, 39, 68, 0.18);
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-register:hover {
  background: var(--navy-muted);
  color: #fff !important;
  text-decoration: none !important;
}

.nav-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto 0;
  background: var(--navy);
  border-radius: 1px;
}

.nav-toggle-bar:first-child {
  margin-top: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */

.hero {
  padding: 1.5rem 0 3rem;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: min(520px, 68vw);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 18, 32, 0.72), rgba(8, 18, 32, 0.2), rgba(8, 18, 32, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(2.75rem, 8vw, 5.5rem);
  display: grid;
  place-content: center;
  text-align: center;
  min-height: inherit;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  color: #ffffff;
}

.hero-sub {
  margin: 1rem auto 0;
  max-width: 40ch;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
}

/* Sections */

.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section-surface {
  background: var(--surface-subtle);
  border-block: 1px solid var(--line);
}

.content-col.wide {
  max-width: 1040px;
  margin-inline: auto;
}

.content-col.narrow {
  max-width: 740px;
  margin-inline: auto;
}

.align-center-md {
  text-align: center;
}

.h-section {
  margin: 0 0 0.95rem;
  font-size: clamp(1.7rem, 4vw, 2.05rem);
}

.lead {
  margin: 0 auto 2.25rem;
  max-width: 58ch;
  font-size: 1.035rem;
}

.h-subtle {
  margin: 0 0 0.95rem;
  font-size: 1.125rem;
  font-weight: 700;
}

/* Triple feature cards */

.triple-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .triple-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.soft-card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.45rem 1.35rem 1.5rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.soft-card h3 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.1rem;
}

.soft-card .muted:last-child {
  margin-bottom: 0;
}

.soft-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.soft-icon svg {
  color: currentColor;
}

.soft-icon-teal {
  background: var(--teal-soft);
  color: #157d6f;
}

.soft-icon-blue {
  background: var(--blue-soft);
  color: #2b4f9e;
}

.soft-icon-slate {
  background: var(--slate-soft);
  color: #39465c;
}

/* Roadmap vertical */

.roadmap-list {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.roadmap-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.road-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.road-badge svg {
  color: currentColor;
}

.roadmap-badge-teal {
  background: var(--teal-soft);
  color: #157d6f;
}

.roadmap-badge-blue {
  background: var(--blue-soft);
  color: #2b4f9e;
}

.roadmap-badge-slate {
  background: var(--slate-soft);
  color: #39465c;
}

.roadmap-badge-purple {
  background: var(--purple-soft);
  color: #6846a8;
}

.road-text h3 {
  margin: 0 0 0.35rem;
  font-size: 1.085rem;
}

.road-text p {
  margin: 0;
  font-size: 0.98rem;
}

/* Pricing */

.pricing-columns {
  display: grid;
  gap: 2.75rem;
}

@media (min-width: 940px) {
  .pricing-columns {
    grid-template-columns: minmax(0, 3fr) minmax(0, 3.2fr);
    align-items: start;
    gap: 2.75rem;
  }
}

.table-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow-x: auto;
  background: var(--surface-subtle);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.965rem;
}

.data-table thead th {
  text-align: left;
  padding: 0.9rem 1rem;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.data-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.package-row {
  display: grid;
  gap: 0.95rem;
}

@media (min-width: 740px) {
  .package-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.package-tile {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.1rem 0.95rem;
  display: grid;
  gap: 0.8rem;
  min-height: 100%;
}

.package-title {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
}

.package-rate {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
}

.package-rate .slash {
  opacity: 0.35;
  font-weight: 600;
  padding: 0 0.06em;
}

.package-rate .hour {
  font-size: 0.92rem;
  font-weight: 700;
}

.package-cta {
  justify-self: stretch;
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: default;
}

/* Reviews */

.reviews {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
}

.review-card {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
}

.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.review-name {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}

.review-when {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
}

.stars {
  display: inline-flex;
  gap: 0.06em;
  flex-shrink: 0;
}

.stars .star {
  color: var(--star);
  font-size: 1rem;
}

.review-card .muted:last-of-type {
  margin-bottom: 0.95rem;
}

.reactions {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.reaction {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 0.875rem;
  cursor: pointer;
}

.reaction:hover {
  color: var(--ink);
}

/* FAQ */

.faq-zone {
  background: rgba(243, 247, 250, 0.35);
}

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

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  overflow: clip;
}

.faq-q {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

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

.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  position: relative;
  background: #fff;
}

.faq-chevron::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-1px) rotate(45deg);
}

details[open] .faq-chevron::after {
  transform: translateY(1px) rotate(-135deg);
}

.faq-a {
  padding: 0 1.1rem 1.05rem;
  border-top: 1px solid var(--line);
  background: var(--surface-subtle);
}

.faq-a p {
  margin: 0.95rem 0 0;
  font-size: 0.98rem;
}

/* Register */

.align-center-reg {
  text-align: center;
}

.reg-form {
  text-align: left;
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem clamp(1.1rem, 3vw, 1.85rem);
}

.fields-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .fields-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-label {
  font-weight: 600;
  font-size: 0.935rem;
  color: var(--navy);
}

.field input,
.field select {
  width: 100%;
  appearance: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #f9fafc;
  padding: 0.78rem 0.92rem;
  font-size: 0.98rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.field input::placeholder {
  color: rgba(91, 102, 120, 0.75);
}

.field input:focus,
.field select:focus {
  border-color: rgba(15, 39, 68, 0.35);
  box-shadow: 0 0 0 3px rgba(15, 39, 68, 0.1);
  background: #fff;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%235b6678' stroke-width='2'%3E%3Cpath d='M3.5 5.5 7 9l3.5-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.form-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.15rem;
}

.btn-submit {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 2.6rem;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(15, 39, 68, 0.15);
}

.btn-submit:hover {
  background: var(--navy-muted);
}

/* Footer */

.site-footer {
  padding: 2.25rem 0 2.75rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-copy {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-gear svg {
  display: block;
}

/* Mobile nav */

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    padding: 0.75rem 1.25rem 1.1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 0.5rem;
  }

  .nav-links a {
    padding: 0.82rem 0;
    border-bottom: 1px solid var(--line);
  }

  .btn-register {
    margin-top: 0.85rem;
    width: 100%;
    justify-content: center;
  }
}
