/*
  ARVITEX — redesign (static HTML)
  Style direction: as in the provided homepage reference (light/clean corporate),
  accent: Pantone 281C ~ #00205B, orange highlights.
*/

/* ========== Fonts ========== */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/Regular/OpenSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/Semibold/OpenSans-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/Bold/OpenSans-Bold.woff2") format("woff2"),
       url("../fonts/Bold/OpenSans-Bold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ========== Design tokens ========== */
:root{
  --navy: #00205B;
  --orange: #E76F17;
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --text: #1F2937;
  --muted: #6B7280;
  --line: #E5E7EB;
  --radius: 12px;
  --shadow-sm: 0 8px 18px rgba(0,0,0,0.06);
  --shadow: 0 18px 38px rgba(0,0,0,0.10);
}

/* ========== Base ========== */
*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

img{ max-width:100%; height:auto; }
a{ color: inherit; }
p{ margin: 0 0 12px; line-height: 1.55; }
h1,h2,h3,h4{ margin: 0 0 12px; line-height: 1.2; }
h2{ font-size: clamp(1.4rem, 2.2vw, 1.9rem); color: var(--navy); }
h3{ font-size: 1.25rem; color: var(--navy); }

.container{
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section{ padding: 56px 0; }

.muted{ color: var(--muted); }
.small{ font-size: 0.92rem; }
.label{ font-size: 0.78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }

.card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.sep{
  height:1px;
  background: var(--line);
  margin: 18px 0;
}

/* Skip link */
.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  padding:10px 12px;
  border-radius: 6px;
  background: var(--navy);
  color:#fff;
  text-decoration:none;
  z-index: 9999;
}
.skip-link:focus{ left: 10px; }

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration:none;
  transition: transform .12s ease, background-color .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--navy);
  color:#fff;
}
.btn-primary:hover{ background: #001A4A; }

.btn-outline{
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover{
  background: rgba(0,32,91,0.06);
}

.btn-sm{
  height: 36px;
  padding: 0 12px;
  font-size: 0.9rem;
}

/* ========== Header ========== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid #001A4A;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--navy);
  border-radius: 8px;
  text-decoration:none;
}
.brand img{
  width: 240px;
  height:auto;
  display:block;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.15));
}

.nav-desktop{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav-desktop a{
  text-decoration:none;
  font-weight: 700;
  font-size: 1.03rem;
  color: #1F2937;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}
.nav-desktop a:hover{
  color: var(--navy);
  border-bottom-color: var(--orange);
}

.nav-pill,
.nav-cta{
  padding: 8px 12px !important;
  border-radius: 8px;
  background: var(--navy);
  color:#fff !important;
  border-bottom: none !important;
}
.nav-pill:hover,
.nav-cta:hover{
  background: #001A4A;
  color:#fff;
}

.header-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-left: 0;
}
.lang-link{
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration:none;
}
.lang-link:hover{ color: var(--navy); }

.menu-btn{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #D9DDE5;
  background: #fff;
  display:none;
  align-items:center;
  justify-content:center;
  gap: 4px;
  cursor:pointer;
}
.menu-btn span{
  display:block;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.site-header .nav-desktop a{
  color:#fff;
}
.site-header .nav-desktop a:hover{
  color:#fff;
  border-bottom-color: var(--orange);
}
.site-header .nav-pill,
.site-header .nav-cta{
  background: var(--orange);
}
.site-header .nav-pill:hover,
.site-header .nav-cta:hover{
  background: #C75F12;
}
.site-header .btn-outline{
  border-color:#fff;
  color:#fff;
}
.site-header .btn-outline:hover{
  background: rgba(255,255,255,0.16);
}
.site-header .menu-btn{
  border-color: rgba(255,255,255,0.35);
  background: transparent;
}
.site-header .menu-btn span{
  background: #fff;
}
.site-header .nav-desktop{
  margin-left: auto;
  gap: 24px;
}

/* Keep the top panel identical on every page */
.site-header .nav-desktop a[href="catalog.html"],
.site-header .offcanvas-nav a[href="catalog.html"],
.site-header .offcanvas-links a[href="catalog.html"],
.site-header .header-actions > a{
  display: none;
}

/* ========== Off-canvas menu ========== */
.offcanvas[hidden]{ display:none; }
.offcanvas{
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.offcanvas-panel{
  position: fixed;
  inset: 0 0 0 auto;
  width: min(380px, 92%);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 42px rgba(0,0,0,0.22);
  padding: 18px;
  overflow:auto;
}

.offcanvas-backdrop{
  position: fixed;
  inset:0;
  background: rgba(0,0,0,0.38);
  border:none;
  cursor:pointer;
}

.offcanvas-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.icon-btn{
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor:pointer;
  font-weight: 900;
  color: var(--navy);
}

.offcanvas-links a,
.offcanvas-nav a{
  display:block;
  padding: 12px 10px;
  border-radius: 10px;
  text-decoration:none;
  font-weight: 800;
  color: var(--text);
}
.offcanvas-links a:hover,
.offcanvas-nav a:hover{
  background: #F3F4F6;
}

.offcanvas-cta{
  display:block;
  margin-top: 10px;
  padding: 12px 10px;
  border-radius: 10px;
  background: var(--navy);
  color:#fff;
  text-decoration:none;
  font-weight: 900;
}
.offcanvas-cta:hover{ background:#001A4A; }

.offcanvas-footer,
.offcanvas-extra{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ========== Hero slider ========== */
.hero{
  padding: 18px 0 0;
}

.hero-slider{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.slides{ position: relative; }
.slide{ display:none; }
.slide.is-active{ display:block; }
.slide img{
  width:100%;
  height:auto;
  display:block;
}

.slider-btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: none;
  background: rgba(0,32,91,0.92);
  color:#fff;
  font-size: 28px;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition: background .12s ease;
}
.slider-btn:hover{ background: var(--orange); }
.slider-btn.prev{ left: 12px; }
.slider-btn.next{ right: 12px; }

.dots{
  position:absolute;
  left:50%;
  bottom: 12px;
  transform: translateX(-50%);
  display:flex;
  align-items:center;
  gap: 8px;
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.25);
  cursor:pointer;
}
.dot.is-active{
  background: var(--orange);
  border-color: var(--orange);
}

/* ========== Stats strip ========== */
.stats-strip{
  padding: 18px 0 0;
}

.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.stat-card{
  padding: 18px 18px 16px;
}
.stat-card:not(:last-child){
  border-right: 1px solid var(--line);
}
.stat-num{
  font-size: 2.15rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num span{
  font-size: 1.05rem;
  font-weight: 900;
  margin-left: 6px;
}
.stat-text{
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.35;
}

/* ========== Production ========== */
.production-card{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  padding: 22px;
  align-items: start;
}
.production-media img{
  width:100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  display:block;
}
.production-content p{ margin-bottom: 14px; }

.icon-list{
  list-style:none;
  padding:0;
  margin: 0 0 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.icon-list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-weight: 700;
  color: #2B3443;
  line-height: 1.35;
}
.icon-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  margin-top: 6px;
  flex: 0 0 10px;
}

/* ========== Brands ========== */
.brands-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: start;
}
.brands-intro{
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.brands-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.brand-card{
  display:flex;
  gap: 14px;
  align-items:center;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  text-decoration:none;
  transition: transform .12s ease, border-color .12s ease;
}
.brand-card:hover{
  transform: translateY(-1px);
  border-color: rgba(0,32,91,0.28);
}
.brand-logo-wrap{
  width: 86px;
  height: 62px;
  border-radius: 10px;
  background: #F3F4F6;
  border: 1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 8px;
  flex: 0 0 auto;
}
.brand-logo-wrap img{
  max-width:100%;
  max-height:100%;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.35));
}
.brand-title{
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.brand-desc{
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

/* ========== Sales ========== */
.sales-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}
.sales-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.image-card{
  position: relative;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-decoration:none;
  min-height: 170px;
}
.image-card img{
  width:100%;
  height: 170px;
  object-fit: cover;
  display:block;
}
.image-tag{
  position:absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.86rem;
  color:#fff;
}
.tag-orange{ background: var(--orange); }
.tag-navy{ background: var(--navy); }
.tag-gray{ background: #8C96A8; }

.sales-content{
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

/* ========== News ========== */
.news-grid{
  display:grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 22px;
  align-items: center;
}
.news-logos{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.logo-circle{
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px;
}
.logo-circle img{
  max-width:100%;
  max-height:100%;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.35));
}

.news-card{
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  min-height: 220px;
}
.stars{
  color: var(--orange);
  letter-spacing: 3px;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.news-card h3{
  margin: 0 0 10px;
  font-size: 1.22rem;
}
.news-arrows{
  position:absolute;
  inset: 0;
  pointer-events:none;
}
.news-arrows .chev{
  position:absolute;
  font-size: 30px;
  color: var(--orange);
  font-weight: 900;
  opacity: 0.9;
}
.news-arrows .left{ left: 18px; bottom: 14px; }
.news-arrows .right{ right: 18px; top: 14px; }

/* ========== Contacts ========== */
.contacts-card{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.contact-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 16px;
}
.contact-item a{
  text-decoration:none;
  font-weight: 900;
  color: var(--navy);
}
.contact-item a:hover{ text-decoration: underline; }

.contacts-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.contact-addresses{
  margin-top: 18px;
  display:grid;
  gap: 12px;
}
.contact-addresses p{
  margin: 6px 0 0;
}
.map-box img{
  width:100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  display:block;
}
.contact-form-card,
.contact-aside{
  padding: 22px;
}
.contact-form{
  margin-top: 14px;
}
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.field{
  display:grid;
  gap: 6px;
}
.field span{
  font-weight: 900;
  color: var(--navy);
  font-size: 0.85rem;
}
.field input,
.field textarea{
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  padding: 10px 12px;
}
.field input{
  height: 42px;
}
.field textarea{
  resize: vertical;
  min-height: 110px;
}
.helper{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.contact-links{
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
}
.contact-links a{
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}
.contact-links a:hover{
  text-decoration: underline;
}

/* ========== Page hero / breadcrumbs ========== */
.page-hero{
  padding: 26px 0;
  background: #ECEEF1;
  border-bottom: 1px solid #D9DDE5;
}
.breadcrumbs{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumbs a{
  color: var(--muted);
  text-decoration:none;
}
.breadcrumbs a:hover{ color: var(--navy); text-decoration: underline; }
.page-title{
  margin-top: 10px;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--navy);
}
.page-subtitle,
.lead{
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 70ch;
}

/* ========== About page ========== */
.about-intro{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 22px;
}
.about-intro-media img{
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
}
.about-intro-content p{
  margin-bottom: 14px;
}
.about-kpis{
  margin-top: 8px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.about-kpi{
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
}
.about-kpi-num{
  font-weight: 900;
  color: var(--navy);
  font-size: 1.2rem;
}
.about-kpi-label{
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}
.about-cta{
  padding: 22px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* ========== Production page ========== */
.production-overview{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 22px;
}
.production-overview__media img{
  width:100%;
  height:100%;
  min-height: 300px;
  object-fit: cover;
  border: 1px solid var(--line);
  display:block;
}
.production-list{
  margin: 14px 0 0;
  padding-left: 18px;
  display:grid;
  gap: 8px;
}
.production-list li{
  line-height: 1.45;
}
.production-kpis{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.production-kpi{
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
}
.production-kpi__num{
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
}
.production-kpi__label{
  margin-top: 4px;
  font-size: 0.86rem;
  color: var(--muted);
}
.production-video{
  padding: 22px;
}
.production-video__head{
  margin-bottom: 14px;
}
.production-video__frame{
  border: 1px solid var(--line);
  background: #fff;
  aspect-ratio: 16 / 9;
}
.production-video__frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.production-capabilities{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.production-capability{
  padding: 18px;
}
.production-capability h3{
  margin-bottom: 8px;
}
.production-capability p{
  margin: 0;
  color: var(--muted);
}

/* ========== Product cards / catalog ========== */
.products-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow:hidden;
  display:flex;
  flex-direction: column;
}
.product-card__media{
  display:block;
  background: #F7F8FA;
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-decoration:none;
}
.product-card__media img{
  width:100%;
  height: 220px;
  object-fit: contain;
  display:block;
}
.product-card__body{
  padding: 14px 14px 16px;
}
.product-card__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.product-card__badges{
  display:flex;
  align-items:center;
  gap: 6px;
  flex-wrap: wrap;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 900;
  background: #EEF2F7;
  border: 1px solid #E0E6EF;
  color: var(--navy);
}
.badge--primary{
  background: rgba(0,32,91,0.08);
  border-color: rgba(0,32,91,0.18);
}
.badge--accent{
  background: rgba(231,111,23,0.12);
  border-color: rgba(231,111,23,0.28);
  color: #B55310;
}

.tag{
  display:inline-flex;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  background: #F3F4F6;
  border: 1px solid var(--line);
  color: var(--muted);
}

.product-card__title{
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}
.product-card__title a{
  text-decoration:none;
  color: var(--text);
}
.product-card__title a:hover{ color: var(--navy); }

.product-card__meta{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Filters */
.filters{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.filter{
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.filter label{
  font-weight: 900;
  color: var(--navy);
  font-size: 0.85rem;
}
.filter input,
.filter select{
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0 12px;
  background:#fff;
  font: inherit;
}
.filter input:focus,
.filter select:focus{
  outline: 2px solid rgba(0,32,91,0.18);
  outline-offset: 2px;
}

/* Toggle */
.toggle{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background:#fff;
}
.toggle input{ width: 18px; height: 18px; }

/* Split layout (product page) */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.page{
  padding: 28px 0 56px;
}

.card__head{
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.footer-title{
  margin: 0 0 10px;
  font-weight: 900;
}

/* ========== Footer ========== */
.site-footer{
  background: var(--navy);
  color:#fff;
  padding: 46px 0 0;
}
.site-footer .muted{ color: rgba(255,255,255,0.72); }


/* Footer compatibility (some pages use <footer class="footer">) */
.footer{
  background: var(--navy);
  color:#fff;
  padding: 46px 0 0;
}
.footer .muted{ color: rgba(255,255,255,0.72); }

.site-footer .brand,
.footer .brand{
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.site-footer .brand img,
.footer .brand img{
  filter: none;
}

.footer-title{
  margin: 0 0 10px;
  font-weight: 900;
  color:#fff;
}
.footer-links a{
  display:block;
  color: rgba(255,255,255,0.82);
  text-decoration:none;
  margin: 6px 0;
}
.footer-links a:hover{ color:#fff; }

.footer-text{
  color: rgba(255,255,255,0.72);
  margin-top: 10px;
  line-height: 1.55;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  align-items:start;
}
.footer-brand img{
  width: 170px;
  height:auto;
  display:block;
  margin-bottom: 10px;
}
.footer-col h4{
  margin: 0 0 12px;
  font-size: 1rem;
  color:#fff;
}
.footer-col a{
  display:block;
  color: rgba(255,255,255,0.82);
  text-decoration:none;
  margin: 6px 0;
}
.footer-col a:hover{ color:#fff; }

.footer-bottom{
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 14px 0;
}
.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.to-top{
  width: 40px;
  height: 40px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: rgba(255,255,255,0.14);
  color:#fff;
  text-decoration:none;
}
.to-top:hover{ background: rgba(255,255,255,0.22); }

/* ========== Responsive ========== */
@media (max-width: 980px){
  .nav-desktop{ display:none; }
  .menu-btn{ display:flex; }

  .stats-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stat-card:nth-child(2){ border-right: none; }
  .stat-card:nth-child(1),
  .stat-card:nth-child(2){ border-bottom: 1px solid var(--line); }
  .stat-card:not(:last-child){ border-right: 1px solid var(--line); }
  .stat-card:nth-child(2),
  .stat-card:nth-child(4){ border-right: none; }

  .production-card{ grid-template-columns: 1fr; }
  .brands-grid{ grid-template-columns: 1fr; }
  .sales-grid{ grid-template-columns: 1fr; }
  .sales-cards{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .news-grid{ grid-template-columns: 1fr; }
  .contacts-card{ grid-template-columns: 1fr; }
  .about-intro{ grid-template-columns: 1fr; }
  .about-kpis{ grid-template-columns: 1fr 1fr; }
  .production-overview{ grid-template-columns: 1fr; }
  .production-kpis{ grid-template-columns: 1fr 1fr; }
  .production-capabilities{ grid-template-columns: 1fr; }
  .products-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .sales-cards{ grid-template-columns: 1fr; }
  .brands-cards{ grid-template-columns: 1fr; }
  .filters{ grid-template-columns: 1fr; }
  .about-kpis{ grid-template-columns: 1fr; }
  .production-kpis{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .brand img{ width: 150px; }
}

/* Photos should have square corners across the site */
.hero-slider,
.slide img,
.production-media img,
.production-overview__media img,
.image-card,
.image-card img,
.map-box img,
.product-card,
.product-card__media,
.product-card__media img,
.production-video__frame{
  border-radius: 0;
}

/* Text UI should not have rounded rectangles */
.card,
.skip-link,
.btn,
.brand,
.nav-pill,
.nav-cta,
.menu-btn,
.icon-btn,
.offcanvas-links a,
.offcanvas-nav a,
.offcanvas-cta,
.slider-btn,
.stats-grid,
.brands-intro,
.brand-card,
.sales-content,
.image-tag,
.news-card,
.contacts-card,
.badge,
.tag,
.filter input,
.filter select,
.field input,
.field textarea,
.toggle,
.to-top{
  border-radius: 0;
}
