@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #f4f7fb;
  --bg-soft: rgba(15, 46, 110, 0.08);
  --text: #0f254e;
  --accent: #0077ff;
  --muted: rgba(15, 37, 80, 0.65);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #fff;
  color: var(--text);
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #07006a;
  backdrop-filter: blur(18px);

  height: 120px;                 /* FIXED HEADER HEIGHT */
  padding: 0;                   /* remove vertical padding */

  display: flex;
  align-items: center;

  border-bottom: 1px solid rgba(15, 37, 80, 0.08);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 180px;         /* ideal for headers */
  width: auto;
  object-fit: contain;
 /*margin-bottom:80px;*/
 font-size:90px;
}



nav {
  display: flex;
  gap: 22px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  margin-bottom: 30px;
}

nav a:hover {
  color: var(--text);
}

 .nav-cta {
  background: var(--accent);
  padding: 12px 24px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 15px 30px rgba(0, 119, 255, 0.25);
}

.nav-cta:hover {
  transform: translateY(-1px);
}




section {
  padding: 90px 0;
}

.tag {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--muted);
}

.hero-section {
  padding-top: 120px;
  background: #ffffff;
}

.hero-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-highlight {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.hero-highlight li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--muted);
}

.hero-highlight li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
}

.hero-actions {
  margin-top: 32px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #0077ff, #2a8bff);
  color: #fff;
  margin-right: 16px;
  box-shadow: 0 15px 40px rgba(0, 119, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(229, 231, 235, 0.4);
  color: var(--text);
}

.hero-metrics {
  display: flex;
  gap: 24px;
  margin-top: 48px;
}

.hero-metrics div {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  width: 150px;
  box-shadow: 0 35px 65px rgba(15, 37, 80, 0.07);
}

.hero-metrics h3 {
  margin: 0;
  font-size: 28px;
  color: var(--accent);
}

.hero-metrics span {
  font-size: 14px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  border-radius: 28px;
  max-width: 1000px;
  /*box-shadow: 0 35px 60px rgba(15, 37, 80, 0.15);*/
  position: relative;
  z-index: 2;
  margin-bottom: 160px;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  /*background: radial-gradient(circle, rgba(0, 119, 255, 0.2), transparent 70%);*/
  filter: blur(25px);
  z-index: 1;
  bottom: -40px;
}

.trust-section {
  background: #f4f7fb;
  border-top: 1px solid rgba(15, 37, 80, 0.08);
  border-bottom: 1px solid rgba(15, 37, 80, 0.08);
  padding-top: 60px;
  padding-bottom: 60px;
}

.trust-section .section-sub {
  text-align: center;
  margin-bottom: 30px;
  color: var(--muted);
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(15, 37, 80, 0.7);
}

.platform-section {
  background: #ffffff;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

.platform-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.platform-text p {
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 520px;
  line-height: 1.7;
}

.platform-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.platform-list li {
  padding: 20px 24px;
  border-radius: 18px;
  background: #f4f7fb;
  border: 1px solid rgba(15, 37, 80, 0.08);
}

.platform-list span {
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.platform-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.platform-section img {
  width: 70%;
  margin-left: 80px;
  margin-top: 30px;
  border-radius: 28px;
  box-shadow: 0 35px 60px rgba(15, 37, 80, 0.08);
}

.insight-section {
  background: #ffffff;
}
.insight-grid div {
  background: #fdfefe;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(15, 37, 80, 0.08);
}

.insight-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.insight-grid h3 {
  margin-top: 0;
  color: var(--accent);
}

.insight-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.pain-section,
.modules-section,
.impact-section,
.final-cta {
  background: transparent;
}

.pain-section {
  background: #f4f7fb;
  border-radius: 32px;
  padding-top: 80px;
  padding-bottom: 60px;
  border: 1px solid rgba(15, 37, 80, 0.08);
  margin-bottom: 40px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.pain-grid div {
  background: #ffffff;
  border: 1px solid rgba(15, 37, 80, 0.08);
  box-shadow: 0 20px 40px rgba(15, 37, 80, 0.05);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
}

.pain-grid h4 {
  margin: 0;
  font-size: 18px;
}

.pain-section i {
  font-size: 28px;
  color: var(--accent);
}

.modules-section .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.module {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid rgba(15, 37, 80, 0.08);
}

.module:last-child {
  border-bottom: none;
}

.module img {
  width: 40%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(15, 37, 80, 0.08);
}

.module div {
  background: #f8fbff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(15, 37, 80, 0.08);
  box-shadow: 0 25px 45px rgba(15, 37, 80, 0.05);
}

.modules-section .module:nth-child(2n) div {
  background: rgba(0, 119, 255, 0.07);
  border-color: rgba(0, 119, 255, 0.15);
}

.module h3 {
  margin-top: 0;
  color: var(--accent);
}

.module p {
  color: var(--muted);
  line-height: 1.6;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.impact-grid div {
  background: #ffffff;
  border: 1px solid rgba(15, 37, 80, 0.08);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(15, 37, 80, 0.05);
}

.impact-grid h3 {
  font-size: 32px;
  margin-bottom: 6px;
  color: var(--accent);
}

.impact-grid p {
  color: var(--muted);
  margin: 0;
}

.final-cta {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.25), rgba(0, 119, 255, 0.15));
  border-radius: 32px;
  border: 1px solid rgba(15, 37, 80, 0.2);
  box-shadow: 0 25px 60px rgba(15, 37, 80, 0.1);
}

.final-cta h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.final-cta p {
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 24px;
}

.final-cta a {
  margin-top: 8px;
}

.footer {
  background: #011737;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: center;
}

.footer h3 {
  margin-top: 0;
  color: #ffffff;
}

.footer p {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 960px) {
  .hero-layout,
  .platform-grid,
  .module {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  nav {
    display: none;
  }

  .main-header {
    justify-content: space-between;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}
.modules-section {
  padding: 80px 20px;
  background: #f9fbff;
}

.modules-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e2a3a;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.module-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.module-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.module-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.module-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #0b5ed7;
}

.module-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
