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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(192, 38, 140, 0.08), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(67, 56, 202, 0.06), transparent 50%),
    var(--bg-page);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--accent-hover);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-main {
  min-height: 60vh;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus-ring);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-default);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-primary);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.btn-lg {
  height: 48px;
  padding: 0 22px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

/* ——— Nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav-h);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: inset 0 -1px 0 rgba(192, 38, 140, 0.12);
}

.site-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 28px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--navy);
  background: var(--accent-tint);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: var(--white);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--accent-tint);
  border-color: rgba(192, 38, 140, 0.35);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--accent-tint);
  border-color: rgba(192, 38, 140, 0.4);
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 16px;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ——— Side menu (site-native glass sheet) ——— */
.side-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  pointer-events: none;
  background: rgba(15, 23, 42, 0);
  transition: background 0.25s ease, visibility 0.25s;
}

.side-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  background: rgba(15, 23, 42, 0.28);
}

.side-menu-panel {
  position: absolute;
  top: 12px;
  left: 12px;
  bottom: 12px;
  width: min(300px, calc(100vw - 24px));
  display: flex;
  flex-direction: column;
  padding: 8px;
  border-radius: 16px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateX(calc(-100% - 24px));
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.side-menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(320px 160px at 0% 0%, rgba(192, 38, 140, 0.1), transparent 60%);
  pointer-events: none;
}

.side-menu.is-open .side-menu-panel {
  transform: translateX(0);
}

.side-menu-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 8px 12px 12px;
}

.side-menu-logo {
  height: 24px;
  width: auto;
}

.side-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-default);
  background: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.side-menu-close span,
.side-menu-close span::before {
  display: block;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background: var(--navy);
}

.side-menu-close span {
  position: relative;
  transform: rotate(45deg);
}

.side-menu-close span::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: rotate(90deg);
}

.side-menu-close:hover,
.side-menu-close:focus-visible {
  background: var(--accent-tint);
  border-color: rgba(192, 38, 140, 0.35);
}

.side-menu-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 4px 8px;
  flex: 1;
  overflow-y: auto;
}

.side-menu-link {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, color 0.15s ease;
}

.side-menu-link:hover,
.side-menu-link:focus-visible {
  color: var(--navy);
  background: var(--accent-tint);
}

.side-menu-auth {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(232, 236, 243, 0.7);
  border: 1px solid var(--border-subtle);
}

body.nav-open {
  overflow: hidden;
}

/* ——— Typography helpers ——— */
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--navy);
}

.section-lead {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 42rem;
}

.section {
  padding: var(--space-12) 0;
}

/* Homepage: modestly taller hero */
.page-home .hero-content {
  padding: clamp(48px, 7vw, 76px) 0;
}

.page-hero {
  padding: var(--space-8) 0 var(--space-5);
}

.page-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
}

.section-head {
  margin-bottom: var(--space-8);
}

/* ——— Glass ——— */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 14, 39, 0.82) 0%, rgba(10, 14, 39, 0.55) 50%, rgba(15, 23, 42, 0.62) 100%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.15) 0%, rgba(11, 18, 32, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) 0;
  animation: heroIn 0.7s ease both;
}

.hero-brand {
  height: 28px;
  width: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 10px;
  max-width: 18ch;
}

.hero-lead {
  margin: 0 0 20px;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.88);
  max-width: 34rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Sections ——— */
.problem {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .problem {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.problem-card {
  padding: 24px;
}

.problem-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.problem-card p {
  margin: 0;
  color: var(--text-secondary);
}

.problem-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-secondary);
}

.problem-card li + li {
  margin-top: 6px;
}

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

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(192, 38, 140, 0.08);
}

.feature-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-deep);
}

.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-media--panel {
  aspect-ratio: 16 / 9;
  background: #E8ECF3;
}

.feature-card-media--panel img {
  object-fit: contain;
  object-position: center;
}

.feature-card-body {
  padding: 18px 18px 20px;
}

.feature-card-body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card-body p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 18px;
}

.steps {
  display: grid;
  gap: 16px;
}

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

.step {
  padding: 20px;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

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

.media-block {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media (min-width: 900px) {
  .media-block {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .media-block.is-flip {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .media-block.is-flip .media-block-visual {
    order: -1;
  }
}

.media-block-visual {
  border-radius: var(--glass-radius);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--border-subtle);
  background: var(--navy-deep);
}

.media-block-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-block-visual.is-43 img {
  aspect-ratio: 4 / 3;
}

.media-block-visual--panel {
  background: #E8ECF3;
  aspect-ratio: auto;
}

.media-block-visual--panel img,
.flow-item-media.media-block-visual--panel img,
.feature-card-media--panel img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: unset;
  object-position: center;
  background: #E8ECF3;
  image-rendering: -webkit-optimize-contrast;
}

.media-pair {
  display: grid;
  gap: 12px;
}

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

.media-pair .media-block-visual {
  margin: 0;
}

.media-pair .media-block-visual img {
  aspect-ratio: 4 / 3;
}

.flow-list {
  display: grid;
  gap: 20px;
}

.flow-item {
  display: grid;
  gap: 20px;
  padding: 20px;
}

@media (min-width: 900px) {
  .flow-item {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }

  .flow-item:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
  }

  .flow-item:nth-child(even) .flow-item-text {
    order: 2;
  }
}

.flow-item-text h3 {
  margin: 0 0 8px;
}

.flow-item-text p {
  margin: 0;
  color: var(--text-secondary);
}

.flow-item-media {
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy-deep);
}

.flow-item-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.flow-item-media.media-block-visual--panel {
  background: #E8ECF3;
}

.flow-item-media.media-block-visual--panel img {
  aspect-ratio: auto;
  height: auto;
  object-fit: unset;
  background: #E8ECF3;
  image-rendering: -webkit-optimize-contrast;
}

.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #152038 60%, #1a1030 100%);
  color: var(--white);
  border-radius: var(--glass-radius);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 200px at 90% 20%, rgba(192, 38, 140, 0.28), transparent 60%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0;
  color: rgba(226, 232, 240, 0.85);
  max-width: 36rem;
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 28px;
  text-align: center;
}

.pricing-card h2 {
  margin: 0 0 8px;
}

.pricing-card p {
  color: var(--text-secondary);
  margin: 0 0 20px;
}

.pricing-list {
  text-align: left;
  margin: 0 0 24px;
  padding-left: 1.1rem;
  color: var(--text-secondary);
}

.pricing-list li + li {
  margin-top: 8px;
}

.page-hero--center {
  text-align: center;
}

.page-hero--center .section-lead--center,
.section-lead--center {
  margin-inline: auto;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
  max-width: 920px;
  margin-inline: auto;
}

@media (min-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.pricing-plan {
  position: relative;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-plan--featured {
  border-color: rgba(192, 38, 140, 0.22);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(192, 38, 140, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.pricing-plan--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #E879A9 55%, transparent);
}

.pricing-plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-tint);
  border: 1px solid rgba(192, 38, 140, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
}

.pricing-plan-head {
  margin-bottom: 20px;
  padding-right: 88px;
}

.pricing-plan-title {
  margin: 0 0 14px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.pricing-plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 10px;
}

.pricing-plan-amount {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.pricing-plan-note {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-plan-desc {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.4;
}

.pricing-features i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 1px;
  flex-shrink: 0;
}

.pricing-plan-actions {
  display: grid;
  gap: 8px;
}

.pricing-side {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.pricing-side-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 14px;
}

.pricing-side-title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.pricing-side-text {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-side-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.pricing-side-list li {
  padding-left: 14px;
  position: relative;
}

.pricing-side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.pricing-side .btn {
  margin-top: auto;
}

@media (max-width: 859px) {
  .pricing-plan-head {
    padding-right: 0;
    padding-top: 8px;
  }

  .pricing-plan-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 12px;
  }
}

.form-stack {
  display: grid;
  gap: 14px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border-default);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 16px;
  color: var(--navy);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(192, 38, 140, 0.45);
  box-shadow: 0 0 0 4px var(--focus-ring);
}

.form-field .field-error {
  margin-top: 4px;
  font-size: 12px;
  color: #DC2626;
}

.alert {
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
}

.alert-success {
  background: #F0FDF4;
  color: #166534;
  border: 1px solid #BBF7D0;
}

/* ——— FAQ ——— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.faq-item {
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(192, 38, 140, 0.08);
}

.faq-item[open] {
  background: var(--glass-bg-strong);
  border-color: rgba(192, 38, 140, 0.18);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--navy);
  line-height: 1.35;
  user-select: none;
}

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

.faq-summary::marker {
  content: "";
}

.faq-summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: var(--glass-radius);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent-tint);
  color: var(--accent);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-icon::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  background: var(--accent);
  color: var(--white);
}

.faq-body {
  padding: 0 20px 18px;
}

.faq-body p {
  margin: 0;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-body a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-body a:hover {
  color: var(--accent-hover);
}

@media (max-width: 640px) {
  .faq-summary {
    padding: 16px;
    font-size: 0.98rem;
    gap: 12px;
  }

  .faq-body {
    padding: 0 16px 16px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ——— Footer ——— */
.site-footer {
  margin-top: var(--space-12);
  background: var(--navy-deep);
  color: var(--text-on-dark);
  padding: var(--space-12) 0 var(--space-8);
}

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

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

.footer-brand img {
  height: 28px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
  color: rgba(226, 232, 240, 0.7);
  max-width: 28rem;
  font-size: 0.95rem;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.55);
}

.footer-col a {
  display: block;
  color: rgba(226, 232, 240, 0.88);
  padding: 4px 0;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(226, 232, 240, 0.55);
}

/* ——— Responsive nav ——— */
@media (max-width: 767px) {
  .nav-desktop,
  .nav-actions-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none !important;
  }

  .side-menu {
    display: none !important;
  }
}
