:root {
  --bg: #051733;
  --bg-deep: #041026;
  --bg-soft: #0d2548;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.07);
  --text: #eef4ff;
  --muted: #b7c6dd;
  --muted-strong: #8ea7c7;
  --colors-theme-accent: #27c9d6;
  --8px-basic: 8px;
  --accent-cyan: var(--colors-theme-accent);
  --accent-cyan-dark: #20b6c8;
  --accent-orange: #f99200;
  --accent-purple: #b95cf9;
  --accent-pink: #7fa2fd;
  --gradient: linear-gradient(
      99deg,
      #f99200 0.98%,
      #b95cf9 53.09%,
      #7fa2fd 89.71%,
      #1b91ed 110.83%
    ),
    var(--colors-theme-accent, #27c9d6);
  --shadow: 0 30px 60px rgba(2, 10, 30, 0.55);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}
.page {
    background: radial-gradient(80% 60% at 50% 0%, #163b5c 0%, #0f2b46 35%, #0b2540 60%, #061a2e 100%);
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: radial-gradient(
      1000px 600px at 15% 0%,
      rgba(73, 116, 189, 0.35),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 80% 20%,
      rgba(45, 204, 221, 0.15),
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  min-height: 100vh;
  line-height: 1.6;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.page > * {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1420px, 96vw);
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  margin: 0 0 16px;
}


p {
  margin: 0 0 16px;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  color: var(--text);
  margin-bottom: 12px;
}

.section-title.center {
  text-align: center;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 0;
}

.accent-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
}

span.accent-gradient {
  font-size: 42px;
  font-weight: 600;
}

.dot {
  margin: 0 6px;
  color: var(--muted-strong);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.15s;
}

.reveal.delay-2 {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGridFlow {
  0%,
  100% {
    background-position: center, 0 0, 0 0;
    opacity: 0.42;
  }
  35% {
    background-position: center, 10px 0, 0 10px;
    opacity: 0.5;
  }
  65% {
    background-position: center, -8px 0, 0 -8px;
    opacity: 0.46;
  }
}

@keyframes gridSpark {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.92);
  }
  20% {
    opacity: 0.35;
    transform: scale(1);
  }
  45% {
    opacity: 0.12;
    transform: scale(0.98);
  }
  70% {
    opacity: 0.4;
    transform: scale(1.02);
  }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 24px;
  position: relative;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-image: radial-gradient(
      520px 320px at 50% 20%,
      rgba(61, 94, 168, 0.35),
      transparent 70%
    ),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  background-position: center top, top left, top left;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-purple), #22c7d5);
  position: relative;
  box-shadow: 0 10px 18px rgba(35, 199, 213, 0.3);
}

.logo-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.85);
}

.logo-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-purple);
  right: 8px;
  top: 8px;
}

.logo-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.logo-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-strong);
  margin-top: -2px;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

.btn {
  border-radius: var(--8px-basic, 8px);
  border: 1px solid transparent;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease,
    filter 0.2s ease;
  color: var(--text);
  background: transparent;
}

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

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(8, 28, 54, 0.5);
}

.btn-gradient {
  background: var(--gradient);
  color: #ffffff;
}

.btn-cyan {
  background: var(--accent-cyan);
  color: #07223d;
}

.btn-light {
  background: #f5fbff;
  color: #0a2345;
  border-color: transparent;
}

.feature-card,
.plan-card,
.testimonial-card,
.placeholder-card,
.video-card,
.how-media-box,
.cta-card,
.faq-card {
  transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

@media (hover: hover) {
  .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
  }

  .btn-gradient:hover {
    filter: brightness(1.05) saturate(1.05);
  }

  .btn-cyan:hover {
    filter: brightness(1.05);
  }

  .btn-light:hover {
    filter: brightness(0.98);
  }

  .btn:hover {
    filter: brightness(1.05);
  }

  .feature-card:hover,
  .plan-card:hover,
  .testimonial-card:hover,
  .placeholder-card:hover,
  .video-card:hover,
  .how-media-box:hover,
  .faq-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .cta-card:not(.cta-primary):hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .cta-primary:hover {
    transform: translateY(-4px);
    filter: brightness(1.03);
  }

  .plan-card.featured:hover {
    border-color: rgba(44, 199, 215, 0.7);
  }

  .how-step:hover::before {
    border-color: rgba(44, 199, 215, 0.8);
  }

  .how-step:hover .step-index {
    color: var(--accent-cyan);
  }

  .how-step:hover .step-description {
    color: #d8e6ff;
  }
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.play-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text);
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40px;
  bottom: -20px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-image: radial-gradient(
      720px 460px at 50% 35%,
      rgba(61, 94, 168, 0.4),
      transparent 70%
    ),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  background-position: center, top left, top left;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  animation: heroGridFlow 10s ease-in-out infinite;
}

.grid-sparks {
  position: absolute;
  top: -40px;
  bottom: -20px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  display: none;
}

.grid-sparks span {
  position: absolute;
  left: calc(var(--x) * 56px);
  top: calc(var(--y) * 56px);
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 18px rgba(39, 201, 214, 0.25);
  opacity: 0;
  animation: gridSpark var(--duration, 7s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero > .grid-sparks {
  position: absolute;
  z-index: 0;
}

@media (hover: hover) and (pointer: fine) {
  .hero:has(.video-card:hover)::before,
  .hero:has(.video-media:hover)::before {
    background-image: radial-gradient(
        720px 460px at 50% 35%,
        rgba(86, 126, 206, 0.5),
        transparent 70%
      ),
      linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    opacity: 0.7;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted-strong);
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 43px;
  font-style: normal;
  font-weight: 600;
  line-height: 87px;
  max-width: 33ch;
}

.hero-title .accent-gradient {
  font-size: 110px;
  font-weight: 600;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 61ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted-strong);
  text-align: center;
}

.hero-media {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.hero-media.reveal.delay-1 {
  padding: 0 !important;
  margin: 0 !important;
  height: 852px;
}

.video-card {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 620 / 537;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 1px 6px 30px rgba(9, 24, 55, 0.45);
  padding: clamp(14px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
}

.video-media {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: none;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-media::after {
  display: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: none;
}

.how-intro {
  text-align: center;
  padding-top: 10px;
}

.how-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 80px;
}

.how-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-media-box {
  border-radius: 26px;
  background-image: var(--media-image, none);
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.how-media-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
}

.how-media-box::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 24px 22px auto;
  background: rgba(7, 22, 44, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
}

.how-caption {
  display: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how-steps-list {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  padding-left: 32px;
}

.how-cta {
  order: 2;
  align-self: flex-start;
}

.how-steps-list::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(
    180deg,
    #f99200 0%,
    #b95cf9 45%,
    #7fa2fd 75%,
    #1b91ed 100%
  );
}

.how-step {
  text-align: left;
  border: none;
  background: transparent;
  color: inherit;
  display: flex;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  transition: color 0.2s ease;
}

.how-step::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 0px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #102443;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.how-step.is-active::before {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 6px rgba(245, 165, 82, 0.2);
}

.step-index {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--muted-strong);
  min-width: 36px;
}

.how-step.is-active .step-index {
  color: var(--accent-cyan);
}

.step-body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--text);
}

.step-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.meetings-title {
  padding: 30px 0 40px;
}

.features {
  padding-bottom: 90px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.feature-row.reverse .feature-text {
  order: 2;
}

.feature-row.reverse .feature-media {
  order: 1;
  justify-content: flex-start;
}

.feature-text h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-text p {
  color: var(--muted);
  margin-bottom: 20px;
}

.feature-media {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.placeholder-card {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 24px 40px rgba(7, 22, 44, 0.3);
  position: relative;
  overflow: hidden;
}

.placeholder-card::after {
  content: attr(data-label);
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(7, 22, 44, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: var(--muted);
}

.top-features {
  padding: 80px 0 60px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(3, 13, 31, 0.35);
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.feature-card h4 {
  margin: 16px 0 10px;
  font-size: 1.1rem;
  color: var(--text);
}

.feature-card p {
  margin: 0;
}

.card-grid .feature-card:nth-child(1) {
  animation-delay: 0.05s;
}

.card-grid .feature-card:nth-child(2) {
  animation-delay: 0.12s;
}

.card-grid .feature-card:nth-child(3) {
  animation-delay: 0.19s;
}

.card-grid .feature-card:nth-child(4) {
  animation-delay: 0.26s;
}

.card-grid .feature-card:nth-child(5) {
  animation-delay: 0.33s;
}

.card-grid .feature-card:nth-child(6) {
  animation-delay: 0.4s;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(44, 199, 215, 0.15);
  border: 1px solid rgba(44, 199, 215, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-cyan);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonials {
  padding: 70px 0 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.testimonial-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9bd1ff, #d7f4ff);
}

.testimonial-name {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted-strong);
}

.testimonial-grid .testimonial-card:nth-child(1) {
  animation-delay: 0.08s;
}

.testimonial-grid .testimonial-card:nth-child(2) {
  animation-delay: 0.16s;
}

.testimonial-grid .testimonial-card:nth-child(3) {
  animation-delay: 0.24s;
}

.stars::before {
  content: "\2605\2605\2605\2605\2605";
  color: #f7c458;
  font-size: 0.75rem;
}

.pricing {
  padding: 80px 0 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.plan-card.featured {
  border: 1px solid rgba(44, 199, 215, 0.5);
  box-shadow: 0 20px 50px rgba(19, 171, 185, 0.2);
}

.plan-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-cyan);
  color: #07223d;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.plan-sub {
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.plan-sub span {
  color: var(--text);
  font-weight: 600;
}

.plan-price {
  margin: 18px 0 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
}

.price-sub {
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.plan-list li {
  position: relative;
  padding-left: 24px;
}

.plan-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

.pricing-grid .plan-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-grid .plan-card:nth-child(2) {
  animation-delay: 0.18s;
}

.pricing-grid .plan-card:nth-child(3) {
  animation-delay: 0.26s;
}

.cta-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 40px 0 80px;
}

.cta-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.cta-primary {
  background: var(--accent-cyan);
  color: #07223d;
}

.cta-primary p {
  color: #073157;
}

.cta-primary h3 {
  color: #07223d;
}

.faq {
  padding-bottom: 80px;
}

.faq-card {
  background: var(--card-strong);
  border-radius: 24px;
  padding: 50px 60px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 40px;
  margin-top: 24px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-trigger {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.faq-question {
  display: inline-block;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease;
  color: var(--muted-strong);
  padding-left: 34px;
}

.faq-answer p {
  margin: 0;
  color: inherit;
}

.faq-item.is-open .faq-answer {
  max-height: 120px;
  opacity: 1;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent-cyan);
}

.faq-icon::before {
  width: 10px;
  height: 2px;
  left: 4px;
  top: 8px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  left: 8px;
  top: 4px;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

@media (hover: hover) {
  .faq-trigger:hover {
    color: #dbe8ff;
  }
}

.site-footer {
  padding: 50px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 16, 38, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.footer-brand p {
  margin-top: 12px;
  color: var(--muted);
}

.footer-column h4 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-column a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  color: var(--muted-strong);
  font-size: 0.85rem;
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .grid-sparks {
    display: block;
  }
}

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

  .hero-content {
    align-items: flex-start;
    text-align: left;
  }

  .hero-title,
  .hero-lead {
    max-width: none;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-note {
    text-align: left;
  }

  .hero-media {
    justify-content: flex-start;
  }

  .hero-media.reveal.delay-1 {
    height: auto;
  }

  .how-block {
    grid-template-columns: 1fr;
  }

  .how-steps {
    order: 1;
  }

  .how-media {
    order: 2;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-text,
  .feature-row.reverse .feature-media {
    order: initial;
  }

  .feature-media {
    justify-content: center;
  }

  .card-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-duo {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .hero {
    padding-bottom: 40px;
  }

  .hero-title .accent-gradient {
    font-size: 72px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .how-steps {
    gap: 16px;
  }

  .how-steps-list {
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }

  .how-steps-list::before {
    display: none;
  }

  .how-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  }

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

  .how-step.is-active {
    border-color: var(--accent-cyan);
  }

  .step-description {
    display: none;
  }

  .how-caption {
    display: block;
  }

  .how-cta {
    order: -1;
    width: 100%;
  }

  .meetings-title {
    text-align: left;
  }

  .card-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .faq-card {
    padding: 40px 28px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding-top: 20px;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .hero-title .accent-gradient {
    font-size: 48px;
  }

  span.accent-gradient {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.25;
  }

  .how-steps-list {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row {
    padding: 30px 0;
  }

  .placeholder-card {
    aspect-ratio: 1 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .hero::before {
    animation: none;
  }

  .grid-sparks span {
    animation: none;
    opacity: 0;
  }

  .reveal,
  .feature-card,
  .testimonial-card,
  .plan-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

h3 {
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.4px;
}
span.step-index {
    margin-top: -6px !important;
}
