/* =====================================================
   NATIONAL PLASTICS — WEBSITE STYLESHEET
   ===================================================== */

:root {
  --navy: #153ACB;
  --navy-dark: #0E2A94;
  --navy-darker: #091d6b;
  --white: #FFFFFF;
  --ink: #12172B;
  --ink-soft: #4B5573;
  --cloud: #F4F6FB;
  --cloud-deep: #E7EBF7;
  --line: #DDE3F2;
  --orange: #FF7A26;
  --orange-deep: #E85D04;
  --success: #1F9D55;
  --danger: #D8342A;

  --font-head: 'Sora', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-card: 0 10px 30px rgba(18, 23, 43, 0.08);
  --shadow-pop: 0 24px 60px rgba(9, 29, 107, 0.35);

  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 92%;
  max-width: var(--container);
  margin: 0 auto;
}

.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--tint { background: var(--cloud); }
.section--navy { background: linear-gradient(160deg, var(--navy-darker), var(--navy)); color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.78); }
.section--navy h2 { color: var(--white); }

.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-deep);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
.section-head p { font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 122, 38, 0.35);
}
.btn-primary:hover { background: var(--orange-deep); box-shadow: 0 14px 30px rgba(232, 93, 4, 0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(21, 58, 203, 0.3);
}
.btn-navy:hover { background: var(--navy-dark); }
.btn-ghost-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; }

/* =====================================================
   TOP UTILITY BAR
   ===================================================== */
.topbar {
  background: var(--navy-darker);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-left a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.9); }
.topbar-left a:hover { color: var(--white); }
.topbar-left svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-right .social-label { color: rgba(255,255,255,0.55); margin-right: 2px; }
.topbar-right a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.topbar-right a:hover { background: rgba(255,255,255,0.22); }
.topbar-right svg { width: 13px; height: 13px; }

/* =====================================================
   MAIN HEADER
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 54px; width: auto; }
.brand-text { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--navy); }

.main-nav { display: flex; }
.main-nav ul { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transition: right 0.2s ease;
}
.main-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.call-now-header {
  display: flex; align-items: center; gap: 8px;
  color: var(--navy);
  font-weight: 700;
  border: 2px solid var(--cloud-deep);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
}
.call-now-header svg { width: 16px; height: 16px; }
.call-now-header:hover { border-color: var(--navy); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); transition: 0.2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel-cta { display: none; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-darker) 0%, var(--navy) 70%);
  color: var(--white);
  overflow: hidden;
  padding: 70px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--hero-bg-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  mix-blend-mode: luminosity;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(9,29,107,0.92), rgba(21,58,203,0.85));
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}
.hero-media { display: flex; justify-content: center; }
.founder-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(6px);
  width: 100%;
  max-width: 300px;
}
.founder-photo-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 3px solid rgba(255,255,255,0.25);
}
.founder-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.founder-initials {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
}
.founder-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 2px; }
.founder-role { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.hero-content .hero-sub { font-size: 1.12rem; color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--white); }
.hero-stat span { font-size: 0.86rem; color: rgba(255,255,255,0.7); }

/* =====================================================
   ABOUT
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-copy p { font-size: 1.02rem; }
.about-copy p:not(:last-of-type) { margin-bottom: 1em; }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}
.pillar-card {
  background: var(--cloud);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--line);
}
.pillar-card h4 { font-size: 1.02rem; margin-bottom: 6px; color: var(--navy); }
.pillar-card p { font-size: 0.92rem; margin: 0; }

.highlight-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.highlight-tag {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 7px;
}
.highlight-tag svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }

/* =====================================================
   SERVICES / PRODUCTS
   ===================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.service-card, .product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover, .product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(18,23,43,0.12); }
.card-media { aspect-ratio: 16/11; overflow: hidden; background: var(--cloud); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 1.18rem; }
.card-body p { font-size: 0.95rem; margin: 0; }
.card-feature-list { display: flex; flex-direction: column; gap: 6px; margin: 4px 0 8px; }
.card-feature-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; color: var(--ink-soft); }
.card-feature-list svg { width: 15px; height: 15px; color: var(--success); margin-top: 3px; flex-shrink: 0; }
.card-cta { margin-top: auto; }

/* =====================================================
   WHY / ACHIEVEMENTS
   ===================================================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}
.stat-block {
  text-align: center;
  padding: 30px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
}
.stat-block strong { display: block; font-family: var(--font-head); font-size: 2.1rem; color: var(--white); }
.stat-block span { font-size: 0.88rem; color: rgba(255,255,255,0.72); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--orange); }
.testimonial-quote { font-size: 0.98rem; color: var(--ink-soft); margin-bottom: 18px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-head);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.92rem; }
.testimonial-role { font-size: 0.82rem; color: var(--ink-soft); }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--cloud-deep);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 19px; height: 19px; }
.contact-item h4 { font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink-soft); margin-bottom: 3px; font-family: var(--font-body); font-weight: 700; }
.contact-item a, .contact-item span { font-size: 0.98rem; font-weight: 600; color: var(--ink); }
.contact-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.map-frame {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-card);
}
.contact-form-card h3 { margin-bottom: 6px; }
.contact-form-card > p { margin-bottom: 22px; }

/* =====================================================
   FORM ELEMENTS (shared: popup + contact)
   ===================================================== */
.form-grid { display: grid; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-field label { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.96rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(21,58,203,0.14);
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(216,52,42,0.12);
}
.field-error {
  font-size: 0.78rem;
  color: var(--danger);
  display: none;
  font-weight: 600;
}
.form-field.has-error .field-error { display: block; }

.phone-field-group { display: flex; gap: 8px; }
.phone-prefix {
  display: flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--cloud);
  flex-shrink: 0;
  color: var(--ink-soft);
}
.phone-prefix .flag { font-size: 1.1rem; }
.phone-field-group input { flex: 1; min-width: 0; }

.form-status {
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.status-success { background: rgba(31,157,85,0.12); color: var(--success); }
.form-status.status-error { background: rgba(216,52,42,0.1); color: var(--danger); }

.form-reassurance { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-top: 12px; }

/* =====================================================
   POPUP — SINGLE CENTERED CARD
   ===================================================== */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(9, 20, 60, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.popup-overlay.is-open { opacity: 1; visibility: visible; }

.popup-card {
  position: relative;
  width: 100%;
  max-width: 430px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.25s ease;
  box-shadow: var(--shadow-pop);
}
.popup-overlay.is-open .popup-card { transform: translateY(0) scale(1); }

.popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: var(--ink);
  transition: background 0.15s ease;
}
.popup-close:hover { background: var(--white); }
.popup-close svg { width: 16px; height: 16px; }

.popup-timer-bar {
  background: linear-gradient(120deg, var(--navy-darker), var(--navy));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 20px 28px 26px;
  text-align: center;
  color: var(--white);
  transition: background 0.3s ease;
}
.popup-timer-bar.is-urgent {
  background: linear-gradient(120deg, #8a0f0f, #d8342a);
  animation: pulse-urgent 1s ease-in-out infinite;
}
@keyframes pulse-urgent {
  0%, 100% { box-shadow: 0 0 0 0 rgba(216,52,42,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(216,52,42,0); }
}
.popup-timer-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}
.popup-timer-label svg { width: 13px; height: 13px; color: #FFD166; }
.popup-timer-count {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.popup-body { padding: 0 28px 28px; margin-top: -22px; }
.popup-icon-badge {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(232,93,4,0.35);
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}
.popup-icon-badge svg { width: 30px; height: 30px; color: var(--white); }

.popup-body h3 { text-align: center; font-size: 1.35rem; margin-bottom: 6px; }
.popup-body h3 .accent { color: var(--orange-deep); }
.popup-subtext { text-align: center; font-size: 0.92rem; margin-bottom: 20px; }

.popup-submit-btn { margin-top: 4px; }
.popup-submit-btn svg { width: 16px; height: 16px; }

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */
img { max-width: 100%; display: block; }

.floating-badge {
  position: fixed; left: 18px; bottom: 18px; z-index: 300; width: 120px; height: 40px;
  border-radius: 10px; overflow: hidden; box-shadow: 0 8px 22px rgba(0,0,0,.25); background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.floating-badge img { width: 150px; object-fit: contain; }

.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 300; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.45); transition: transform .15s ease;
}
.floating-whatsapp:hover { transform: scale(1.06); }
.floating-whatsapp svg { width: 30px; height: 30px; fill: #fff; }

@media (max-width: 480px) {
  .floating-badge { width: 120px; height: 46px; left: 12px; bottom: 12px; }
  .floating-whatsapp { width: 50px; height: 50px; right: 12px; bottom: 12px; }
  .floating-whatsapp svg { width: 26px; height: 26px; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--navy-darker); color: rgba(255,255,255,0.78); padding-top: 72px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 46px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.94rem; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.footer-social a:hover { background: var(--orange); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.72); }
.footer-col a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; color: var(--orange); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a:hover { color: var(--white); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 300px 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media img { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-actions .call-now-header { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.mobile-open {
    display: block;
    position: fixed;
    top: 0; right: 0;
    width: min(86vw, 340px);
    height: 100vh;
    background: var(--white);
    z-index: 250;
    padding: 90px 28px 28px;
    box-shadow: -20px 0 50px rgba(0,0,0,0.25);
    overflow-y: auto;
  }
  .main-nav.mobile-open ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav.mobile-open a { display: block; padding: 13px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .mobile-panel-cta {
    display: block;
    margin-top: 22px;
  }
  .nav-scrim {
    display: none;
    position: fixed; inset: 0;
    background: rgba(9,20,60,0.5);
    z-index: 240;
  }
  .nav-scrim.is-visible { display: block; }

  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-media { order: -1; }
  .founder-card { max-width: 240px; margin: 0 auto; }
  .hero-content .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .pillars { grid-template-columns: 1fr; }
  .topbar .container { flex-wrap: wrap; row-gap: 6px; }
  .topbar-left a span.label-text { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
