:root {
  --primary-darkblue: #02216F;
  --secondary-teal: #5f9ea0;
  --light-blue: #86c7f3;
  --accent-orange: #ff7e5f;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --background-light: #ffffff;
  --max-width: 1200px;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #f8fafc;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

/* Ensure page starts at top */
body {
  scroll-behavior: auto;
}

body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.section-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

/* Universal Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  position: relative;
  z-index: 1;
}

.logo {
  max-width: 220px;
  display: block;
  margin: 0 auto 1.5rem auto;
}

h1 {
  text-align: center;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-darkblue);
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-orange);
  margin: 1rem auto 0 auto;
  border-radius: 2px;
}

.hero-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .logo {
    max-width: 160px;
  }

  h1 {
    font-size: 1.6rem;
    min-height: 120px;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 120px;
  }

  h1 {
    font-size: 1.3rem;
    min-height: 100px;
  }

  .container {
    padding: 2rem 1rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .flow-container { flex-direction: column; }
  .flow-item { margin: 1rem 0; }

  .strength-section h2 {
    font-size: 1.8rem;
  }

  .highlight-card {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .highlight-card i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .strength-grid {
    gap: 1.5rem;
  }

  .strength-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .strength-text p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .highlight-card {
    padding: 0.7rem;
    gap: 0.7rem;
    font-size: 0.9rem;
  }

  .highlight-card i {
    font-size: 1.1rem;
  }
}