@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --dark: #1E3A5F;
  --text: #1a1a2e;
  --muted: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--font-inter);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url("../../static/images/Hero-01-Bg.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 0;
}

/* Blur blobs for depth */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.hero-blob--1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.7);
  top: -10%;
  right: -5%;
}

.hero-blob--2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.5);
  bottom: -8%;
  left: -5%;
}

.hero-blob--3 {
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.4);
  top: 40%;
  left: 30%;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: #0d1b2e;
  max-width: 600px;
  margin: 0 auto 16px;
  letter-spacing: -0.01em;
}

.hero-subtext {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 28px;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  line-height: 1;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border-radius: 24px;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: #1a1a2e;
  color: #ffffff;
  border-radius: 24px;
}

.btn-secondary::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-secondary:hover {
  background: #0d0d1f;
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 0px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-trust-item::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

/* ===== Mockup ===== */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.hero-mockup-wrap {
  position: relative;
  max-width: 780px;
  width: 100%;
  overflow: hidden;
  margin-top: 8px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.hero-mockup-main {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-mockup-main img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}


@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtext {
    font-size: 15px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: center;
  }

  .hero-trust {
    gap: 8px 16px;
  }

  .hero-mockup {
    margin-top: 32px;
  }

  .hero-blob {
    opacity: 0.3;
  }

  .hero-blob--1 {
    width: 300px;
    height: 300px;
  }

  .hero-blob--2 {
    width: 250px;
    height: 250px;
  }

  .hero-blob--3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .btn {
    font-size: 0.875rem;
    padding: 10px 22px;
  }
}

/* ===== NAV STYLES ===== */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  z-index: 999;
  padding: 16px 0;
}
.lp-nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.landing-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 0 32px;
  height: 68px;
}
.landing-nav-left {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
}
.landing-logo {
  font-weight: 700;
  font-size: 18px;
  color: #0d1b2e;
  text-decoration: none;
}
.landing-logo-icon {
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-pill {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  padding: 4px 4px;
  backdrop-filter: blur(10px);
}
.nav-pill a {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: #0d1b2e;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-pill a:hover,
.nav-pill a.active {
  background: rgba(255,255,255,0.6);
}
.lp-nav.scrolled .nav-pill {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
}
.landing-nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}
.landing-nav-right .nav-link-login {
  text-decoration: none;
  color: #0d1b2e;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.landing-nav-right .nav-link-login:hover {
  color: var(--primary);
}
.landing-nav-right .nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 999px;
  transition: all 0.2s;
}
.landing-nav-right .nav-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .nav-pill,
  .landing-nav-right {
    display: none;
  }
  .nav-pill.open,
  .landing-nav-right.open {
    display: flex;
  }
  .nav-pill.open {
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: #ffffff;
    border-color: rgba(0,0,0,0.1);
    border-radius: 12px;
    width: 100%;
    backdrop-filter: none;
  }
  .nav-pill.open a {
    padding: 10px 16px;
    width: 100%;
    border-radius: 8px;
  }
  .nav-pill.open a:hover {
    background: rgba(0,0,0,0.04);
  }
  .scrolled .nav-pill.open {
    background: #ffffff;
    border-color: rgba(0,0,0,0.1);
  }
  .landing-nav-right.open {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
    align-items: stretch;
  }
  .landing-nav-right.open .nav-btn {
    text-align: center;
    justify-content: center;
  }
  .landing-nav-inner {
    flex-wrap: wrap;
  }
  .landing-nav-menu-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    margin-top: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .lp-nav.scrolled .landing-nav-menu-wrap {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .landing-nav-menu-wrap:not(.open) {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
.landing-nav-menu-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
}

/* ===== FOOTER STYLES ===== */
.lp-footer {
  padding: 40px 24px;
  background: #f0f4ff;
}

.lf-box {
  position: relative;
  max-width: 1250px;
  margin: 0 auto;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.25);
  padding: 48px;
  overflow: hidden;
}

.lf-box-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 15%, rgba(255, 255, 255, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 20% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
}

.lp-footer a {
  text-decoration: none;
  transition: color 0.2s;
}

/* --- CTA --- */
.lf-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.lf-cta-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
}

.lf-cta-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.lf-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #2563eb;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lf-cta-btn:hover {
  background: #f0f9ff;
  color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* --- Divider --- */
.lf-divider {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 40px 0;
}

/* --- Grid --- */
.lf-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.lf-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
}

.lf-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lf-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.lf-links a:hover {
  color: #ffffff;
}

/* --- Bottom --- */
.lf-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.lf-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.lf-legal {
  display: flex;
  gap: 24px;
}

.lf-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.lf-legal a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .lp-footer {
    padding: 24px 16px;
  }

  .lf-box {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .lf-cta {
    flex-direction: column;
    text-align: center;
  }

  .lf-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lf-divider {
    margin: 32px 0;
  }

  .lf-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== HOW IT WORKS ===== */
#how-it-works {
  padding: 80px 40px;
  background: #ffffff;
  text-align: center;
}
.how-it-works-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #2563eb;
  font-weight: 600;
}
.how-it-works-title {
  font-size: 36px;
  font-weight: 700;
  color: #0d1b2e;
  margin-top: 8px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
}
.step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  text-align: left;
}
.step-illus {
  background: #eff6ff;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
/* Upload illustration */
.upload-box {
  border: 2px dashed #2563eb;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.upload-label {
  font-size: 11px;
  color: #2563eb;
  font-weight: 500;
}
.file-chip {
  background: #ffffff;
  border: 1px solid #2563eb;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 10px;
  color: #0d1b2e;
  font-weight: 500;
}
/* Review illustration */
.review-illus {
  flex-direction: column;
  gap: 0;
  padding: 16px 20px;
  height: 140px;
  justify-content: center;
}
.review-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid #e2e8f0;
  gap: 8px;
}
.review-row:last-child {
  border-bottom: none;
}
.review-row span:first-child {
  flex: 1;
  color: #0d1b2e;
}
.review-row span:nth-child(2) {
  font-weight: 600;
  color: #0d1b2e;
}
.tag {
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
}
.tag.mapped {
  background: #dbeafe;
  color: #2563eb;
}
.tag.pending {
  background: #fef9c3;
  color: #ca8a04;
}
/* Post illustration */
.post-illus {
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px;
  height: 140px;
}
.bridge-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #2563eb;
}
.bridge-dot {
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.queue-bar {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}
.queue-fill {
  width: 75%;
  height: 100%;
  background: #2563eb;
  border-radius: 999px;
}
.queue-label {
  font-size: 11px;
  color: #64748b;
}
/* Verify illustration */
.verify-illus {
  flex-direction: column;
  gap: 0;
  padding: 16px 20px;
  height: 140px;
  justify-content: center;
}
.verify-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 6px 0;
  color: #0d1b2e;
}
.verify-item .verify-icon {
  width: 18px;
  text-align: center;
  font-size: 13px;
  flex-shrink: 0;
}
.verify-item.verified .verify-icon {
  color: #2563eb;
}
.verify-item.rolled-back .verify-icon {
  color: #f59e0b;
}
/* Card bottom half */
.step-card-body {
  padding: 20px 24px;
}
.step-badge {
  width: 28px;
  height: 28px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title {
  font-size: 16px;
  font-weight: 600;
  color: #0d1b2e;
  margin: 12px 0 6px;
}
.step-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
/* Connector arrows */
.step-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: #cbd5e1;
  font-size: 20px;
  z-index: 2;
}
.step-card:last-child .step-arrow {
  display: none;
}
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .step-arrow {
    display: none;
  }
}
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== WHO IT'S FOR — SPLIT REDESIGN ===== */
.uc-split {
  padding: 100px 24px 120px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}

.uc-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ─── LEFT COLUMN ─── */
.uc-visual-col {
  position: relative;
}

.uc-visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.15);
}

.uc-main-image {
  display: block;
  width: 100%;
  height: auto;
}

.uc-image-shine {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Floating cards */
.uc-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 150px;
}

.uc-float-card--stats {
  top: 12%;
  left: -8%;
  animation: uc-floatUp 5s ease-in-out infinite;
}

.uc-float-card--accuracy {
  bottom: 12%;
  right: -8%;
  animation: uc-floatUp 5s ease-in-out infinite 1.2s;
}

.uc-float-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 2px;
}

.uc-float-number {
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.uc-float-accent {
  color: #2563eb;
}

.uc-float-desc {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

@keyframes uc-floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── RIGHT COLUMN ─── */
.uc-content-col {
  max-width: 520px;
}

.uc-label-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #bfdbfe;
  background: rgba(219, 234, 254, 0.5);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1d4ed8;
}

.uc-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
}

.uc-split .uc-title {
  margin-top: 20px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.02em;
  max-width: none;
  text-align: left;
}

.uc-subtitle {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
}

/* ─── Feature Cards ─── */
.uc-feature-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uc-feat-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.uc-feat-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.10);
  border-color: #dbeafe;
}

.uc-feat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.uc-feat-card:hover .uc-feat-icon {
  background: #2563eb;
  color: #ffffff;
}

.uc-feat-title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.uc-feat-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ─── CTA ─── */
.uc-split .uc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding: 14px 32px;
  border-radius: 12px;
  background: #2563eb;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px -4px rgba(37, 99, 235, 0.35);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.uc-split .uc-cta:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -4px rgba(37, 99, 235, 0.45);
}

.uc-cta-arrow {
  transition: transform 0.3s ease;
}

.uc-split .uc-cta:hover .uc-cta-arrow {
  transform: translateX(4px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .uc-split-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .uc-visual-col {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .uc-content-col {
    max-width: 100%;
  }

  .uc-float-card--stats {
    left: -4%;
  }

  .uc-float-card--accuracy {
    right: -4%;
  }
}

@media (max-width: 640px) {
  .uc-split {
    padding: 60px 16px 80px;
  }

  .uc-split .uc-title {
    font-size: 28px;
  }

  .uc-float-card {
    min-width: 120px;
    padding: 12px 16px;
  }

  .uc-float-number {
    font-size: 24px;
  }

  .uc-float-card--stats {
    top: 6%;
    left: -2%;
  }

  .uc-float-card--accuracy {
    bottom: 6%;
    right: -2%;
  }

  .uc-feat-card {
    padding: 14px 16px;
  }

  .uc-split .uc-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ===== CORE FEATURES — 3x2 Grid ===== */
.cf-section {
  position: relative;
  padding: 100px 24px 120px;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
}

.cf-ornament {
  pointer-events: none;
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, transparent 70%);
}

.cf-header {
  max-width: 640px;
  margin: 0 auto;
}

.cf-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2563eb;
  font-weight: 700;
  background: rgba(37,99,235,0.08);
  padding: 6px 20px;
  border-radius: 999px;
}

.cf-title {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.cf-sub {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ─── Grid ─── */
.cf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 52px auto 0;
}

/* ─── Card ─── */
.cf-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(24px);
}

.cf-in-view .cf-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 80ms);
  transition-duration: 0.5s;
  transition-property: opacity, transform, box-shadow, border-color;
}

.cf-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 48px -12px rgba(37,99,235,0.15);
  border-color: #dbeafe;
}

/* ─── Visual area ─── */
.cf-card-visual {
  aspect-ratio: 16 / 9;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid #f1f5f9;
}

/* ─── Card body ─── */
.cf-card-body {
  padding: 24px 24px 28px;
}

.cf-card-label {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.cf-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.cf-card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ─── Illustration: Parse chips ─── */
.cf-illus--parse {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.cf-chip-row {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cf-chip-icon {
  flex-shrink: 0;
}

.cf-chip-row span:nth-child(2) {
  flex: 1;
  color: #0f172a;
}

.cf-chip-status {
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.cf-chip-done {
  color: #059669;
}

.cf-chip-proc {
  color: #2563eb;
}

/* ─── Illustration: Bridge ─── */
.cf-illus--bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cf-bridge-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cf-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.cf-box-lx {
  background: #eff6ff;
  color: #2563eb;
}

.cf-box-t {
  background: #fef3c7;
  color: #d97706;
}

.cf-bridge-arrow {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cf-bridge-arrow span {
  width: 6px;
  height: 6px;
  background: #2563eb;
  border-radius: 50%;
}

.cf-bridge-arrow span:nth-child(2) { opacity: 0.5; }
.cf-bridge-arrow span:nth-child(3) { opacity: 0.2; }

.cf-bridge-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #059669;
}

.cf-bridge-dot {
  width: 7px;
  height: 7px;
  background: #059669;
  border-radius: 50%;
  animation: cf-pulse 1.5s infinite;
}

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

/* ─── Illustration: Grid ─── */
.cf-illus--grid {
  width: 100%;
  font-size: 11px;
}

.cf-g-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.7fr;
  gap: 6px;
  padding: 6px 0;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
}

.cf-g-row:last-child { border-bottom: none; }

.cf-g-header {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
}

.cf-g-ledger {
  background: #f1f5f9;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 10px;
}

.cf-g-ph { color: #94a3b8; }

.cf-g-badge {
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}

.cf-g-mapped {
  background: #dbeafe;
  color: #2563eb;
}

.cf-g-pending {
  background: #fef9c3;
  color: #ca8a04;
}

/* ─── Illustration: Ledger Map ─── */
.cf-illus--map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.cf-map-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-map-line {
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
  margin: 4px 0;
}

.cf-map-node {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 4px 14px;
  font-size: 11px;
  color: #0f172a;
}

.cf-map-rule {
  margin-top: 4px;
  font-size: 10px;
  color: #64748b;
  font-style: italic;
  background: #f8fafc;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ─── Illustration: GST ─── */
.cf-illus--gst {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.cf-gst-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #334155;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
}

.cf-gst-row:last-child { border-bottom: none; }

.cf-gst-tag {
  background: #2563eb;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.cf-gst-val {
  font-weight: 600;
  color: #0f172a;
}

/* ─── Illustration: Export ─── */
.cf-illus--export {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.cf-exp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #f1f5f9;
}

.cf-exp-row:last-child { border-bottom: none; }

.cf-exp-icon {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.cf-exp-icon.csv { background: #dcfce7; color: #16a34a; }
.cf-exp-icon.xls { background: #dbeafe; color: #2563eb; }
.cf-exp-icon.pdf { background: #fee2e2; color: #dc2626; }
.cf-exp-icon.json { background: #f3e8ff; color: #9333ea; }

.cf-exp-check {
  color: #059669;
  font-size: 13px;
  font-weight: 700;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .cf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cf-section {
    padding: 60px 16px 80px;
  }

  .cf-title {
    font-size: 28px;
  }

  .cf-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SUPPORTED BANKS — Symmetric Grid ===== */
#banks {
  padding: 80px 40px;
  background: #f8fafc;
  text-align: center;
}

.bn-header {
  max-width: 640px;
  margin: 0 auto 48px;
}

.bn-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #2563eb;
  font-weight: 600;
}

.bn-title {
  font-size: 36px;
  font-weight: 700;
  color: #0d1b2e;
  margin-top: 8px;
}

.bn-sub {
  font-size: 15px;
  color: #64748b;
  margin-top: 8px;
}

/* ─── Grid ─── */
.bn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

/* ─── Bank Logo Items ─── */
.bn-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: default;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bn-search {
  display: block;
  margin: 0 auto 32px;
  width: 100%;
  max-width: 380px;
  padding: 11px 20px;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.bn-search:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.bn-item img {
  width: 80px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.bn-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.bn-item:hover {
  border-color: #dbeafe;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.08);
}

.bn-item span {
  font-size: 11px;
  color: #64748b;
  text-align: center;
  font-weight: 500;
}

/* ─── Center Hero Card ─── */
.bn-hero {
  background: #ffffff;
  border: 2px solid #bfdbfe;
  border-radius: 16px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.bn-hero:hover {
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.14);
  border-color: #2563eb;
}

.bn-hero-count {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.bn-hero-plus {
  color: #2563eb;
}

.bn-hero-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
}

.bn-hero-desc {
  font-size: 10px;
  color: #94a3b8;
  margin: 2px 0 0;
}

.bn-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background: #2563eb;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bn-hero-btn:hover {
  background: #1d4ed8;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ─── Footer note ─── */
.bn-more {
  font-size: 13px;
  color: #64748b;
  text-align: center;
  margin-top: 32px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  #banks {
    padding: 60px 20px;
  }

  .bn-title {
    font-size: 28px;
  }

  .bn-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 600px;
  }

  .bn-item:nth-child(n+11) { display: none; }
}

@media (max-width: 520px) {
  .bn-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .bn-item:nth-child(n+8) { display: none; }
  .bn-item:nth-child(8) { display: none; }
  .bn-item:nth-child(9) { display: none; }

  .bn-hero {
    padding: 16px 10px;
  }

  .bn-hero-count {
    font-size: 26px;
  }
}

/* ===== SECURITY & TRUST ===== */
#security {
  padding: 80px 40px;
  background: #0d1b2e;
  text-align: center;
}

.sec-header {
  max-width: 640px;
  margin: 0 auto;
}

.sec-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #60a5fa;
  font-weight: 600;
}

.sec-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 8px;
}

.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 48px auto 0;
}

.sec-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}

.sec-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 179, 237, 0.4);
}

.sec-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sec-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.sec-card-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

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

@media (max-width: 768px) {
  #security {
    padding: 60px 20px;
  }

  .sec-title {
    font-size: 28px;
  }

  .sec-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PRICING ===== */
#pricing {
  padding: 80px 40px;
  background: #f8fafc;
  text-align: center;
}

.pr-header {
  max-width: 640px;
  margin: 0 auto;
}

.pr-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #2563eb;
  font-weight: 600;
}

.pr-title {
  font-size: 36px;
  font-weight: 700;
  color: #0d1b2e;
  margin-top: 8px;
}

.pr-sub {
  font-size: 15px;
  color: #64748b;
  margin-top: 8px;
}

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

.pr-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  position: relative;
}

.pr-card--featured {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  border: none;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
  transform: scale(1.04);
}

.pr-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 14px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pr-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.pr-icon--free,
.pr-icon--firm {
  background: #f1f5f9;
}

.pr-icon--pro {
  background: rgba(255, 255, 255, 0.2);
}

.pr-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #64748b;
}

.pr-name--light {
  color: rgba(255, 255, 255, 0.8);
}

.pr-price {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin: 12px 0 4px;
  color: #0d1b2e;
}

.pr-price--light {
  color: #ffffff;
}

.pr-suffix {
  font-size: 16px;
  font-weight: 400;
  color: #64748b;
  vertical-align: middle;
}

.pr-suffix--light {
  color: rgba(255, 255, 255, 0.9);
}

.pr-desc {
  font-size: 13px;
  margin: 12px 0 24px;
  color: #64748b;
}

.pr-desc--light {
  color: rgba(255, 255, 255, 0.75);
}

.pr-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 0 0 24px;
}

.pr-divider--light {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.pr-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pr-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.pr-feat--on {
  color: #374151;
}

.pr-feat--off {
  color: #cbd5e1;
}

.pr-feat--pro {
  color: #ffffff;
}

.pr-check,
.pr-cross {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.pr-check {
  background: #dbeafe;
  color: #2563eb;
}

.pr-check--pro {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.pr-cross {
  background: #f1f5f9;
  color: #cbd5e1;
}

.pr-btn {
  display: block;
  margin-top: 28px;
  width: 100%;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
  box-sizing: border-box;
}

.pr-btn--free {
  background: transparent;
  border: 1.5px solid #2563eb;
  color: #2563eb;
}

.pr-btn--free:hover {
  background: #eff6ff;
}

.pr-btn--pro {
  background: #ffffff;
  color: #2563eb;
  border: none;
}

.pr-btn--pro:hover {
  background: #f0f9ff;
}

.pr-btn--firm {
  background: #2563eb;
  color: #ffffff;
  border: none;
}

.pr-btn--firm:hover {
  background: #1d4ed8;
}

.pr-footnote {
  margin-top: 32px;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}

@media (max-width: 1024px) {
  .pr-grid {
    gap: 20px;
  }

  .pr-card--featured {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  #pricing {
    padding: 60px 20px;
  }

  .pr-title {
    font-size: 28px;
  }

  .pr-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .pr-card--featured {
    transform: scale(1);
  }
}

/* ===== FAQ ===== */
#faq {
  padding: 80px 40px;
  background: #f9fafb;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.faq-dots span {
  position: absolute;
  display: block;
  background: rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  will-change: transform, opacity;
  animation: faq-float ease-in-out infinite alternate;
}

@keyframes faq-float {
  0% {
    transform: translateY(0);
    opacity: 0.4;
  }
  100% {
    transform: translateY(-32px);
    opacity: 1;
  }
}

.faq-header {
  max-width: 640px;
  margin: 0 auto 48px;
}

.faq-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #2563eb;
  font-weight: 600;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #0d1b2e;
  margin-top: 8px;
}

.faq-sub {
  font-size: 15px;
  color: #64748b;
  margin-top: 8px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.faq-q:hover {
  color: #2563eb;
}

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

.faq-q::-moz-list-bullet {
  list-style: none;
}

.faq-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: #9ca3af;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.faq-toggle::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(0deg);
}

.faq-toggle::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%) rotate(0deg);
}

details[open] .faq-toggle::before {
  transform: translateY(-50%) rotate(45deg);
}

details[open] .faq-toggle::after {
  transform: translateX(-50%) rotate(45deg);
}

.faq-a {
  padding: 0 0 22px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  max-width: 680px;
}

@media (max-width: 768px) {
  #faq {
    padding: 60px 20px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-q {
    padding: 18px 0;
    font-size: 15px;
    gap: 12px;
  }

  .faq-a {
    font-size: 14px;
  }
}
