/* AircraftMX Marketing Site — pixel-perfect replica */

:root {
  --blue: #9cc1e7;
  --blue-light: #c4dbf4;
  --peach: #eddfd0;
  --dark: rgb(26, 22, 21);
  --dark-muted: rgb(69, 63, 61);
  --white: #fff;
  --off-white: #f9f8f8;
  --purple: rgb(79, 57, 246);
  --purple-light: rgb(184, 174, 255);
  --border: rgba(117, 115, 114, 0.15);
  --border-dark: #614a4433;
  --max-w: 1072px;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Open Runde', 'Inter', sans-serif;
  --font-mono: 'Fragment Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== HERO GRADIENT AREA ========== */

.hero-gradient {
  background: linear-gradient(180deg, var(--blue) 0%, var(--peach) 100%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
}

/* ========== NAV ========== */

.nav-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 16px 40px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  padding: 8px 8px 8px 24px;
  position: relative;
  border-radius: 40px;
  border: 1px solid rgba(117, 115, 114, 0);
  background: rgba(255, 255, 255, 0);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: max-width 0.4s, background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  max-width: 834px;
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--dark);
  white-space: nowrap;
}

.nav-logo svg {
  height: 17px;
  width: 103px;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links-mobile {
  display: none;
}

.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  border-radius: 999px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.nav-link:hover {
  background: rgba(79, 57, 246, 0.12);
  color: var(--purple);
}

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

.nav-login-desktop {
  padding: 8px 16px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--purple);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s;
  cursor: pointer;
}

.nav-cta:hover { transform: scale(1.03); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(3.25px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ========== HERO CONTENT ========== */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  width: 100%;
  padding-top: 140px;
  gap: 16px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.hero .subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark);
  opacity: 0.75;
}

.hero-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
}

.hero-trial-note {
  font-size: 15px;
  color: var(--dark-muted);
  margin-top: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  text-decoration: none;
}

.btn-primary:hover { transform: scale(1.03); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--dark);
  padding: 18px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  border: 2px solid var(--border-dark);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--dark);
  transform: scale(1.03);
}

.hero-image-wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-top: 64px;
  margin-bottom: -200px;
  transform: perspective(1000px) translateY(-32px) rotateX(20deg);
  z-index: 2;
  will-change: transform;
  flex-shrink: 0;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: 20px;
  border: 2px solid var(--border-dark);
  box-shadow: 0 4px 50px #614a440f;
  object-fit: cover;
  object-position: center top;
}

.cloud {
  position: absolute;
  z-index: 1;
  top: 180px;
  width: 480px;
  height: auto;
  pointer-events: none;
  transition: transform 1.2s cubic-bezier(0.44, 0, 0.56, 1);
}

.cloud-left {
  left: -280px;
  transform: translateX(-200px);
}

.cloud-left.visible {
  transform: translateX(-40px);
}

.cloud-right {
  right: -280px;
  transform: translateX(200px);
}

.cloud-right.visible {
  transform: translateX(40px);
}

/* ========== MAIN CONTENT AREA ========== */

.main-content {
  background: linear-gradient(180deg, #fafafa 0%, #f9f8f8 36%, #f4f1ee 45%, #f4f1ee 51%, #e2ecf6 73%, #a7cbf2 125%);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* ========== INTRO ========== */

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 120px 40px 0;
  gap: 20px;
}

.label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--purple);
  line-height: 1;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--purple);
  border-radius: 999px;
  padding: 8px 16px;
  display: inline-block;
}

.intro h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

.intro p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark-muted);
}

/* ========== FEATURE CAROUSEL ========== */

.feature-carousel-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 40px 0 60px;
}

.fc-labels-wrap {
  overflow: visible;
  margin-bottom: 32px;
}

.fc-labels-track {
  display: flex;
  gap: 8px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  width: max-content;
}

.fc-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}

.fc-label svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.fc-label:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.fc-label.active {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.fc-phones-wrap {
  position: relative;
  overflow: visible;
}

.fc-arrow {
  position: absolute;
  top: 260px;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--purple);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.fc-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%) scale(1.08);
}

.fc-arrow-left {
  left: calc(50% - 210px);
}

.fc-arrow-right {
  left: calc(50% + 162px);
}

.fc-phones-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
}

.fc-phones-track.dragging {
  transition: none;
  cursor: grabbing;
}

.fc-phone-slide {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  transition: opacity 0.4s, transform 0.4s;
  opacity: 0.35;
  transform: scale(0.85);
}

.fc-phone-slide.active {
  opacity: 1;
  transform: scale(1);
}

.fc-phone-frame {
  width: 240px;
  height: 519px;
  border-radius: 15px;
  border: 1px solid #c3c3c3;
  background: #0f0f1a;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), inset 0 0 0 2px rgba(255,255,255,0.08);
}

.fc-phone-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #2a2a3e;
  border-radius: 4px;
  z-index: 2;
}

.fc-phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.fc-phone-desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 260px;
  transition: opacity 0.4s;
}

.fc-phone-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  transition: opacity 0.4s;
}

.fc-phone-link:hover {
  text-decoration: underline;
}

.fc-phone-slide:not(.active) .fc-phone-desc,
.fc-phone-slide:not(.active) .fc-phone-link {
  opacity: 0;
}

/* ========== FEATURE OVERVIEW GRID ========== */

.feature-overview-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 40px 20px;
}

.feature-overview-card {
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
  text-decoration: none;
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  align-items: center;
}

.feature-overview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.45);
}

.feature-card-thumb {
  flex: 0 0 120px;
  width: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, rgb(183, 213, 241) 15%, rgb(244, 230, 218) 100%);
  padding: 8px 8px 0;
}

.feature-card-thumb .feature-thumb {
  width: 100%;
  display: block;
  border-radius: 4px 4px 0 0;
  object-fit: cover;
  object-position: top left;
}

.feature-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.feature-overview-card .label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  font-size: 16px;
  letter-spacing: 1.2px;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.feature-overview-card .feature-card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark-muted);
  margin: 0;
}

.feature-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  margin-top: 2px;
}

.feature-overview-card:hover .feature-card-link {
  text-decoration: underline;
}

.feature-thumb-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, rgb(183, 213, 241) 15%, rgb(244, 230, 218) 100%);
  padding: 12px 12px 0;
}

.feature-thumb {
  width: 100%;
  display: block;
  border-radius: 6px 6px 0 0;
  object-fit: cover;
  object-position: top left;
}

/* ========== TESTIMONIALS ========== */

.testimonials-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 40px 60px;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.label-line-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
}

.label-line-header::before,
.label-line-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.testimonials-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
}

.testimonials-track-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial-card {
  flex: 0 0 calc(100% / 3);
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
}

.testimonial-card-inner {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.testimonial-stars {
  color: var(--purple);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-muted);
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
}

.testimonial-title {
  font-size: 13px;
  color: var(--dark-muted);
}

.testimonial-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  color: var(--dark);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.testimonial-arrow:hover {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.testimonial-dot.active {
  background: var(--purple);
}

/* ========== FEATURES ========== */

.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 80px 40px 160px;
  gap: 80px;
}

.feature-block {
  display: flex;
  flex-direction: row;
  gap: 64px;
  width: 100%;
  padding: 0;
  align-items: flex-start;
  scroll-margin-top: 100px;
}

.feature-block.reversed { flex-direction: row-reverse; }

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 50%;
  padding: 32px;
  flex-shrink: 0;
}

.label svg.label-icon {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 4px;
  stroke-width: 2;
  flex-shrink: 0;
}

.feature-text .label {
  margin-bottom: 4px;
  align-self: flex-start;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 4px;
  border-color: var(--purple);
}

.feature-text h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

.feature-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark-muted);
}

.feature-text p strong {
  color: var(--dark);
  font-weight: 700;
}

.feature-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.feature-image-wrap {
  width: 50%;
  flex-shrink: 0;
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(183, 213, 241) 15%, rgb(244, 230, 218) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-image-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 50px #614a440f;
}

/* ========== PRICING ========== */

.pricing-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  scroll-margin-top: 120px;
  background: var(--blue-light);
  overflow: visible;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 56px;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  overflow: visible;
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

.pricing-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: center;
}

.pricing-card {
  flex: 1;
  max-width: 360px;
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple);
}

.pricing-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-muted);
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing-card .price-alt {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing-card .desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark-muted);
  margin-bottom: 24px;
  margin-top: 8px;
}

.pricing-card ul {
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-card ul li {
  font-size: 14px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-muted);
}

.pricing-card ul li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--purple);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

.pricing-card ul li.excluded::before {
  background: rgba(26, 22, 21, 0.2);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pricing-card .btn-primary {
  width: 100%;
  text-align: center;
}

.pricing-card.basic .btn-primary {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
}

.pricing-card.basic .btn-primary:hover {
  border-color: var(--dark);
}

/* ========== FAQs ========== */

.faq-section {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--blue-light);
  overflow: visible;
  scroll-margin-top: 100px;
}

.faq-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.faq-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

.faq-list {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}

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

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--purple);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-question:hover {
  color: var(--purple);
}

.faq-answer {
  padding: 0 0 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-muted);
}

/* ========== FEATURE SUBPAGES ========== */

.feature-page {
  padding-top: 120px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--blue-light) 100%);
  min-height: 60vh;
}

.feature-page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px 60px;
  gap: 20px;
}

.feature-page-header h1 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

.feature-page-header p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark-muted);
}

.feature-page-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.feature-page-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark-muted);
}

@media (max-width: 809px) {
  .feature-page { padding-top: 80px; padding-bottom: 40px; }
  .feature-page-header { padding: 0 16px 40px; }
  .feature-page-header h1 { font-size: 28px; }
  .feature-page-body { padding: 0 16px; }
}

/* ========== CTA ========== */

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 40px;
  gap: 32px;
  width: 100%;
  background: var(--blue-light);
  position: relative;
  overflow: hidden;
}

.cta-section .cloud {
  top: auto;
  bottom: -40px;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 600;
  color: var(--dark);
  z-index: 2;
}

.cta-section .btn-primary {
  z-index: 2;
}

/* ========== FOOTER ========== */

.footer {
  width: 100%;
  background: var(--blue-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px 40px;
}

.footer-card {
  width: 100%;
  max-width: var(--max-w);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 40px;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-brand .footer-logo svg {
  height: 17px;
  width: 103px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-muted);
  margin-bottom: 20px;
}

.footer-brand .btn-primary {
  font-size: 14px;
  padding: 12px 20px;
}

.footer-columns {
  display: flex;
  gap: 64px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--dark-muted);
  transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 0.7; }

.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--dark-muted);
  opacity: 0.6;
}

/* ========== SCROLL ANIMATIONS ========== */

.will-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.will-animate.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */

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

@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .intro h2 { font-size: 36px; }
  .features { gap: 64px; padding: 60px 40px 96px; }
  .feature-block { gap: 40px; }
  .feature-text { width: 50%; min-width: 260px; }
  .feature-image-wrap { min-width: 0; padding: 24px; }
  .feature-overview-grid { grid-template-columns: repeat(2, 1fr); padding: 40px 40px 20px; }
  .pricing-grid { flex-direction: column; align-items: center; }
  .pricing-card { max-width: 440px; width: 100%; }
  .cta-section h2 { font-size: 36px; }
}

@media (max-width: 809px) {
  .nav-outer { padding: 16px; flex-direction: column; align-items: stretch; }
  .nav { padding: 8px; }
  .nav-links-desktop { display: none; }
  .nav-links-mobile {
    display: none;
  }
  .nav-links-mobile.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 8px 16px 16px;
    gap: 0;
    margin-top: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  .nav-links-mobile.open .nav-link {
    width: 100%;
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 15px;
  }
  .nav-links-mobile.open .nav-link:last-of-type {
    border-bottom: none;
  }
  .nav-links-mobile.open .nav-cta-mobile {
    width: 100%;
    text-align: center;
    display: inline-flex !important;
    justify-content: center;
    margin-top: 8px;
  }
  .mobile-toggle { display: flex; }
  .nav-right { display: none; }

  .hero-gradient { padding: 0 16px; }
  .hero { padding-top: 100px; }
  .hero h1 { font-size: 32px; }
  .hero .subtitle { font-size: 15px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; text-align: center; justify-content: center; }
  .hero-image-wrap { margin-top: 40px; }
  .cloud { width: 280px; }
  .cloud-left { left: -240px; }
  .cloud-right { right: -240px; }

  .testimonials-section { padding: 60px 16px 40px; }
  .testimonials-carousel { gap: 8px; }
  .testimonial-card-inner { padding: 24px; }

  .intro { padding: 64px 16px 0; }
  .intro h2 { font-size: 28px; }
  .feature-carousel-section { padding: 24px 0 40px; }
  .fc-labels-track { gap: 6px; }
  .fc-label { font-size: 11px; padding: 6px 14px; }
  .fc-phone-slide { flex: 0 0 220px; }
  .fc-phone-frame { width: 190px; height: 411px; border-radius: 15px; }
  .fc-phone-frame::before { width: 44px; height: 5px; top: 6px; }
  .fc-phone-desc { font-size: 13px; max-width: 200px; }
  .fc-arrow { width: 40px; height: 40px; top: 206px; }
  .fc-arrow svg { width: 16px; height: 16px; }
  .fc-arrow-left { left: calc(50% - 162px); }
  .fc-arrow-right { left: calc(50% + 122px); }
  .feature-overview-grid { grid-template-columns: 1fr; padding: 32px 16px 16px; gap: 12px; }
  .feature-overview-card { padding: 12px; gap: 12px; }
  .feature-thumb-wrap { padding: 8px 8px 0; }
  .features { padding: 40px 16px 64px; gap: 40px; }
  .feature-block,
  .feature-block.reversed { flex-direction: column; gap: 40px; }
  .feature-text { width: 100%; padding: 0; }
  .feature-text h2 { font-size: 26px; }
  .feature-buttons { flex-direction: column; width: 100%; }
  .feature-buttons .btn-primary,
  .feature-buttons .btn-secondary { width: 100%; justify-content: center; }
  .feature-image-wrap { padding: 20px; width: 100%; }

  .pricing-section { padding: 0 16px; }
  .pricing-header h3 { font-size: 26px; }
  .pricing-grid { flex-direction: column; align-items: center; }
  .pricing-card { max-width: 100%; }

  .label-line-header { width: calc(100% + 32px); margin-left: -16px; margin-right: -16px; }
  .faq-section { padding: 60px 16px; }
  .faq-header h2 { font-size: 26px; }
  .faq-question { font-size: 15px; }
  .cta-section { padding: 64px 16px; }
  .cta-section h2 { font-size: 28px; }
  .cta-section .btn-primary { width: 100%; justify-content: center; }

  .footer { padding: 0 16px 24px; }
  .footer-card { padding: 32px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-columns { gap: 32px; }
  .footer-links { flex-direction: column; gap: 12px; }
}

@media (max-width: 550px) {
  .feature-card-thumb { flex: 0 0 45%; width: 45%; }
}
