/* ==========================================
   CUSTOM PROPERTIES
   Atualizar em /gerar-design
   ========================================== */

:root {
  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Cores: Dark Technical Blueprint */
  --color-bg: #0A0A0B;
  --color-surface: #18181B;
  --color-primary: #F1E41A;
  --color-primary-glow: rgba(241, 228, 26, 0.5);
  --color-accent: #F59E0B;
  --color-text: #FAFAFA;
  --color-text-muted: #A1A1AA;
  --color-border: rgba(255, 255, 255, 0.05);
  --color-grid: rgba(255, 255, 255, 0.03);

  /* Spacing */
  --section-py: clamp(5rem, 10vw, 8rem);
  --container-px: clamp(1.5rem, 5vw, 2.5rem);
  --container-max: 1280px;

  /* Utils */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ==========================================
   RESET
   ========================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Scrollbar Customizada */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: var(--color-bg);
}

body::-webkit-scrollbar-thumb {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}

/* ==========================================
   LAYOUT
   ========================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

/* ==========================================
   FORMS
   ========================================== */

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(241, 228, 26, 0.1);
}

.form-input.error {
  border-color: var(--color-error);
}

.form-feedback {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: none;
}

.form-feedback.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-feedback.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* intl-tel-input */
.iti {
  width: 100%;
}

.iti__flag-container,
.iti__selected-flag,
.iti__flag,
.iti__arrow {
  display: none !important;
  width: 0 !important;
  visibility: hidden !important;
}

.iti input,
.iti__tel-input {
  padding-left: 1rem !important;
}


/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
  font-size: 32px;
  color: #fff;
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ==========================================
   VIDEO CARDS (Reels Style)
   ========================================== */
.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  background: #000;
}

.video-card:hover {
  transform: scale(1.02);
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(50%);
  transition: all 0.5s ease;
}

.video-card:hover iframe {
  filter: grayscale(0%);
}

/* Gradient Overlay */
.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  opacity: 0.9;
  z-index: 10;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.video-card:hover::after {
  opacity: 0.7;
}

/* Content */
.video-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  z-index: 20;
  transform: translateY(0.5rem);
  transition: transform 0.5s ease;
}

.video-card:hover .video-card-content {
  transform: translateY(0);
}

/* FACADE PATTERN & THUMBNAILS */
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(50%);
}

.video-card:hover .video-thumb {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 25;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.play-overlay i {
  font-size: 4rem;
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  animation: pulse-play 2s ease-in-out infinite;
}

@keyframes pulse-play {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.video-card.is-playing .video-thumb,
.video-card.is-playing .play-overlay,
.video-card.is-playing .video-card-content,
.video-card.is-playing::after {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 40;
  /* Above everything when playing */
  border: none;
}

/* Custom Theme Hover Colors */
.video-card.theme-primary:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 40px -10px rgba(241, 228, 26, 0.3);
}

.video-card.theme-accent:hover {
  border-color: var(--color-accent);
  box-shadow: 0 10px 40px -10px rgba(245, 158, 11, 0.3);
}

.video-card.theme-cyan:hover {
  border-color: #22d3ee;
  box-shadow: 0 10px 40px -10px rgba(34, 211, 238, 0.3);
}

/* Glass Badge */
.glass-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.iti__country-list {
  z-index: 100;
}

/* ==========================================
   UTILITIES
   ========================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-muted {
  color: var(--color-text-muted);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-10 {
  z-index: 10;
}

.overflow-hidden {
  overflow: hidden;
}

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

.mb-4 {
  margin-bottom: 1rem;
}

.text-white {
  color: var(--color-text);
}

.text-accent {
  color: var(--color-error);
  font-style: italic;
}

/* Red for 'Aposta' */
.text-mono {
  font-family: var(--font-mono);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #000;
  border: 1px solid var(--color-primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-primary);
  box-shadow: 0 0 20px var(--color-primary-glow);
}

.btn-lg {
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 160px;
  padding-bottom: 120px;
  background: radial-gradient(circle at center, #131316 0%, var(--color-bg) 70%);
  overflow: hidden;
  position: relative;
  will-change: transform;
}

/* Grid Background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--color-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-grid) 1px, transparent 1px);
  background-size: 50px 50px;
  /* Grade mais fina */
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  pointer-events: none;
}

.hero-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%), rgba(241, 228, 26, 0.08), transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* Decorations */
.deco-cross {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 5;
}

.deco-cross::before,
.deco-cross::after {
  content: '';
  position: absolute;
  background: var(--color-text-muted);
  opacity: 0.3;
}

.deco-cross::before {
  width: 1px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.deco-cross::after {
  width: 100%;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
}

.top-left {
  top: 40px;
  left: 40px;
}

.top-right {
  top: 40px;
  right: 40px;
}

.bottom-left {
  bottom: 40px;
  left: 40px;
}

.bottom-right {
  bottom: 40px;
  right: 40px;
}

/* Content */
.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--color-primary);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

/* Glitch Effect */
.glitch {
  position: relative;
  display: inline-block;
}

/* ==========================================
   STATS BLUEPRINT SECTION
   ========================================== */
.stats-container {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.stat-icon-wrapper {
  margin-bottom: 1rem;
  opacity: 0.8;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:hover .stat-icon-wrapper {
  transform: scale(1.2);
  opacity: 1;
}

/* ==========================================
   MODAL
   ========================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 10;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #131316;
  /* Fallback */
  background: linear-gradient(145deg, #18181B 0%, #0c0c0e 100%);
}

.modal.is-open .modal-content {
  transform: translateY(0) scale(1);
}

/* Form Styles Override for Modal */
.modal .form-input {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.modal .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.modal .form-input:focus {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: var(--color-primary);
}

.modal select.form-input option {
  background-color: var(--color-surface);
  color: white;
}

/* ==========================================
   CLIENTS SECTION
   ========================================== */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  overflow-x: hidden;
}

.clients-ticker {
  padding: 40px 0;
  width: 100%;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  position: relative;
  z-index: 20;
}

.label-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #52525B;
  letter-spacing: 0.1em;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
  display: inline-flex;
  gap: 4rem;
  animation: scroll 30s linear infinite;
}

.ticker-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  white-space: nowrap;
}

.clients-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.clients-ticker:hover .ticker-item {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Initial States for Animation */
.hero-kicker,
.hero-headline .line-wrapper,
.hero-subheadline,
.hero-cta-wrapper {
  opacity: 0;
  /* Controlled by GSAP but set here to avoid flash */
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.problem-section {
  background: #0E0E10;
  /* Slightly lighter than hero */
  border-bottom: 1px solid var(--color-border);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 6rem);
  align-items: center;
}

@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
}

.text-lg {
  font-size: 1.125rem;
}

.space-y-4 p {
  margin-bottom: 1rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.gap-2 {
  gap: 0.5rem;
}

.text-sm {
  font-size: 0.875rem;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.05em;
}

.text-highlight {
  position: relative;
  color: #fff;
  z-index: 1;
}

.text-highlight::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 2px;
  height: 8px;
  background: var(--color-error);
  /* Red highlight */
  z-index: -1;
  opacity: 0.6;
  transform: rotate(-1deg);
}

/* Graph Visual */
.problem-visual {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.01);
}

.graph-container {
  position: relative;
  height: 300px;
  width: 100%;
}

.graph-grid.horizontal {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border);
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.graph-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.3));
}

.graph-line {
  stroke: #ef4444;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 500;
  stroke-dashoffset: 0;
  /* Start visible for animation */
  -webkit-animation: pulseLine 2s ease-in-out infinite;
  animation: pulseLine 2s ease-in-out infinite;
}

@-webkit-keyframes pulseLine {

  0%,
  100% {
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 2px #ef4444);
    filter: drop-shadow(0 0 2px #ef4444);
  }

  50% {
    opacity: 0.6;
    -webkit-filter: drop-shadow(0 0 10px #ef4444);
    filter: drop-shadow(0 0 10px #ef4444);
  }
}

@keyframes pulseLine {

  0%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 2px #ef4444);
  }

  50% {
    opacity: 0.6;
    filter: drop-shadow(0 0 10px #ef4444);
  }
}

.bg-accent\/10 {
  background: rgba(245, 158, 11, 0.1);
}

/* Graph Axis Labels */
.graph-axis-y {
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.graph-axis-x {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rounded {
  border-radius: 4px;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.text-xs {
  font-size: 0.75rem;
}

/* ==========================================
   SOLUTION SECTION (Bento Box)
   ========================================== */
.mb-16 {
  margin-bottom: 4rem;
}

.mt-4 {
  margin-top: 1rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Card 1 is full width on top (actually let's make it span 2 cols) */
.card-large {
  grid-column: span 2;
}

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

  .card-large {
    grid-column: span 1;
  }
}

.bento-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 228, 26, 0.4);
  box-shadow: 0 10px 40px -10px rgba(241, 228, 26, 0.15);
}

.card-bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at top right, rgba(241, 228, 26, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover .card-bg-glow {
  opacity: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.card-text {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.border-primary-glow {
  border-color: rgba(241, 228, 26, 0.2);
  box-shadow: 0 0 20px rgba(241, 228, 26, 0.05);
}

/* ==========================================
   DIFFERENTIALS SECTION (Accordion)
   ========================================== */
.mb-12 {
  margin-bottom: 3rem;
}

.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .accordion-wrapper {
    flex-direction: row;
    height: 300px;
    /* Reduced height as requested */
  }
}

.accordion-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;

  /* Desktop: flex initialization */
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 900px) {
  .accordion-item:hover {
    flex: 2.5;
    /* Slightly less aggressive expansion since no image */
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--color-primary);
  }
}

@media (min-width: 900px) {
  .accordion-item {
    justify-content: space-between;
  }
}

.acc-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
  white-space: normal;
  width: 100%;
}

.acc-title {
  font-family: var(--font-body);
  font-weight: 600;
  margin-left: 0;
  margin-right: auto;
  line-height: 1.2;
}

.acc-number {
  order: -1;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-text-muted);
  opacity: 0.3;
}

@media (min-width: 900px) {
  .acc-content {
    opacity: 0;
    max-height: 0;
    transition: all 0.5s ease;
  }

  .accordion-item:hover .acc-content {
    opacity: 1;
    max-height: 200px;
    margin-top: 1rem;
  }
}



.accordion-item:hover .acc-number {
  color: var(--color-primary);
  -webkit-text-stroke: 0;
  opacity: 1;
}

.acc-title {
  font-family: var(--font-body);
  font-weight: 600;
  margin-left: 1rem;
  margin-right: auto;
}

/* ==========================================
   SOCIAL PROOF
   ========================================== */
.border-b {
  border-bottom-width: 1px;
}

.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}

.grid {
  display: grid;
}

.gap-8 {
  gap: 2rem;
}

.block {
  display: block;
}

.font-bold {
  font-weight: 700;
}

.p-8 {
  padding: 2rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.p-6 {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md\:block {
    display: block;
  }

  .hidden {
    display: none;
  }

  /* Vertical Divider */
  .divider-v {
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
}

/* ==========================================
   TIMELINE (How It Works)
   ========================================== */
.max-w-3xl {
  max-width: 48rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.pl-8 {
  padding-left: 2rem;
}

.w-px {
  width: 1px;
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-white\/20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.rounded-full {
  border-radius: 9999px;
}

.border-accent {
  border-color: var(--color-accent);
}

.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke;
  transition-duration: 300ms;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

/* Ensure timeline line is visible */
.timeline-line {
  height: 100%;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.15) !important;
  width: 2px !important;
  left: 0.5rem !important;
  /* Add some space on mobile */
}

@media (min-width: 768px) {
  .timeline-line {
    left: 50% !important;
  }
}

.timeline-progress {
  background: var(--color-primary) !important;
  width: 100% !important;
  box-shadow: 0 0 12px var(--color-primary-glow), 0 0 20px var(--color-primary);
  transition: height 0.1s linear;
}

@media (min-width: 768px) {
  .md\:left-1\/2 {
    left: 50%;
  }

  .md\:-ml-px {
    margin-left: -1px;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:text-right {
    text-align: right;
  }

  .md\:pr-12 {
    padding-right: 3rem;
  }

  .md\:pl-0 {
    padding-left: 0;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:pl-12 {
    padding-left: 3rem;
  }

  .md\:-ml-2 {
    margin-left: -0.5rem;
  }
}

/* ==========================================
   TESTIMONIALS & FAQ
   ========================================== */
.bg-white\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}

.gap-6 {
  gap: 1.5rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.bg-surface {
  background-color: var(--color-surface);
}

.hover\:border-primary\/30:hover {
  border-color: rgba(241, 228, 26, 0.3);
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.bg-primary\/20 {
  background-color: rgba(241, 228, 26, 0.2);
}

.bg-accent\/20 {
  background-color: rgba(245, 158, 11, 0.2);
}

.bg-slate-700 {
  background-color: #334155;
}

.font-serif {
  font-family: serif;
}

.text-white\/5 {
  color: rgba(255, 255, 255, 0.05);
}

.cursor-pointer {
  cursor: pointer;
}

.list-none {
  list-style: none;
}

.list-none::-webkit-details-marker {
  display: none;
}

.group-open\:rotate-180 {
  transform: rotate(0deg);
  transition: transform 0.2s;
}

details[open] .group-open\:rotate-180 {
  transform: rotate(180deg);
}

/* ==========================================
   CTA & FOOTER
   ========================================== */
.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.opacity-20 {
  opacity: 0.2;
}

.pointer-events-none {
  pointer-events: none;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.w-2 {
  width: 0.5rem;
}

.h-2 {
  height: 0.5rem;
}

.w-3 {
  width: 0.75rem;
}

.h-3 {
  height: 0.75rem;
}

.w-1 {
  width: 0.25rem;
}

.h-1 {
  height: 0.25rem;
}

.top-1\/4 {
  top: 25%;
}

.left-1\/4 {
  left: 25%;
}

.top-3\/4 {
  top: 75%;
}

.right-1\/4 {
  right: 25%;
}

.bottom-1\/4 {
  bottom: 25%;
}

.left-1\/2 {
  left: 50%;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* ==========================================
   TECH FOOTER
   ========================================== */
.tech-footer {
  background: #050505;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

/* Ruler Pattern Decoration */
.tech-border-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: linear-gradient(90deg,
      var(--color-border) 1px,
      transparent 1px);
  background-size: 20px 100%;
  opacity: 0.5;
}

.tech-border-top::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg,
      var(--color-primary) 1px,
      transparent 1px);
  background-size: 100px 100%;
  /* Bigger ticks every 100px */
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

  .footer-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: end;
    /* Align content to the right on desktop for balance */
  }
}

.footer-logo {
  height: 5rem;
  margin-bottom: 1rem;
}

.footer-info .info-item {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .footer-info .info-item {
    margin-bottom: 0;
    text-align: right;
  }

  .footer-info .info-item .flex {
    justify-content: flex-end;
  }
}

.footer-bottom {
  margin-top: 4rem;
}

/* ==========================================
   MODAL
   ========================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  z-index: 1;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
}

.modal.is-open .modal-content {
  transform: translateY(0) scale(1);
}