/* =========================================================
   PRANAM ENTERPRISE — Industrial Materials & Paint Solutions
   ========================================================= */

:root {
  --navy-900: #0B1A2F;
  --navy-800: #11233D;
  --navy-700: #1B3358;
  --navy-600: #24426E;
  --red-600:  #C8202B;
  --red-700:  #A91922;
  --red-500:  #E63946;

  --ink-900: #0F172A;
  --ink-800: #1E293B;
  --ink-700: #334155;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --line:    #E2E8F0;
  --line-2:  #EEF1F6;
  --bg:      #FFFFFF;
  --bg-soft: #F5F7FA;
  --bg-tile: #FAFBFC;

  --font-head: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --radius:   4px;
  --radius-card: 8px;

  --container: 1240px;
  --header-h: 92px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow:    0 6px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 48px rgba(15, 23, 42, 0.12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink-900); margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0; }
input, textarea { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

section[id], #top { scroll-margin-top: calc(var(--header-h) + 12px); }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-900); color: #fff;
  padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .12s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-red   { background: var(--red-600); color: #fff; border-color: var(--red-600); }
.btn-red:hover   { background: var(--red-700); border-color: var(--red-700); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.85); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-navy { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }
.btn-navy:hover { background: var(--navy-900); border-color: var(--navy-900); }
.btn-block { width: 100%; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}
.brand {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  height: 72px; width: auto;
  display: block;
  object-fit: contain;
}

.primary-nav ul {
  display: flex; gap: 22px;
}
.primary-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--ink-800);
  padding: 8px 0;
  position: relative;
  transition: color .15s ease;
}
.primary-nav a:hover,
.primary-nav a.is-active { color: var(--red-600); }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red-600);
  transform: scaleX(0); transform-origin: center;
  transition: transform .2s ease;
}
.primary-nav a:hover::after,
.primary-nav a.is-active::after { transform: scaleX(1); }

.header-cta {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.header-phone {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0 8px 16px;
  border-left: 1px solid var(--line);
}
.header-phone-icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red-600); color: #fff;
  border-radius: 50%;
}
.header-phone-icon svg { width: 16px; height: 16px; fill: currentColor; }
.header-phone-meta { display: flex; flex-direction: column; line-height: 1.2; }
.header-phone-meta span {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  font-weight: 500;
}
.header-phone-meta strong {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-900);
  font-size: 15px;
  margin-top: 1px;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: var(--navy-900);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px; background: currentColor;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.site-header[data-open="true"] .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.site-header[data-open="true"] .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header[data-open="true"] .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 540px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  filter: brightness(.55) saturate(.9);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(110deg, rgba(11,26,47,.92) 0%, rgba(11,26,47,.6) 55%, rgba(11,26,47,.3) 100%);
}
.hero-inner {
  padding-block: clamp(52px, 8vw, 96px);
  max-width: 780px;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  background: var(--red-600);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--red-500); }
.hero-sub {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  color: rgba(255,255,255,.85);
  max-width: 580px;
  margin-bottom: 30px;
  line-height: 1.65;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* ---------- Hero stats ---------- */
.hero-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(11,26,47,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-card);
  padding: 6px;
}
.stat-tile {
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  color: #fff;
  border-radius: calc(var(--radius-card) - 8px);
}
.stat-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}
.stat-num-sm { font-size: 14px; letter-spacing: 0.02em; }
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  line-height: 1.3;
}

/* ---------- Section heads ---------- */
.section {
  padding-block: clamp(40px, 4.5vw, 64px);
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(22px, 2.8vw, 34px);
}
.section-head h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.section-head h2 .accent { color: var(--red-600); }
.head-underline {
  display: block;
  width: 60px; height: 3px;
  background: var(--red-600);
  margin: 14px auto 0;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.about-copy h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.05rem);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 22px;
}
.about-copy h2 .accent { color: var(--red-600); }
.about-copy p {
  color: var(--ink-700);
  margin-bottom: 11px;
}
.about-copy p strong { color: var(--navy-900); font-weight: 700; }
.about-copy .btn { margin-top: 12px; }
.about-media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
}
.about-media img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ---------- Divisions ---------- */
.divisions { background: var(--bg-soft); }
.div-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.div-card {
  position: relative;
  border-radius: var(--radius-card);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: 420px;
  display: flex;
}
.div-card::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
}
.div-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
}
.div-card.is-hardware::before {
  background-image: url('assets/industries/industrial-factories.png');
}
.div-card.is-hardware::after {
  background: linear-gradient(100deg, rgba(11,26,47,.96) 0%, rgba(11,26,47,.82) 35%, rgba(11,26,47,.4) 75%, rgba(11,26,47,0) 100%);
}
.div-card.is-paint {
  background: var(--red-600);
}
.div-card.is-paint::before {
  background-image: url('assets/divisions/painting-engineer.png');
}
.div-card.is-paint::after {
  background: linear-gradient(100deg, rgba(200,32,43,.96) 0%, rgba(200,32,43,.82) 35%, rgba(200,32,43,.4) 75%, rgba(200,32,43,0) 100%);
}
.div-card-inner {
  flex: 1;
  padding: 32px 32px;
  display: flex; flex-direction: column;
}
.div-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
}
.div-icon {
  width: 58px; height: 58px;
  flex-shrink: 0;
  background: rgba(255,255,255,.18);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  /* regular pointy-top hexagon fitted to a 1:1 box (width = √3/2 ≈ 0.866 of height) */
  clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
}
.div-icon svg { width: 26px; height: 26px; }
.div-card h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.15;
}
.div-card ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-bottom: 20px;
  flex: 1;
}
.div-card li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.95);
  font-size: 14.5px;
  line-height: 1.4;
}
.div-card .check {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.div-card .btn { align-self: flex-start; }

/* ---------- Partners ---------- */
.partners-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.partner-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 20px 14px 18px;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.partner-card:hover {
  border-color: var(--red-600);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.partner-logo {
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.partner-logo img {
  max-height: 70px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
}
.partner-card strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-900);
  font-size: 14px;
}
.partner-card span {
  display: block;
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 4px;
}

/* ---------- Product range ---------- */
.products { background: var(--bg); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.product-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.product-tile:hover {
  border-color: var(--red-600);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-tile-media {
  aspect-ratio: 1 / 1;
  background: var(--bg-tile);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.product-tile-media img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}
.product-tile:hover .product-tile-media img { transform: scale(1.06); }
.product-tile-media.is-logo img { object-fit: contain; padding: 14px; }
.product-tile-label {
  padding: 10px 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--navy-900);
  text-align: center;
  border-top: 1px solid var(--line-2);
}

/* ---------- Why choose ---------- */
.why {
  background: var(--navy-900);
  color: #fff;
}
.why .section-head h2 { color: #fff; }
.why .section-head h2 .accent { color: var(--red-500); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.why-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 14px;
}
.why-icon {
  color: var(--red-500);
  display: inline-flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 52px; height: 52px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.why-item h4 {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* ---------- Industries ---------- */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ind-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--navy-900);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ind-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.ind-media {
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
}
.ind-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.ind-card:hover .ind-media img { transform: scale(1.06); }
.ind-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11,26,47,.85) 100%);
}
.ind-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  color: #fff;
}
.ind-body h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

/* ---------- Clients (infinite marquee) ---------- */
.clients { background: var(--bg-soft); }

.clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 28px;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.clients-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  padding: 0;
  margin: 0;
  list-style: none;
  animation: scroll-x 60s linear infinite;
  will-change: transform;
}

.clients-marquee:hover .clients-track { animation-play-state: paused; }

.client-logo {
  flex: 0 0 auto;
  height: 80px;
  width: 160px;
  margin-right: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
    overflow-x: auto;
    scrollbar-width: thin;
  }
  .clients-marquee {
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* ---------- Contact ---------- */
.contact { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.contact-form-card,
.contact-info-card {
  background: #fff;
  color: var(--ink-800);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.contact-form .field { margin-bottom: 16px; }
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-form .row .field { margin-bottom: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-400); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red-600);
  box-shadow: 0 0 0 3px rgba(200,32,43,.1);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .hp { position: absolute; left: -9999px; }
.contact-form .btn { margin-top: 6px; padding-block: 15px; }
.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: #ECFDF5;
  color: #065F46;
  font-size: 14px;
  font-weight: 600;
}
.form-status.is-error { background: #FEF2F2; color: #991B1B; }

.contact-info-banner {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.contact-banner-icon {
  width: 32px; height: 32px;
  color: var(--red-600);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-banner-icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.contact-info-banner strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14.5px;
  color: var(--navy-900);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.contact-info-banner span {
  display: block;
  font-size: 13.5px;
  color: var(--ink-700);
  line-height: 1.5;
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  flex: 1;
  min-height: 240px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.72);
  padding-block: 40px 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 24px;
  padding-bottom: 28px;
}
.foot-brand {
  display: inline-flex; align-items: center;
  margin-bottom: 12px;
}
.foot-brand .brand-logo {
  height: 84px; width: auto;
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.foot-tagline {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin-bottom: 4px;
}
.foot-col-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.7); }
.foot-col h4 {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.foot-col h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px; background: var(--red-600);
}
.foot-col ul li { margin-bottom: 9px; font-size: 14px; }
.foot-col ul li a { color: rgba(255,255,255,.7); transition: color .15s ease; }
.foot-col ul li a:hover { color: var(--red-500); }
.foot-contact li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.5;
}
.foot-contact a { color: rgba(255,255,255,.78); }
.foot-contact a:hover { color: var(--red-500); }
.foot-contact svg {
  width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8;
  flex-shrink: 0; margin-top: 3px; color: var(--red-500);
}
.foot-social {
  display: flex; gap: 8px;
  margin-top: 14px;
}
.foot-social a {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: #fff;
  transition: background .18s ease;
}
.foot-social a:hover { background: var(--red-600); }
.foot-social svg { width: 13px; height: 13px; fill: currentColor; }
.foot-base {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 18px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-col-brand { grid-column: 1 / -1; }
}

@media (max-width: 1023px) {
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--navy-900);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    padding: 28px;
    overflow-y: auto;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 4px;
  }
  .primary-nav a {
    display: block;
    padding: 14px 4px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 16px;
  }
  .primary-nav a::after { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header[data-open="true"] .primary-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .header-phone-meta { display: none; }
  .header-phone { padding-left: 12px; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  :root { --header-h: 80px; }
  .brand-logo { height: 60px; }
  .about-grid,
  .div-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px;
    margin-top: 24px;
  }
  .stat-tile { padding: 10px 12px; gap: 10px; }
  .stat-icon { width: 34px; height: 34px; }
  .stat-icon svg { width: 16px; height: 16px; }
  .stat-num { font-size: 18px; }
  .stat-num-sm { font-size: 13px; }
  .partners-row { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
  .ind-grid { grid-template-columns: 1fr; }
  .client-logo { height: 60px; width: 130px; margin-right: 36px; }
  .clients-track { animation-duration: 45s; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .hero { min-height: 540px; }
  .div-card-inner { padding: 32px 26px; }
  .contact-form-card,
  .contact-info-card { padding: 22px; }
  .contact-map { min-height: 220px; }
}
