/* ═══════════════════════════════════════════════
   SKANBETON – Static Microsite
   ═══════════════════════════════════════════════ */

:root {
  --primary:     #2B2A70;
  --primary-dark:#2B2A70;
  --accent:      #2B2A70;
  --text:        #1a1a2e;
  --text-muted:  #6b7280;
  --bg-light:    #f4f6fb;
  --white:       #ffffff;
  --border:      #e5e8ef;
  --yellow:      #7B7AC8;
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Container ───────────────────────────────── */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Button ──────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 13px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  transition: opacity .2s;
}
.btn-primary:hover { opacity: .85; }

/* ── HEADER ──────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo img { height: 42px; width: auto; }

.site-nav { display: flex; gap: 32px; }
.site-nav a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.site-nav a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var(--primary) url('../images/hero-bg.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(43,42,112,.97) 45%, rgba(43,42,112,.6) 100%);
}
.hero .container { position: relative; z-index: 1; padding-top: 72px; padding-bottom: 72px; }

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  border-left: 3px solid var(--yellow);
  padding-left: 12px;
}
.hero-title {
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-text {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ── SECTIONS ────────────────────────────────── */
.section { padding: 68px 0; }
.section-light { background: var(--bg-light); }

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
}
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  background: var(--yellow);
}
.section-title.left::after { left: 0; transform: none; }
.section-sub { color: var(--text-muted); font-size: 15px; }

/* ── ABOUT ───────────────────────────────────── */
.about-content { max-width: 680px; }
.about-content p {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 15px;
}
.company-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--white);
  border-left: 4px solid var(--primary);
  font-size: 14px;
  color: var(--text-muted);
}
.company-info span:first-child {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}
.company-email {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.company-email:hover {
  text-decoration: underline;
}

/* ── CONTACT ─────────────────────────────────── */
.contact-box {
  background: var(--primary);
  color: var(--white);
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}
.contact-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.contact-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 16px;
}
.contact-phone {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  transition: opacity .2s;
}
.contact-phone:hover { opacity: .8; }
.contact-email {
  display: block;
  font-size: 16px;
  color: var(--yellow);
  margin-bottom: 12px;
  transition: opacity .2s;
}
.contact-email:hover { opacity: .8; }
.contact-note {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  background: var(--primary-dark);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-bottom {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 640px) {
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 12px; letter-spacing: 0.5px; }
  .contact-box { padding: 36px 24px; }
  .contact-phone { font-size: 22px; }
}
