/* Basic Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Fonts & Global Styles */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222831;
  background-color: #f7f9fc;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #0057a6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Containers & Layout */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: #ffffff;
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  margin: 2rem 0 1rem;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #4f5668;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(247, 249, 252, 0.96);
  border-bottom: 1px solid #dde3f0;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo span {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0057a6;
}

.nav a {
  margin-left: 1.5rem;
  font-size: 0.95rem;
  color: #262c3a;
}

.nav a:hover {
  color: #0057a6;
}

/* Logo image control */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 44px;      /* tweak between 36–52px depending on your taste */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #111827;
}

.hero-text p {
  font-size: 1.05rem;
  color: #4f5668;
}

.hero-ctas {
  margin: 1.5rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-meta {
  font-size: 0.9rem;
  color: #6b7280;
}

.hero-visual {
  flex: 0 0 40%;
}

.hero-placeholder {
  border-radius: 1.25rem;
  border: 1px dashed #c3cedf;
  background: linear-gradient(135deg, #ecf3ff, #f6faff);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b4a63;
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: #0057a6;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #00437e;
  text-decoration: none;
}

.btn-secondary {
  background-color: #e4edf8;
  color: #0057a6;
  border-color: #c7d5ec;
}

.btn-secondary:hover {
  background-color: #d2e1f6;
  text-decoration: none;
}

/* Value Strip */
.value-strip {
  background-color: #ffffff;
  border-top: 1px solid #dde3f0;
  border-bottom: 1px solid #dde3f0;
  padding: 1.5rem 0;
}

.value-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.value-item {
  flex: 1 1 180px;
}

.value-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #111827;
}

.value-item p {
  font-size: 0.95rem;
  color: #4f5668;
}

/* Two-column layout */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Timeline */
.timeline h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.timeline ul {
  list-style: none;
}

.timeline li {
  margin-bottom: 0.9rem;
  border-left: 2px solid #c3cedf;
  padding-left: 0.75rem;
}

.timeline-year {
  font-weight: 600;
  color: #0057a6;
  margin-right: 0.35rem;
}

/* Quote */
.quote {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background-color: #ecf3ff;
  border-radius: 0.75rem;
  border-left: 4px solid #0057a6;
  font-size: 0.97rem;
  color: #1f2933;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 1.25rem;
}

.card {
  background-color: #f7f9fc;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #dde3f0;
}

.card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: #4b5563;
}

.card ul {
  padding-left: 1.1rem;
}

.card li {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.3rem;
}

/* Solutions */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.solution-card {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #dde3f0;
  padding: 1.4rem;
}

.solution-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

/* Impact */
.impact-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.impact-item {
  background-color: #f7f9fc;
  border-radius: 0.9rem;
  padding: 1rem;
  border: 1px solid #dde3f0;
}

.impact-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

/* Investors */
.investor-highlights h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.investor-highlights ul {
  padding-left: 1.1rem;
  margin-bottom: 0.75rem;
}

.investor-highlights li {
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
  color: #4b5563;
}

.investor-contact {
  font-size: 0.95rem;
}

.investor-contact a {
  font-weight: 600;
}

/* Partners */
.center {
  text-align: center;
}

.partner-strip {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.partner-pill {
  border-radius: 999px;
  border: 1px solid #c3cedf;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  background-color: #f7f9fc;
}

/* Contact Form */
.contact-form {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #dde3f0;
  padding: 1.5rem;
}

.form-row {
  margin-bottom: 0.9rem;
}

.form-row label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #374151;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #c3cedf;
  font-size: 0.9rem;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #0057a6;
  box-shadow: 0 0 0 1px rgba(0, 87, 166, 0.2);
}

.form-note {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #6b7280;
}

/* Footer */
.site-footer {
  border-top: 1px solid #dde3f0;
  background-color: #f7f9fc;
  padding: 1.25rem 0 1.75rem;
}

.footer-inner {
  font-size: 0.85rem;
  color: #6b7280;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.footer-address-block p {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  color: #4b5563;
  line-height: 1.5;
}

.footer-copy {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
  }

  .nav a {
    margin-left: 0;
    font-size: 0.9rem;
  }

  .hero-inner {
    flex-direction: column;
    text-align: left;
  }

  .hero-visual {
    width: 100%;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }
}
