/* ============================================
   RIVIERA CONSULTING - Stile principale
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1a2e4a;
  --navy2:   #243b5a;
  --gold:    #b8962e;
  --gold2:   #d4af37;
  --white:   #ffffff;
  --gray:    #f5f6f8;
  --gray2:   #e8eaed;
  --text:    #2d3748;
  --light:   #6b7280;
  --radius:  4px;
  --shadow:  0 4px 20px rgba(0,0,0,.10);
  --shadow2: 0 8px 40px rgba(0,0,0,.16);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility --- */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--light);
  max-width: 620px;
  margin: 0 auto 52px;
}
.text-center { text-align: center; }
.btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ============================================
   HEADER
   ============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: box-shadow .3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--navy);
  text-transform: uppercase;
}
.logo-dots {
  display: flex;
  gap: 4px;
}
.logo-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot1 { background: #5a7a3a; }
.dot2 { background: #2a8a7a; }
.dot3 { background: #1a3a5a; }
.dot4 { background: #111111; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  position: relative;
}
.nav a:hover { color: var(--gold); }
.nav a.active { color: var(--gold); }

/* Dropdown */
.nav .has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  min-width: 240px;
  z-index: 100;
  overflow: hidden;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: .84rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  border-left: 3px solid transparent;
  transition: border-color .2s, background .2s;
}
.dropdown a:hover { border-left-color: var(--gold); background: var(--gray); color: var(--navy); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  letter-spacing: .5px;
}
.mobile-nav .mobile-sub a {
  font-size: .95rem;
  font-weight: 400;
  padding: 10px 0 10px 20px;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,28,55,.78) 0%, rgba(15,28,55,.62) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.hero-tag {
  display: inline-block;
  background: rgba(184,150,46,.25);
  border: 1px solid rgba(184,150,46,.6);
  color: var(--gold2);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: translateX(-50%) rotate(45deg);
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%,100% { bottom: 36px; opacity: .5; }
  50% { bottom: 28px; opacity: 1; }
}

/* Hero (pagine interne — più piccolo) */
.hero-sm {
  min-height: 320px;
  padding: 140px 24px 60px;
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}
.hero-sm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,28,55,.75);
}
.hero-sm-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.hero-sm h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-sm .breadcrumb {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
}
.hero-sm .breadcrumb a { color: var(--gold2); }

/* ============================================
   ABOUT / CHI SIAMO
   ============================================ */
.about { padding: 96px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-title { text-align: left; margin-bottom: 20px; }
.about-text p { color: var(--light); margin-bottom: 18px; font-size: 1.02rem; }
.about-quote {
  background: var(--gray);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  margin: 28px 0 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-quote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 8px;
}
.about-quote cite { font-size: .85rem; color: var(--light); font-style: normal; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: var(--navy);
  color: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: .82rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   SERVIZI
   ============================================ */
.services { padding: 96px 0; background: var(--gray); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.service-card:hover::after { transform: scaleX(1); }
.service-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gray2);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.service-card p { font-size: .88rem; color: var(--light); line-height: 1.65; flex: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: gap .2s;
}
.service-link:hover { gap: 10px; }
.service-link::after { content: '→'; }

/* ============================================
   VALORI
   ============================================ */
.values { padding: 96px 0; background: var(--navy); }
.values .section-title { color: var(--white); }
.values .section-subtitle { color: rgba(255,255,255,.6); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 8px;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  transition: border-color .25s, background .25s;
}
.value-card:hover { border-color: var(--gold); background: rgba(255,255,255,.04); }
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(184,150,46,.18);
  border: 1px solid rgba(184,150,46,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
}
.value-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.value-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold) 0%, #a07820 100%);
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 36px; font-size: 1.05rem; }

/* ============================================
   SERVIZIO DETTAGLIO (pagine singole)
   ============================================ */
.service-detail { padding: 80px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-badge {
  display: inline-block;
  background: rgba(184,150,46,.12);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(184,150,46,.3);
}
.service-detail h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-meta {
  background: var(--gray);
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .88rem;
  color: var(--light);
  margin-bottom: 32px;
}
.service-section-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  margin-top: 36px;
}
.service-detail p { color: var(--light); margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.steps-list { counter-reset: step; display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.step-num {
  min-width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-text { font-size: .9rem; color: var(--text); line-height: 1.65; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.sidebar-card h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: .87rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.sidebar-links a:hover { background: var(--navy); color: var(--white); }
.sidebar-links a.current { background: var(--navy); color: var(--white); font-weight: 600; }
.contact-sidebar {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.contact-sidebar h4 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.contact-sidebar p { color: rgba(255,255,255,.65); font-size: .87rem; margin-bottom: 20px; }

/* ============================================
   CONTATTI
   ============================================ */
.contact-section { padding: 80px 0; }
.contacts-section { padding: 80px 0; }
.contact-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-info p { color: var(--light); margin-bottom: 24px; font-size: 1rem; }
.info-block { display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }
.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,150,46,.12);
  border: 1px solid rgba(184,150,46,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-item strong { font-size: .82rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 4px; }
.info-item p { font-size: .95rem; color: var(--light); line-height: 1.6; margin: 0; }
.info-item a { color: var(--gold); }
.contact-form-wrap {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,150,46,.12);
  border: 1px solid rgba(184,150,46,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: .85rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.contact-item p { font-size: .95rem; color: var(--light); line-height: 1.6; }
.contact-item a { color: var(--gold); }
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.form-check input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.form-check label { font-size: .85rem; color: var(--light); font-weight: 400; text-transform: none; letter-spacing: 0; cursor: pointer; }
.form-check a { color: var(--gold); }

/* Form */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray2);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,46,.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.privacy-check input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--gold); }
.privacy-check label { font-size: .85rem; color: var(--light); font-weight: 400; text-transform: none; letter-spacing: 0; }
.privacy-check a { color: var(--gold); }
.form-notice {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 20px;
  display: none;
}
.form-notice.success { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; display: block; }
.form-notice.error { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy); color: var(--white); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo .logo-name { color: var(--white); }
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.55); margin: 16px 0 24px; line-height: 1.7; max-width: 320px; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contacts a, .footer-contacts span { font-size: .85rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 8px; }
.footer-contacts a:hover { color: var(--gold2); }
.footer h4 { font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold2); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }

/* ============================================
   PAGINA PRIVACY
   ============================================ */
.privacy-page { padding: 80px 0; max-width: 800px; margin: 0 auto; }
.privacy-page h1 { font-size: 2rem; color: var(--navy); margin-bottom: 32px; }
.privacy-page h2 { font-size: 1.2rem; color: var(--navy); margin: 32px 0 12px; }
.privacy-page p, .privacy-page li { font-size: .95rem; color: var(--light); line-height: 1.8; margin-bottom: 14px; }
.privacy-page ul { padding-left: 20px; list-style: disc; }

/* ============================================
   LAVORA CON NOI
   ============================================ */
.career-intro {
  background: var(--gray);
  padding: 80px 0;
}
.career-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.career-form-section { padding: 80px 0; }
.career-values { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.career-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cv-icon { font-size: 1.4rem; min-width: 28px; }
.career-value h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.career-value p { font-size: .88rem; color: var(--light); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .career-intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
  .sidebar { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}
