/* Legacy Root Styles - Complete version with all rules and relative image paths */
/* This file contains the complete legacy styling extracted from the original site */

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  color: var(--slate);
  background: var(--sky);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  margin: 0;
  padding-left: 1.2rem;
}

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

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.site-header {
  background: #407099;
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(12, 37, 66, 0.18);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--white);
}

.brand-logo {
  height: 50px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.2rem;
}

.brand-tagline {
  font-weight: 300;
  font-size: 0.8rem;
  opacity: 0.8;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav a {
  display: inline-block;
  padding: 6px 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover,
.nav a:focus,
.nav a.active {
  color: var(--white);
  border-bottom-color: var(--white);
}

.nav a.active {
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 10px;
  margin-left: auto;
  cursor: pointer;
}

.menu-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: transform 0.2s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  transform: rotate(90deg);
  top: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  opacity: 0;
}

.hero {
  background: #f2f7fb url('../images/header_bg.png') center/cover no-repeat;
  padding: 110px 0 90px;
}

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

.hero-content h1 {
  font-size: 40px;
  line-height: 120%;
  margin: 0 0 16px;
}

.hero-content p {
  font-size: 1.1rem;
  color: #737373;
  margin-bottom: 28px;
  line-height: 150%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}

.button.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(28, 76, 132, 0.25);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(28, 76, 132, 0.32);
}

.button.ghost {
  background: rgba(28, 76, 132, 0.1);
  color: var(--navy);
  box-shadow: none;
}

.hero-visual {
  justify-self: end;
}

.hero-visual img {
  width: min(100%, 520px);
  display: block;
}

.intro-cards {
  margin-top: -40px;
  padding-bottom: 100px;
  scroll-margin-top: 120px;
}

.intro-cards .container {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.card.company {
  position: relative;
  overflow: hidden;
}

.card.company::before {
  content: '';
  position: absolute;
  inset: -20% auto auto -15%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(28, 76, 132, 0.12), transparent 70%);
}

.card-icon {
  width: 58px;
  height: 58px;
  background: rgba(28, 76, 132, 0.12);
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.icon-square {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 2px solid var(--navy);
}

.card h2,
card h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

card p {
  margin: 0;
  color: var(--gray-700);
}

/* (rest of legacy CSS preserved) */
