:root {
  --gold: #e8a83a;
  --gold-light: #f2bc57;
  --gold-dark: #c48a22;
  --dark: #0f1419;
  --dark-2: #1a222d;
  --dark-3: #243040;
  --text: #e8eaed;
  --text-muted: #9aa3b0;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,.35);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
a { color: var(--gold-light); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1120px, 92%); margin: 0 auto; }

header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,20,25,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,168,58,.15);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0; gap: 1rem;
}
.logo img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 1.35rem; align-items: center; }
.nav-links a {
  color: var(--text); font-weight: 500; font-size: 0.95rem;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: 0.55rem 1.1rem; border-radius: 6px; font-weight: 600;
}
.nav-cta:hover { background: var(--gold-light); color: var(--dark) !important; }
.phone-header {
  font-weight: 600; color: var(--gold-light); font-size: 0.95rem;
  white-space: nowrap;
}
.menu-toggle {
  display: none; background: none; border: none; color: var(--text);
  font-size: 1.5rem; cursor: pointer; padding: 0.25rem;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, rgba(15,20,25,.78) 0%, rgba(15,20,25,.55) 100%),
              url('../images/web/job-01.jpg') center/cover no-repeat;
}
.hero-content { padding: 3.5rem 0 4.5rem; max-width: 680px; }
.hero-badge {
  display: inline-block; background: rgba(232,168,58,.15);
  color: var(--gold-light); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.85rem; border-radius: 999px; margin-bottom: 1.25rem;
  border: 1px solid rgba(232,168,58,.3);
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--gold-light); }
.hero-lead {
  font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem;
  max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem; border-radius: 8px; font-weight: 600;
  font-size: 1rem; border: none; cursor: pointer; transition: all .2s;
  text-align: center;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-block { width: 100%; padding: 0.95rem; font-size: 1.05rem; }

.stats {
  background: var(--dark-2); border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 2rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center;
}
.stat-value { font-size: 1.6rem; font-weight: 700; color: var(--gold-light); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

section { padding: 4rem 0; position: relative; }
.section-label {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}
h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 700; line-height: 1.25; margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.lead { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; margin-bottom: 1.75rem; }

.bg-section { background-size: cover; background-position: center; background-repeat: no-repeat; }
.bg-section .overlay {
  background: linear-gradient(180deg, rgba(15,20,25,.88) 0%, rgba(15,20,25,.93) 100%);
  padding: 4rem 0;
}

.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.split img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
}

.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 1.75rem;
}
.card {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 1.75rem; transition: border-color .2s;
}
.card:hover { border-color: rgba(232,168,58,.35); }
.card-icon {
  width: 44px; height: 44px; background: rgba(232,168,58,.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1rem; color: var(--gold);
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

.checklist { list-style: none; margin-top: 1.5rem; }
.checklist li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 0.98rem;
}
.checklist li::before {
  content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0;
}

.audience {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.audience-card {
  background: var(--dark-2); border-radius: var(--radius);
  padding: 2rem; border: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column;
}
.audience-card.carriers { border-top: 3px solid var(--gold); }
.audience-card.clients { border-top: 3px solid #4a90d9; }
.audience-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.audience-card ul { list-style: none; margin: 1rem 0 1.5rem; flex-grow: 1; }
.audience-card li {
  padding: 0.4rem 0; padding-left: 1.25rem; position: relative;
  color: var(--text-muted); font-size: 0.95rem;
}
.audience-card li::before {
  content: "→"; position: absolute; left: 0; color: var(--gold);
}
.audience-card .btn { margin-top: auto; width: 100%; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 1.75rem;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 8px; transition: transform .3s;
}
.gallery-grid a:hover img { transform: scale(1.03); }

.form-section { background: var(--dark-2); }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start;
}
form {
  background: var(--dark-3); padding: 1.75rem; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
}
.form-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-group { margin-bottom: 0.85rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 500;
  color: var(--text-muted); margin-bottom: 0.3rem;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.75rem 0.9rem;
  background: var(--dark); border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; color: var(--text); font-size: 1rem;
  font-family: inherit; transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-consent {
  font-size: 0.75rem; color: var(--text-muted); margin: 1rem 0;
  line-height: 1.45;
}
.form-consent a { text-decoration: underline; }
.form-note {
  font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center;
}

.contact-bar {
  background: var(--dark-3); padding: 2.5rem 0; text-align: center;
}
.contact-bar .phone {
  font-size: 1.8rem; font-weight: 700; color: var(--gold-light);
  margin: 0.5rem 0; display: block;
}
.contact-bar .address { color: var(--text-muted); font-size: 0.95rem; }

.legal-page {
  max-width: 720px; margin: 0 auto; padding: 3rem 0 4rem;
}
.legal-page h2 { margin-bottom: 1.5rem; }
.legal-page h3 { font-size: 1.15rem; margin: 1.75rem 0 0.6rem; color: var(--gold-light); }
.legal-page p, .legal-page li {
  color: var(--text-muted); margin-bottom: 0.85rem; font-size: 0.95rem;
}
.legal-page ul { margin: 0.5rem 0 1rem 1.25rem; }

.page-hero {
  padding: 3rem 0 2rem;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.02em;
}

footer {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,.06);
  padding: 2.5rem 0 1.5rem; font-size: 0.9rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand img { height: 36px; margin-bottom: 0.75rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; }
.footer-col h4 {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); margin-bottom: 0.85rem;
}
.footer-col a {
  display: block; color: var(--text); margin-bottom: 0.4rem;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.25rem; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem; color: var(--text-muted); font-size: 0.8rem;
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark-2); flex-direction: column; padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08); gap: 0.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem; font-size: 1.05rem; }
  .phone-header { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .split, .audience, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 68vh; }
  .hero-content { padding: 2.5rem 0 3.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .audience-card.carriers .btn { padding: 1.1rem; font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
