

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #1A237E;
      background: #ffffff;
    }

    /* HEADER */
    .site-header {
      width: 100%;
      
      background: #fff;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

    .header-inner {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    /* LOGO */
    .logo img {
      height: 36px;
    }

    /* NAVIGATION */
    .nav {
      display: flex;
      gap: 32px;
    }

    .nav a {
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      color: #1A237E;
    }

    /* LOGIN BUTTON */
    .btn-login {
      background: #00BFA5;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 10px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
    }

    /* HAMBURGER */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: #1A237E;
    }

    /* VISIBILITY */
    .desktop-only {
      display: inline-block;
    }

    .mobile-only {
      display: none;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .nav {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
        display: none;
        border-top: 1px solid #eee;
      }

      .nav.active {
        display: flex;
      }

      .desktop-only {
        display: none;
      }

      .mobile-only {
        display: inline-block;
      }

      .hamburger {
        display: flex;
      }
      
    }
    /* HERO SECTION */
.hero {
  background: #ffffff; /* white background as requested */
  padding: 80px 0 96px;
}

.hero-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* HEADLINE */
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  color: #1A237E;
  margin-bottom: 20px;
}

/* SUBTEXT */
.hero-subtext {
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 720px;
  margin: 0 auto 36px;
}

/* FORM */
.scan-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto 24px;
}

.scan-form input {
  flex: 1;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #dcdfe6;
  font-family: 'Inter', sans-serif;
}

.scan-form button {
  background: #00BFA5;
  color: #ffffff;
  border: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.scan-form button:hover {
  opacity: 0.9;
}

/* TRUST LINE */
.trust-line {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 72px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtext {
    font-size: 15px;
  }

  .scan-form {
    flex-direction: column;
  }

  .scan-form button {
    width: 100%;
  }
}

.dpdp-risks {
  background: #ffffff;
  padding: 80px 0;
}

.risks-inner {
  text-align: center;
}

.dpdp-risks h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1A237E;
  margin-bottom: 56px;
}

.risk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.risk-card {
  padding: 10px 20px;
}

.risk-icon {
  margin-bottom: 20px;
}

.risk-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A237E;
  margin-bottom: 12px;
}

.risk-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.risk-cta {
  margin-top: 48px;
}

.risk-btn {
  background: #00BFA5;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .risk-cards {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* SECTION 4 */
.how-it-works {
  background: #ffffff;
  padding: 80px 0;
}

.how-inner {
  text-align: center;
}

.how-it-works h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1A237E;
  margin-bottom: 60px;
}

/* STEPS LAYOUT */
.steps {
  display: grid;
  grid-template-columns: auto 40px auto 40px auto;
  align-items: start;
  justify-content: center;
}

/* STEP */
.step {
  max-width: 260px;
  padding: 0 10px;
}

.step-icon {
  margin-bottom: 20px;
}

.step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1A237E;
  margin-bottom: 10px;
}

.step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
}

/* ARROWS */
.step-arrow {
  font-size: 26px;
  color: #999;
  padding-top: 30px;
}

/* MOBILE */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .step-arrow {
    display: none;
  }

  .how-it-works h2 {
    font-size: 24px;
    margin-bottom: 40px;
    padding: 0 12px;
  }

  .step {
    max-width: 100%;
  }

  .step-icon svg {
    width: 56px;
    height: 56px;
  }
}

/* SECTION 5 – AI PREVIEW */
.ai-preview {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(
      600px circle at 15% 40%,
      rgba(0, 191, 165, 0.12),
      transparent 60%
    ),
    radial-gradient(
      600px circle at 85% 60%,
      rgba(26, 35, 126, 0.08),
      transparent 60%
    ),
    #ffffff;
  overflow: hidden;
}

.preview-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.preview-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.12);
}

/* TEXT */
.preview-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1A237E;
  margin-bottom: 18px;
}

.preview-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 28px;
}

.preview-content strong {
  color: #000;
  font-weight: 600;
}

/* BUTTON */
.outline-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid #1A237E;
  color: #1A237E;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.outline-btn:hover {
  background: #1A237E;
  color: #ffffff;
}

/* MOBILE */
@media (max-width: 900px) {
  .ai-preview {
    padding: 72px 0;
  }

  .preview-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .preview-image img {
    margin: 0 auto;
  }

  .preview-content h2 {
    font-size: 26px;
  }

  .preview-content p {
    font-size: 15px;
  }
}

/* ---------- Footer styles (brand-aware) ---------- */
  :root{
    --deep-indigo: #121236;    /* footer background (dark) */
    --accent-teal: #00BFA5;
    --muted: #cbd3e6;          /* light text tint */
    --base-white: #ffffff;
  }

  .site-footer {
    background: linear-gradient(180deg, var(--deep-indigo) 0%, #0e0e2a 100%);
    color: var(--muted);
    margin-top: 48px;
    position: relative;
    overflow: visible;
  }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

  .footer-inner {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 28px;
    align-items: start;
    padding: 48px 20px 34px;
  }

  /* Brand column */
  .footer-brand { display:flex; flex-direction:column; gap:16px; }
  .footer-logo { height:40px; width:auto; display:block; filter:brightness(1.05) invert(0); }
  .brand-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height:1.5;
    color: #d3d8ea;
    max-width: 360px;
    margin-top:2px;
  }

  /* Footer columns */
  .footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: var(--base-white);
    margin-bottom: 12px;
    font-weight: 700;
  }

  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col li { margin-bottom: 10px; font-family: 'Inter', sans-serif; font-size: 14px; color: #c8cfea; }
  .footer-col a {
    color: #c8cfea;
    text-decoration: none;
    transition: color .14s ease, transform .14s ease;
  }
  .footer-col a:hover { color: var(--accent-teal); transform: translateY(-1px); }

  /* Bottom strip */
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 12px 0;
    background: transparent;
  }

  .bottom-inner {
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
  }

  .bottom-inner small {
    color: rgba(255,255,255,0.6);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
  }

  /* decorative diamond / star on the right */
  .footer-decor {
    opacity: 0.48;
    transform: translateY(-2px);
  }
  
  .scan-form {
    max-width: 720px;
    margin: 0 auto;
}

.scan-bar {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Input */
.scan-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
}

/* Button */
.scan-bar button {
    border: none;
    outline: none;
    background: linear-gradient(90deg, #14b8a6, #10b981);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 0 22px;
    cursor: pointer;
    white-space: nowrap;
}

/* Hover */
.scan-bar button:hover {
    opacity: 0.92;
}

@media (max-width: 640px) {
    .scan-bar {
        flex-direction: column;
    }

    .scan-bar button {
        padding: 14px;
        width: 100%;
    }
}


  /* Responsive behaviour */
  @media (max-width: 980px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap:20px; padding: 40px 20px; }
    .footer-brand { order: 1; }
    .footer-col { order: 2; }
    .footer-col:nth-child(3) { order: 3; }
    .footer-col:nth-child(4) { order: 4; }
  }

  @media (max-width: 640px) {
    .footer-inner { grid-template-columns: 1fr; padding: 28px 20px; gap:18px; }
    .brand-desc { max-width: none; }
    .bottom-inner { flex-direction: column; align-items:flex-start; gap:8px; }
    .footer-decor { align-self: flex-end; opacity:0.22; transform: none; }
  }
  }
  
