/* =========================
   GLOBAL THEME (DARK VERAFYE)
========================= */
:root {
    --primary: #1E73BB;
    --primary-glow: #1E73BB;
    --bg-dark: #0b1220;
    --bg-darker: #0a0f1a;
    --card-dark: #111827;
    --text-light: #e5e7eb;
    --text-muted: #94a3b8;
    --border-dark: rgba(255,255,255,0.08);
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
  }
  
  body {
    background: radial-gradient(circle at 50% -20%, #132238 0%, #0b1220 40%, #0a0f1a 100%);
    color: var(--text-light);
    line-height: 1.6;
  }
  
  /* =========================
     LAYOUT
  ========================= */
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
  }
  
 
  
  /* =========================
     NAVBAR
  ========================= */
  header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 15, 26, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark);
    z-index: 1000;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }
  
  nav a {
    text-decoration: none;
    color: var(--text-muted);
    margin-left: 24px;
    font-size: 14px;
    transition: 0.3s ease;
  }
  
  nav a:hover {
    color: #fff;
  }
  
  /* =========================
     BUTTONS
  ========================= */
  .btn {
    background: linear-gradient(90deg, var(--primary), var(--primary-glow));
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 transparent;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 25px rgba(59,130,246,0.35);
  }
  
  /* =========================
     HERO
  ========================= */
  .hero {
    padding-top: 160px;
    text-align: center;
  }
  
  .badge {
    display: inline-block;
    border: 1px solid var(--primary);
    padding: 10px 16px;
    border-radius: 999px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 24px;
    font-size: 18px;
  }
  
  .hero h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  
  .hero h1 span {
    color: var(--primary);
  }
  
  .hero p {
    color: var(--text-muted);
    max-width: 820px;
    margin: auto;
    margin-bottom: 36px;
    font-size: 18px;
  }
  
  /* =========================
     SECTION TITLES
  ========================= */
  h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 16px;
  }
  
  .muted {
    color: var(--text-muted);
    text-align: center;
  }
  
  /* =========================
     CARDS (DARK)
  ========================= */
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 50px;
  }
  
  .card {
    background: linear-gradient(145deg, #111827, #0e1626);
    padding: 28px;
    border-radius: 14px;
    border: 1px solid var(--border-dark);
    transition: 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-6px);
    border-color: rgba(59,130,246,0.4);
  }
  
  .card h3 {
    margin-bottom: 12px;
    font-size: 20px;
  }
  
  /* =========================
     STATS SECTION
  ========================= */
  .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
  }
  
  .stat {
    background: linear-gradient(145deg, #101a2b, #0d1524);
    padding: 28px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid var(--border-dark);
  }
  
  .stat h2 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 8px;
  }
  
  /* =========================
     LIGHT ALT SECTION FIX
  ========================= */
  section[style*="background:#f3f4f6"] {
    background: linear-gradient(180deg, #0f172a 0%, #0b1220 100%) !important;
  }
  
  /* =========================
     CTA SECTION
  ========================= */
  section[style*="linear-gradient"] {
    background: linear-gradient(135deg, #172554, #1e3a8a) !important;
    text-align: center;
  }
  
  section[style*="linear-gradient"] h2,
  section[style*="linear-gradient"] p {
    color: #fff;
  }
  
  /* =========================
     FOOTER
  ========================= */
  footer {
    border-top: 1px solid var(--border-dark);
    padding: 50px 0;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
  }
  
  /* =========================
     ANIMATIONS
  ========================= */
  .fade-in {
    padding: 0px 150px;
    animation: fadeIn 1s ease forwards;
    opacity: 0;
  }
  
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  
  /* =========================
     RESPONSIVE
  ========================= */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 34px;
    }

  }
  
  .btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
  }
  
  .btn-arrow:hover .arrow-icon {
    transform: translateX(5px);
  }
  
  a:hover{
    text-decoration: none;
  }
  .section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #d1d5db, transparent);
    margin: 50px auto;
    max-width: 1100px;
  }
  /* ===== TRUST SECTION ===== */
.trust-section {
    padding: 0px 20px 50px;
    color: #cbd5e1;
    text-align: center;
  }
  
  .trust-section h3 {
    color: #ffffff;

  
  }
  
  .trust-section p {
    max-width: 850px;
    margin: 0 auto 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #94a3b8;
  }
  
  /* Logos row */
  .trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  /* Individual logos */
  .compliance-logo {
    height: 64px;
    width: auto;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .compliance-logo:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .trust-section h3 {
      font-size: 28px;
    }
  
    .trust-section p {
      font-size: 16px;
    }
  
    .compliance-logo {
      height: 70px;
    }
  }
  
  /* ===== FEATURE STRIP (ICON TEXT BAR) ===== */
.feature-strip {
    background: linear-gradient(to bottom, #111c27, #0c1621);
    padding: 70px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  
  .feature-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 17px;
    font-weight: 500;
  }
  
  .feature-item i {
    font-size: 22px;
    color: #3b82f6; /* blue icons */
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .feature-strip-inner {
      justify-content: center;
      text-align: center;
      gap: 20px;
    }
  
    .feature-item {
      width: 100%;
      justify-content: center;
      font-size: 15px;
    }
  }

  .solutions{
    margin-top: 10px;
  }
  
  /* ===== CORE CHALLENGES SECTION ===== */
.challenges-section {
    padding: 90px 0;
    color: #e2e8f0;
    text-align: center;
  }
  
  .challenges-header .tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    color: #cbd5e1;
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .challenges-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
  }
  
  .challenges-header p {
    max-width: 820px;
    margin: auto;
    color: #94a3b8;
    font-size: 17px;
    line-height: 1.7;
  }
  .challenges-wrapper {
    max-width: 1400px;    
    margin: 0 auto;
    padding: 0 40px;    
  }
  
  
  .challenges-grid {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   /* This centers the last row */
    gap: 32px;
  }
  
  /* Make cards behave like a 3-column grid */
  .challenge-card {
    flex: 0 1 calc(33.333% - 22px); /* 3 per row with gap balance */
    max-width: 420px;
  }
  
  
  
  
  /* Card */
  .challenge-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 20px;
    border-radius: 16px;
    text-align: left;
    transition: 0.3s ease;
  }
  
  .challenge-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59,130,246,0.4);
  }
  
  /* Icon box */
  .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
    color: #60a5fa;
  }
  
  .icon-box.red { color: #ef4444; }
  .icon-box.blue { color: #38bdf8; }
  
  .challenge-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #f1f5f9;
  }
  
  .challenge-card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .challenges-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .challenges-grid {
      grid-template-columns: 1fr;
    }
  
    .challenges-header h2 {
      font-size: 30px;
    }
  }
  
  @media (max-width: 992px) {
    .challenge-card {
      flex: 0 1 calc(50% - 16px); /* 2 per row */
    }
  }
  
  @media (max-width: 600px) {
    .challenge-card {
      flex: 0 1 100%; /* 1 per row */
    }
  
    .challenges-header h2 {
      font-size: 30px;
    }
  }

  /* ===== IMPACT SECTION ===== */
.impact-section {
    background: linear-gradient(to bottom, #111c27, #0c1621);
    padding: 100px 0;
  }
  
  .impact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
  }
  
  .impact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  
  /* LEFT */
  .impact-left {
    flex:520px;
  }
  
  .impact-stats {
    flex: 0 1 520px;
  }
  
  .impact-left .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59,130,246,0.1);
    color: #60a5fa;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .impact-left h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #f1f5f9;
    text-align: left;
  }
  
  .impact-left p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  
   
  /* RIGHT STATS */
  .impact-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 24px;
  }
  
  .stat-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 18px;
    border-radius: 18px;
  }
  
  .stat-box i {
    font-size: 22px;
    color: #38bdf8;
    margin-bottom: 12px;
  }
  
  .stat-box h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #60a5fa;
    margin-bottom: 6px;
  }
  
  .stat-box p {
    color: #94a3b8;
    font-size: 14px;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .impact-card {
      flex-direction: column;
      text-align: center;
    }
  
    .impact-left {
      max-width: 100%;
    }
  
    .impact-stats {
      width: 100%;
    }
  }

 
  
  .engine-section {
    padding: 50px 20px;
    color: #cbd5e1;
    text-align: center;
  }
  
  .engine-header {
    max-width: 720px;
    margin: 0 auto 60px;
  }
  
  .engine-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 18px 0;
  }
  
  .engine-header p {
    font-size: 18px;
    color: #9aa4b2;
  }
  
  /* pill badge */
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  /* cards */
  .engine-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .engine-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 28px;
    text-align: left;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  }
  
  .engine-card i {
    font-size: 26px;
    color: #2da8ff;
    margin-bottom: 16px;
    display: inline-block;
  }
  
  .engine-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #f1f5f9;
  }
  
  .engine-card p {
    font-size: 15px;
    color: #9aa4b2;
  }
  
  /* highlighted card */
  .engine-card:hover {
    box-shadow:
      inset 0 0 0 1px rgba(45, 168, 255, 0.5),
      0 0 0 1px rgba(45, 168, 255, 0.2);
    position: relative;
    border-top: 5px solid #1E73BB;
  }
  
  
  
  @media (max-width: 992px) {
    .engine-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .engine-cards {
      grid-template-columns: 1fr;
    }
  }
  
  .difference-section {
    padding: 100px 20px;
    background: radial-gradient(circle at top, #152231, #0d1823 60%);
    color: #cbd5e1;
  }
  
  .section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
  }
  
  .section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #f1f5f9;
  }
  
  .section-header p {
    font-size: 18px;
    color: #9aa4b2;
    margin-top: 12px;
  }
  
  
  .difference-grid  {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   /* This centers the last row */
    gap: 32px;
  }
  
  /* Make cards behave like a 3-column grid */
  .diff-card {
    flex: 0 1 calc(33.333% - 22px); /* 3 per row with gap balance */
    max-width: 420px;
  }
  
  
  .diff-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 28px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  }
  
  .diff-card i {
    font-size: 26px;
    color: #2da8ff;
    display: inline-block;
  }
  
  .diff-card h4 {
    font-size: 20px;
    color: #f1f5f9;
    margin-bottom: 8px;
  }
  
  .diff-card p {
    font-size: 15px;
    color: #9aa4b2;
    line-height: 1.6;
  }
  
  .tag {
    display: inline-block;
    margin-top: 14px;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
  }
  
  .diff-card:hover {
    border-top: 5px solid #1E73BB;
  }

  .cta-section {
    padding: 120px 20px;
 
  }
  
  .cta-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    border-radius: 22px;
  
    background: linear-gradient(
      135deg,
      #12304a 0%,
      #0f2436 40%,
      #0c1d2b 100%
    );
  
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }
  
  .cta-card i {
    font-size: 60px;
    color: #2da8ff;
    display: inline-block;
    margin-bottom: 22px;
  }
  
  .cta-card h2 {
    font-size: 50px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 18px;
  }
  
  .cta-card p {
    max-width: 720px;
    margin: 0 auto 34px;
    font-size: 18px;
    color: #9aa4b2;
    line-height: 1.6;
  }
  

  
  .cta-btn span {
    font-size: 18px;
  }
  
  /* hover (very subtle like image) */
  .cta-btn:hover {
    background: #2490e6;
  }
  
  @media (max-width: 768px) {
    .cta-card {
      padding: 60px 24px;
    }
  
    .cta-card h2 {
      font-size: 32px;
    }
  }

  .icon-file-warning {
    color: #1E73BB;     /* primary blue */
    margin-bottom: 16px;
    height: 24px;
  }
  
  [data-aos="fade-up"] {
    transform: translateY(30px);
  }
  
  
  
  /* =========================
   HERO – MOBILE FIX ONLY
========================= */
@media (max-width: 768px) {

  .hero {
    padding-top: 110px;
    text-align: center;
  }

  .fade-in {
    padding: 0 16px; /* KEY FIX */
  }

  .badge {
    font-size: 14px;
    padding: 8px 14px;
    margin-bottom: 18px;
  }

  .badge img {
    width: 16px;
    height: 16px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .arrow-icon {
    width: 16px;
    height: 16px;
  }

  .section-divider {
    margin: 36px auto;
    max-width: 90%;
  }
}

/* =========================
   IMPACT SECTION – MOBILE ONLY
========================= */
@media (max-width: 768px) {

  .impact-section {
    padding: 70px 0;
  }

  .impact-wrapper {
    padding: 0 16px;
  }

  .impact-card {
    padding: 24px 16px;
    gap: 36px;
    border-radius: 18px;
  }

  .impact-left {
    flex: unset;
    width: 100%;
    text-align: center;
  }

  .impact-left .tag {
    justify-content: center;
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .impact-left h2 {
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 16px;
  }

  .impact-left p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .impact-left .btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  /* RIGHT STATS */
  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-box {
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    padding-top: 66px;

  }

  .stat-box i {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .stat-box h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  .stat-box p {
    font-size: 13px;
  }
}

/* =========================
   DIFFERENCE CARD – MOBILE ONLY
========================= */
@media (max-width: 768px) {

  .diff-card {
    padding: 20px;              /* slightly less height */
    border-top: 4px solid transparent; /* reserve space */
  }

  /* Optional: disable hover jump on touch devices */
  .diff-card:hover {
    border-top-color: #1E73BB;
    transform: none;            /* no lift on mobile */
  }

  .diff-card h4 {
    font-size: 18px;
  }

  .diff-card p {
    font-size: 14px;
  }

  .tag {
    font-size: 11px;
    padding: 4px 10px;
  }
}
/* =========================
   DIFFERENCE SECTION – MOBILE STACK
========================= */
@media (max-width: 768px) {

  .difference-grid {
    flex-direction: column;     /* stack cards */
    gap: 20px;
  }

  .diff-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.why-verafye-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 5px 18px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);

  color: #f8fafc;
  font-size: 14px;
  font-weight: 500;

  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
}

a .logo {
  cursor: pointer;
}
 
