/* =========================================================
   Orlando Region Technology Partners (ORTP)
   Design system + site styles
   ========================================================= */

:root {
  /* Brand palette */
  --navy-900: #0a1733;
  --navy-800: #0f2147;
  --navy-700: #16305f;
  --blue-600: #1f5fd6;
  --blue-500: #2f7bf0;
  --blue-400: #5a9bff;
  --cyan-400: #2dd4bf;
  --amber-400: #ffb347; /* Orlando sun accent */

  --ink: #0b1220;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --paper: #f7f9fc;
  --white: #ffffff;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* Layout */
  --maxw: 1140px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(10, 23, 51, 0.06),
    0 1px 3px rgba(10, 23, 51, 0.08);
  --shadow-md: 0 10px 30px rgba(10, 23, 51, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 23, 51, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--blue-600);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--blue-500);
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

.section--alt {
  background: var(--paper);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead {
  font-size: 1.15rem;
  color: var(--slate-700);
}

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

.grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 720px) {
  .grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 8px 20px rgba(31, 95, 214, 0.28);
}

.btn--primary:hover {
  background: var(--blue-500);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: var(--slate-200);
  color: var(--navy-900);
}

.btn--ghost:hover {
  border-color: var(--blue-400);
  color: var(--blue-600);
}

.btn--light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn--light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--slate-200);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--navy-900);
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex: none;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__text strong {
  font-size: 1.1rem;
}

.brand__text span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--slate-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--slate-700);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.97rem;
}

.nav-links a:hover {
  color: var(--navy-900);
  background: var(--slate-100);
}

.nav-links a.active {
  color: var(--blue-600);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
}

.nav-toggle span::before {
  top: -7px;
}
.nav-toggle span::after {
  top: 7px;
}

@media (max-width: 860px) {
  .nav-cta .btn {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--slate-200);
    padding: 8px 16px 16px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 14px 12px;
    border-radius: 8px;
  }
  .nav-links .btn {
    display: inline-flex;
    margin-top: 8px;
    justify-content: center;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: radial-gradient(
      1200px 600px at 80% -10%,
      rgba(45, 212, 191, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 0% 20%,
      rgba(90, 155, 255, 0.22),
      transparent 55%
    ),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
  padding: 96px 0 104px;
}

@media (min-width: 940px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 110px 0 120px;
  }
}

.hero h1 {
  color: #fff;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.2);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stats .stat strong {
  display: block;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero__stats .stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero visual: workflow card */
.workflow-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}

.workflow-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.workflow-card__head span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.pill-live {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cyan-400);
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
}

.flow-node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.flow-node + .flow-connector {
  height: 18px;
  width: 2px;
  margin-left: 32px;
  background: linear-gradient(
    var(--cyan-400),
    rgba(45, 212, 191, 0.1)
  );
}

.flow-node__icon {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(90, 155, 255, 0.18);
  color: var(--blue-400);
}

.flow-node__icon svg {
  width: 20px;
  height: 20px;
}

.flow-node strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}

.flow-node small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.flow-node .check {
  margin-left: auto;
  color: var(--cyan-400);
}

/* ---------- Logos / trust strip ---------- */
.trust {
  padding: 36px 0;
  border-bottom: 1px solid var(--slate-200);
}

.trust p {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-400);
  margin-bottom: 22px;
}

.trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 40px;
  color: var(--slate-400);
  font-weight: 700;
  font-size: 1.05rem;
}

.trust__row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-400);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  color: #fff;
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--slate-700);
  margin-bottom: 0;
  font-size: 0.98rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.92rem;
}

.card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.15s ease;
}

.card__link:hover svg {
  transform: translateX(3px);
}

/* Pillar cards with number */
.pillar {
  position: relative;
}

.pillar__num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--slate-100);
  letter-spacing: -0.04em;
}

/* ---------- Feature split ---------- */
.split {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--reverse .split__media {
    order: 2;
  }
}

.split__media {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  color: #fff;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.feature-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-200);
}

.feature-list li:last-child {
  border-bottom: 0;
}

.feature-list .tick {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(45, 212, 191, 0.15);
  color: #0f766e;
}

.feature-list .tick svg {
  width: 15px;
  height: 15px;
}

.feature-list strong {
  display: block;
  color: var(--navy-900);
}

.feature-list span {
  color: var(--slate-500);
  font-size: 0.92rem;
}

/* Stat tiles inside media panels */
.stat-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
}

.stat-tile strong {
  display: block;
  font-size: 1.7rem;
  color: #fff;
}

.stat-tile span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Process steps ---------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 24px;
}

@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  padding-top: 14px;
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.1rem;
}

.step p {
  color: var(--slate-500);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Deployment toggle ---------- */
.deploy {
  display: grid;
  gap: 24px;
}

@media (min-width: 760px) {
  .deploy {
    grid-template-columns: 1fr 1fr;
  }
}

.deploy__card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
}

.deploy__card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.deploy__card svg {
  width: 22px;
  height: 22px;
  color: var(--blue-600);
}

/* ---------- Testimonial ---------- */
.quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quote blockquote {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.quote .mark {
  font-size: 3rem;
  color: var(--blue-400);
  line-height: 1;
}

.quote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--navy-900);
}

.quote cite span {
  display: block;
  font-weight: 400;
  color: var(--slate-500);
  font-size: 0.9rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--blue-600), var(--navy-800));
  color: #fff;
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px 300px at 80% 0%,
    rgba(45, 212, 191, 0.25),
    transparent 60%
  );
  pointer-events: none;
}

.cta-band h2 {
  color: #fff;
  position: relative;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
}

.cta-band .hero__actions {
  justify-content: center;
  position: relative;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand__text span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-about {
  max-width: 320px;
  font-size: 0.95rem;
  margin-top: 18px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    800px 400px at 90% -20%,
    rgba(45, 212, 191, 0.16),
    transparent 60%
  );
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  font-size: 1.15rem;
  margin: 0;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Service detail blocks ---------- */
.service-block {
  scroll-margin-top: 90px;
}

.service-block + .service-block {
  margin-top: 72px;
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-600);
  background: rgba(47, 123, 240, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- About values ---------- */
.value {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--slate-200);
}

.value__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--slate-100);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.value__icon svg {
  width: 22px;
  height: 22px;
}

.value h3 {
  font-size: 1.1rem;
}

.value p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-row {
  margin-bottom: 18px;
}

.form-row.two {
  display: grid;
  gap: 18px;
}

@media (min-width: 540px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 7px;
  color: var(--navy-900);
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  font-size: 0.97rem;
  padding: 12px 14px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(47, 123, 240, 0.15);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--slate-500);
}

.contact-info {
  display: grid;
  gap: 20px;
}

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

.contact-item__icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--slate-100);
  color: var(--blue-600);
  display: grid;
  place-items: center;
}

.contact-item__icon svg {
  width: 22px;
  height: 22px;
}

.contact-item strong {
  display: block;
  color: var(--navy-900);
}

.contact-item span,
.contact-item a {
  color: var(--slate-500);
  font-size: 0.95rem;
}

.form-success {
  display: none;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.4);
  color: #0f766e;
  font-weight: 500;
  margin-bottom: 18px;
}

.form-success.show {
  display: block;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--slate-200);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue-600);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--slate-500);
  padding-bottom: 22px;
  margin: 0;
  max-width: 760px;
}

/* ---------- Misc ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: var(--navy-900);
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}
