@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #334155;
  background: #F8FAFC;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0F172A;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: #1D4ED8;
}

a:hover {
  color: #1741B5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1D4ED8;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #0F172A;
  margin-bottom: 16px;
}

.section-title-dark {
  color: #F1F5F9;
}

.section-subtitle {
  font-size: 18px;
  color: #64748B;
  max-width: 600px;
}

.section-subtitle-dark {
  color: #CBD5E1;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

.btn-primary-ra {
  display: inline-block;
  background: #1D4ED8;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.btn-primary-ra:hover {
  background: #1741B5;
  color: #FFFFFF;
}

.btn-outline-ra {
  display: inline-block;
  background: transparent;
  color: #1D4ED8;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 30px;
  border-radius: 6px;
  border: 2px solid #1D4ED8;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-outline-ra:hover {
  background: rgba(29,78,216,0.08);
  color: #1D4ED8;
}

.btn-ghost-ra {
  display: inline-block;
  background: transparent;
  color: #F1F5F9;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  border: 1px solid #2D3F62;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-ghost-ra:hover {
  background: rgba(241,245,249,0.1);
  color: #FFFFFF;
}

.btn-group-ra {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.section-bg-base {
  background: #F8FAFC;
}

.section-bg-alt {
  background: #EEF2F7;
}

.section-bg-dark {
  background: #080E1F;
}

.ra-section {
  padding: 96px 0;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.nav-transparent {
  background: #080E1F;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.site-header.nav-transparent .nav-logo {
  color: #F1F5F9;
}

.site-header.nav-transparent .nav-links a {
  color: #E2E8F0;
}

.site-header.nav-transparent .nav-links a:hover {
  color: #FFFFFF;
}

.site-header.nav-transparent .nav-toggle span {
  background: #F1F5F9;
}

.site-header.scrolled,
.site-header.nav-solid {
  background: rgba(8,14,31,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.site-header.scrolled .nav-logo,
.site-header.nav-solid .nav-logo {
  color: #F1F5F9;
}

.site-header.scrolled .nav-links a,
.site-header.nav-solid .nav-links a {
  color: #CBD5E1;
}

.site-header.scrolled .nav-links a:hover,
.site-header.nav-solid .nav-links a:hover {
  color: #FFFFFF;
}

.site-header.scrolled .nav-toggle span,
.site-header.nav-solid .nav-toggle span {
  background: #F1F5F9;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-size: 20px;
  font-weight: 600;
  color: #F1F5F9;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo i {
  color: #1D4ED8;
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #CBD5E1;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: #FFFFFF;
}

.nav-links a.active {
  color: #1D4ED8;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #1D4ED8;
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #F1F5F9;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 160px 0 120px;
  background: #080E1F;
}

.hero-home {
  min-height: 100vh;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,14,31,0.72);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #93C5FD;
  margin-bottom: 20px;
  background: rgba(29,78,216,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(29,78,216,0.3);
}

.hero-h1 {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #F1F5F9;
  margin-bottom: 24px;
}

.hero-subpage-h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F1F5F9;
  margin-bottom: 16px;
}

.hero-p {
  font-size: 20px;
  color: #CBD5E1;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 36px;
}

.hero-p-narrow {
  max-width: 560px;
}

.hero-trust {
  margin-top: 32px;
  font-size: 13px;
  color: #64748B;
  letter-spacing: 0.02em;
}

.hero-subpage {
  padding: 120px 0 80px;
  min-height: unset;
  background: linear-gradient(135deg, #080E1F 0%, #111827 60%, #1A2540 100%);
}


.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  transform: translateY(-2px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(29,78,216,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #1D4ED8;
  font-size: 22px;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
}


.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
}

.step-item {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 240px;
  text-align: center;
  padding: 16px;
}

.step-item .step-icon { display: none; }

.step-number {
  font-size: 72px;
  font-weight: 800;
  color: rgba(29,78,216,0.18);
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Inter', system-ui, sans-serif;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(29,78,216,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #1D4ED8;
  font-size: 26px;
}

.step-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
}


.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  flex: 1 1 25%;
  min-width: 180px;
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid #1F2A42;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 52px;
  font-weight: 800;
  color: #1D4ED8;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: #94A3B8;
  font-weight: 500;
}


.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-left: 4px solid #1D4ED8;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-quote {
  font-size: 16px;
  color: #334155;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: #0F172A;
}

.testimonial-title {
  font-size: 13px;
  color: #64748B;
}


.cta-banner {
  text-align: center;
  padding: 96px 24px;
  background: linear-gradient(135deg, #080E1F 0%, #1D4ED8 100%);
}

.cta-banner h2 {
  font-size: 38px;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.cta-banner p {
  font-size: 18px;
  color: #CBD5E1;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}


.feature-deepdive {
  padding: 96px 0;
  background: #EEF2F7;
}

.deepdive-row {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 64px 0;
  border-bottom: 1px solid #E2E8F0;
}

.deepdive-row:last-child {
  border-bottom: none;
}

.deepdive-row.reverse {
  flex-direction: row-reverse;
}

.deepdive-img {
  flex: 0 0 45%;
  max-width: 45%;
}

.deepdive-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}

.deepdive-text {
  flex: 1;
}

.deepdive-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.deepdive-text p {
  font-size: 16px;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 24px;
}

.deepdive-text ul {
  list-style: none;
  padding: 0;
}

.deepdive-text ul li {
  font-size: 15px;
  color: #64748B;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.deepdive-text ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #1D4ED8;
  border-radius: 50%;
  flex-shrink: 0;
}


.integrations-strip {
  padding: 64px 0;
  text-align: center;
}

.integrations-strip h3 {
  font-size: 24px;
  font-weight: 600;
  color: #CBD5E1;
  margin-bottom: 40px;
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.integration-badge {
  background: #111827;
  border: 1px solid #1F2A42;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #94A3B8;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.integration-badge:hover {
  border-color: #1D4ED8;
  color: #CBD5E1;
}


.about-story-grid {
  display: flex;
  gap: 64px;
  align-items: center;
  margin-top: 0;
}

.about-story-text {
  flex: 1;
}

.about-story-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}

.about-story-text p {
  font-size: 16px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-story-img {
  flex: 0 0 44%;
  max-width: 44%;
}

.about-story-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}


.stats-bar {
  display: flex;
  flex-wrap: wrap;
}

.stats-bar-item {
  flex: 1 1 25%;
  min-width: 180px;
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid #D1D9E6;
}

.stats-bar-item:last-child {
  border-right: none;
}

.stats-bar-value {
  font-size: 32px;
  font-weight: 700;
  color: #1D4ED8;
  margin-bottom: 8px;
}

.stats-bar-label {
  font-size: 14px;
  color: #64748B;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}


.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
  background: #111827;
  border: 1px solid #1F2A42;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.value-icon {
  width: 52px;
  height: 52px;
  background: rgba(29,78,216,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #1D4ED8;
  font-size: 22px;
}

.value-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #F1F5F9;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.6;
}


.investor-section {
  text-align: center;
  padding: 96px 24px;
}

.investor-inner {
  max-width: 640px;
  margin: 0 auto;
}

.investor-inner img {
  width: 100%;
  max-width: 500px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}

.investor-inner h3 {
  font-size: 26px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 12px;
}

.investor-inner p {
  font-size: 16px;
  color: #64748B;
  line-height: 1.65;
}


.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
}

.team-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 24px;
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.team-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}

.team-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 18px;
}

.team-info {
  padding: 0;
  flex: 1;
}

.team-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.founder-badge {
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  background: #1D4ED8;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.team-title {
  font-size: 14px;
  color: #64748B;
  font-weight: 500;
}


.join-us {
  padding: 96px 0;
}

.join-us-grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.join-us-text {
  flex: 1;
}

.join-us-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.join-us-text p {
  font-size: 16px;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.join-benefits {
  flex: 0 0 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit-card {
  flex: 1 1 calc(50% - 10px);
  min-width: 200px;
  background: #111827;
  border: 1px solid #1F2A42;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.benefit-icon {
  color: #1D4ED8;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #F1F5F9;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.55;
}


.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.ra-form-group {
  margin-bottom: 20px;
}

.ra-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 8px;
}

.ra-form-control {
  width: 100%;
  background: #F1F5F9;
  color: #0F172A;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Inter', system-ui, sans-serif;
  transition: border-color 0.2s ease;
  outline: none;
  appearance: none;
}

.ra-form-control::placeholder {
  color: #94A3B8;
}

.ra-form-control:focus {
  border: 2px solid #1D4ED8;
}

.ra-form-control.textarea-field {
  resize: vertical;
  min-height: 140px;
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 56px;
}

.contact-info-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(29,78,216,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #1D4ED8;
  font-size: 18px;
}

.contact-info-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
  word-break: break-word;
  text-decoration: none;
}


.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 56px;
}

.blog-card {
  flex: 1 1 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  min-width: 260px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  transform: translateY(-2px);
}

.blog-card-img-wrap {
  overflow: hidden;
}

.blog-card-img-wrap a {
  display: block;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1D4ED8;
  background: rgba(29,78,216,0.10);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-body h3 a {
  color: #0F172A;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-body h3 a:hover {
  color: #1D4ED8;
}

.blog-excerpt {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.blog-meta {
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 16px;
}

.read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1D4ED8;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.read-more:hover {
  color: #1741B5;
  gap: 10px;
}


.site-footer {
  background: #080E1F;
  padding: 72px 0 0;
  color: #94A3B8;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-col {
  flex: 1 1 180px;
}

.footer-brand {
  flex: 1 1 240px;
  max-width: 300px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 600;
  color: #F1F5F9;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-logo i {
  color: #1D4ED8;
  font-size: 18px;
}

.footer-brand p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-social {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  border: 1px solid #1F2A42;
  border-radius: 8px;
  color: #64748B;
  font-size: 15px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  color: #CBD5E1;
  border-color: #2D3F62;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #F1F5F9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: #F1F5F9;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact-item i {
  color: #64748B;
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 14px;
  color: #64748B;
  text-decoration: none;
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: #F1F5F9;
}

.footer-bottom {
  border-top: 1px solid #1F2A42;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: #475569;
  margin: 0;
}

.footer-bottom a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #CBD5E1;
}


.legal-section {
  padding: 96px 0;
}

.legal-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0F172A;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0F172A;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 16px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-section ul li {
  font-size: 16px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 8px;
}


.page-404 {
  min-height: 100vh;
  background: #080E1F;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.page-404-brand {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: rgba(8,14,31,0.95);
  border-bottom: 1px solid #1F2A42;
}

.page-404-logo {
  font-size: 20px;
  font-weight: 600;
  color: #F1F5F9;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.page-404-logo i {
  color: #1D4ED8;
}

.error-number {
  font-size: 160px;
  font-weight: 800;
  color: #1D4ED8;
  line-height: 1;
  margin-bottom: 0;
  margin-top: 64px;
  letter-spacing: -0.05em;
  opacity: 0.9;
}

.error-wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 40px;
  margin-bottom: 32px;
}

.error-wave span {
  display: block;
  width: 4px;
  border-radius: 4px;
  background: rgba(29,78,216,0.35);
  animation: wave-pulse 1.6s ease-in-out infinite;
}

.error-wave span:nth-child(1) { height: 12px; animation-delay: 0s; }
.error-wave span:nth-child(2) { height: 24px; animation-delay: 0.15s; }
.error-wave span:nth-child(3) { height: 36px; animation-delay: 0.3s; }
.error-wave span:nth-child(4) { height: 20px; animation-delay: 0.45s; }
.error-wave span:nth-child(5) { height: 32px; animation-delay: 0.6s; }
.error-wave span:nth-child(6) { height: 16px; animation-delay: 0.75s; }
.error-wave span:nth-child(7) { height: 28px; animation-delay: 0.9s; }
.error-wave span:nth-child(8) { height: 40px; animation-delay: 0.3s; }
.error-wave span:nth-child(9) { height: 22px; animation-delay: 0.15s; }
.error-wave span:nth-child(10) { height: 14px; animation-delay: 0s; }

@keyframes wave-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
  50% { opacity: 0.9; transform: scaleY(1); }
}

.error-headline {
  font-size: 38px;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.error-sub {
  font-size: 18px;
  color: #94A3B8;
  margin-bottom: 36px;
  max-width: 480px;
}


.bottom-cta {
  padding: 72px 0;
  text-align: center;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}

.bottom-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}


body.sub-page {
  padding-top: 64px;
}


@media (max-width: 991px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(8,14,31,0.98);
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid #1F2A42;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    border-radius: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-h1 {
    font-size: 44px;
  }

  .hero-subpage-h1 {
    font-size: 34px;
  }

  .features-grid,
  .steps-grid,
  .testimonials-grid {
    flex-direction: column;
  }

  .feature-card,
  .step-item,
  .testimonial-card {
    flex: 1 1 100%;
  }

  .about-story-grid {
    flex-direction: column;
  }

  .about-story-img {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .deepdive-row,
  .deepdive-row.reverse {
    flex-direction: column;
  }

  .deepdive-img {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .join-us-grid {
    flex-direction: column;
  }

  .join-benefits {
    flex: 1 1 100%;
  }

  .stat-item {
    flex: 1 1 50%;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stats-bar-item {
    flex: 1 1 50%;
  }

  .stats-bar-item:nth-child(2) {
    border-right: none;
  }

  .team-card {
    flex: 1 1 calc(50% - 16px);
  }

  .blog-card {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .hero-h1 {
    font-size: 36px;
  }

  .hero-subpage-h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-banner h2 {
    font-size: 26px;
  }

  .stat-item {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #1F2A42;
    padding: 32px 16px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stats-bar-item {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #D1D9E6;
    padding: 28px 16px;
  }

  .stats-bar-item:last-child {
    border-bottom: none;
  }

  .team-card {
    flex: 1 1 100%;
  }

  .blog-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .benefit-card {
    flex: 1 1 100%;
  }

  .contact-info-card {
    flex: 1 1 100%;
  }

  .value-card {
    flex: 1 1 100%;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .btn-group-ra {
    flex-direction: column;
    align-items: flex-start;
  }

  .error-number {
    font-size: 100px;
  }

  .deepdive-img img {
    height: 220px;
  }
}

/* === Logo v2: dual-variant dark/light === */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}

/* Nav default: show dark logo (for light bg), hide light logo */
/* Nav default: always show LIGHT logo (site nav is always dark) */
.site-header .logo-img--light { display: inline-block !important; }
.site-header .logo-img--dark  { display: none !important; }

/* When nav has dark background (hero overlay, scroll state), swap variants */
.navbar-dark .logo-img--light,
.c-nav--dark .logo-img--light,
.nav--hero .logo-img--light,
body.hero-dark .logo-img--light {
  display: inline-block !important;
}
.navbar-dark .logo-img--dark,
.c-nav--dark .logo-img--dark,
.nav--hero .logo-img--dark,
body.hero-dark .logo-img--dark {
  display: none !important;
}

/* Footer logo always shows light variant */
footer .logo-img { max-height: 48px; }
