@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Public+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  --navy-deep: #041B27;
  --navy: #0B3B57;
  --red: #E5313F;
  --orange: #F2A83D;
  --blue: #3A63A8;
  --paper: #F0F3F1;
  --paper-2: #E7ECE9;
  --ink: #0A2233;
  --muted: #55707D;
  --muted-light: #9FC0CB;
  --line: rgba(10,34,51,.14);
  --line-light: rgba(255,255,255,.16);

  --display: 'Space Grotesk', Arial, sans-serif;
  --body: 'Public Sans', Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ---------- Utility tag / stamp ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--red);
  border: 1px dashed rgba(229,49,63,.45);
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.tag.light { color: var(--orange); border-color: rgba(242,168,61,.5); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(240,243,241,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 176px; max-height: 56px; object-fit: contain; }
.nav-links { display: flex; gap: 26px; font-size: 14px; font-weight: 600; }
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a:hover { color: var(--red); }
.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  background: #fff;
}
.lang-switch button {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 6px 11px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.active { background: var(--navy-deep); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--paper);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.glow-one { width: 420px; height: 420px; right: -140px; top: -140px; background: rgba(229,49,63,.22); }
.glow-two { width: 340px; height: 340px; left: -140px; bottom: -120px; background: rgba(58,99,168,.22); }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
  padding: 84px 0 70px;
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: #fff;
}
.hero h1 .accent { color: var(--orange); }
.hero-copy p {
  max-width: 560px;
  margin: 24px 0 30px;
  color: var(--muted-light);
  font-size: 17px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #fff; background: var(--red); box-shadow: 0 12px 28px rgba(229,49,63,.28); }
.btn.secondary { background: transparent; border: 1px solid rgba(255,255,255,.28); color: #fff; }
.btn.secondary:hover { background: rgba(255,255,255,.08); }

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.hero-logo img {
  width: min(100%, 460px);
  height: auto;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,.35));
}

/* ---------- Sections generic ---------- */
.section { padding: 100px 0; }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading.light p { color: var(--muted-light); }
.section-heading h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.brands-section .section-heading h2 { color: #fff; }
.section-heading p { margin: 0; color: var(--muted); font-size: 16.5px; max-width: 620px; }

/* ---------- About cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.card .icon {
  width: 42px; height: 42px;
  color: var(--red);
  margin-bottom: 20px;
}
.card .icon svg { width: 100%; height: 100%; }
.card h3 { margin: 0 0 8px; font-family: var(--display); font-size: 18px; color: var(--navy); }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Brands section ---------- */
.brands-section {
  padding: 100px 0;
  background: var(--navy-deep);
  color: var(--paper);
}
.sector { margin-top: 44px; }
.sector:first-of-type { margin-top: 0; }
.sector-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--orange);
  padding-bottom: 12px;
  margin-bottom: 22px;
  border-bottom: 1px dashed var(--line-light);
}
.sector-label.muted { color: var(--muted-light); }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}
.brand-card {
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  transition: border-color .2s ease, background .2s ease;
}
.brand-card:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.07); }
.brand-logo {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo img { max-height: 46px; width: auto; filter: brightness(0) invert(1); opacity: .92; }

.brand-card.featured { padding: 0; overflow: hidden; position: relative; }
.brand-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 24px;
  min-height: 110px;
}
.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--orange);
  padding: 5px 11px;
  border-radius: 999px;
}

/* ---------- Contact ---------- */
.contact-section { padding: 0 0 100px; background: var(--paper); }
.contact-box {
  padding: 55px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.contact-box h2 { font-family: var(--display); color: #fff; margin: 0 0 14px; font-size: clamp(28px,3.4vw,42px); letter-spacing: -.02em; }
.contact-box p { color: var(--muted-light); margin: 0 0 18px; }
.location {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--orange);
  text-transform: uppercase;
}
.contact-links { display: grid; gap: 12px; }
.contact-links a {
  display: flex; flex-direction: column; gap: 3px;
  padding: 18px 20px; border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px; background: rgba(255,255,255,.05);
  transition: background .2s ease;
}
.contact-links a:hover { background: rgba(255,255,255,.1); }
.contact-links span { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-light); }
.contact-links strong { font-size: 16px; font-weight: 700; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 24px 0; color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer-inner a:hover { color: var(--red); }

/* ---------- Focus states ---------- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ---------- Mobile menu toggle ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; padding: 60px 0 50px; }
  .hero-logo { order: -1; padding: 0 10px 10px; }
  .hero-logo img { max-width: 300px; margin: 0 auto; }
  .cards, .brand-grid { grid-template-columns: 1fr; }
  .contact-box { grid-template-columns: 1fr; padding: 36px 26px; }
  .section { padding: 70px 0; }
  .brands-section { padding: 70px 0; }
  .contact-section { padding-bottom: 70px; }
}
@media (max-width: 640px) {
  .nav { min-height: 68px; gap: 12px; }
  .brand img { width: 140px; }
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav-links.open { max-height: 260px; }
  .nav-links a { padding: 14px 20px; border-top: 1px solid var(--line); }
  .container { width: min(100% - 28px, 1160px); }
  .footer-inner { flex-direction: column; gap: 8px; }
}
