/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Design tokens */
  --navy:        #16425B;
  --navy-deep:   #123A52;
  --navy-dark:   #0E2C40;
  --orange:      #EF6C1A;
  --orange-press:#D65C11;
  --bg:          #F7F9FB;
  --bg-alt:      #EDF1F4;
  --white:       #ffffff;
  --text:        #1B2A33;
  --muted:       #5B6B76;
  --faint:       #93A2AC;
  --border:      #E3E8EC;
  --border-strong:#DFE5EA;
  --on-navy-muted:#9FC0D4;
  --on-navy-body: #C6D8E4;
  --footer-meta:  #7E97A8;
  /* Legacy aliases (services.css) */
  --blue:   #2F6690;
  --sky:    #30A2C5;
  --gray50: #F7F9FB;
  --gray100:#EDF1F4;
  --gray200:#E3E8EC;
  --gray300:#DFE5EA;
  --gray500:#5B6B76;
  --gray700:#1B2A33;
  --gray900:#16425B;
  --radius: 0;
}

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 96px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--navy); color: #fff; }

input:focus-visible, select:focus-visible, textarea:focus-visible,
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

h1, h2, h3, p { text-wrap: pretty; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-press); border-color: var(--orange-press); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--navy); }
.btn-nav, .nav-cta {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  font-size: 14px;
  padding: 12px 22px;
}
.btn-nav:hover, .nav-cta:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar.scrolled { box-shadow: 0 4px 16px rgba(22,66,91,0.06); }
.nav-inner {
  min-height: 76px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img { height: 38px; width: 38px; display: block; object-fit: contain; }
.logo-text {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.logo-text strong { font-weight: 800; }
.logo-light { font-weight: 500; color: var(--muted); }
.logo-white .logo-text { color: var(--white); }
.logo-white .logo-light { color: var(--on-navy-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.nav-active { color: var(--navy); font-weight: 600; }
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  overflow: hidden;
}
.nav-links .lang-switch a {
  display: block;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.nav-links .lang-switch a + a { border-left: 1px solid var(--border-strong); }
.nav-links .lang-switch a.active {
  background: var(--navy);
  color: var(--white);
  cursor: default;
}
.nav-links .lang-switch a:not(.active):hover { color: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 40px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.btn { border-bottom: none; margin-top: 14px; justify-content: center; color: var(--white); }

/* ===== KICKER / SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}
.section-header h2, .about-content h2, .contact-info h2 {
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--navy);
}
.section-header p { font-size: 16px; color: var(--muted); }

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.kicker-hero { color: var(--on-navy-muted); }
.kicker-rule { width: 28px; height: 2px; background: var(--orange); display: block; flex-shrink: 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-scrim-x {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,32,46,0.94) 0%, rgba(13,40,57,0.82) 38%, rgba(18,58,82,0.42) 78%, rgba(18,58,82,0.28) 100%);
  pointer-events: none;
}
.hero-scrim-b {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 220px;
  background: linear-gradient(to bottom, rgba(11,32,46,0) 0%, rgba(11,32,46,0.72) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 56px;
  align-items: end;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-title {
  max-width: 15ch;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--white);
}
.hero-desc {
  max-width: 48ch;
  font-size: 19px;
  line-height: 1.6;
  color: var(--on-navy-body);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-panel {
  background: rgba(9,32,46,0.55);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 32px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.panel-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-navy-muted);
}
.panel-note { font-size: 12px; font-weight: 600; color: var(--orange); }
.panel-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.panel-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.panel-row:last-child { border-bottom: none; }
.pr-route { font-size: 16px; font-weight: 600; color: var(--white); }
.pr-mode { font-size: 13px; color: var(--on-navy-muted); }

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.22);
}
.hs-item {
  padding: 30px 24px 40px;
  border-right: 1px solid rgba(255,255,255,0.22);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hs-item:first-child { padding-left: 0; }
.hs-item:last-child { border-right: none; padding-right: 0; }
.hs-num { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.hs-label { font-size: 14px; color: var(--on-navy-muted); }

/* ===== SERVICES ===== */
.services { padding: 104px 0; }
.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.link-more {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 4px;
  transition: color 0.15s;
}
.link-more:hover { color: var(--orange); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
}
.service-card {
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  background: var(--white);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-top-color 0.15s, box-shadow 0.2s;
}
.service-card:hover {
  border-top-color: var(--orange);
  box-shadow: 0 18px 40px rgba(22,66,91,0.10);
}
.sc-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--faint);
}
.service-card h3 {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.service-card p { font-size: 15px; line-height: 1.7; color: var(--muted); }

/* ===== WHY US ===== */
.why-us {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}
.why-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(520px, 100%), 1fr));
  gap: 48px;
  align-items: start;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--border-strong);
  border: 1px solid var(--border-strong);
}
.why-cell {
  background: var(--white);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-cell h3 { font-size: 19px; font-weight: 700; color: var(--navy); }
.why-cell p { font-size: 15px; line-height: 1.7; color: var(--muted); }

/* ===== STATS ===== */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 84px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 8px 32px;
  border-right: 1px solid rgba(255,255,255,0.22);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; padding-right: 0; }
.stat-num {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label { font-size: 15px; color: var(--on-navy-muted); }

/* ===== ABOUT ===== */
.about { padding: 104px 0; }
.about-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 64px;
  align-items: center;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about-content > p { font-size: 17px; line-height: 1.75; color: var(--muted); }
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 2px;
  background: var(--border-strong);
  border: 1px solid var(--border-strong);
}
.member-card {
  background: var(--white);
  padding: 32px 30px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.member-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.member-card p { font-size: 15px; line-height: 1.6; color: var(--muted); }
.member-logo {
  height: 96px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.member-logo img {
  max-height: 96px;
  max-width: 100%;
  object-fit: contain;
}
.member-logo img.logo-aln { max-height: 58px; }
.member-logo-pending {
  border: 1px dashed var(--border-strong);
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--faint);
}
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  display: flex;
  flex-direction: column;
}
.ac-block {
  padding: 36px 34px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ac-block:last-child { border-bottom: none; }
.ac-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.ac-block p { font-size: 17px; line-height: 1.65; color: var(--text); }

/* ===== CONTACT ===== */
.contact {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 96px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 56px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-strong);
}
.cl-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cl-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.cl-value { font-size: 16px; line-height: 1.6; color: var(--text); }
.cl-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.cl-link:hover { color: var(--orange); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px 44px 48px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.cf-head { display: flex; flex-direction: column; gap: 8px; }
.cf-head h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.cf-head p { font-size: 15px; color: var(--muted); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.label-opt { font-weight: 500; color: var(--faint); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 14px;
  min-width: 0;
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  background: var(--white);
  color: var(--text);
}
.form-group textarea { resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--faint); }
.form-group input.invalid,
.form-group textarea.invalid { border-color: #C43B3B; }
.field-error { font-size: 13px; color: #C43B3B; }
.btn-submit {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  padding: 16px 24px;
  border: none;
}
.form-success {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  padding: 12px 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: var(--white);
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-brand .logo-img { height: 36px; width: 36px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--on-navy-muted);
  max-width: 32ch;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 8px 14px 8px 11px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.footer-social svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }
.footer-social:hover { border-color: var(--orange); color: var(--orange); }
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links h4, .footer-contact h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-links a, .footer-contact a {
  font-size: 14px;
  color: var(--on-navy-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--orange); }
.footer-contact p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--on-navy-muted);
}
.footer-bottom .container {
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 26px;
  padding-bottom: 40px;
}
.footer-bottom p { font-size: 13px; color: var(--footer-meta); }

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .mobile-menu { padding: 8px 24px 20px; }
  section[id] { scroll-margin-top: 84px; }

  .hero-content { padding-top: 64px; gap: 28px; }
  .hero-title { font-size: 40px; }
  .hero-desc { font-size: 17px; }
  .hero-grid { gap: 36px; }
  .hs-item { padding: 22px 16px 28px; }
  .hs-num { font-size: 28px; }

  .services, .about { padding: 64px 0; }
  .why-us, .contact { padding: 64px 0; }
  .stats { padding: 56px 0; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-item {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.22);
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-num { font-size: 44px; }

  .why-cell { padding: 24px 20px; }
  .contact-form-wrap { padding: 28px 24px 32px; }
  .form-row { grid-template-columns: 1fr; }
}
