.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1001;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #111827;
  color: #ffffff;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

body {
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.12), transparent 24%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 38%, #f8fafc 100%);
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

.orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.45;
  pointer-events: none;
}

.orb-a {
  top: 7rem;
  right: 8%;
  width: 15rem;
  height: 15rem;
  background: rgba(99, 102, 241, 0.22);
}

.orb-b {
  bottom: 10rem;
  left: 6%;
  width: 18rem;
  height: 18rem;
  background: rgba(236, 72, 153, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.28);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-nav a {
  color: #475569;
  font-weight: 600;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: #4f46e5;
}

.hero {
  min-height: auto;
  padding: 4.5rem 0 2.5rem;
  text-align: left;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.hero-copy,
.hero-panel,
.info-card,
.reason-card,
.city-card,
.trust-card,
.message-box,
.final-cta-box {
  animation: fadeUp 0.7s ease both;
}

.badge {
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.92);
}

.eyebrow {
  margin-bottom: 1rem;
  color: #4f46e5;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  margin-bottom: 1.1rem;
  max-width: 13ch;
}

.hero-text,
.hero-panel p,
.info-card p,
.reason-card p,
.city-card p,
.trust-card p,
.faq-item p,
.final-cta-box p {
  color: #475569;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 65ch;
}

.hero-actions,
.center-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-actions {
  margin: 1.75rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn img,
.sticky-wa img {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #0d9488);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(13, 148, 136, 0.24);
}

.btn-secondary {
  background: #ffffff;
  color: #4338ca;
  border: 1px solid rgba(99, 102, 241, 0.22);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.hero-panel,
.info-card,
.reason-card,
.city-card,
.trust-card,
.message-box,
.final-cta-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.hero-panel {
  padding: 1.5rem;
  border-radius: 1.5rem;
}

.hero-panel h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.fact-list {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.fact-list li {
  position: relative;
  padding-left: 1.3rem;
  color: #475569;
}

.fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.panel-card {
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.06));
}

.panel-label {
  margin-bottom: 0.35rem;
  color: #4338ca;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section {
  padding: 1.4rem 0 4.5rem;
}

.section-dark {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
}

.section-dark h2,
.section-dark h3,
.section-dark .section-sub,
.section-dark .section-tag,
.section-dark .step-card p {
  color: #ffffff;
}

.section-dark .section-tag {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.section-soft .container,
.section-dark .container {
  position: relative;
}

.section-soft .container::before,
.section-dark .container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  pointer-events: none;
}

.section-soft .container::before {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(236, 72, 153, 0.03));
}

.section-dark .container::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
}

.section-soft .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-radius: 2rem;
}

.section-header {
  position: relative;
  z-index: 1;
}

.section-header.narrow {
  max-width: 50rem;
  margin-inline: auto;
}

.answer-grid,
.reason-grid,
.city-grid,
.split-grid {
  display: grid;
  gap: 1.5rem;
}

.answer-grid,
.reason-grid,
.city-grid {
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
}

.split-grid {
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.info-card,
.reason-card,
.city-card,
.trust-card {
  padding: 1.55rem;
  border-radius: 1.35rem;
}

.info-card h3,
.reason-card h3,
.city-card h3,
.trust-card h2 {
  margin-bottom: 0.75rem;
}

.city-card,
.reason-card {
  position: relative;
  overflow: hidden;
}

.city-card::after,
.reason-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.14), transparent 65%);
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.step-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.step-card::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #14b8a6);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
}

.trust-card.alt {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.96));
}

.check-list {
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #334155;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  color: #16a34a;
  background: currentColor;
}

.check-list.neutral li::before {
  color: #f59e0b;
}

.message-box {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  padding: 1.4rem;
  border-radius: 1.4rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.75;
}

.message-box p + p {
  margin-top: 0.35rem;
}

.center-actions {
  justify-content: center;
}

.faq-section {
  max-width: 100%;
  padding-top: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item summary {
  position: relative;
  padding: 1.25rem 3.5rem 1.25rem 1.4rem;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #4f46e5;
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 1.4rem 1.35rem;
}

.final-cta {
  padding-bottom: 5rem;
}

.final-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem 1.5rem;
  padding: 1.75rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.09), rgba(236, 72, 153, 0.08));
}

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

.final-note {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.6;
}

.note-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.note-label {
  margin-bottom: 0.2rem;
  color: #4338ca;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.note-copy + .note-copy {
  margin-top: 0.35rem;
}

.note-copy {
  margin: 0;
}

.final-actions {
  align-self: center;
}

#summary,
#process,
#locations,
#faq {
  scroll-margin-top: 6.5rem;
}

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

  .hero h1 {
    max-width: none;
  }

  .hero-panel {
    order: 2;
  }
}

@media (max-width: 768px) {
  .header-row {
    align-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .top-nav {
    gap: 0.75rem 1rem;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .section {
    padding-bottom: 3.5rem;
  }

  .section-dark {
    padding: 3.5rem 0;
  }

  .final-cta-box {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

  .final-actions {
    justify-content: stretch;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .center-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-pills {
    flex-direction: column;
  }

  .sticky-wa {
    display: none;
  }

  .top-nav {
    font-size: 0.95rem;
  }
}
