:root {
  --blue: #0b3b6f;
  --blue-2: #115d87;
  --green: #15a68d;
  --cream: #f5f1ea;
  --soft: #eef6f4;
  --text: #0f172a;
  --muted: #64748b;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 4px;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: #475569;
}

.site-nav a:hover {
  color: var(--blue);
}

.header-cta {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 1.1rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(11, 59, 111, 0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(21, 166, 141, 0.16), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #f5f1ea 55%, #eef6f4 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(11, 59, 111, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  line-height: 1.05;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 760px;
  font-size: 1.1rem;
  color: #334155;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: 0.2s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 59, 111, 0.14);
  color: var(--blue);
}

.btn-light {
  background: #fff;
  color: var(--blue);
}

.btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111827;
}

.stat-label {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #475569;
}

.hero-image-card {
  border-radius: 32px;
  border: 1px solid rgba(11, 59, 111, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px;
  box-shadow: var(--shadow-lg);
}

.hero-image {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 24px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.logo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 94px;
}

.logo-card img {
  max-height: 54px;
  object-fit: contain;
}

.section {
  padding: 84px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
}

.panel {
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.panel-white {
  background: #fff;
  border: 1px solid var(--border);
}

.panel-blue {
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.panel-soft {
  background: linear-gradient(135deg, #ffffff 0%, var(--soft) 100%);
  border: 1px solid var(--border);
}

.panel-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.section-kicker {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-kicker.light {
  color: #8de1d2;
}

h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.12;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.panel-blue h2,
.light-title {
  color: #fff;
}

.panel p,
.section-head p,
.section-intro p,
.vision-panel p {
  color: #475569;
  font-size: 1rem;
}

.panel-blue p,
.light-text {
  color: rgba(255, 255, 255, 0.92);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.feature-item {
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

.feature-list.neutral .feature-item,
.feature-item.neutral {
  border: 1px solid var(--border);
  background: #f8fafc;
  color: #475569;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.head-badge {
  border: 1px solid var(--border);
  background: #fff;
  color: #475569;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  max-width: 380px;
  font-size: 0.92rem;
}

.cards-grid {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.cards-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.cards-grid.compact {
  margin-top: 0;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card h3,
.glass-card h3 {
  margin: 18px 0 0;
  font-size: 1.55rem;
  line-height: 1.15;
  color: #111827;
}

.card p,
.glass-card p {
  margin: 14px 0 0;
  color: #475569;
  font-size: 0.97rem;
}

.tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff4e8;
  color: #a5661f;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.markets-grid,
.contact-grid,
.vision-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.glass-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  padding: 22px;
  backdrop-filter: blur(8px);
}

.glass-card h3,
.glass-card p {
  color: #fff;
}

.process-layout {
  grid-template-columns: 0.92fr 1.08fr;
}

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

.step-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
  font-weight: 700;
}

.step-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
}

.section-intro {
  max-width: 760px;
}

.brand-grid {
  margin-top: 28px;
}

.brand-image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fafafa;
}

.brand-image-box img {
  max-height: 62px;
  object-fit: contain;
}

.contact-panel {
  padding: 38px;
}

.contact-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  padding: 26px;
  backdrop-filter: blur(10px);
}

.contact-item + .contact-item {
  margin-top: 18px;
}

.contact-item span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.contact-item strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  color: #fff;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  color: #64748b;
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .markets-grid,
  .contact-grid,
  .vision-panel,
  .process-layout,
  .section-head {
    grid-template-columns: 1fr;
  }

  .cards-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid.three {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }

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

  .site-nav a {
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding: 54px 0 70px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .stats-grid,
  .cards-grid.four,
  .cards-grid.two,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 320px;
  }

  .panel,
  .contact-panel {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
  }

  h2 {
    font-size: 2rem;
  }
}