/* ============================================================
   PeakLift Pro – styles.css
   Design: Dark navy primary, electric blue accent, sky highlight
   Font: Inter (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0F172A;
  --blue:    #2563EB;
  --sky:     #38BDF8;
  --white:   #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100:#F1F5F9;
  --gray-200:#E2E8F0;
  --gray-400:#94A3B8;
  --gray-600:#475569;
  --gray-800:#1E293B;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.06);
  --shadow-md: 0 4px 16px rgba(15,23,42,.10);
  --shadow-lg: 0 10px 40px rgba(15,23,42,.14);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sky); }
ul { list-style: none; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { color: var(--gray-600); }
.lead { font-size: 1.15rem; line-height: 1.7; }

/* ─── UTILITIES ─────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }

.badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(37,99,235,.1);
  color: var(--blue);
  margin-bottom: 16px;
}

.section-header { max-width: 640px; margin: 0 auto 56px; }
.section-header p { margin-top: 14px; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-ghost {
  background: var(--gray-100);
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-ghost:hover {
  background: var(--gray-200);
  color: var(--navy);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ─── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,23,42,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.25); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--sky); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 7px 14px;
  border-radius: 7px;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--gray-800);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 60%, var(--navy) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(56,189,248,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 span { color: var(--sky); }
.hero p { color: rgba(255,255,255,.72); font-size: 1.15rem; margin-bottom: 38px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(56,189,248,.1);
  border: 1px solid rgba(56,189,248,.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .8rem;
  color: var(--sky);
  font-weight: 500;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky); }

/* ─── FEATURES / WHY US ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(37,99,235,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: .9rem; }

/* ─── SERVICES ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--gray-300, #CBD5E1);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: .9rem; margin-bottom: 18px; }
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  font-size: .85rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── INDUSTRIES ────────────────────────────────────────────── */
.industries-section { background: var(--navy); }
.industries-section h2, .industries-section .badge, .industries-section p { color: rgba(255,255,255,.85); }
.industries-section h2 { color: var(--white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.industry-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.industry-item:hover {
  background: rgba(56,189,248,.1);
  border-color: rgba(56,189,248,.3);
  transform: translateY(-2px);
}
.industry-emoji { font-size: 2rem; margin-bottom: 12px; }
.industry-item p {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin: 0;
}

/* ─── PROCESS ───────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { font-size: .9rem; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--blue);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ─── CONTACT FORM ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(37,99,235,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: .85rem; color: var(--navy); }
.contact-detail-text span { font-size: .9rem; color: var(--gray-600); }
.contact-hours {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 28px;
}
.contact-hours h4 { margin-bottom: 10px; font-size: .9rem; }
.contact-hours p { font-size: .85rem; margin: 4px 0; }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error {
  font-size: .8rem;
  color: #DC2626;
  display: none;
}
.form-group.has-error input,
.form-group.has-error textarea { border-color: #DC2626; }
.form-group.has-error .form-error { display: block; }
.form-success {
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  color: #166534;
  font-size: .9rem;
  display: none;
}
.form-success.visible { display: block; }
.form-disclaimer {
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: 12px;
  line-height: 1.5;
}

/* ─── HERO / PAGE HEADER FOR INNER PAGES ───────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.value-card .icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: .9rem; }

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-card {
  border-radius: var(--radius-lg);
  padding: 36px;
}
.mv-card.mission {
  background: var(--navy);
  color: var(--white);
}
.mv-card.vision {
  background: linear-gradient(135deg, var(--blue), #1D4ED8);
  color: var(--white);
}
.mv-card h3 { color: var(--white); margin-bottom: 12px; }
.mv-card p { color: rgba(255,255,255,.8); }

.ethics-box {
  background: rgba(37,99,235,.06);
  border: 1px solid rgba(37,99,235,.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 48px;
}
.ethics-box h3 { margin-bottom: 14px; }
.ethics-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.ethics-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-600);
}
.ethics-list li::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── LEGAL / POLICY PAGES ──────────────────────────────────── */
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-body h2 { margin: 48px 0 14px; font-size: 1.35rem; }
.legal-body h3 { margin: 28px 0 10px; font-size: 1.05rem; }
.legal-body p { margin-bottom: 16px; font-size: .95rem; line-height: 1.75; }
.legal-body ul {
  margin: 12px 0 18px 20px;
  list-style: disc;
}
.legal-body ul li { font-size: .95rem; color: var(--gray-600); margin-bottom: 8px; line-height: 1.65; }
.legal-date {
  font-size: .85rem;
  color: var(--gray-400);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.legal-toc {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 40px;
}
.legal-toc h4 { margin-bottom: 12px; font-size: .95rem; }
.legal-toc ol {
  margin-left: 18px;
  list-style: decimal;
}
.legal-toc ol li { font-size: .88rem; margin-bottom: 6px; }
.legal-toc ol li a { color: var(--blue); }

/* ─── COOKIE CONSENT BANNER ─────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
#cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { font-size: .88rem; color: rgba(255,255,255,.8); flex: 1; min-width: 200px; }
.cookie-text a { color: var(--sky); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { font-size: .85rem; padding: 10px 20px; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: .88rem; margin: 14px 0 24px; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: all var(--transition);
}
.social-link:hover { background: var(--blue); color: var(--white); }

.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--sky); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--sky); }

/* ─── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--sky); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ─── MISC COMPONENTS ───────────────────────────────────────── */
.divider { height: 1px; background: var(--gray-200); margin: 0; }

.cta-strip {
  background: linear-gradient(135deg, var(--blue), #1D4ED8);
  padding: 72px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto 32px; }
.cta-strip .btn-outline { border-color: rgba(255,255,255,.5); }

.map-placeholder {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--gray-400);
  font-size: .9rem;
  margin-top: 24px;
}
.map-placeholder .icon { font-size: 2rem; }

/* ─── SKIP LINK ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 60px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .services-grid, .features-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .form-card { padding: 24px; }
  .cookie-inner { flex-direction: column; }
  .industries-grid { grid-template-columns: 1fr; }
}

/* ─── FOCUS VISIBLE ─────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
