/* AutoForge Landing - Refined */
:root {
  --bg: #050505;
  --bg2: #0c0c0c;
  --bg3: #131313;
  --bg-card: rgba(20, 20, 20, 0.6);
  --orange: #ff5b14;
  --orange2: #ff7a3d;
  --orange3: #ffb347;
  --orange-soft: rgba(255, 91, 20, 0.15);
  --orange-glow: rgba(255, 91, 20, 0.45);
  --white: #f5f0eb;
  --gray: #8a8580;
  --gray2: #4a4540;
  --border: rgba(255, 255, 255, 0.06);
  --border-hot: rgba(255, 91, 20, 0.25);
  --font-display: "Oswald", "Inter", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(255, 91, 20, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255, 91, 20, 0.05), transparent 60%);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--orange); color: #fff; }

/* Grid texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 1;
}
body > * { position: relative; z-index: 2; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--orange-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--gray);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::before { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 11px 22px;
  border-radius: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(255, 91, 20, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange2) 0%, var(--orange3) 100%);
  opacity: 0;
  transition: opacity 0.25s;
}
.nav-cta > * { position: relative; z-index: 1; }
.nav-cta:hover::after { opacity: 1; }
.nav-cta:hover { box-shadow: 0 6px 28px rgba(255, 91, 20, 0.45), inset 0 1px 0 rgba(255,255,255,0.2); transform: translateY(-1px); }

/* SUBBAR */
.subbar {
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 32px;
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gray2);
  letter-spacing: 0.5px;
}
.subbar .dot { color: var(--orange); }

/* HERO */
.hero {
  max-width: none;
  margin: 0;
  padding: 160px 48px 100px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  right: -300px;
  bottom: -100px;
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(255, 91, 20, 0.22) 0%, transparent 55%);
  pointer-events: none;
  filter: blur(60px);
  animation: float 10s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(60px, 8.5vw, 140px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: none;
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}
.hero-headline em {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 200;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  display: inline-block;
  color: #c0bab4;
  -webkit-text-fill-color: #c0bab4;
}
.hero-headline .hl-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 80px rgba(255, 91, 20, 0.4);
  filter: drop-shadow(0 0 30px rgba(255, 91, 20, 0.4));
}

.hero-desc {
  font-size: 19px;
  line-height: 1.65;
  color: #b8b0a8;
  font-weight: 300;
  max-width: 760px;
  margin: 0 auto;
}
.hero-desc strong { color: var(--white); font-weight: 600; }
.hero-desc-sub {
  margin-top: 18px;
  font-size: 13px;
  color: var(--gray);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

.hero-ctas {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats-strip {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  padding: 4px;
}
.hero-stat-i {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 32px;
  border-right: 1px solid var(--border);
  font-family: var(--font-mono);
  min-width: 140px;
  text-align: center;
}
.hero-stat-i:last-child { border-right: none; }
.hero-stat-i .hero-stat-label {
  font-size: 10px;
  color: var(--gray2);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-stat-i .hero-stat-value {
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
}
.hero-stat-i .hero-stat-value.orange { color: var(--orange); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 17px 32px;
  border-radius: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 30px rgba(255, 91, 20, 0.3), inset 0 1px 0 rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { box-shadow: 0 12px 40px rgba(255, 91, 20, 0.5), inset 0 1px 0 rgba(255,255,255,0.25); transform: translateY(-2px); }

.btn-secondary {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
  padding: 17px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); background: rgba(255, 91, 20, 0.05); }

/* TICKER */
.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(90deg, transparent, var(--bg2) 15%, var(--bg2) 85%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  white-space: nowrap;
  position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 40s linear infinite;
  font-family: var(--font-mono);
}
.ticker-track span { font-size: 11px; letter-spacing: 3px; color: var(--gray2); }
.ticker-track span.sep { color: var(--orange); font-size: 8px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTION BASE */
section { padding: 96px 48px; max-width: 1240px; margin: 0 auto; }
.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-tag::after {
  content: '';
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title em {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 200;
  text-transform: lowercase;
  color: var(--gray);
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 0.5px;
  margin-bottom: 48px;
  font-family: var(--font-mono);
}

/* VIDEO DEMO */
.demo-section { max-width: 1240px; }
.video-wrap {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.video-frame {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-hot);
  box-shadow: 0 0 80px rgba(255,91,20,0.18), 0 40px 80px rgba(0,0,0,0.6);
  position: relative;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.video-caption {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  max-width: 500px;
}
.video-caption-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 10px;
}

/* MINI-DEMOS */
.mini-demos-section { max-width: 1100px; }
.mini-demo-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 48px;
}
.mini-demo-item {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  grid-template-areas: "text media";
  gap: 48px;
  align-items: start;
}
.mini-demo-text {
  grid-area: text;
  align-self: start;
}
.mini-demo-placeholder {
  grid-area: media;
  align-self: start;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,91,20,0.3);
  background: #0f0f0f;
  box-shadow: 0 0 60px rgba(255,91,20,0.08), inset 0 0 40px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}
.mini-demo-placeholder iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.mini-demo-placeholder:not(:has(iframe)) {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0f0f 0%, #111116 100%);
}
/* pares: vídeo à esquerda, texto à direita */
.mini-demo-item:nth-child(even) {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  grid-template-areas: "media text";
}
.mini-demo-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.mini-demo-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--light);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.mini-demo-desc {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.mini-demo-placeholder:not(:has(iframe))::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,91,20,0.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,91,20,0.03) 40px);
}
.mdp-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 28px;
}
.mdp-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,91,20,0.5);
  background: rgba(255,91,20,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 20px;
  padding-left: 4px;
  margin-bottom: 4px;
}
.mdp-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--gray);
  letter-spacing: 1.5px;
}
.mdp-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray2);
  max-width: 300px;
  line-height: 1.6;
  border-top: 1px dashed rgba(255,91,20,0.2);
  padding-top: 12px;
}

/* ARSENAL */
.arsenal-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.arsenal-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.arsenal-card:hover { border-color: var(--border-hot); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.arsenal-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255,91,20,0.08) 0%, var(--bg-card) 60%);
  border-color: var(--border-hot);
  position: relative;
}
.arsenal-card.featured::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--orange) 0%, transparent 60%);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
}
.arsenal-card.wide { grid-column: span 3; }
.arsenal-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.arsenal-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
  line-height: 1.05;
}
.arsenal-desc { font-size: 14.5px; color: #a8a098; line-height: 1.65; }
.arsenal-desc strong { color: var(--white); }

.capcut-preview {
  margin-top: 28px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray);
  line-height: 2;
}
.capcut-preview .ok { color: var(--orange); }
.capcut-preview .label { color: #6b7280; }

/* PRICING */
.pricing-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 44px 36px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
.plan.featured {
  background: linear-gradient(180deg, rgba(255,91,20,0.08), var(--bg-card));
  border-color: var(--orange);
  box-shadow: 0 0 40px rgba(255,91,20,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
  transform: scale(1.02);
}
.plan.featured:hover { transform: scale(1.02) translateY(-4px); box-shadow: 0 24px 60px rgba(255,91,20,0.25); }
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,91,20,0.4);
  white-space: nowrap;
}
.plan-tier {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 3px;
  color: var(--gray2);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.plan-period {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
}
.plan-price {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray) 120%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan.featured .plan-price {
  background: linear-gradient(180deg, var(--orange3) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan-per {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 36px;
  font-family: var(--font-mono);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
  flex: 1;
}
.plan-features li {
  font-size: 14px;
  color: #b8b0a8;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.plan-features li::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
}
.plan-features li strong { color: var(--white); font-weight: 600; }
.plan-cta {
  display: block;
  text-align: center;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.25s ease;
  text-transform: uppercase;
  background: rgba(0,0,0,0.3);
}
.plan-cta:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,91,20,0.05); }
.plan.featured .plan-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,91,20,0.3), inset 0 1px 0 rgba(255,255,255,0.18);
}
.plan.featured .plan-cta:hover { box-shadow: 0 10px 32px rgba(255,91,20,0.5); transform: translateY(-1px); }

/* FAQ */
#faq { text-align: center; }
#faq .section-tag { margin-left: auto; margin-right: auto; }
.faq-list { margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; max-width: 900px; text-align: left; }
.faq-item {
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--border-hot); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 15.5px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
  font-family: var(--font-body);
}
.faq-q-text { flex: 1; }
.faq-q:hover { color: var(--orange); }
.faq-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; color: var(--orange); flex-shrink: 0; }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--orange);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, border-color 0.25s;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--orange); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 28px 26px 70px; font-size: 14.5px; color: #a8a098; line-height: 1.75; }
.faq-a-inner strong { color: var(--white); }
.faq-item.open .faq-a { max-height: 400px; }

/* FINAL CTA */
.final-cta { padding: 160px 48px; text-align: center; border-top: 1px solid var(--border); max-width: 100%; position: relative; overflow: hidden; }
.final-cta-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,91,20,0.18) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(30px);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
}
.final-cta h2 em {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 200;
  text-transform: lowercase;
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
}
.final-cta-lead { font-size: 18px; color: #b8b0a8; margin-bottom: 40px; position: relative; max-width: 600px; margin-left: auto; margin-right: auto; }
.final-cta-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray);
  margin-top: 32px;
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  letter-spacing: 0.5px;
  position: relative;
}
.final-cta-sub span { display: flex; align-items: center; gap: 8px; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 80px 48px 40px; background: var(--bg2); }
.footer-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
.footer-brand-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: 2px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.footer-brand-name::before { content: ''; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 12px var(--orange-glow); }
.footer-brand-name span { color: var(--orange); }
.footer-brand-desc { font-size: 13.5px; color: var(--gray); line-height: 1.7; max-width: 320px; }
.footer-col-title { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 3px; color: var(--gray2); text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13.5px; color: var(--gray); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { max-width: 1240px; margin: 56px auto 0; padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 11px; color: var(--gray2); letter-spacing: 0.5px; }

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.1) rotate(-5deg); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .arsenal-card.featured { grid-column: span 3; }
}
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .subbar { padding: 0 20px; }
  .hero { padding: 130px 20px 60px; }
  .hero-stats-strip { flex-direction: row; flex-wrap: wrap; }
  .hero-stat-i { min-width: 50%; padding: 14px 20px; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat-i:nth-last-child(-n+2) { border-bottom: none; }
  section { padding: 90px 20px; }
  .pricing-section { padding: 90px 20px; }
  .mini-demo-item,
  .mini-demo-item:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "media";
    gap: 24px;
  }
  .mini-demo-placeholder { aspect-ratio: 16 / 9; }
  .arsenal-grid { grid-template-columns: 1fr; }
  .arsenal-card.featured, .arsenal-card.wide { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-4px); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .final-cta { padding: 100px 20px; }
  footer { padding: 60px 20px 30px; }
}
@media (max-width: 600px) {
  .hero-headline { letter-spacing: -0.03em; }
  .footer-inner { grid-template-columns: 1fr; }
  .faq-a-inner { padding-left: 28px; padding-right: 28px; }
}
/* ADDITIONS — copy disclaimers / notes */
.arsenal-footnote {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gray2);
  letter-spacing: 0.3px;
  line-height: 1.5;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.pricing-note {
  margin-top: 36px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--gray);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  letter-spacing: 0.3px;
}
.footer-disclaimer {
  margin-top: 24px;
  padding: 18px 24px 0;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray2);
  line-height: 1.7;
  letter-spacing: 0.3px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
