:root {
  --background: 210 11% 7%;
  --foreground: 160 14% 93%;
  --muted-foreground: 160 14% 93% / 0.7;
  --muted-foreground-light: 160 14% 93% / 0.5;
  --primary: 165 96% 71%;
  --primary-light: 160 48% 87%;
  --primary-dark: 160 100% 50%;
  --primary-foreground: 160 8% 6%;
  --secondary: 160 14% 93%;
  --secondary-foreground: 165 14% 8%;
  --card: 220 17% 98% / 0.01;
  --border: 0 0% 100% / 0.08;
  --accent: 240 2% 25%;
  --accent-foreground: 240 2% 96%;
  --muted: 240 2% 16%;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: hsl(var(--background) / 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  width: auto;
  height: 75px;
  object-fit: contain;
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.nav-links a:hover { color: hsl(var(--foreground)); }

.nav-cta {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}

.nav-cta:hover { opacity: 0.9; background: hsl(var(--secondary) / 0.9); }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  border-radius: 8px;
  transition: background 0.2s;
  padding: 4px;
}

.nav-hamburger:hover { background: hsl(var(--foreground) / 0.07); }

.ham-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: hsl(var(--foreground));
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s, width 0.3s;
  transform-origin: center;
}

.nav-hamburger.open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .ham-bar:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 57px;
  left: 0;
  right: 0;
  z-index: 49;
  background: hsl(var(--background) / 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid hsl(var(--border));
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}

.mobile-menu.open {
  max-height: 500px;
  padding: 60px 24px 24px;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.mobile-menu a {
  display: block;
  font-size: 15px;
  color: hsl(var(--muted-foreground));
  padding: 12px 0;
  border-bottom: 1px solid hsl(var(--border));
  transition: color 0.2s;
}

.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: hsl(var(--foreground)); }

.mobile-menu .mobile-cta {
  display: block;
  margin-top: 16px;
  text-align: center;
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 99px;
  transition: opacity 0.2s;
}

.mobile-menu .mobile-cta:hover { opacity: 0.85; border-bottom: none; }

.mobile-menu .mobile-ecosystem-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 16px;
  max-width: none;
}

.mobile-menu .ecosystem-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.5rem;
  border-bottom: none;
  text-align: center;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
}

/* ── HERO ── */
.hero-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 16px;
}

@media (min-width: 768px) {
  .hero-wrap { padding: 24px 16px; }
}

@media (min-width: 1024px) {
  .hero-wrap { padding: 24px 0; }
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  max-width: 1220px;
  height: 600px;
  background: hsl(var(--background));
}

@media (min-width: 1024px) {
  .hero { height: 810px; }
}

.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  margin-top: 140px;
  max-width: 588px;
  padding: 0 16px;
}

@media (max-width: 767px) {
  .hero-content { margin-top: 40px; max-width: 340px; }
  .hero { height: 450px; }
  div.section-header { padding-left: 0; padding-right: 0; }
  .large-testimonial-quote {
    font-size: 18px;
}
div.large-testimonial-quote {
  font-size: 18px;
}
.faq-section .section-header {
  padding: 0px;
}
section.faq-section {
  padding-top: 0;
}
section.pricing-section .section-header, section.pricing-section {
  padding-top: 0;
}
.bento-section .section-header {
  padding-top: 0;
}
div.cta-inner h2 {
  font-size: 28px;
}
}

@media (min-width: 1024px) {
  .hero-content { margin-top: 160px; }
}

.hero-content h1 {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  margin-bottom: 20px;
}

.hero-content p {
  font-size: clamp(15px, 2vw, 18px);
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 500;
}

.btn-primary {
  display: inline-block;
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  font-size: 15px;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 99px;
  box-shadow: 0 0 0 4px hsl(0 0% 100% / 0.1);
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  background: hsl(var(--secondary) / 0.9);
}

.ecosystem-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  max-width: 360px;
}

.ecosystem-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.5rem;
  border-radius: 10px;
  border: 1px solid hsl(var(--primary) / 0.4);
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary-light));
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.ecosystem-link-btn:hover {
  background: hsl(var(--primary) / 0.22);
  color: hsl(var(--primary));
  transform: translateY(-1px);
}

/* ── SOCIAL PROOF ── */
.social-proof {
  padding: 64px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.social-proof-label {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 900px;
  justify-items: center;
}

@media (max-width: 640px) {
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
}

.logo-placeholder {
  height: 36px;
  width: 120px;
  background: hsl(var(--foreground) / 0.07);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: hsl(var(--muted-foreground));
  opacity: 0.6;
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 56px 20px 30px;
}

.faq-section .section-header {
  padding-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  max-width: 700px;
}

.section-header p {
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  line-height: 1.6;
  max-width: 560px;
}

/* ── BENTO SECTION ── */
.bento-section {
  width: 100%;
  padding: 0 20px 60px;
  position: relative;
}

.bento-glow {
  position: absolute;
  width: 400px;
  height: 938px;
  top: 614px;
  left: 80px;
  background: hsl(var(--primary) / 0.08);
  filter: blur(130px);
  transform: rotate(-33.39deg);
  pointer-events: none;
  z-index: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.bento-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid hsl(var(--border));
  position: relative;
  background: rgba(231, 236, 235, 0.08);
  backdrop-filter: blur(4px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.bento-card:hover {
  border-color: hsl(var(--primary) / 0.2);
  background: hsl(231 236 235 / 0.08);
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, hsl(0 0% 100% / 0.05), transparent);
  pointer-events: none;
}

.bento-card-text {
  padding: 24px;
  position: relative;
  z-index: 1;
}

.bento-card-text h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: hsl(var(--foreground));
  margin-bottom: 8px;
}

.bento-card-text p { font-size: 16px; line-height: 1.6; }

.bento-card-text span {
  font-size: 14px;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  display: block;
}

.bento-visual {
  height: 200px;
  background: hsl(var(--foreground) / 0.04);
  border-top: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  .bento-glow { width: 200px; height: 400px; }
}

@media (max-width: 400px) {
  .bento-glow { display: none; }
}

/* Bento visual illustrations */
.code-block {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  line-height: 1.8;
  color: hsl(var(--foreground) / 0.7);
  padding: 20px;
  width: 100%;
}

.code-green { color: hsl(var(--primary-light)); }
.code-muted { color: hsl(var(--muted-foreground)); }
.code-teal { color: hsl(var(--primary)); }

.ai-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: hsl(var(--primary) / 0.2);
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 99px;
  padding: 3px 10px;
  font-size: 11px;
  color: hsl(var(--primary-light));
  font-weight: 500;
}

.preview-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  position: absolute;
  top: 16px;
  left: 16px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.integration-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.int-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: hsl(var(--foreground) / 0.08);
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.2s, background 0.2s;
}

.int-icon:hover {
  transform: scale(1.1);
  background: hsl(var(--primary) / 0.15);
}

.mcp-nodes {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}

.mcp-node {
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid hsl(var(--primary) / 0.35);
  background: hsl(var(--primary) / 0.1);
  font-size: 11px;
  color: hsl(var(--primary-light));
  font-weight: 500;
}

.agent-list { padding: 20px; display: flex; flex-direction: column; gap: 8px; width: 100%; }

.agent-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: hsl(var(--foreground) / 0.05);
  border: 1px solid hsl(var(--border));
}

.agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--primary-light));
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.agent-label { font-size: 12px; color: hsl(var(--muted-foreground)); flex: 1; }
.agent-status { font-size: 11px; color: hsl(var(--primary-light)); font-weight: 500; }

.deploy-visual { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 20px; }

.deploy-bar {
  width: 100%;
  max-width: 200px;
  height: 6px;
  background: hsl(var(--foreground) / 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.deploy-progress {
  height: 100%;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--primary-light)));
  border-radius: 3px;
  animation: grow 3s ease-in-out infinite;
}

@keyframes grow {
  0% { width: 0; }
  70% { width: 100%; }
  100% { width: 100%; }
}

.deploy-label { font-size: 12px; color: hsl(var(--muted-foreground)); }

.deploy-url {
  font-size: 12px;
  color: hsl(var(--primary-light));
  font-family: 'DM Mono', monospace;
}

/* ── LARGE TESTIMONIAL ── */
.large-testimonial {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.large-testimonial-inner {
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.large-testimonial-quote {
  font-size: clamp(22px, 4vw, 35px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
}

.testimonial-author { display: flex; align-items: center; gap: 16px; }

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: hsl(var(--primary-foreground));
  flex-shrink: 0;
}

.testimonial-name { font-size: 15px; font-weight: 500; }
.testimonial-company { font-size: 13px; color: hsl(var(--muted-foreground)); }

/* ── TESTIMONIAL GRID ── */
.testimonial-section { padding: 0 20px 60px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

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

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

.testimonial-col { display: flex; flex-direction: column; gap: 24px; }

.t-card {
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 4px hsl(0 0% 0% / 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.t-card h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.t-card.teal {
  background: hsl(var(--primary));
  min-height: 440px;
  position: relative;
  overflow: hidden;
}

.t-card.teal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, hsl(var(--primary-dark)) 0%, transparent 60%);
  pointer-events: none;
}

.t-card.teal h2 { color: hsl(var(--primary-foreground)); }

.t-card.light {
  background: rgba(231,236,235,0.12);
  outline: 1px solid hsl(var(--border));
  outline-offset: -1px;
  min-height: 440px;
}

.t-card.light h2 { color: hsl(var(--foreground)); }

.t-card.dark {
  background: hsl(var(--card));
  outline: 1px solid hsl(var(--border));
  outline-offset: -1px;
}

.t-card.dark h2 { color: hsl(var(--foreground)); }

.t-quote {
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.t-card.teal .t-quote {
  font-size: 20px;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
}

.t-card.light .t-quote {
  font-size: 20px;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.t-card.dark .t-quote { color: hsl(var(--foreground) / 0.8); }

.t-author { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
}

.t-card.teal .t-avatar { background: hsl(var(--primary-dark)); color: hsl(var(--primary-foreground)); }
.t-card.light .t-avatar { background: hsl(var(--primary) / 0.2); color: hsl(var(--primary-light)); }
.t-card.dark .t-avatar { background: hsl(var(--foreground) / 0.1); color: hsl(var(--foreground)); }

.t-name { font-size: 14px; font-weight: 500; }
.t-card.teal .t-name { color: hsl(var(--primary-foreground)); }
.t-card.dark .t-name, .t-card.light .t-name { color: hsl(var(--foreground)); }

.t-company { font-size: 13px; }
.t-card.teal .t-company { color: hsl(var(--primary-foreground) / 0.6); }
.t-card.dark .t-company, .t-card.light .t-company { color: hsl(var(--muted-foreground)); }

/* ── PRICING ── */
.pricing-section { padding: 40px 20px 60px; }

.pricing-toggle {
  display: flex;
  align-items: center;
  background: hsl(var(--muted));
  border-radius: 8px;
  padding: 2px;
  gap: 4px;
  margin: 16px auto 0;
}

.toggle-btn {
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  background: transparent;
  color: hsl(var(--muted-foreground));
  transition: all 0.2s;
}

.toggle-btn.active {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 20px;
}

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

.pricing-card {
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-card.popular { background: hsl(var(--primary)); }
.pricing-card.standard {
  background: transparent;
  outline: 1px solid hsl(var(--border));
  outline-offset: -1px;
}

.plan-name { font-size: 14px; font-weight: 500; }
.popular .plan-name { color: hsl(var(--primary-foreground)); }
.standard .plan-name { color: hsl(var(--foreground) / 0.6); }

.popular-badge {
  display: inline-block;
  margin-left: 8px;
  background: hsl(var(--primary-dark) / 0.5);
  border-radius: 99px;
  padding: 2px 8px;
  font-size: 11px;
  color: hsl(var(--primary-foreground));
}

.plan-price {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  margin-top: 8px;
}

.popular .plan-price { color: hsl(var(--primary-foreground)); }
.standard .plan-price { color: hsl(var(--foreground) / 0.9); }

.plan-period { font-size: 13px; color: hsl(var(--muted-foreground)); display: inline; }
.popular .plan-period { color: hsl(var(--primary-foreground) / 0.6); }

.plan-desc { font-size: 13px; margin-top: 4px; }
.popular .plan-desc { color: hsl(var(--primary-foreground) / 0.7); }
.standard .plan-desc { color: hsl(var(--muted-foreground)); }

.plan-btn {
  width: 100%;
  padding: 9px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.plan-btn:hover { opacity: 0.85; }
.plan-btn.free { background: #d4d4d8; color: #18181b; }
.plan-btn.pro { background: hsl(var(--primary-foreground)); color: hsl(var(--primary)); }
.plan-btn.ultra { background: hsl(var(--secondary)); color: hsl(var(--secondary-foreground)); }

.plan-features { display: flex; flex-direction: column; gap: 10px; }
.plan-features-label { font-size: 13px; }
.popular .plan-features-label { color: hsl(var(--primary-foreground) / 0.7); }
.standard .plan-features-label { color: hsl(var(--muted-foreground)); }

.feature-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; }
.check-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.popular .feature-item { color: hsl(var(--primary-foreground)); }
.standard .feature-item { color: hsl(var(--muted-foreground)); }

/* ── FAQ ── */
.faq-section {
  padding: 60px 20px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.faq-glow {
  position: absolute;
  width: 300px;
  height: 500px;
  top: 150px;
  left: 50%;
  transform: translateX(-50%) rotate(-33deg);
  background: hsl(var(--primary) / 0.06);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.faq-list {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: rgba(231,236,235,0.08);
  box-shadow: 0 2px 4px hsl(0 0% 0% / 0.08);
  border-radius: 10px;
  outline: 1px solid hsl(var(--border));
  outline-offset: -1px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: hsl(var(--primary) / 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-question-text {
  font-size: 15px;
  font-weight: 500;
  color: hsl(var(--foreground));
  flex: 1;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: hsl(var(--muted-foreground));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.45s;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 4px 20px 18px;
}

.faq-answer-text {
  font-size: 14px;
  color: hsl(var(--foreground) / 0.75);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .faq-glow { width: 200px; height: 300px; }
}

@media (max-width: 400px) {
  .faq-glow { width: 120px; }
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 80px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: hsl(var(--primary) / 0.08);
  filter: blur(100px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 700px;
}

.cta-inner h2 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-inner p {
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  max-width: 500px;
}

/* ── FOOTER ── */
footer {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  border-top: 1px solid hsl(var(--border));
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: auto;
  height: 75px;
  object-fit: contain;
}

.footer-tagline { font-size: 13px; color: hsl(var(--foreground) / 0.7); }
.footer-social { display: flex; gap: 12px; }

.social-icon {
  width: 18px;
  height: 18px;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.social-icon:hover { color: hsl(var(--foreground)); }

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 640px) {
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 13px; color: hsl(var(--muted-foreground)); font-weight: 500; }
.footer-link { font-size: 13px; color: hsl(var(--foreground)); transition: opacity 0.2s; }
.footer-link:hover { opacity: 0.7; }

/* ── FADE IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
