/* ===== CARDS ===== */

.card {
  background: var(--bg-card);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 30px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

/* ===== BUTTONS ===== */

.primary-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.primary-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.secondary-btn {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-main);
  font-weight: 500;
  transition: var(--transition);
}

.secondary-btn:hover {
  background: var(--bg-card);
  border-color: var(--primary);
}

/* ===== STATUS TEXT ===== */

.status {
  margin-top: 15px;
  font-weight: 600;
  color: var(--text-muted);
}


/* ===== SECTIONS ===== */

.section {
  padding: 90px 20px;
  text-align: center;
}

.section-title {
  font-size: 30px;
  margin-bottom: 40px;
}

/* ===== FEATURE GRID ===== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* ===== STEPS ===== */

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.step span {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary);
}

/* ===== CTA ===== */

.hero-content {
  max-width: 800px;
  margin: auto;
}

.hero-subtext {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.credibility {
  background: #0F172A;
}
/* ===== HERO SPLIT LAYOUT ===== */

.hero {
  padding: 70px 20px 60px 20px;
  background: linear-gradient(135deg, #0B0F14 0%, #111827 100%);
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1;
  text-align: left;
}

/* HEADLINE */
.hero-text h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 520px;
}

.hero-highlight {
  color: #2563EB;
  font-weight: 500;
}

/* DESCRIPTION */
.hero-description {
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* CTA */
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  justify-content: flex-start; /* keeps them aligned nicely with text */
}

/* SUBTEXT */
.hero-subtext {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-muted);
}

/* IMAGE */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.4),
    0 0 40px rgba(37,99,235,0.15);
}
/* ===== CTA SECTION ===== */

.cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0B0F14 0%, #111827 100%);
  text-align: center;
}

.cta-inner {
  max-width: 800px;
  margin: auto;
}

.cta h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 18px;
}

.cta-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.cta-btn {
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    justify-content: center;
  }
}
/* =========================
   LEGAL PAGES
========================= */

.legal-page {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0B0F14 0%, #111827 100%);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  color: #e5e7eb;
}

.legal-container h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.legal-effective {
  opacity: 0.7;
  margin-bottom: 40px;
}

.legal-container h2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.legal-container p,
.legal-container li {
  line-height: 1.7;
  font-size: 14px;
  color: var(--text-muted);
}

.legal-container ul {
  padding-left: 20px;
}
/* =========================
   SUPPORT PAGE
========================= */

.support-hero {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0B0F14 0%, #111827 100%);
  text-align: center;
}

.support-inner {
  max-width: 900px;
  margin: 0 auto;
}

.support-subtext {
  margin-top: 20px;
  color: var(--text-muted);
}

.support-card {
  margin-top: 40px;
  background: #0F172A;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 30px;
}

.support-email {
  font-weight: 600;
  color: #2563EB;
}
.report-wrapper {
  background: #0f172a;
  padding: 20px;
  border-radius: 12px;
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.report-wrapper h3 {
  margin-top: 20px;
  font-size: 16px;
  color: #38bdf8;
}

.window-block {
  background: #111827;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
}
/* =========================
   NAVIGATION ACTIVE STATE
========================= */

.nav-links a {
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-active {
  font-weight: 600;
  color: #ffffff;
}

.nav-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.trust-section{
padding:60px 20px;
background:#0B0F14;
text-align:center;
}

.trust-title{
font-size:20px;
margin-bottom:40px;
font-weight:600;
color:#333;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
}

.users-section{
padding:80px 20px;
background:#0B0F14;
text-align:center;
}

.users-title{
font-size:32px;
margin-bottom:10px;
}

.users-sub{
max-width:700px;
margin:0 auto 50px;
color:#555;
}

.users-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.user-card{
padding:25px;
border-radius:12px;
background:#111827;
border:1px solid rgba(255,255,255,0.06);
box-shadow:0 6px 18px rgba(0,0,0,0.4);
}

.user-icon{
font-size:28px;
margin-bottom:10px;
}

@media(max-width:900px){
.founder-grid{
grid-template-columns:1fr;
}
}
.founder-section{
padding:90px 20px;
background:#0B0F14;
}

.founder-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.founder-image img{
width:100%;
border-radius:12px;
}

.founder-content{
max-width:520px;
}

.founder-content h2{
font-size:32px;
margin-bottom:20px;
}

.founder-intro{
font-weight:600;
margin-bottom:18px;
}

.founder-content p{
margin-bottom:16px;
color:var(--text-muted);
}

@media(max-width:900px){
.founder-grid{
grid-template-columns:1fr;
text-align:center;
}
}
.trust-item{
background:#111827;
padding:25px;
border-radius:10px;
border:1px solid rgba(255,255,255,0.06);
box-shadow:0 8px 24px rgba(0,0,0,0.4);
}

.trust-number{
font-size:22px;
font-weight:700;
margin-bottom:10px;
color:#2563eb;
}

.trust-item p{
color: #cbd5f5;
}