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

:root {
  --blue: #1a5fa8;
  --blue-dark: #0f3d72;
  --blue-mid: #2474c0;
  --blue-light: #e6f0fa;
  --orange: #e87722;
  --orange-light: #fdf0e6;
  --green: #3a8a5e;
  --text: #1a2535;
  --muted: #546070;
  --white: #ffffff;
  --bg: #f5f8fc;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(15,61,114,0.10);
  --shadow-lg: 0 12px 40px rgba(15,61,114,0.16);
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1rem; font-weight: 700; }

/* ── NAV ── */
nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 60px;
}

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  text-decoration: none;
}
.logo span { color: var(--orange); }

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

nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--orange); }

.nav-btn {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-btn:hover { background: #cf6510 !important; color: var(--white) !important; }

/* ── HERO ── */
header {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  max-width: 780px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 22px;
}

h1 { color: var(--white); margin-bottom: 20px; }
h1 span { color: var(--orange); }

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: #cf6510; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  margin-left: 14px;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ── LICENSE STRIP ── */
.license-strip {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  text-align: center;
  padding: 10px 20px;
  letter-spacing: 0.3px;
}
.license-strip strong { color: var(--orange); }

/* ── SECTIONS ── */
section { padding: 88px 60px; }
.container { max-width: 1120px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-intro {
  color: var(--muted);
  font-size: 1rem;
  max-width: 620px;
  margin-top: 14px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.about-grid img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.fact {
  background: var(--blue-light);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.fact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.fact p { font-size: 0.88rem; color: var(--blue-dark); font-weight: 500; line-height: 1.5; }

/* ── VALUES ── */
.values-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  padding: 38px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--blue);
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-card .vi { font-size: 2.4rem; margin-bottom: 16px; }
.value-card h3 { color: var(--blue-dark); font-size: 0.95rem; }

/* ── SERVICE TILES ── */
.service-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 50px;
}

.service-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s;
}
.service-tile:hover { transform: translateY(-6px); }

.tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.48);
  transition: filter 0.25s;
}
.service-tile:hover .tile-bg { filter: brightness(0.38); }

.tile-content {
  position: relative;
  z-index: 2;
  padding: 32px 30px;
}
.tile-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}
.tile-content h3 { color: var(--white); font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.tile-content p { color: rgba(255,255,255,0.82); font-size: 0.88rem; margin-bottom: 18px; }
.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
}
.tile-link::after { content: '→'; }

/* ── TEAM ── */
.team-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.team-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.specialist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-light);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--blue-dark);
}
.spec-item::before { content: '✦'; color: var(--orange); flex-shrink: 0; }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}

.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 { color: var(--blue-dark); margin-bottom: 10px; font-size: 1rem; }
.why-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── CONTACT ── */
.contact-section {
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
}

.contact-section h2 { color: var(--white); margin-bottom: 10px; }
.contact-section .section-tag { color: var(--orange); }
.contact-sub { color: rgba(255,255,255,0.68); font-size: 0.95rem; margin-bottom: 48px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  max-width: 960px;
  margin: 0 auto 44px;
}

.cc {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  padding: 28px 20px;
}
.cc .cc-icon { font-size: 1.7rem; margin-bottom: 10px; }
.cc h4 {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.cc p, .cc a {
  color: rgba(255,255,255,0.9);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
}
.cc a:hover { color: var(--orange); }

/* ── FOOTER ── */
footer {
  background: #091b2e;
  text-align: center;
  padding: 20px 60px;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}
footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer a:hover { color: var(--orange); }
footer span { margin: 0 8px; opacity: 0.3; }

/* ── SERVICE CARDS (detail pages) ── */
.specialist-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.spec-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--blue);
}
.spec-card .sc-icon { font-size: 2rem; margin-bottom: 14px; }
.spec-card h3 { color: var(--blue-dark); font-size: 1rem; margin-bottom: 6px; }
.spec-card .sc-names { font-size: 0.8rem; color: var(--orange); font-weight: 600; margin-bottom: 14px; }
.spec-card ul { list-style: none; }
.spec-card ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--bg);
  padding-left: 14px;
  position: relative;
}
.spec-card ul li::before { content: '–'; position: absolute; left: 0; color: var(--blue); }

/* ── PROCESS STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.step-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 22px;
}

.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.step-box p { font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.6; }

/* ── HIGHLIGHT BOX ── */
.highlight {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  font-size: 1.02rem;
  color: var(--text);
  margin: 24px 0;
}
.highlight strong { color: var(--blue-dark); }

/* ── FOR WHOM ── */
.for-whom-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.for-whom-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.condition-list {
  list-style: none;
  margin-top: 20px;
}
.condition-list li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-size: 0.93rem;
  color: var(--muted);
  border-bottom: 1px solid var(--blue-light);
}
.condition-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ── SPECIFICS ── */
.specifics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.specific {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
}
.sp-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.specific p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* ── SECTION ALTERNATING BG ── */
.bg-light { background: var(--bg); }
.bg-blue-light { background: var(--blue-light); }
.bg-dark { background: var(--blue-dark); color: var(--white); }
.bg-dark h2 { color: var(--white); }
.bg-dark .section-tag { color: var(--orange); }

/* ── FACILITY BANNER ── */
.facility-banner {
  position: relative;
  height: 440px;
  overflow: hidden;
}
.facility-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,61,114,0.88) 0%, rgba(15,61,114,0.35) 55%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 80px;
}
.facility-text { max-width: 480px; color: var(--white); }
.facility-text .section-tag { color: var(--orange); }
.facility-text h2 { color: var(--white); margin-bottom: 14px; }
.facility-text p { color: rgba(255,255,255,0.83); font-size: 0.98rem; }

/* ── MOBILE MENU TOGGLE ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav ul { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 60px 24px; }
  .hero-content { padding: 0 24px 60px; }
  .about-grid, .for-whom-wrap, .team-wrap { grid-template-columns: 1fr; gap: 36px; }
  .about-grid img, .for-whom-wrap img, .team-wrap img { max-height: 320px; }
  .service-tiles { grid-template-columns: 1fr; }
  .facility-overlay { padding: 0 28px; }
  .facility-banner { height: 360px; }
  .about-facts { grid-template-columns: 1fr; }
  .specialist-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
