:root {
  --bg: #07111f;
  --bg2: #0b1e38;
  --card: #101d2e;
  --line: #23364e;
  --text: #eaf4ff;
  --muted: #cbd5e1;
  --brand: #35d5ff;
  --brand2: #38f0a9;
  --gold: #ffd166;
  --shadow: 0 28px 70px rgba(0,0,0,0.35);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 15% 10%, #183d70 0, #07111f 36%, #030812 100%);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

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

.wrap {
  width: min(1160px, 92%);
  margin: auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 12, 24, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navin {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.5px;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
}

.logo-img-large {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 16px;
  object-fit: contain;
}

.mark {
  display: none;
}

.links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
}

.links a:hover {
  color: var(--brand);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #03101f;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 15px 35px rgba(53, 213, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn:hover::after {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 45px rgba(53, 213, 255, 0.4);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn.secondary {
  background: #13243a;
  color: #eaf4ff;
  border: 1px solid #2a4260;
  box-shadow: none;
}

.btn.secondary:hover {
  background: #1a2f4a;
  border-color: var(--brand);
  color: var(--brand);
}

/* Hero */
.hero {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(53, 213, 255, 0.1) 0%, transparent 70%);
  z-index: -1;
  animation: float 10s infinite alternate ease-in-out;
}

@keyframes float {
  from { transform: translate(0, 0); }
  to { transform: translate(-20px, 30px); }
}

.grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid #2a4465;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 18px;
  border-radius: 999px;
  color: #d8eaff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(53, 213, 255, 0.2); }
  70% { box-shadow: 0 0 0 10px rgba(53, 213, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 213, 255, 0); }
}

.hero h1 {
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: -3px;
  font-weight: 900;
}

.grad {
  background: linear-gradient(135deg, #fff, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 40px;
}

.actions {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.badge svg {
  color: var(--brand2);
}

/* Machine / Visual */
.scene {
  position: relative;
}

.machine {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.machine .preview-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.machine .preview-content {
  padding: 24px;
  min-height: 400px;
}

.machine .stepsbar {
  padding: 0 24px 24px;
  margin: 0;
}

.stepsbar {
  display: flex;
  gap: 8px;
}

.mini {
  flex: 1;
  height: 6px;
  background: var(--line);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.mini::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--brand);
  transition: transform 1s ease;
}

.mini.active::after {
  left: 0;
}

.preview {
  background: #030812;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.preview.hidden, .visual-state.hidden {
  display: none;
}

.transform-visual {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030812;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.visual-state {
  width: 100%;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pdf-icon svg {
  width: 64px;
  height: 64px;
  color: var(--brand);
  margin-bottom: 20px;
}

.loader {
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 10px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.loader::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--brand);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  to { left: 100%; }
}

.data-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.row-line {
  height: 10px;
  background: var(--line);
  border-radius: 5px;
  width: 100%;
}

.row-line:nth-child(2) { width: 80%; }
.row-line:nth-child(3) { width: 90%; }

.xml-code {
  background: #0b1e38;
  padding: 15px;
  border-radius: 8px;
  color: var(--brand2);
  font-family: monospace;
  font-size: 14px;
  margin-bottom: 20px;
  border-left: 3px solid var(--brand2);
}

.tally-success .check {
  width: 64px;
  height: 64px;
  background: var(--brand2);
  color: #03101f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(56, 240, 169, 0.4);
}

.preview::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(53, 213, 255, 0.1), transparent);
  pointer-events: none;
}

.preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.machine:hover .preview img {
  transform: scale(1.05);
}

/* Sections */
.section {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.center {
  text-align: center;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  transition: letter-spacing 0.3s ease;
}

.section:hover h2 {
  letter-spacing: -1px;
}

.muted {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: var(--radius);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.card:hover::before {
  opacity: 0.05;
}

.num {
  width: 44px;
  height: 44px;
  background: rgba(53, 213, 255, 0.1);
  color: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.card:hover .num {
  transform: rotate(10deg) scale(1.1);
  background: var(--brand);
  color: #03101f;
}

/* Bank Grid */
.bank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.bank-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.bank-card:hover {
  border-color: var(--brand);
  transform: translateY(-5px);
  background: rgba(53, 213, 255, 0.05);
}

.bank-icon {
  width: 60px;
  height: 60px;
  background: var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: var(--brand);
  transition: all 0.3s ease;
}

.bank-card:hover .bank-icon {
  background: var(--brand);
  color: #03101f;
  transform: scale(1.1);
}

.bank-card span {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

/* Security Section */
.security-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-icon svg {
  width: 160px;
  height: 160px;
  color: var(--brand2);
  filter: drop-shadow(0 0 30px rgba(56, 240, 169, 0.3));
  animation: shieldPulse 4s infinite alternate ease-in-out;
}

@keyframes shieldPulse {
  from { transform: scale(1); filter: drop-shadow(0 0 20px rgba(56, 240, 169, 0.2)); }
  to { transform: scale(1.05); filter: drop-shadow(0 0 50px rgba(56, 240, 169, 0.5)); }
}

.lock-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(56, 240, 169, 0.1) 0%, transparent 70%);
  z-index: -1;
}

/* Testimonials */
.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial p {
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.user-info {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.user-name {
  font-weight: 900;
  color: #fff;
  font-size: 15px;
}

.user-role {
  font-size: 13px;
  color: var(--brand);
  font-weight: 700;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--bg2), #030812);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

/* Workflow Layout */
.workflow-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
  text-align: left;
}

.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-item.active {
  background: var(--card);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.step-item .num {
  margin: 0;
  flex-shrink: 0;
}

.step-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.step-item.active h3 {
  color: var(--brand);
}

.step-item p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* Workflow Preview */
.workflow-preview {
  perspective: 1000px;
}

.preview-card {
  background: #030812;
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  animation: cardFloat 6s infinite alternate ease-in-out;
}

@keyframes cardFloat {
  from { transform: rotateY(-5deg) rotateX(5deg); }
  to { transform: rotateY(5deg) rotateX(-5deg); }
}

.preview-header {
  padding: 14px 20px;
  background: #0b1e38;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-header span[class^="dot-"] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.preview-title {
  margin-left: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.preview-content {
  padding: 30px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hidden { display: none !important; }

/* Mock Styles */
.mock-pdf {
  width: 100%;
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 4px;
  font-family: serif;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.pdf-header {
  font-weight: 900;
  font-size: 18px;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.pdf-meta { font-size: 10px; margin-bottom: 20px; }

.pdf-table { width: 100%; }
.pdf-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.pdf-row.head { font-weight: 700; border-bottom: 2px solid #ddd; }

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(53, 213, 255, 0.2), transparent);
  border-bottom: 2px solid var(--brand);
  animation: scan 3s infinite linear;
}

@keyframes scan {
  from { top: -10%; }
  to { top: 110%; }
}

.extract-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  color: #fff;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.extract-table th {
  text-align: left;
  color: var(--brand);
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.extract-table td { padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }

.mock-xml pre {
  margin: 0;
  color: var(--brand2);
  font-size: 12px;
  text-align: left;
}

.mock-tally { position: relative; width: 100%; height: 100%; }
.mock-tally img { width: 100%; height: 100%; object-fit: contain; }

.success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 16, 31, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.4s ease;
}

.success-pop {
  background: var(--brand2);
  color: #03101f;
  padding: 16px 32px;
  border-radius: 99px;
  font-weight: 900;
  box-shadow: 0 20px 40px rgba(56, 240, 169, 0.4);
  transform: scale(0);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.2s;
}

@keyframes popIn { to { transform: scale(1); } }

@media (max-width: 900px) {
  .workflow-container { grid-template-columns: 1fr; }
  .workflow-preview { order: -1; }
  .preview-content { height: 300px; }
}

/* Enhanced Mock Data Styles */
.mock-data {
  width: 100%;
  height: 100%;
  background: var(--card);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.extraction-layer {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 80%;
  opacity: 0.15;
  background: #fff;
  padding: 15px;
  border-radius: 4px;
  filter: blur(1px);
  pointer-events: none;
}

.csv-overlay {
  position: relative;
  z-index: 2;
  width: 90%;
  background: rgba(16, 29, 46, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--brand);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation: overlayPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes overlayPop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.extraction-header {
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.extraction-header span {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.csv-badge {
  background: var(--brand);
  color: #03101f;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
}

.extract-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.extract-table th {
  background: rgba(255,255,255,0.02);
  text-align: left;
  padding: 10px 12px;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--line);
}

.extract-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  color: #fff;
}

.type-pay { color: #ff5f56; font-weight: 700; }
.type-rec { color: #27c93f; font-weight: 700; }

.row-anim {
  opacity: 0;
  transform: translateX(-10px);
}

/* Animation trigger for Hero Section */
#hero-mock-2:not(.hidden) .row-anim {
  animation: rowReveal 0.5s ease forwards;
}

/* Animation trigger for Workflow Section */
#mock-2:not(.hidden) .row-anim {
  animation: rowReveal 0.5s ease forwards;
}

.row-anim:nth-child(1) { animation-delay: 0.1s; }
.row-anim:nth-child(2) { animation-delay: 0.3s; }
.row-anim:nth-child(3) { animation-delay: 0.5s; }
.row-anim:nth-child(4) { animation-delay: 0.7s; }
.row-anim:nth-child(5) { animation-delay: 0.9s; }

@keyframes rowReveal {
  to { opacity: 1; transform: translateX(0); }
}

.extraction-footer {
  margin-top: auto;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

.mini-btn {
  background: var(--line);
  color: #fff;
  border: 0;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

/* Social Floats */
.social-floats {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 8px 8px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateX(calc(100% - 48px));
}

.float-btn:hover {
  transform: translateX(0);
}

.float-btn.whatsapp { background: #25d366; }
.float-btn.telegram { background: #0088cc; }

.icon-circle {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .social-floats {
    bottom: 20px;
    right: 20px;
  }
  .float-btn {
    transform: translateX(0);
    padding: 8px;
  }
  .float-btn span { display: none; }
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 24px 32px;
  border-radius: var(--radius);
}

.faq-item h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #fff;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

/* Footer */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #030812;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.foot-logo {
  margin-bottom: 24px;
}

.foot-desc {
  color: var(--muted);
  font-size: 15px;
  max-width: 300px;
}

.foot-col h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 24px;
}

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

.foot-links a {
  color: var(--muted);
  font-size: 14px;
}

.foot-links a:hover {
  color: var(--brand);
}

.bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero h1 {
    letter-spacing: -1.5px;
  }
  .lead {
    margin: 0 auto 40px;
  }
  .actions {
    justify-content: center;
  }
  .badges {
    justify-content: center;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 0 80px;
  }
  .actions {
    flex-direction: column;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
