* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  background: #fff;
}
/* Navbar */
body {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  background: #fff;
  color: #0f172a;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font: inherit;
  cursor: pointer;
}

/* =========================
NAVBAR (DESKTOP)
========================= */
header {
  height: 88px;
  display: flex;
  align-items: center;
  padding: 0 40px; /* keeps logo close to left corner */
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.nav {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | center | right */
  align-items: center;
}

/* Left: Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
/*.brand span {
  font-weight: 700;
  font-size: 14px;
  color: #1e3a8a;
}*/

/* Center: Links */
.nav-center {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 56px;
  font-size: 16px;
  font-weight: 400;
}
/* Right: Actions */
.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 16px;
  background: transparent;
}
.btn-outline {
  border-color: #d1d5db;
  background: #fff;
  color: #0f172a;
}
.btn-solid {
  background: #1e3a8a;
  color: #fff;
  padding: 12px 20px;
}
/* =========================
MOBILE MENU (HIDDEN BY DEFAULT)
========================= */
#menu {
  display: none;
}

.hamburger {
  display: none; /* shown on small screens */
  width: 46px;
  height: 46px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  justify-self: end;
  cursor: pointer;
}
.hamburger i {
  width: 20px;
  height: 2px;
  background: #0f172a;
  position: relative;
  display: block;
}
.hamburger i::before,
.hamburger i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #0f172a;
}
.hamburger i::before {
  top: -6px;
}
.hamburger i::after {
  top: 6px;
}
.mobile-panel {
  display: none;
  width: 100%;
  padding: 14px 0 0;
  grid-column: 1 / -1;
}

.mobile-box {
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 6px;
  font-weight: 600;
}

.mobile-actions {
  display: flex;
  gap: 12px;
  padding: 10px 6px 6px;
}
.mobile-actions .btn {
  width: 100%;
}

/* checkbox toggle */
#menu:checked ~ .mobile-panel {
  display: block;
}

/* HERO SECTION */
.hero {
  max-width: 900px;
  margin: 120px auto 0;
  text-align: center;
  padding: 0 20px;
  padding-left: 16px;
  padding-right: 16px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* SEARCH BAR */
.search-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 14px 16px;
}

.search-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  padding: 10px 16px;
}

.search-wrapper input::placeholder {
  color: #999;
}

/* LEFT ICON */
.icon {
  font-size: 18px;
  color: #666;
  margin-left: 8px;
}

/* BUTTON */
.submit-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #1f3b8c;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.submit-btn:hover {
  opacity: 0.9;
}

.help-section {
  width: 90%;
  margin: 60px auto;
  margin-top: 200px;
}

.help-section h1 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
}

.help-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Left Image */
.help-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
}

/* Right Content */
.help-content {
  display: flex;
  gap: 40px;
  flex: 1;
}

.help-box {
  max-width: 250px;
  margin-right: 200px;
}

.help-box .icon {
  font-size: 32px;
  color: #0b4cff;
  margin-bottom: 10px;
}

.help-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.help-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* WORKS SECTION */
.works-section {
  width: 90%;
  margin: 80px auto;
  text-align: center;
  margin-top: 200px;
}

.works-section h1 {
  font-size: 42px;
  margin-bottom: 50px;
}

.works-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.work-card {
  background: #fff;
  width: 320px;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.work-card .icon {
  width: 50px;
  height: 50px;
  background: #1e3a8a;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.step {
  font-size: 12px;
  color: #888;
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

.work-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.work-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* What we check */
.check-section {
  background-color: #e1e8fe;
  width: 100%;
  margin: 80px auto;
  padding: 2%;
  margin-top: 200px;
}

.check-section h1 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
}

.check-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Lists */
.check-lists {
  display: flex;
  gap: 60px;
  flex: 1;
}

.check-lists ul {
  list-style: none;
}

.check-lists li {
  font-size: 16px;
  margin-bottom: 18px;
  padding-left: 30px;
  position: relative;
  color: #111;
}

/* Image */
.check-image img {
  width: 320px;
  max-width: 100%;
}

/* Secured Scan */
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.heading {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
}

.card {
  border: 1px solid rgb(148, 133, 133);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.grid .icon {
  width: 70px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon.orange {
  background: #fff4e5;
  color: #f97316;
}
.icon.blue {
  background: #eff6ff;
  color: #2563eb;
}
.icon.cyan {
  background: #ecfeff;
  color: #0891b2;
}
.icon.green {
  background: #ecfdf5;
  color: #059669;
}
.icon.red {
  background: #fef2f2;
  color: #dc2626;
}

.card h3 {
  font-size: 1.5rem;
  margin: 0 0 6px;
  font-weight: 600;
}

.card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

/* Quetions */
.faq-wrapper {
  text-align: left;
  max-width: 800px; /* Limits width so it stays on the left */
  margin: 0 auto;
  padding: 20px;
  margin-top: 200px;
}

.faq-header {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #000;
}

.faq-card {
  border: 1px solid #bfdbfe; /* Light blue border */
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Row style for all questions */
.faq-row {
  padding: 24px 28px;
  border-bottom: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Icon to the right */
  font-size: 18px;
  color: #000;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-row:hover {
  background-color: #f8fbff;
}

/* The Dropdown container */
#faq-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
}

/* Icon styling */
.faq-icon {
  stroke: #000;
  stroke-width: 2;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Footer button specifically */
.faq-footer-trigger {
  width: 100%;
  border: none;
  background: none;
  padding: 24px;
  display: flex;
  justify-content: center; /* Text centered in the row */
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 18px;
  color: #000;
}

.faq-footer-trigger .faq-icon {
  /* This keeps the footer arrow next to the text while others are far right */
  position: relative;
}

.rotate-icon {
  transform: rotate(180deg);
}

/* FOOTER */
.footer {
  background: #1f3c88;
  color: #fff;
  padding: 60px 80px;
  margin-top: 200px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 60px;
}

/* Left */
.footer-left .logo-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
}

.footer-left img {
  width: 36px;
}
.disclaimer {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
  max-width: 280px;
}

/* Links */
.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-links a:hover {
  opacity: 1;
}

/* Right */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.store {
  width: 150px;
  cursor: pointer;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.socials a {
  color: #1f3c88;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

/*MEDIA QUERY*/
@media (max-width: 1280px) {
  header {
    padding: 0 24px;
  }

  .nav-center {
    gap: 40px;
  }
  .btn {
    padding: 11px 16px;
    font-size: 15px;
  }

  .hero {
    margin-top: 90px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero p {
    font-size: 16px;
    margin-bottom: 38px;
  }

  .help-section,
  .works-section,
  .check-section,
  .faq-wrapper,
  .footer {
    margin-top: 160px;
  }

  .help-section h1,
  .works-section h1,
  .check-section h1 {
    font-size: 38px;
  }

  .help-container {
    gap: 28px;
  }
  .help-content {
    gap: 28px;
  }

  .footer {
    padding: 50px 50px;
  }
  .footer-inner {
    gap: 40px;
  }
  .footer-links {
    gap: 60px;
  }
}

/* ---------- 1024px and below ---------- */
@media (max-width: 1024px) {
  header {
    padding: 0 18px;
  }

  .nav {
    grid-template-columns: 1fr auto;
  }
  .nav-center {
    display: none;
  }

  .nav-right {
    gap: 12px;
  }

  .hamburger {
    display: flex;
  }
  .mobile-panel {
    margin-top: 12px;
  }

  .hero {
    max-width: 860px;
    margin-top: 80px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero p {
    font-size: 15px;
  }

  .help-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .help-image img {
    max-width: 560px;
  }

  .help-content {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
  }

  .help-box {
    max-width: 280px;
    margin-right: 0;
  }

  .works-container {
    gap: 20px;
  }
  .work-card {
    width: 300px;
  }

  .check-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .check-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .check-image img {
    width: 300px;
  }

  /* Secured scan */
  .container {
    padding: 0 16px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* Footer */
  .footer {
    padding: 48px 30px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links {
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer-right {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .store {
    width: 140px;
  }
}

/* ---------- 768px and below ---------- */
@media (max-width: 768px) {
  header {
    height: auto;
    padding: 14px 14px;
  }

  .nav {
    grid-template-columns: 1fr auto;
    row-gap: 10px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .nav-right {
    display: none;
  } /* actions move into mobile panel */
  .hamburger {
    justify-self: end;
  }

  .mobile-actions {
    flex-direction: column;
  }

  .hero {
    margin-top: 50px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero p {
    font-size: 14px;
    margin-bottom: 26px;
  }

  .search-wrapper {
    padding: 12px 12px;
  }
  .search-wrapper input {
    font-size: 14px;
    padding: 8px 10px;
  }
  .submit-btn {
    width: 42px;
    height: 42px;
  }

  .help-section h1,
  .works-section h1,
  .check-section h1 {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .help-content {
    gap: 18px;
  }
  .help-box {
    max-width: 340px;
    text-align: left;
  }

  .works-container {
    gap: 18px;
  }
  .work-card {
    width: 100%;
    max-width: 420px;
  }

  .check-container {
    gap: 24px;
  }
  .check-lists {
    flex-direction: column;
    gap: 16px;
  }

  /* Secured scan */
  .heading {
    text-align: center;
    font-size: 1.25rem;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card {
    gap: 14px;
    padding: 18px;
  }
  .grid .icon {
    width: 56px;
    height: 38px;
    font-size: 1.2rem;
  }

  /* FAQ */
  .faq-header {
    font-size: 26px;
  }
  .faq-row {
    font-size: 16px;
    padding: 18px 18px;
  }

  /* Footer */
  .footer {
    padding: 44px 18px;
  }
  .footer-links {
    gap: 26px;
  }
  .footer-links h4 {
    font-size: 16px;
  }
  .footer-links a {
    font-size: 14px;
  }
  .disclaimer {
    max-width: 100%;
  }
  .footer-right {
    gap: 14px;
  }
}

/* ---------- 480px and below ---------- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }
  .hero p {
    font-size: 13px;
  }

  .search-wrapper {
    border-radius: 18px;
  }
  .icon {
    margin-left: 0;
  }

  .help-section,
  .works-section,
  .check-section,
  .faq-wrapper,
  .footer {
    margin-top: 120px;
  }

  .help-section h1,
  .works-section h1,
  .check-section h1 {
    font-size: 28px;
  }

  .work-card {
    padding: 22px 18px;
  }
  .check-container {
    width: 92%;
  }
  .check-lists li {
    font-size: 14px;
  }

  .card h3 {
    font-size: 1.05rem;
  }
  .card p {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .footer-links {
    flex-direction: column;
    gap: 22px;
  }
  .footer-right {
    flex-direction: column;
    align-items: flex-start;
  }
  .store {
    width: 160px;
  }
}
