/* Northaven Group bilingual static website */
:root {
  --navy: #0b1f3a;
  --navy-2: #123760;
  --blue: #1f6feb;
  --green: #2f8f46;
  --gold: #c9a66b;
  --gray: #6b7280;
  --dark: #111827;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e5e7eb;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
header {
  width: 100%; position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.93); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1180px; margin: auto; padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  font-weight: 850; font-size: 1.25rem; color: var(--navy);
  letter-spacing: -.035em;
}
.logo span { color: var(--green); }
.nav-links {
  display: flex; gap: 24px; font-size: .95rem; color: var(--gray);
  align-items: center;
}
.nav-links a:hover { color: var(--navy); }
.lang {
  border: 1px solid var(--border); padding: 8px 12px; border-radius: 999px;
  color: var(--navy); font-weight: 800; background: var(--white);
}
.btn {
  display: inline-block; background: var(--navy); color: var(--white);
  padding: 13px 22px; border-radius: 999px; font-weight: 800;
  transition: .2s ease; border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); background: #102b52; }
.btn.secondary { background: #eef5ff; color: var(--navy); }
.hero {
  max-width: 1180px; margin: auto; padding: 105px 24px 80px;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 55px; align-items: center;
}
.badge {
  display: inline-flex; background: #eef5ff; color: var(--blue);
  padding: 8px 14px; border-radius: 999px; font-weight: 800;
  font-size: .85rem; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.55rem, 6vw, 5.25rem); line-height: .95;
  letter-spacing: -.07em; color: var(--navy); margin-bottom: 26px;
}
.hero p { font-size: 1.16rem; color: var(--gray); max-width: 650px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: white; border-radius: 32px; padding: 34px; min-height: 430px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 24px 70px rgba(11,31,58,.23); position: relative; overflow: hidden;
}
.hero-card::after {
  content: ""; position: absolute; width: 250px; height: 250px;
  background: rgba(47,143,70,.22); border-radius: 50%; right: -80px; top: -70px;
}
.hero-card h3 { font-size: 1.8rem; line-height: 1.1; z-index: 1; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; z-index: 1; }
.metric {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px; padding: 18px;
}
.metric strong { display: block; font-size: 1.55rem; margin-bottom: 4px; }
.metric span { color: rgba(255,255,255,.75); font-size: .9rem; }
section { padding: 82px 24px; }
.container { max-width: 1180px; margin: auto; }
.section-title { max-width: 760px; margin-bottom: 42px; }
.section-title span {
  color: var(--blue); font-weight: 850; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .08em;
}
.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1;
  letter-spacing: -.055em; color: var(--navy); margin: 12px 0 18px;
}
.section-title p { color: var(--gray); font-size: 1.05rem; }
.split { background: var(--light); }
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card, .division {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 28px; padding: 30px; transition: .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(0,0,0,.07); }
.icon {
  width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center;
  background: #eef5ff; color: var(--blue); font-weight: 900; margin-bottom: 22px;
}
.service-card h3, .division h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: 12px; }
.service-card p, .division p { color: var(--gray); }
.division-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.division { padding: 36px; }
.division ul { list-style: none; display: grid; gap: 12px; color: var(--gray); }
.division li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 10px; }
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 55px; align-items: center; }
.about-box { background: var(--navy); color: white; border-radius: 32px; padding: 38px; }
.about-box h3 { font-size: 2rem; margin-bottom: 15px; line-height: 1.08; }
.about-box p { color: rgba(255,255,255,.78); }
.contact { background: linear-gradient(145deg, var(--navy), var(--navy-2)); color: white; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 45px; align-items: start; }
.contact h2 {
  font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.06em;
  line-height: 1; margin-bottom: 20px;
}
.contact p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.contact-info { display: grid; gap: 12px; color: rgba(255,255,255,.88); }
form {
  background: white; border-radius: 30px; padding: 30px; display: grid; gap: 15px;
}
input, textarea, select {
  width: 100%; padding: 15px 16px; border: 1px solid var(--border);
  border-radius: 14px; font: inherit; outline: none;
}
textarea { min-height: 130px; resize: vertical; }
form .btn { width: 100%; }
footer { background: #071426; color: rgba(255,255,255,.72); padding: 34px 24px; }
.footer-inner {
  max-width: 1180px; margin: auto; display: flex; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
@media (max-width: 900px) {
  .hero, .about, .contact-grid, .division-grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; gap: 12px; }
  .nav-links { display: none; }
  .hero { padding-top: 70px; }
  .hero-card { min-height: 330px; }
}
.site-logo {
  height: 82px;
  width: auto;
  display: block;
}
