/* ============================================
   LOMAX INSULATION — Design System
   ============================================ */

:root {
  /* Brand */
  --navy: #2B2D7B;
  --navy-dark: #1a1c5a;
  --navy-deeper: #12133d;
  --navy-light: #3d3f9e;
  --accent: #E8A838;
  --accent-hover: #d4952e;
  --accent-light: #fdf3e0;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #f1f3f8;
  --gray-200: #e2e5ed;
  --gray-300: #c8cdd8;
  --gray-400: #9aa0b2;
  --gray-500: #6b7280;
  --gray-600: #4b5060;
  --gray-700: #353845;
  --gray-800: #1f2128;
  --gray-900: #111218;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--gray-700); line-height: 1.6; background: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- CONTAINER ---- */
.container { max-width: 70%; margin: 0 auto; padding: 0 2rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.9375rem;
  padding: 0.75rem 1.75rem; border-radius: 8px;
  transition: all 0.25s var(--ease); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 0.9375rem 2.25rem; font-size: 1rem; border-radius: 10px; }
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); border-top: 3px solid var(--accent); }
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(43,45,123,0.3); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--gray-900); border-color: var(--accent); font-weight: 700; }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232,168,56,0.4); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy-deeper); color: rgba(255,255,255,0.7); font-size: 0.8125rem;
  padding: 0.5rem 0;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-phone { color: var(--accent); font-weight: 600; }
.top-bar-phone:hover { color: var(--accent-hover); }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s var(--ease);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 1rem; }
.nav-inner .logo { flex-shrink: 0; }
.nav-inner .nav-links { margin-left: auto; }
.logo img { height: 59px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  font-size: 0.9375rem; font-weight: 500; color: var(--gray-600);
  padding: 0.5rem 0.875rem; border-radius: 6px; transition: all 0.2s var(--ease);
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--gray-50); }
.nav-cta { margin-left: 0.75rem; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white); border-radius: 10px; padding: 0.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12); opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all 0.25s var(--ease);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 0.5rem 0.75rem; border-radius: 6px; font-size: 0.875rem; }
.dropdown-menu a:hover { background: var(--gray-50); color: var(--navy); }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-700); margin: 5px 0; border-radius: 2px; }

/* ---- HERO ---- */
.hero {
  color: var(--white); overflow: hidden; position: relative;
  background: var(--navy-deeper);
}
.hero-inner {
  display: flex;
  min-height: clamp(520px, 72vh, 740px);
  position: relative; z-index: 2;
  width: 100%;
}
.hero-text {
  padding: clamp(4rem, 8vw, 6.5rem) 3rem clamp(4rem, 8vw, 6.5rem) calc(15% + 2rem);
  display: flex; flex-direction: column; justify-content: center;
  max-width: 50%;
}
.hero-image {
  position: absolute; top: 0; bottom: 0; left: 0; right: calc(15% + 2rem); z-index: 0; overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 75% 30%;
}
.hero-image::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right,
    var(--navy-deeper) 0%,
    var(--navy-deeper) 25%,
    rgba(18,19,61,0.85) 38%,
    rgba(18,19,61,0.5) 50%,
    rgba(18,19,61,0.15) 62%,
    transparent 75%
  );
}
/* Legacy support - hide old bg divs */
.hero-bg, .hero-gradient, .hero-pattern { display: none; }

.hero-content { max-width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--accent);
  margin-bottom: 1.5rem; width: fit-content;
}
.hero-badge::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--accent); flex-shrink: 0;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.75rem); line-height: 1.06;
  margin-bottom: 1.25rem; letter-spacing: -0.03em;
}
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: clamp(0.975rem, 1.5vw, 1.125rem); line-height: 1.75;
  color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; align-items: stretch; gap: 0.75rem; flex-wrap: wrap;
}
.stat {
  display: flex; flex-direction: column; justify-content: center;
  padding: 1rem 1.5rem; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
}
.stat-number { display: block; font-size: 1.75rem; font-weight: 800; color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-top: 0.3rem; display: block; }
.stat-divider { display: none; }

/* ---- SECTION ---- */
.section { padding: var(--section-py) 0; }
.products-section,
.solutions-section,
.textured {
  background-color: #f8f9fc;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8cfe0' fill-opacity='0.25'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.section-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--navy); margin-bottom: 1rem;
}
.section-tag::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--accent); flex-shrink: 0;
}
.tag-light { color: rgba(255,255,255,0.7); }
.tag-light::before { background: var(--accent); }
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem;
  letter-spacing: -0.025em; line-height: 1.1;
}
.section-header p { color: var(--gray-500); font-size: 1.0625rem; }

/* ---- SERVICES ---- */
.services-section {
  background: var(--navy-deeper);
  position: relative; overflow: hidden;
}
.services-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232,168,56,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.services-section .section-tag { color: rgba(255,255,255,0.7); }

/* Two-column editorial header */
.services-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: flex-end; margin-bottom: 3rem;
  position: relative; z-index: 1;
}
.services-header-left .section-tag { color: rgba(255,255,255,0.7); }
.services-header-left h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.03em; line-height: 1.05; margin: 0;
}
.services-header-right {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem;
  padding-bottom: 0.25rem;
}
.services-header-right p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; margin: 0; }

/* Ghost card numbers */
.services-grid { counter-reset: service-counter; }
.services-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  position: relative; z-index: 1;
}
.service-card {
  background-image: var(--card-bg);
  background-size: cover; background-position: center;
  border-radius: 16px; padding: 0;
  min-height: 300px;
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column; cursor: pointer;
  position: relative; overflow: hidden;
  counter-increment: service-counter;
  border: none;
}
/* Dark gradient overlay */
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,6,45,1) 0%, rgba(5,6,45,1) 38%, rgba(5,6,45,0.7) 58%, rgba(5,6,45,0.1) 100%);
  transition: background 0.4s var(--ease);
  z-index: 0;
}
.service-card:hover::before {
  background: linear-gradient(to top, rgba(5,6,45,1) 0%, rgba(5,6,45,1) 42%, rgba(5,6,45,0.75) 62%, rgba(5,6,45,0.15) 100%);
}
/* Gold top accent bar */
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent); z-index: 2;
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
/* Card content sits above overlay */
.service-card h3, .service-card p, .service-card .service-link {
  position: relative; z-index: 1;
}
.service-card h3 {
  font-size: 1.0625rem; font-weight: 700; color: var(--white);
  margin: auto 1.5rem 0.5rem; padding-top: 1.5rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.8375rem; color: rgba(255,255,255,0.72);
  margin: 0 1.5rem 1.25rem; line-height: 1.6;
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.8125rem; font-weight: 600; color: var(--accent);
  margin: 0 1.5rem 1.5rem; transition: gap 0.2s var(--ease);
  position: relative; z-index: 1;
}
.service-card:hover .service-link { gap: 0.625rem; }

/* ---- PRODUCTS ---- */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
.product-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gray-200); transition: all 0.3s var(--ease);
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.product-card.featured { border-color: var(--navy); box-shadow: 0 8px 32px rgba(43,45,123,0.12); }
.product-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: var(--accent); color: var(--gray-900); font-size: 0.75rem;
  font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 50px;
  letter-spacing: 0.02em;
}
.product-visual {
  height: 220px; display: flex; align-items: flex-end; justify-content: flex-start;
  position: relative; overflow: hidden;
}
.product-batt { background: linear-gradient(135deg, #f0f1ff 0%, #e8e9ff 100%); }
.product-spray { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: white; }
.product-blown { background: linear-gradient(135deg, #fff5e5 0%, #ffe8c2 100%); }
.product-icon-wrap { opacity: 0.6; }
.product-spray .product-icon-wrap { opacity: 0.4; }
.product-body { padding: 1.75rem; }
.product-body h3 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.625rem; }
.product-body p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 1.25rem; line-height: 1.6; }
.product-features { margin-bottom: 1.5rem; }
.product-features li {
  font-size: 0.875rem; color: var(--gray-600); padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}
.product-features li::before {
  content: ''; position: absolute; left: 0; top: 0.65rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

/* ---- SOLUTIONS (New Const + Retrofit) ---- */
.solutions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.solution-card {
  border-radius: 20px; padding: clamp(2.5rem, 4vw, 3.5rem);
  position: relative; overflow: hidden; color: var(--white);
}
.solution-new {
  background: linear-gradient(160deg, rgba(10,12,60,0.88) 0%, rgba(26,28,90,0.82) 60%, rgba(43,45,123,0.78) 100%),
              url('images/new-build-frame.jpg');
  background-size: cover;
  background-position: center;
}
.solution-retrofit {
  background: linear-gradient(160deg, rgba(26,58,92,0.88) 0%, rgba(35,75,114,0.82) 60%, rgba(45,106,158,0.78) 100%),
              url('images/home-renovation.jpg');
  background-size: cover;
  background-position: center;
}
.solution-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 90% 90%, rgba(232,168,56,0.1) 0%, transparent 60%);
}
.solution-content { position: relative; z-index: 1; }
.solution-card h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; margin-bottom: 0.75rem;
}
.solution-card p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.7; }
.solution-list { margin-bottom: 2rem; }
.solution-list li {
  font-size: 0.9rem; padding: 0.35rem 0 0.35rem 1.5rem;
  color: rgba(255,255,255,0.85); position: relative;
}
.solution-list li::before {
  content: ''; position: absolute; left: 0; top: 0.65rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

/* ---- WHY LOMAX ---- */
.why-section {
  position: relative; overflow: hidden;
  background: var(--navy-deeper);
  padding: var(--section-py) 0;
  color: var(--white);
}
.why-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.12; filter: saturate(0);
}
.why-inner { position: relative; z-index: 1; }
.why-header { text-align: center; margin-bottom: 3.5rem; }
.why-header h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800; color: var(--white); margin-bottom: 1rem;
}
.why-header p { font-size: 1.0625rem; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 2rem 1.75rem;
  transition: all 0.3s var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232,168,56,0.4);
  transform: translateY(-4px);
}
.why-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--accent); color: var(--gray-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.why-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--white); margin-bottom: 0.625rem; }
.why-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ---- CTA ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: clamp(4rem, 8vw, 6rem) 0; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(232,168,56,0.12) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-section h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; margin-bottom: 0.75rem;
}
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.0625rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- ESTIMATE MODAL ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,12,40,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: 20px;
  padding: 2.5rem; width: 100%; max-width: 520px; margin: 1rem;
  position: relative; transform: translateY(16px);
  transition: transform 0.25s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: none; border: none; cursor: pointer;
  color: var(--gray-500); font-size: 1.5rem; line-height: 1;
  padding: 0.25rem; border-radius: 6px;
  transition: color 0.15s;
}
.modal-close:hover { color: var(--navy); }
.modal-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}
.modal h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 1.5rem; line-height: 1.2; }
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.modal-field { display: flex; flex-direction: column; gap: 0.375rem; }
.modal-field label { font-size: 0.8125rem; font-weight: 600; color: var(--gray-700); }
.modal-field input,
.modal-field select,
.modal-field textarea {
  padding: 0.75rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: 10px; font-family: var(--font-sans); font-size: 0.9rem;
  color: var(--gray-900); background: var(--white);
  transition: border-color 0.2s; outline: none;
}
.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus { border-color: var(--navy); }
.modal-field textarea { resize: vertical; min-height: 90px; }
.modal-submit {
  margin-top: 0.25rem; padding: 0.9rem;
  background: var(--navy); color: var(--white);
  border: none; border-radius: 10px; font-family: var(--font-sans);
  font-size: 0.9375rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s;
}
.modal-submit:hover { background: var(--navy-dark); }

/* ---- FOOTER ---- */
.footer {
  background: var(--gray-900); color: rgba(255,255,255,0.6);
  padding: 4rem 0 0; font-size: 0.875rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo { height: 36px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-wordmark {
  display: block; font-family: var(--font-display); font-weight: 900;
  font-size: 2.25rem; letter-spacing: 0.1em; color: #ffffff;
  margin-bottom: 0.75rem; line-height: 1;
}
.footer-brand p { line-height: 1.7; max-width: 280px; margin-bottom: 1.25rem; }
.footer-map {
  width: 80%; height: 140px; border-radius: 10px; overflow: hidden;
  opacity: 0.75; border: 1px solid rgba(255,255,255,0.1);
}
.footer-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.footer-col h4 {
  color: var(--white); font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem;
}
.footer-col a { display: block; padding: 0.25rem 0; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-col li { padding: 0.15rem 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 3rem;
  padding: 1.5rem 0; text-align: center; font-size: 0.8125rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; }
  .hero-image { display: none; }
  .hero-text { width: 100%; padding: clamp(4rem, 8vw, 6rem) 2rem; }
  .hero { background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy-dark) 60%, var(--navy) 100%); }
  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .top-bar-inner span { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: var(--white);
    padding: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--gray-200);
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; width: 100%; }
  .nav-cta { display: none; }
  .dropdown-menu {
    position: static; box-shadow: none; opacity: 1; visibility: visible;
    transform: none; padding-left: 1rem; background: var(--gray-50);
    border-radius: 8px; margin-top: 0.25rem;
  }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
