/* ── Fonts ───────────────────────────────────────────────────────────────── */
@font-face { font-family: 'NeueMachina'; src: url('/fonts/garantpro-regular-300.woff') format('woff'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'NeueMachina'; src: url('/fonts/garantpro-regular-400.woff') format('woff'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'NeueMachina'; src: url('/fonts/garantpro-bold-500.woff') format('woff');   font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'NeueMachina'; src: url('/fonts/garantpro-bold-600.woff') format('woff');   font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'NeueMachina'; src: url('/fonts/NeueMachina-Ultrabold.woff') format('woff'); font-weight: 700; font-style: normal; font-display: swap; }

/* ── Reset & base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #111; --text: #d9d9d9; --white: #ffffff;
  --orange: #f26928; --card-bg: #1a1a1a;
  --border: rgba(255,255,255,0.1); --font: 'NeueMachina', Arial, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 40px; height: 68px; }
.nav-menu { display: flex; gap: 36px; list-style: none; }
.nav-menu a { font-size: 14px; font-weight: 600; color: var(--text); transition: color .25s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--orange); }
.nav-cta { background: var(--orange); color: var(--white); padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; transition: opacity .25s; }
.nav-cta:hover { opacity: .85; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* ── Language switch ─────────────────────────────────────────────────────── */
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; }
.lang-switch a { color: rgba(255,255,255,.45); transition: color .25s; padding: 2px 4px; }
.lang-switch a:hover, .lang-switch a.lang-active { color: var(--orange); }
.lang-switch span { color: rgba(255,255,255,.2); font-weight: 400; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer { background: #0a0a0a; border-top: 1px solid var(--border); padding: 48px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-logo { font-size: 16px; font-weight: 700; color: var(--white); }
.footer-logo .accent { color: var(--orange); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 13px; color: var(--text); transition: color .25s; }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.4; }

/* ── Section typography (unified across all pages) ──────────────────────── */
section { padding: 100px 0; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.section-title {
  font-size: 40px; font-weight: 700; line-height: 1.1;
  color: var(--white); text-transform: uppercase; margin-bottom: 20px;
}
.section-sub {
  font-size: 17px; color: var(--text); opacity: .65;
  max-width: 600px; line-height: 1.65;
}

/* ── Buttons (reusable) ─────────────────────────────────────────────────── */
.btn-primary {
  background: var(--orange); color: var(--white); padding: 14px 32px;
  border-radius: 6px; font-size: 15px; font-weight: 600;
  transition: opacity .25s; display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { opacity: .85; }
.btn-outline {
  border: 1px solid var(--border); color: var(--text); padding: 14px 32px;
  border-radius: 6px; font-size: 15px; font-weight: 600;
  transition: border-color .25s, color .25s; display: inline-block;
}
.btn-outline:hover { border-color: var(--orange); color: var(--white); }

/* ── Service cards (reusable on landing + homepage) ─────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 60px;
}
.service-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s;
}
.service-card:hover { border-color: rgba(242,105,40,.5); transform: translateY(-4px); }
.service-icon { font-size: 32px; margin-bottom: 20px; }
.service-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.service-text { font-size: 14px; color: var(--text); line-height: 1.65; flex: 1; }
.service-link {
  margin-top: 24px; font-size: 14px; font-weight: 600; color: var(--orange);
  display: inline-flex; align-items: center; gap: 6px; transition: gap .2s;
}
.service-link:hover { gap: 10px; }
.service-card.wide { grid-column: span 2; }
.service-card.full { grid-column: 1 / -1; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  section { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.wide { grid-column: span 1; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.full { grid-column: 1; }
}
