/* ✅ GLOBAL */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  background: #fff;
  color: #181818;
  scroll-behavior: smooth;
}

/* ✅ NAVIGATION */
.navbar {
  background: #fff;
  border-bottom: 1.5px solid #F0F2F5;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}

.navbar-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

.nav-logo-img {
  height: 52px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  white-space: nowrap;
}

.nav-links li a {
  font-size: 1.05rem;
  font-weight: 500;
  color: #181818;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 18px;
  transition: all 0.2s;
}

.nav-links li a:hover {
  color: #2596f7;
  background: #F0F7FE;
}

.nav-cta-btn {
  background: #2596f7;
  color: #fff !important;
  font-size: 1.02rem;
  padding: 8px 20px;
  border-radius: 32px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(37,150,247,0.07);
  transition: background 0.2s;
}

.nav-cta-btn:hover {
  background: #181818;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #181818;
  cursor: pointer;
}

/* ✅ HERO */
.hero {
  padding: 50px 0 60px 0;
  background: #fff; /* reverted to white */
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-header-block {
  background: #181818; /* kept as dark gray */
  color: #fff;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 22px;
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.hero-header-block:hover {
  background: #2596f7;
}

.hero-header-text {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.15;
}

.hero-lock {
  font-size: 2.6rem;
  margin-left: 20px;
}

.hero-text-group {
  width: 100%;
  max-width: 900px;
  padding-left: 40px;
  padding-top: 18px;
}

.hero-cta-wrapper {
  margin-top: 40px;
}

.hero-subhead {
  font-size: 1.35rem; /* enlarged */
  font-weight: 400;
  color: #3f3f3f;
  margin: 0 0 24px 0;
  line-height: 1.6;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  font-size: 1.35rem; /* match subtext size */
  line-height: 1.7;
}

.hero-bullets li {
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-bullets li::before {
  content: "";
}

.hero-bullets li strong {
  vertical-align: middle;
}

.hero-bullets li::first-letter {
  font-size: 1.9rem; /* exaggerated emoji size */
  vertical-align: middle;
}

.hero-cta {
  background: #181818;
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 16px rgba(20,35,60,0.06);
  transition: background 0.2s, transform 0.2s;
  margin-top: 24px;
}

.hero-cta:hover {
  background: #2596f7;
  transform: translateY(-1px);
}


/* ✅ ABOUT SECTION */
.about-section {
  background: #fff;
  margin-top: 60px;
  padding-bottom: 80px;
}

.about-title-bar {
  background-color: #2596f7;
  padding: 40px 32px;
  transition: background-color 0.3s ease;
}

.about-title-bar:hover {
  background-color: #000;
}

.about-title-bar h2 {
  color: white;
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 auto;
  max-width: 1080px;
}

.about-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 32px 0 32px;
  color: #2a2a2a;
  line-height: 1.6;
}

.about-inner p {
  font-size: 1.125rem;
  margin-bottom: 18px;
  max-width: 820px;
}

.about-inner strong {
  font-weight: 700;
  color: #181818;
}

.about-underline {
  margin-top: 30px;
  width: 180px;
  height: 4px;
  background-color: #2596f7;
  border-radius: 2px;
}

/* ✅ WHAT WE DO */
.what-we-do-section {
  background-color: #000;
  padding: 100px 0;
  color: white;
}

.what-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.what-inner h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.what-subhead {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 820px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  background-color: #111;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.feature-card:hover {
  background-color: #1a1a1a;
}

.feature-card img {
  width: 104px;
  height: auto;
  margin-bottom: 26px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.feature-card p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.5;
}

/* ✅ HOW IT WORKS */
.how-it-works-section {
  background-color: #f9f9f9;
  padding: 100px 0 80px 0;
}

.how-inner {
  max-width: 960px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.how-inner h2 {
  background: #000;
  color: #fff;
  padding: 16px 32px;
  border-radius: 40px;
  font-size: 1.6rem;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 40px;
  transition: background 0.3s ease;
}

.how-inner h2:hover {
  background: #2596f7;
}

.step {
  background: white;
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.step:hover {
  background: #f2f6fb;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  background: #d0e3f8;
  color: #1a1a1a;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.step p {
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.6;
  color: #2a2a2a;
}

/* ✅ BENEFITS SECTION */
.benefits-section {
  background: #000;
  padding: 100px 0;
  color: white;
  overflow: hidden;
}

.benefits-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.benefits-group {
  padding: 40px 32px;
  background: #111;
  border-radius: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.benefits-group:hover {
  transform: translateY(-4px);
  background: #181818;
}

.benefits-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 28px;
  border-left: 6px solid white;
  padding-left: 16px;
}

.benefits-title.blue { border-color: #2596f7; }
.benefits-title.green { border-color: #30b874; }
.benefits-title.gold { border-color: #d4a63f; }

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.emoji {
  font-size: 1.7rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  line-height: 1.4;
}

.benefit-label {
  font-weight: 700;
  min-width: 220px;
  color: white;
  display: inline-block;
}

.benefit-text {
  color: #cccccc;
  flex: 1;
}

/* ✅ FOOTER */
footer {
  text-align: center;
  padding: 30px 20px;
  background: #F8F9FA;
}

.ncrcp {
  color: #787878;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

/* ✅ RESPONSIVE STYLES */
@media (max-width: 860px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .hamburger {
    display: block;
    position: relative;
    font-size: 28px;
    margin-top: 12px;
    background: none;
    border: none;
    color: #181818;
    cursor: pointer;
  }

  .nav-links {
    position: static;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    display: none;
    width: 100%;
    border-top: 1px solid #eee;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links li a {
    font-size: 1rem;
    width: 100%;
    padding: 10px 0;
  }

  .nav-cta-btn {
    font-size: 0.95rem;
    padding: 10px 22px;
    min-width: 160px;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .what-inner,
  .how-inner,
  .about-inner,
  .benefits-inner {
    padding: 0 20px;
  }

  .hero-inner {
    padding: 0 18px;
  }

  .hero-header-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }

  .hero-lock {
    align-self: flex-end;
    font-size: 2.3rem;
  }

  .hero-header-text {
    font-size: 1.4rem;
  }

  .hero-text-group {
    padding-left: 20px;
  }

  .hero-subhead,
  .hero-bullets {
    font-size: 0.97rem;
  }

  .hero-cta {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .about-title-bar {
    padding: 30px 20px;
  }

  .about-title-bar h2 {
    font-size: 1.8rem;
  }

  .about-inner p,
  .benefit-text {
    font-size: 1rem;
  }

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

  .feature-card {
    padding: 28px 20px;
  }

  .how-inner h2 {
    font-size: 1.4rem;
    padding: 12px 24px;
  }

  .step {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .step-number {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .benefits-group {
    padding: 32px 20px;
  }

  .benefits-title {
    font-size: 1.5rem;
  }

  .emoji {
    font-size: 1.5rem;
    width: 36px;
  }

  .benefit-label {
    min-width: 160px;
    font-size: 1rem;
  }
}


/* ✅ CONTACT SECTION */
.contact-section {
  background: #f7f9fb;
  padding: 100px 0;
  color: #181818;
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.contact-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-intro {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: #444;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.contact-submit {
  margin-top: 10px;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  background: #2596f7;
  color: #fff;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-submit:hover {
  background: #181818;
}

/* ✅ MOBILE */
@media (max-width: 600px) {
  .contact-inner {
    padding: 0 20px;
  }

  .contact-inner h2 {
    font-size: 1.7rem;
  }

  .contact-submit {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

