:root {
  --navy: #23336a;
  --navy-dark: #111b3c;
  --blue-soft: #eaf0ff;
  --gold: #c8a45d;
  --text: #1f2937;
  --muted: #5b6475;
  --line: #dfe5f0;
  --white: #ffffff;
  --soft: #f6f8fc;
  --shadow: 0 24px 70px rgba(17, 27, 60, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Aptos', 'IBM Plex Sans', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.white-section { background: var(--white); }
.soft-section { background: var(--soft); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 229, 240, 0.8);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand { display: inline-flex; align-items: center; color: var(--navy); }
.brand-logo { display: block; height: 56px; width: auto; max-width: min(100%, 310px); object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 600; color: var(--muted); }
.main-nav a:hover { color: var(--navy); }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--navy); color: var(--white) !important; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(200, 164, 93, 0.24), transparent 28%),
    radial-gradient(circle at 10% 20%, rgba(35, 51, 106, 0.14), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fe 45%, #eef3ff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -160px -260px auto;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(35, 51, 106, 0.13);
  border-radius: 999px;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.72fr; gap: 56px; align-items: center; min-height: 560px; }
.eyebrow { margin: 0 0 16px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.1; color: var(--navy-dark); }
h1 { font-family: 'Aptos Display', 'IBM Plex Sans', 'Inter', system-ui, sans-serif; font-size: clamp(36px, 4.8vw, 58px); letter-spacing: -0.035em; max-width: 790px; font-weight: 700; }
h2 { font-family: 'Aptos Display', 'IBM Plex Sans', 'Inter', system-ui, sans-serif; font-size: clamp(28px, 3.2vw, 42px); letter-spacing: -0.03em; font-weight: 700; }
h3 { font-size: 20px; letter-spacing: -0.02em; }
.hero-lead { margin: 22px 0 32px; max-width: 700px; color: var(--muted); font-size: 17.5px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 22px; border-radius: 999px; font-weight: 800; font-size: 14px; transition: transform .18s ease, box-shadow .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 18px 40px rgba(35, 51, 106, 0.22); }
.btn-secondary { background: var(--white); color: var(--navy); border: 1px solid var(--line); }
.full { width: 100%; margin-top: 12px; }
.hero-card { background: rgba(255,255,255,0.82); border: 1px solid rgba(223,229,240,0.9); box-shadow: var(--shadow); border-radius: 32px; padding: 34px; backdrop-filter: blur(12px); }
.card-line { width: 58px; height: 4px; border-radius: 999px; background: var(--gold); margin-bottom: 28px; }
.hero-card h2 { font-size: 28px; }
.hero-card p { color: var(--muted); }
.mini-stats { display: grid; gap: 16px; margin-top: 28px; }
.mini-stats div { display: grid; grid-template-columns: 76px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); align-items: center; }
.mini-stats strong { color: var(--navy); font-size: 30px; line-height: 1; }
.mini-stats span { color: var(--muted); font-size: 14px; }

.split-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.split-grid.reverse { grid-template-columns: 1fr 1fr; align-items: center; }
.rich-text p { margin-top: 0; color: var(--muted); font-size: 16.5px; }
.light-text p { color: rgba(255,255,255,0.82); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.pillars article, .service-card, .process-step { border: 1px solid var(--line); border-radius: 26px; background: var(--white); padding: 28px; }
.pillars span { color: var(--gold); font-size: 13px; font-weight: 800; letter-spacing: .14em; }
.pillars p, .service-card p, .process-step p { color: var(--muted); margin-bottom: 0; }

.accent-section { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: var(--white); }
.accent-section h2, .accent-section .eyebrow { color: var(--white); }
.highlight-box { border-left: 4px solid var(--gold); padding-left: 30px; }
.highlight-box p { color: var(--gold); text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .16em; }

.section-title { text-align: center; max-width: 820px; }
.section-title.narrow { max-width: 860px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.service-card { box-shadow: 0 16px 46px rgba(17, 27, 60, 0.07); }
.service-card h3 { min-height: 50px; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
.process-step { padding: 24px; }
.process-step span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--blue-soft); color: var(--navy); font-weight: 900; margin-bottom: 22px; }

.reason-list { display: grid; gap: 22px; }
.reason-list div { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.reason-list strong { display: block; color: var(--navy); font-size: 18px; margin-bottom: 6px; }
.reason-list p { color: var(--muted); margin: 0; }
.testimonial-card { max-width: 850px; background: var(--white); border: 1px solid var(--line); border-radius: 32px; padding: 42px; box-shadow: var(--shadow); }
.quote { font-family: 'Aptos Display', 'IBM Plex Sans', 'Inter', system-ui, sans-serif; color: var(--navy-dark); font-size: clamp(24px, 3vw, 36px); line-height: 1.24; margin: 0 0 22px; font-weight: 650; }
.quote-author { color: var(--muted); font-weight: 700; margin: 0; }

.contact-section { background: linear-gradient(135deg, #f7f9fe, #ffffff); }
.contact-grid { display: grid; grid-template-columns: 1fr 0.72fr; gap: 56px; align-items: center; }
.contact-grid p { color: var(--muted); font-size: 16.5px; }
.contact-card { background: var(--navy-dark); color: var(--white); border-radius: 30px; padding: 34px; box-shadow: var(--shadow); }
.contact-card p { color: rgba(255,255,255,.72); font-size: 15px; }
.contact-line { display: block; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-weight: 800; }
.contact-card .btn-primary { background: var(--gold); color: var(--navy-dark); box-shadow: none; }

.site-footer { background: var(--navy-dark); color: var(--white); padding: 54px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.footer-grid p { color: rgba(255,255,255,.65); max-width: 620px; }
.footer-brand { display: inline-flex; align-items: center; padding: 12px 16px; border-radius: 22px; background: rgba(255,255,255,0.96); margin-bottom: 18px; }
.footer-logo { display: block; height: 52px; width: auto; max-width: min(100%, 320px); object-fit: contain; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,.72); font-weight: 700; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.58); font-size: 13px; }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .brand-logo { height: 50px; }
  .hero-grid, .split-grid, .split-grid.reverse, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .pillars, .service-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-wrap { min-height: 70px; }
  .brand-logo { height: 42px; max-width: 240px; }
  .footer-logo { height: 42px; }
  .section-pad { padding: 64px 0; }
  .hero-card, .testimonial-card, .contact-card { border-radius: 24px; padding: 26px; }
  .pillars, .service-grid, .process-grid { grid-template-columns: 1fr; }
  .footer-grid, .footer-bottom { grid-template-columns: 1fr; display: grid; }
  h1 { font-size: 36px; }
}

.founder-section { background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%); }
.founder-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 60px; align-items: start; }
.founder-card { border: 1px solid var(--line); border-radius: 32px; padding: 34px; background: var(--white); box-shadow: 0 18px 46px rgba(17, 27, 60, 0.08); }
.founder-card h2 { font-size: clamp(28px, 3vw, 38px); }
.fairs-section { background: linear-gradient(135deg, var(--navy), #162452); }
.fair-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.fair-tags span { display: inline-flex; align-items: center; min-height: 42px; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: var(--white); font-weight: 800; font-size: 14px; }
@media (max-width: 960px) {
  .founder-grid { grid-template-columns: 1fr; }
}

.hero-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 30px;
}
.hero-specialties span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(35, 51, 106, 0.08);
  border: 1px solid rgba(35, 51, 106, 0.14);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}
.hero-specialties-top { margin: 0 0 18px; }
@media (max-width: 640px) {
  .hero-specialties-top { margin: 0 0 14px; }
}


.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.language-switcher a {
  color: var(--muted);
  transition: color .18s ease;
}
.language-switcher a:hover,
.language-switcher .active-lang {
  color: var(--navy);
}
.language-switcher span {
  color: rgba(91,100,117,0.45);
}
@media (max-width: 960px) {
  .language-switcher { margin-left: auto; }
}
@media (max-width: 640px) {
  .language-switcher {
    gap: 6px;
    padding: 7px 10px;
    font-size: 11px;
  }
}
