/* ===================================================
   GENERATORS HUB — Main Stylesheet
   Brand: White / Red #df0000 / Dark Grey #1c1c1e
   =================================================== */

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

:root {
  --red:     #df0000;
  --red-dark:#b30000;
  --dark:    #1c1c1e;
  --grey:    #3d3d3d;
  --mid:     #6b7280;
  --light:   #f4f5f7;
  --border:  #e2e4e8;
  --white:   #ffffff;
  --shadow:  0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius:  6px;
  --glass:   rgba(255,255,255,0.72);
  --glass-border: rgba(255,255,255,0.5);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.tag-line {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(196,30,58,.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196,30,58,.4);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover {
  border-color: var(--dark);
  color: var(--dark);
  background: rgba(0,0,0,.06);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 40px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 20px; height: 20px; fill: white; }

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .name {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.02em;
}
.logo-text .sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--dark);
  background: var(--light);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--mid);
  margin-left: 6px;
  vertical-align: middle;
  transition: transform .2s;
}
.nav-dropdown:hover > .nav-link::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--grey);
  border-radius: var(--radius);
  font-weight: 500;
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: var(--light); color: var(--dark); }
.dropdown-menu .dd-power {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  min-width: 80px;
  display: inline-block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lang-flag { font-size: 15px; line-height: 1; }

/* Desktop language dropdown */
.lang-dropdown { position: relative; }
.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.lang-dropdown-btn:hover { background: var(--light); color: var(--dark); }
.lang-arrow { flex-shrink: 0; transition: transform .2s; color: var(--mid); }
.lang-dropdown:hover .lang-arrow { transform: rotate(180deg); }
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}
.lang-dropdown:hover .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  border-radius: var(--radius);
  transition: background .15s, color .15s;
}
.lang-dropdown-menu a:hover, .lang-dropdown-menu a.active {
  background: var(--light);
  color: var(--dark);
}

/* Mobile language buttons — top of nav */
.mobile-lang {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-lang .btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* Mobile nav — hidden by default at all sizes, shown only via JS on mobile */
.mobile-nav { display: none; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 9px;
  border: none;
  background: none;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  background: #d6d6d6;
  color: var(--dark);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/img/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  opacity: 0.90;
  z-index: 0;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-visual {
  flex: 0 0 auto;
  width: 48%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: flex-end;
}
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.22));
}

.hero-content {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.1;
  white-space: nowrap;
}
.hero h1 .accent {
  color: var(--red);
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.7);
  paint-order: stroke fill;
}

.hero-sub {
  font-size: 18px;
  color: var(--grey);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 500px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-benefits {
  list-style: none; padding: 0; margin: 20px 0 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-benefits li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 500; color: var(--dark);
}
.hero-benefits li svg {
  width: 15px; height: 15px; flex-shrink: 0;
  color: var(--red); stroke: var(--red);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,.12);
}
.hero-stat .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
}
.hero-stat .text {
  font-size: 13px;
  color: var(--mid);
  margin-top: 2px;
}

/* Europe map SVG container */
.hero-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-map-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 12px;
  opacity: 0.92;
  display: block;
}
.map-pulse {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(196,30,58,.4);
  animation: mapPulse 2.5s infinite;
}
@keyframes mapPulse {
  0%  { box-shadow: 0 0 0 0 rgba(196,30,58,.5); }
  70% { box-shadow: 0 0 0 20px rgba(196,30,58,0); }
  100%{ box-shadow: 0 0 0 0 rgba(196,30,58,0); }
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

/* Brand Video Section */
.brand-video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  height: 100vh;
  display: block;
  line-height: 0;
}
.brand-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.brand-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 24px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  text-align: center;
}
.brand-video-tagline {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.92;
}

/* Mobile hero map — hidden on desktop */
.hero-mobile-map { display: none; }
.trust-bar-inner {
  display: flex;
  gap: 0;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-right: 1px solid var(--border);
  flex: 1;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.trust-icon svg { width: 20px; height: 20px; color: var(--red); }
.trust-label { font-size: 14px; font-weight: 600; color: var(--dark); }
.trust-sub { font-size: 12px; color: var(--mid); }

/* ---- HUB SECTION ---- */
.hub-section {
  background: var(--white);
}
.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hub-text h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; }
.hub-text p { color: var(--grey); font-size: 17px; line-height: 1.75; margin-bottom: 28px; }

.hub-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hub-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}
.hub-feature-icon {
  width: 36px; height: 36px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hub-feature-icon svg { width: 18px; height: 18px; color: var(--red); }
.hub-feature-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.hub-feature-text { font-size: 13px; color: var(--mid); }

/* ---- HIMOINSA SECTION ---- */
.himoinsa-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.himoinsa-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,30,58,.15) 0%, transparent 70%);
  pointer-events: none;
}
.himoinsa-inner { position: relative; z-index: 1; }
.himoinsa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.himoinsa-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.himoinsa-section h2 {
  color: var(--white);
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 20px;
}
.himoinsa-section p { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.75; }

.himoinsa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.himoinsa-feature {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 20px;
  transition: border-color .2s, background .2s;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.himoinsa-feature:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(196,30,58,.4);
}
.hi-icon {
  width: 40px; height: 40px;
  background: rgba(196,30,58,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hi-icon svg { width: 20px; height: 20px; color: var(--red); }
.himoinsa-feature h4 { font-size: 14px; color: var(--white); margin-bottom: 4px; }
.himoinsa-feature p { font-size: 13px; color: rgba(255,255,255,.5); }

/* ---- MOST REQUESTED ---- */
.most-requested { background: var(--light); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 12px; }
.section-header p { color: var(--mid); font-size: 17px; max-width: 520px; margin: 0 auto; }

.mr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mr-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: block;
}
.mr-card:hover {
  border-color: var(--dark);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-3px);
  color: var(--dark);
}
.mr-power {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.04em;
  margin-bottom: 4px;
}
.mr-label { font-size: 13px; color: var(--mid); font-weight: 500; }
.mr-card .arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
}

/* ---- APPLICATIONS ---- */
.applications { background: var(--white); }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.app-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 18px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.app-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.app-icon {
  width: 52px; height: 52px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.app-icon svg { width: 26px; height: 26px; color: var(--red); }
.app-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.app-card p { font-size: 13px; color: var(--mid); line-height: 1.5; }

/* ---- STOCK SECTION ---- */
.stock-section {
  background: linear-gradient(90deg, var(--red) 0%, #8b0a1a 100%);
  color: var(--white);
  padding: 60px 0;
}
.stock-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.stock-text h2 { font-size: 28px; color: var(--white); margin-bottom: 8px; }
.stock-text p { color: rgba(255,255,255,.75); font-size: 16px; }
.stock-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.stock-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

/* ---- QUOTE MODAL ---- */
.quote-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.quote-modal.active { display: flex; }
.qm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,17,23,0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.qm-inner {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 40px 44px;
  width: 100%;
  max-width: 680px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  animation: qmIn 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes qmIn {
  from { opacity: 0; transform: translateY(28px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.qm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--light);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--grey);
  transition: background 0.15s, color 0.15s;
}
.qm-close:hover { background: var(--border); color: var(--dark); }
.qm-title { font-size: 24px; margin: 8px 0 22px; }
@media (max-width: 600px) {
  .quote-modal { padding: 10px; }
  .qm-inner { padding: 20px 14px 16px; border-radius: 12px; max-height: 94vh; }
  .qm-title { font-size: 18px; margin: 0 0 12px; }
  .qm-inner .form-grid { grid-template-columns: 1fr; gap: 8px; }
  .qm-inner .form-group { gap: 0; }
  .qm-inner .form-label { display: none; }
  .qm-inner .form-input,
  .qm-inner .form-select,
  .qm-inner .form-textarea { font-size: 13px; padding: 9px 10px; }
  .qm-inner .form-textarea { resize: none; }
  .qm-inner .form-submit { margin-top: 6px !important; padding: 11px 16px; font-size: 14px; }
}

/* ---- QUOTE FORM ---- */
.quote-section { background: var(--light); }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.quote-info h2 { font-size: 32px; margin-bottom: 16px; }
.quote-info p { color: var(--grey); font-size: 16px; line-height: 1.75; margin-bottom: 28px; }
.quote-cues { display: flex; flex-direction: column; gap: 12px; }
.quote-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--grey);
}
.quote-cue svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-input, .form-select, .form-textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,30,58,.1);
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; }

/* ---- PRODUCTS TABLE ---- */
.products-page { background: var(--white); }

.filters-bar {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}
.filter-group { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 130px; }
.filter-group--engine { max-width: 155px; }
.filter-label { font-size: 12px; font-weight: 600; color: var(--mid); text-transform: uppercase; letter-spacing: .06em; }
.filter-select, .filter-input {
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font);
}
.filter-select:focus, .filter-input:focus {
  outline: none;
  border-color: var(--red);
}
.filter-reset {
  padding: 9px 16px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--mid);
  transition: border-color .2s, color .2s;
  align-self: flex-end;
}
.filter-reset:hover { border-color: var(--dark); color: var(--dark); }

.products-table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--border); }
.products-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.products-table thead {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 2;
}
.products-table thead th {
  padding: 12px 11px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.products-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.products-table tbody tr:hover { background: rgba(196,30,58,.03); }
.products-table tbody td {
  padding: 10px 11px;
  color: var(--grey);
  vertical-align: middle;
  white-space: nowrap;
}
.products-table tbody td.model-cell { white-space: nowrap; }
.products-table .action-cell { white-space: nowrap; }
.products-table .action-cell .btn-row { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; align-items: center; }
.products-table .power-cell {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
}
.products-table .model-cell { font-weight: 600; color: var(--dark); }
.products-table .brand-cell { color: var(--red); font-weight: 600; }
.products-table .regulation-cell {
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: default;
}
.avail-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.avail-badge.stock { background: #dcfce7; color: #15803d; }
.avail-badge.selected { background: #fef9c3; color: #854d0e; }
.avail-badge.request { background: #f3f4f6; color: var(--mid); }

.expand-row td { background: #fafafa; border-bottom: 2px solid var(--border); padding: 0; }
.expand-inner {
  padding: 14px 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 28px;
  overflow-x: auto;
}
.expand-field { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.expand-field .ef-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--mid); white-space: nowrap; }
.expand-field .ef-value { font-size: 14px; font-weight: 600; color: var(--dark); white-space: nowrap; }
.expand-download { flex-shrink: 0; margin-left: auto; padding-left: 16px; }
.expand-download .btn { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }

.expand-btn {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 5px 12px;
  color: var(--mid);
  transition: border-color .2s, color .2s;
}
.expand-btn:hover { border-color: var(--red); color: var(--red); }

/* Mobile product cards */
.product-cards { display: none; }
.product-card-m {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.product-card-m-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
}
.pcm-power { font-size: 20px; font-weight: 800; color: var(--dark); min-width: 80px; }
.pcm-model { font-size: 13px; font-weight: 600; color: var(--grey); flex: 1; }
.pcm-quote {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  text-decoration: none;
}
.pcm-toggle {
  background: none; border: none; cursor: pointer;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  font-size: 18px;
  transition: transform .2s;
}
.product-card-m.open .pcm-toggle { transform: rotate(180deg); }
.product-card-m-body {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--border);
}
.product-card-m.open .product-card-m-body { display: block; }
.pcm-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.pcm-spec { display: flex; flex-direction: column; gap: 2px; }
.pcm-spec .sl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--mid); }
.pcm-spec .sv { font-size: 14px; font-weight: 600; color: var(--dark); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
/* Footer logo (replaces old SVG logo) */
.footer-logo-link { display: inline-block; opacity: .7; transition: opacity .2s; }
.footer-logo-link:hover { opacity: 1; }
.footer-logo-img { display: block; height: 56px; width: auto; filter: brightness(0) invert(1); }
/* Footer accordion toggle */
.footer-col-toggle { display: flex; align-items: center; justify-content: space-between; cursor: default; }
.footer-col-toggle h4 { margin-bottom: 0; }
.footer-arrow { display: none; flex-shrink: 0; color: rgba(255,255,255,.5); transition: transform .25s ease; }
.footer-col-toggle.open .footer-arrow { transform: rotate(180deg); }
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 280px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.8);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col-content + .footer-col-toggle { margin-top: 28px; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-legal a:hover { color: rgba(255,255,255,.6); }
.footer-partner { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-partner a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-partner a:hover { color: rgba(255,255,255,.7); }

/* ---- INTERIOR PAGES ---- */
.page-hero {
  background: linear-gradient(135deg, #0f1117 0%, #1c1c1e 60%, #2a0a12 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.02'%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");
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(196,30,58,0.55) 0%, rgba(196,30,58,0.18) 38%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero-inner.with-image {
  display: flex;
  align-items: center;
  gap: 48px;
}
.page-hero-text {
  flex: 1 1 0;
  min-width: 0;
}
.page-hero-img {
  flex: 0 0 auto;
  width: clamp(320px, 42vw, 560px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.page-hero-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.45));
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero .sub {
  font-size: 17px;
  color: rgba(255,255,255,.6);
}
/* Products hero CTA */
.products-hero-cta { display: inline-flex; }

/* Results bar */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.results-bar #results-count { font-size: 13px; color: var(--mid); }
.per-page-wrap { display: flex; align-items: center; gap: 8px; }
.per-page-label { font-size: 13px; color: var(--mid); font-weight: 500; white-space: nowrap; }
.per-page-select { padding: 6px 10px !important; font-size: 13px !important; width: auto !important; }

@media (max-width: 768px) {
  .page-hero-inner.with-image { flex-direction: column; gap: 20px; }
  .page-hero-img { width: 100%; max-width: 340px; justify-content: center; }
  /* Compact page-hero on mobile */
  .page-hero { padding: 28px 0 24px; }
  .page-hero h1 { font-size: 26px; margin-bottom: 8px; }
  .page-hero .sub { font-size: 14px; }
  /* Center hero text + button on mobile (products page with image) */
  .page-hero-inner.with-image .page-hero-text { text-align: center; display: flex; flex-direction: column; align-items: center; }
  /* Products CTA on mobile */
  .products-hero-cta { margin-top: 16px; font-size: 14px; padding: 10px 18px; }
  /* Compact products section on mobile */
  .products-page { padding-top: 24px !important; }
  /* Compact filters on mobile */
  .filters-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px; margin-bottom: 16px; }
  .filter-label { display: none; }
  .filter-group { min-width: 0; gap: 0; }
  .filter-group--engine { max-width: none; }
  .filter-select, .filter-input { font-size: 13px; padding: 8px 10px; }
  .filter-reset { grid-column: 1 / -1; }
  /* Results bar on mobile */
  .per-page-label { display: none; }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: rgba(255,255,255,.9); }
.breadcrumb span { opacity: .4; }

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.about-stat {
  background: var(--light);
  border-radius: 8px;
  padding: 24px;
  border-left: 3px solid var(--red);
}
.about-stat .num {
  font-size: 36px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -.04em;
}
.about-stat .text {
  font-size: 13px;
  color: var(--mid);
  margin-top: 4px;
}
.about-highlight {
  background: var(--dark);
  color: var(--white);
  border-radius: 12px;
  padding: 36px;
  margin-top: 40px;
}
.about-highlight h3 { color: var(--white); margin-bottom: 12px; }
.about-highlight p { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.7; }

/* Applications page */
.app-section-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.app-section-block:last-child { border-bottom: none; }
.app-block-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.app-block-icon-big {
  width: 80px; height: 80px;
  background: rgba(196,30,58,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.app-block-icon-big svg { width: 40px; height: 40px; color: var(--red); }
.app-block-left h2 { font-size: 26px; margin-bottom: 12px; }
.app-block-left p { color: var(--mid); font-size: 15px; }
.app-advantages { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.app-advantage {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--grey);
}
.app-advantage::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 11.5L3 8l1-1 2.5 2.5 5-5 1 1z'/%3E%3C/svg%3E");
  background-color: var(--red);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* Portfolio */
.portfolio-empty {
  text-align: center;
  padding: 80px 20px;
  background: var(--light);
  border-radius: 12px;
  border: 2px dashed var(--border);
}
.portfolio-empty h3 { font-size: 20px; margin-bottom: 8px; }
.portfolio-empty p { color: var(--mid); }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 28px; margin-bottom: 16px; }
.contact-info p { color: var(--grey); font-size: 16px; line-height: 1.75; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(196,30,58,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; color: var(--red); }
.contact-item-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--mid); }
.contact-item-value { font-size: 15px; font-weight: 600; color: var(--dark); margin-top: 2px; }
.contact-item-value a { color: var(--red); text-decoration: none; }
.contact-item-value a:hover { text-decoration: underline; }

/* Contact page — extended layout */
.cn-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 64px 0 48px;
}
.cn-info-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}
.cn-info-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.cn-company-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.cn-company-row:last-child { margin-bottom: 0; }
.cn-company-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--mid);
}
.cn-company-value {
  font-size: 15px;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.5;
}
.cn-company-value a { color: var(--red); text-decoration: none; }
.cn-company-value a:hover { text-decoration: underline; }
.cn-phone-big {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -.5px;
}
.cn-phone-big a { color: var(--dark); text-decoration: none; }
.cn-phone-big a:hover { color: var(--red); }
.cn-phone-note { font-size: 14px; color: var(--mid); line-height: 1.6; margin-bottom: 20px; }
.cn-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background .2s;
}
.cn-wa-btn:hover { background: #1da851; }
.cn-wa-btn svg { flex-shrink: 0; }
.cn-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 12px;
  transition: background .2s;
}
.cn-email-btn:hover { background: var(--red); }
.cn-btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
.cn-location-section {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.cn-location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cn-location-inner h2 { font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.cn-location-inner p { font-size: 15px; color: var(--grey); line-height: 1.75; margin-bottom: 12px; }
.cn-map-section { padding: 0; }
.cn-map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}
.cn-map-wrap iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(20%) contrast(1.05); }
.cn-map-section-wrap { padding: 48px 0; }
.cn-map-section-wrap h2 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.cn-form-section { padding: 64px 0; }
.cn-form-section h2 { font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.cn-form-section .cn-form-lead { font-size: 16px; color: var(--grey); line-height: 1.7; margin-bottom: 36px; max-width: 640px; }
.cn-response-section {
  background: var(--dark);
  padding: 56px 0;
  color: #fff;
}
.cn-response-section h2 { font-size: 26px; font-weight: 800; margin-bottom: 14px; }
.cn-response-section > .container > p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 28px; }
.cn-response-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.cn-response-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cn-response-item-icon {
  width: 34px; height: 34px;
  background: rgba(196,30,58,.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cn-response-item-icon svg { color: #ef8898; }
.cn-response-item p { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.5; margin: 0; font-weight: 500; }
.cn-final-section {
  background: var(--light);
  border-top: 1px solid var(--border);
  padding: 56px 0;
  text-align: center;
}
.cn-final-section h2 { font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.cn-final-section p { font-size: 16px; color: var(--grey); line-height: 1.75; max-width: 680px; margin: 0 auto; }

/* ── Contact page redesign ── */
.cn-main-section {
  padding: 64px 0 80px;
  background: #fff;
}
.cn-main-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: start;
}
.cn-info-panel {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}
.cn-info-block { }
.cn-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.cn-phone-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cn-phone-number:hover { color: var(--red); }
.cn-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.cn-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}
.cn-call-btn:hover { background: #333; }
.cn-contact-note {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}
.cn-panel-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.cn-company-rows { display: flex; flex-direction: column; gap: 0; }
.cn-form-panel { }

/* Full-width map section */
.cn-map-fullwidth {
  border-top: 1px solid var(--border);
}
.cn-map-embed {
  width: 100%;
  height: 520px;
}
.cn-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}
@media (max-width: 768px) {
  .cn-map-embed { height: 320px; }
}

/* Contact page — compact hero */
.page-hero.contact-hero { padding: 36px 0 32px; }
.cn-form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.cn-form-sub {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 24px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .cn-main-grid { grid-template-columns: 340px 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .cn-main-grid { grid-template-columns: 1fr; gap: 24px; }
  .cn-main-section { padding: 40px 0 56px; }
  .cn-phone-number { font-size: 22px; }
  .cn-info-panel { padding: 28px 20px; }
  .cn-map-mini { height: 160px; }
}

/* WhatsApp floating button — mobile only */
.wa-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 16px;
  z-index: 10001;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.wa-float:hover { background: #1da851; transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@media (max-width: 768px) {
  .wa-float { display: flex; }
  .cookie-visible .wa-float { bottom: 88px; }
  .cn-top { grid-template-columns: 1fr; gap: 24px; padding: 40px 0 32px; }
  .cn-location-inner { grid-template-columns: 1fr; gap: 32px; }
  .cn-response-grid { grid-template-columns: 1fr; }
}

/* Thank you page */
.thankyou-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.thankyou-box {
  max-width: 520px;
}
.thankyou-icon {
  width: 72px; height: 72px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-icon svg { width: 36px; height: 36px; color: #15803d; }
.thankyou-box h1 { font-size: 32px; margin-bottom: 16px; }
.thankyou-box p { color: var(--mid); font-size: 17px; line-height: 1.7; margin-bottom: 32px; }

/* Thank-you hero with background image */
.thankyou-hero {
  position: relative;
  height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.thankyou-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.thankyou-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}
.thankyou-hero-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou-hero .thankyou-box {
  max-width: 560px;
  margin: 0 auto;
}
.thankyou-hero .thankyou-icon {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}
.thankyou-hero .thankyou-icon svg { color: #fff; }
.thankyou-hero .thankyou-box h1 { color: #fff; font-size: 36px; }
.thankyou-hero .thankyou-box p { color: rgba(255,255,255,0.88); }
.thankyou-hero .btn {
  background: #fff;
  color: #1c1c1e;
  border-color: #fff;
}
.thankyou-hero .btn:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: #1c1c1e;
}
@media (max-width: 768px) {
  .thankyou-hero { height: calc(100vh - 64px); }
  .thankyou-hero .thankyou-box h1 { font-size: 28px; }
}

/* Admin pages */
.admin-wrap { max-width: 1200px; margin: 0 auto; padding: 32px 24px; }
.admin-header {
  background: var(--dark);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-header h1 { font-size: 18px; color: var(--white); font-weight: 700; }
.admin-header a { font-size: 13px; color: rgba(255,255,255,.5); }
.admin-header a:hover { color: var(--white); }

.admin-nav {
  display: flex;
  gap: 4px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 24px;
  width: fit-content;
}
.admin-nav a {
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.admin-nav a.active, .admin-nav a:hover {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow);
}

.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mid);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--grey);
}
.admin-table tr:hover td { background: var(--light); }

.login-card {
  max-width: 380px;
  margin: 80px auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.login-card h2 { font-size: 22px; margin-bottom: 6px; }
.login-card p { color: var(--mid); font-size: 14px; margin-bottom: 28px; }

/* Landing page */
.lp-hero {
  background: linear-gradient(135deg, #0f1117 0%, #1c1c1e 55%, #2a0a12 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.lp-hero::before {
  content:''; position:absolute; inset:0;
  background: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='%23ffffff' fill-opacity='0.02'%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");
}
.lp-hero-inner { position:relative; z-index:1; text-align:center; }
.lp-hero h1 { font-size:clamp(30px,4.5vw,52px); color:var(--white); margin-bottom:16px; }
.lp-hero p { font-size:18px; color:rgba(255,255,255,.65); margin-bottom:36px; max-width:560px; margin-left:auto; margin-right:auto; }
.lp-ctas { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

.lp-form-section { background:var(--light); }
.lp-form-wrap { max-width:640px; margin:0 auto; }
.lp-form-card { background:var(--white); border:1px solid var(--border); border-radius:12px; padding:40px; box-shadow:var(--shadow-lg); }
.lp-form-card h2 { font-size:24px; margin-bottom:8px; }
.lp-form-card p { color:var(--mid); font-size:15px; margin-bottom:28px; }

/* ══ LP2 — 20 kVA landing page ══ */
.lp2-hero {
  background: linear-gradient(135deg, #0f1117 0%, #1c1c1e 55%, #2a0a12 100%);
  padding: 56px 0 64px;
  position: relative; overflow: hidden;
}
.lp2-hero::before {
  content: ''; position: absolute; inset: 0;
  background: 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='%23ffffff' fill-opacity='0.02'%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");
}
.lp2-hero-inner {
  position: relative; z-index: 1;
  display: flex; gap: 48px; align-items: flex-start;
}
.lp2-hero-text { flex: 1 1 0; min-width: 0; }
.lp2-hero-text h1 {
  font-size: clamp(28px, 3.8vw, 48px);
  color: var(--white); margin-bottom: 16px; line-height: 1.15;
}
.lp2-hero-sub {
  font-size: 16px; color: rgba(255,255,255,.65);
  line-height: 1.75; margin-bottom: 24px; max-width: 520px;
}
.lp2-kw-note {
  font-size: 14px; color: #fff !important;
  line-height: 1.7; margin: 0 0 20px; max-width: 520px;
  border-left: 3px solid var(--red); padding-left: 12px;
  opacity: 0.82;
}
.lp2-product-visual {
  background: radial-gradient(ellipse at 50% 0%, #ffffff 0%, #f2f3f5 100%);
  padding: 56px 0 48px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 32px rgba(0,0,0,.09), inset 0 -1px 0 rgba(0,0,0,.06);
}
.lp2-product-visual::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, var(--red) 70%, transparent 100%);
  opacity: 0.55;
}
.lp2-product-visual .lp2-hero-img {
  max-width: 760px; width: 88%;
  margin: 0 auto; display: block;
  filter:
    drop-shadow(0 2px 4px rgba(0,0,0,.10))
    drop-shadow(0 12px 32px rgba(0,0,0,.18))
    drop-shadow(0 32px 64px rgba(0,0,0,.12));
}
.lp2-kw-faq {
  background: #f5f5f7; border-left: 4px solid var(--red);
  border-radius: 4px; padding: 20px 24px;
  max-width: 680px; margin: 0 0 32px;
}
.lp2-kw-faq h3 {
  font-size: 16px; font-weight: 700;
  color: var(--dark); margin: 0 0 8px;
}
.lp2-kw-faq p {
  font-size: 14px; color: #555; line-height: 1.7; margin: 0;
}
.lp2-hero-checks {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.lp2-hero-checks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.82); font-weight: 500;
}
.lp2-hero-checks svg {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--red); stroke: var(--red);
}
.lp2-hero-img {
  width: calc(100% + 36px); max-width: 456px; height: auto;
  margin: 20px 0 18px -36px;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.65));
}
.lp2-call-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  font-size: 15px; font-weight: 700; text-decoration: none;
  padding: 14px 28px; border-radius: 8px;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(196,30,58,.45);
}
.lp2-call-btn svg { flex-shrink: 0; stroke: #fff; }
.lp2-call-btn:hover { background: #a3172f; color: #fff; transform: translateY(-1px); }
.lp2-call-btn:hover svg { stroke: #fff; }

/* Hero form card */
.lp2-hero-form { flex: 0 0 380px; }
.lp2-form-card {
  background: var(--white); border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.45); overflow: hidden;
}
.lp2-form-card-head {
  background: var(--red); padding: 16px 24px;
  display: flex; flex-direction: column; gap: 3px;
}
.lp2-form-card-head strong { color: #fff; font-size: 15px; font-weight: 700; }
.lp2-form-card-head span { color: rgba(255,255,255,.8); font-size: 12px; }
.lp2-form-fields { padding: 20px 24px 0; display: flex; flex-direction: column; gap: 12px; }
.lp2-form-card form > .btn { margin: 16px 24px 20px; display: flex; width: calc(100% - 48px) !important; }

/* Trust bar */
.lp2-trust-bar {
  background: var(--dark); border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
}
.lp2-trust-items {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 24px 40px;
}
.lp2-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75);
}
.lp2-trust-item svg { color: var(--red); flex-shrink: 0; }

/* Sections */
.lp2-section { padding: 72px 0; }
.lp2-section--light { background: var(--light); }
.lp2-section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.lp2-section-header h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.lp2-section-header p { font-size: 16px; color: var(--grey); line-height: 1.7; margin: 0; }

/* Config cards */
.lp2-config-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.lp2-config-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 28px;
}
.lp2-config-card--accent {
  border-color: var(--red); background: #fff;
}
.lp2-config-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.lp2-config-icon svg { width: 26px; height: 26px; stroke: var(--red); }
.lp2-config-card h3 { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.lp2-config-desc { font-size: 14px; color: var(--mid); line-height: 1.6; margin-bottom: 14px; }
.lp2-config-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px;
}
.lp2-config-tags span {
  background: var(--light); border: 1px solid var(--border);
  border-radius: 20px; padding: 3px 10px; font-size: 11px;
  font-weight: 600; color: var(--mid);
}
.lp2-config-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.lp2-config-list li {
  font-size: 13px; color: var(--grey); padding-left: 16px; position: relative; line-height: 1.5;
}
.lp2-config-list li::before {
  content: '–'; position: absolute; left: 0; color: var(--red); font-weight: 700;
}

/* Specs grid */
.lp2-specs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.lp2-spec-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px 20px; text-align: center;
}
.lp2-spec-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.10);
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
}
.lp2-spec-icon svg { width: 20px; height: 20px; stroke: var(--red); }
.lp2-spec-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.lp2-spec-value { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.lp2-spec-note { font-size: 12px; color: var(--mid); line-height: 1.4; }

/* Applications grid */
.lp2-apps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.lp2-app-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 16px;
}
.lp2-app-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px;
  background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.10);
  display: flex; align-items: center; justify-content: center;
}
.lp2-app-icon svg { width: 18px; height: 18px; stroke: var(--red); }
.lp2-app-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.lp2-app-desc { font-size: 12px; color: var(--mid); line-height: 1.5; }

/* Why us */
.lp2-why-section {
  background: var(--dark); padding: 72px 0;
}
.lp2-why-inner { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.lp2-why-text h2 { font-size: clamp(22px, 2.8vw, 30px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.lp2-why-text > p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 28px; }
.lp2-why-text .label { color: rgba(255,255,255,.4); border-color: rgba(255,255,255,.15); }
.lp2-why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.lp2-why-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.8); }
.lp2-why-list svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--red); }
.lp2-cta-card {
  background: #1c1c1e; border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 28px;
}
.lp2-cta-card h3 { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.lp2-cta-card > p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; margin: 0; }

/* Responsive */
@media (max-width: 1100px) {
  .lp2-hero-form { flex: 0 0 340px; }
  .lp2-config-grid { grid-template-columns: 1fr 1fr; }
  .lp2-apps-grid { grid-template-columns: repeat(2, 1fr); }
  .lp2-why-inner { grid-template-columns: 1fr; gap: 36px; }
  .lp2-why-cta { max-width: 480px; }
}
@media (max-width: 900px) {
  .lp2-specs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .lp2-hero { padding: 36px 0 40px; }
  .lp2-hero-inner { flex-direction: column; gap: 28px; }
  .lp2-hero-form { flex: none; width: 100%; }
  .lp2-hero-text { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .lp2-hero-sub { max-width: 100%; }
  .lp2-hero-checks { align-items: flex-start; text-align: left; }
  .lp2-hero-img { margin: 20px auto 18px; width: 100%; max-width: 380px; }
  .lp2-call-btn { align-self: center; }
  .lp2-config-grid { grid-template-columns: 1fr; }
  .lp2-apps-grid { grid-template-columns: 1fr; }
  .lp2-specs-grid { grid-template-columns: 1fr 1fr; }
  .lp2-section { padding: 48px 0; }
  .lp2-why-section { padding: 48px 0; }
}

/* Alerts */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
}
.alert-success { background: #dcfce7; border: 1px solid #86efac; color: #15803d; }
.alert-error { background: #fee2e2; border: 1px solid #fca5a5; color: #dc2626; }

/* Pagination */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 32px;
}
.pagination a, .pagination span {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
  transition: border-color .2s, background .2s, color .2s;
}
.pagination a:hover { border-color: var(--red); color: var(--red); }
.pagination .current { background: var(--red); border-color: var(--red); color: var(--white); }

/* JS Pagination */
#pagination { margin-top: 28px; }
.pagination-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color .2s, background .2s, color .2s;
  justify-content: center;
}
.page-btn:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.page-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.page-btn:disabled { opacity: .35; cursor: default; }
.page-btn.page-prev, .page-btn.page-next { padding: 0 14px; }
.page-ellipsis { display: inline-flex; align-items: center; height: 38px; padding: 0 4px; color: var(--mid); font-size: 15px; }

/* Progress bar */
.np-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--red);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: none;
}
.np-bar.np-start { opacity: 1; width: 75%; transition: width 8s cubic-bezier(.05,1,.1,1); }
.np-bar.np-done  { opacity: 1; width: 100%; transition: width .15s ease; }
.np-bar.np-hide  { opacity: 0; width: 100%; transition: opacity .3s ease; }

/* Products loading state */
.products-loading {
  opacity: 0.35;
  pointer-events: none;
  transition: opacity .15s ease;
}

/* Results flash after filtering */
@keyframes filterFlash {
  0%   { background-color: rgba(196,30,58,.10); }
  100% { background-color: transparent; }
}
.filter-flash { animation: filterFlash .5s ease forwards; border-radius: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .mr-grid { grid-template-columns: repeat(3, 1fr); }
  .himoinsa-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-visual { display: none; }
  .hero-map { display: none; }
  .hub-grid { grid-template-columns: 1fr; gap: 40px; }
  .himoinsa-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .apps-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .app-block-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .lang-switcher { display: none; }
  .lang-dropdown { display: block; }
  .btn:not(.btn-sm) { min-height: 48px; }
  .btn-primary:not(.btn-sm) { padding: 14px 28px; font-size: 16px; }
  .trust-bar-inner { flex-direction: column; align-items: stretch; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .mr-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .himoinsa-features { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stock-inner { flex-direction: column; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  /* Mobile nav overlay */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    overflow-y: auto;
    z-index: 999;
    padding: 24px;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav .nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .mobile-nav .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--light);
    border-radius: var(--radius);
    padding: 4px;
    margin: 4px 0 8px 12px;
    display: none;
  }
  .mobile-nav .dropdown-menu.open { display: block; }
  .mobile-acc-trigger { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
  .mob-acc-arrow { flex-shrink: 0; transition: transform .25s ease; }
  .mobile-accordion.open .mob-acc-arrow { transform: rotate(180deg); }
  .products-table-wrap { display: none; }
  .product-cards { display: block; }
  .breadcrumb { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  /* Mobile hero — map as background, content centered on top */
  .hero { padding: 60px 0 0; }
  .hero::before { background-image: url('/img/hero-map-mobile.jpg'); background-position: top center; background-size: cover; }
  /* Map band — lipita direct sub hero, fara spatiu */
  .hero-mobile-map { display: block; margin: 0; padding: 0; line-height: 0; font-size: 0; }
  .hero-inner { align-items: center; }
  .hero-content { background: rgba(255,255,255,.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); text-align: center; margin: 0 auto; width: 100%; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero h1 { white-space: normal; font-size: 30px; }
  /* CTA buttons — stacked, text centered within each */
  .hero-ctas { justify-content: center; flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  /* Hero stats — all 3 on one line */
  .hero-stats { flex-wrap: nowrap; gap: 0; justify-content: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,.1); }
  .hero-stat { flex: 1; min-width: 0; text-align: center; padding: 0 4px; border-right: 1px solid rgba(0,0,0,.1); }
  .hero-stat:last-child { border-right: none; }
  .hero-stat .num { font-size: 20px; }
  .hero-stat .text { font-size: 10px; }
  /* Trust items — left-aligned content, box centered */
  .trust-bar-inner { flex-direction: column; align-items: center; }
  .trust-item { flex: 0 0 auto; border-right: none; border-bottom: 1px solid var(--border); width: 280px; justify-content: flex-start; }
  .trust-item:last-child { border-bottom: none; }
  /* Hub section — flex column, centered */
  .hub-section .hub-text { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hub-section .hub-text h2,
  .hub-section .hub-text p,
  .hub-section .hub-text .label { text-align: center; width: 100%; }
  /* Himoinsa section — text side centered */
  .himoinsa-section .himoinsa-grid > div:first-child { text-align: center; }
  .himoinsa-section .himoinsa-grid > div:first-child h2,
  .himoinsa-section .himoinsa-grid > div:first-child p,
  .himoinsa-section .himoinsa-grid > div:first-child .himoinsa-label { text-align: center; }
  /* Experience & Trust section — flex column, centered */
  .experience-section .hub-text { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .experience-section .hub-text h2,
  .experience-section .hub-text > p,
  .experience-section .hub-text .label { text-align: center; width: 100%; }
  .experience-section .hub-text ul { margin-left: auto; margin-right: auto; width: fit-content; }
  /* Video full width on mobile */
  .brand-video-section { height: auto; }
  .brand-video { height: auto; object-fit: fill; }
  /* Stock badges centered */
  .stock-badges { justify-content: center; }
  /* Quote cues — left-aligned items, box centered */
  .quote-info { text-align: center; }
  .quote-cues { align-items: center; }
  .quote-cue { width: auto; min-width: 220px; }
  /* Footer — spatiu redus pe mobile */
  .site-footer { padding: 28px 0 32px; }
  .footer-grid { padding-bottom: 0; }
  /* Footer — logo centrat cu fundal alb */
  .footer-brand { text-align: center; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-brand p { max-width: none; }
  .footer-logo-link { display: block; width: fit-content; margin: 0 auto 16px; background: none; padding: 0; }
  .footer-logo-img { height: 48px; }
  /* Footer accordion pe mobile */
  .footer-col { text-align: center; padding-top: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .footer-col:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-col-toggle { cursor: pointer; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); justify-content: center; gap: 8px; }
  .footer-col-toggle.open { border-bottom-color: transparent; }
  .footer-col-toggle h4 { margin-bottom: 0; }
  .footer-arrow { display: block; }
  .footer-col ul.footer-col-content { display: none; padding: 6px 0 14px; flex-direction: column; align-items: flex-start; width: fit-content; margin: 0 auto; }
  .footer-col ul.footer-col-content.open { display: flex; }
  .footer-col-content + .footer-col-toggle { border-top: 1px solid rgba(255,255,255,.06); margin-top: 0; }
  .footer-bottom { padding-top: 16px; flex-direction: column; align-items: center; text-align: center; }
  .footer-partner { margin: 0; }
  .footer-legal { justify-content: center; }
  /* Header compact — mobile */
  .site-header .container { padding: 0 14px; }
  .site-header .logo-img { height: 36px; }
  .site-header .logo { margin-right: 0; }
  .site-header .btn-primary { white-space: nowrap; font-size: 12px; padding: 7px 12px; }
  .site-header .header-right { gap: 10px; margin-right: 0; }
}

@media (max-width: 480px) {
  .apps-grid { grid-template-columns: 1fr 1fr; }
  .mr-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .lp-ctas { flex-direction: column; align-items: center; }
}

/* Loading state */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(28,28,30,.97);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.85);
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 14px; flex: 1; min-width: 200px; }
.cookie-banner p a { color: rgba(255,255,255,.6); }
.cookie-banner-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-decline {
  background: none;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.2);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* ===================================================
   ANIMATIONS
   =================================================== */

/* -- Hero entrance (above fold, CSS-only on load) -- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-badge     { animation: fadeSlideUp 0.55s ease both; animation-delay: 0.05s; }
.hero-content h1 { animation: fadeSlideUp 0.6s ease both; animation-delay: 0.18s; }
.hero-sub        { animation: fadeSlideUp 0.6s ease both; animation-delay: 0.32s; }
.hero-ctas       { animation: fadeSlideUp 0.6s ease both; animation-delay: 0.46s; }
.hero-stats      { animation: fadeSlideUp 0.6s ease both; animation-delay: 0.6s; }
.hero-map, .hero-mobile-map { animation: fadeIn 0.9s ease both; animation-delay: 0.3s; }

/* -- Scroll reveal base states -- */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-duration: 0.7s;
}
.reveal       { opacity: 0; transform: translateY(36px); }
.reveal-left  { opacity: 0; transform: translateX(-44px); }
.reveal-right { opacity: 0; transform: translateX(44px); }
.reveal-scale { opacity: 0; transform: scale(0.86) translateY(16px);
                transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }

.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-scale.in-view {
  opacity: 1;
  transform: none;
}

/* -- Trust bar shimmer on in-view -- */
.trust-item .trust-icon {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.trust-item.in-view .trust-icon { transform: scale(1.08); }

/* -- Counter number pop -- */
@keyframes numPop {
  0%   { opacity: 0; transform: scale(0.7) translateY(12px); }
  60%  { transform: scale(1.12) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.hero-stat.in-view .num {
  animation: numPop 0.55s cubic-bezier(0.34,1.56,0.64,1) both;
}

/* ============================================
   APPLICATIONS PAGE — IMAGE + TEXT LAYOUT
   ============================================ */
.app-intro {
  padding: 80px 0;
  background: var(--white);
}
.app-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.app-intro-grid h2 { font-size: 32px; margin-bottom: 16px; }
.app-intro-grid > div > p { color: var(--grey); font-size: 17px; line-height: 1.75; margin-bottom: 16px; }
.app-intro-grid > div > p:last-child { margin-bottom: 0; }
.app-bullets-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mid);
  margin-bottom: 14px;
}
.app-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--grey);
  padding: 11px 16px;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
  line-height: 1.4;
}
.app-bullet::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Sector image+text sections */
.app-sector {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.app-sector:last-of-type { border-bottom: none; }
.app-sector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.app-sector-grid.reversed .app-sector-img { order: 2; }
.app-sector-grid.reversed .app-sector-content { order: 1; }
.app-sector-img { position: relative; }
.app-sector-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: block;
}
.app-sector-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-sector-badge svg { color: var(--red); flex-shrink: 0; }
.app-sector-content .label { margin-bottom: 8px; }
.app-sector-content h2 { font-size: 30px; margin-bottom: 14px; }
.app-sector-content > p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Dark features band */
.app-dark-section {
  background: var(--dark);
  padding: 80px 0;
}
.app-dark-section .label { color: rgba(255,255,255,0.45); }
.app-dark-section h2 { color: white; font-size: 32px; margin-bottom: 16px; }
.app-dark-section > .container > p { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.75; max-width: 620px; }
.app-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.app-dark-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 28px 24px;
}
.app-dark-card-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.app-dark-card-icon svg { color: var(--red); width: 22px; height: 22px; }
.app-dark-card h4 { color: white; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.app-dark-card p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; }

/* Light two-col feature section */
.app-light-section { padding: 80px 0; background: var(--light); }
.app-light-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.app-light-section h2 { font-size: 32px; margin-bottom: 16px; }
.app-light-section .app-light-text p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.app-feat-list { display: flex; flex-direction: column; gap: 12px; }
.app-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.app-feat-icon {
  width: 40px; height: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.app-feat-icon svg { color: var(--red); width: 20px; height: 20px; }
.app-feat-item h4 { font-size: 15px; color: var(--dark); margin-bottom: 4px; font-weight: 600; }
.app-feat-item p { font-size: 14px; color: var(--mid); line-height: 1.5; margin: 0; }

/* Range stats section */
.app-range-section { padding: 80px 0; }
.app-range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.app-range-section h2 { font-size: 32px; margin-bottom: 16px; }
.app-range-section > .container > .app-range-grid > div > p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.app-range-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.app-range-stat {
  background: white;
  border-radius: 10px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.app-range-stat .num {
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.app-range-stat .text { font-size: 13px; color: var(--mid); line-height: 1.4; }

/* CTA Band */
.app-cta-band {
  background: linear-gradient(135deg, #b30000 0%, var(--red) 55%, #e83030 100%);
  padding: 80px 0;
  text-align: center;
}
.app-cta-band h2 { color: white; font-size: 34px; margin-bottom: 16px; }
.app-cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 32px;
}
.btn-white {
  background: white;
  color: var(--red) !important;
  border: 2px solid white;
  font-weight: 700;
}
.btn-white:hover { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9); }

/* Responsive — applications */
@media (max-width: 900px) {
  .app-dark-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .app-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .app-sector-grid,
  .app-sector-grid.reversed { grid-template-columns: 1fr; gap: 32px; }
  .app-sector-grid.reversed .app-sector-img { order: 0; }
  .app-sector-grid.reversed .app-sector-content { order: 0; }
  .app-sector-img img { height: 240px; }
  .app-light-grid { grid-template-columns: 1fr; gap: 36px; }
  .app-range-grid { grid-template-columns: 1fr; gap: 36px; }
  .app-cta-band h2 { font-size: 26px; }
  .app-dark-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .app-range-stats { grid-template-columns: 1fr 1fr; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .hero-badge, .hero-content h1, .hero-sub, .hero-ctas, .hero-stats,
  .hero-map, .hero-mobile-map {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.abt-section { padding: 80px 0; }
.abt-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.abt-sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}
.abt-tag {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}
.abt-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.abt-stat {
  background: white;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.abt-stat .num { font-size: 28px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 6px; }
.abt-stat .text { font-size: 13px; color: var(--mid); line-height: 1.4; }

/* Light band (Experience section) */
.abt-light-band { background: var(--light); padding: 80px 0; }
.abt-light-band .label { color: var(--red); }
.abt-light-band h2 { color: var(--dark); margin-bottom: 16px; }
.abt-light-band > .container > p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.75;
  max-width: 640px;
}

/* Red gradient band (European Supply) */
.abt-red-band {
  background: linear-gradient(135deg, #7a0000 0%, var(--red) 45%, #3d0000 100%);
  padding: 80px 0;
}
.abt-red-band .label { color: rgba(255,255,255,0.65); }
.abt-red-band h2 { color: white; margin-bottom: 16px; }
.abt-red-band > .container > p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.75;
  max-width: 640px;
}

/* Experience cards — on light bg */
.abt-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.abt-exp-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.abt-exp-icon {
  width: 44px; height: 44px;
  background: rgba(196,30,58,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.abt-exp-icon svg { width: 22px; height: 22px; color: var(--red); }
.abt-exp-card h4 { color: var(--dark); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.abt-exp-card p { color: var(--grey); font-size: 14px; line-height: 1.6; }

/* Stock box — white card */
.abt-stock-box {
  background: white;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}
.abt-stock-box h3 { color: var(--dark); font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.abt-list { display: flex; flex-direction: column; gap: 8px; }
.abt-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}
.abt-list-item::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.abt-list-light .abt-list-item {
  background: white;
  border-color: var(--border);
  color: var(--dark);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* Supply grid — on red bg */
.abt-supply-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.abt-supply-card {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 24px 20px;
}
.abt-supply-num { font-size: 26px; font-weight: 800; color: white; line-height: 1; margin-bottom: 8px; }
.abt-supply-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* Video + stats wrapper (allows mobile reorder) */
.abt-video-stats-wrap { display: flex; flex-direction: column; line-height: 0; font-size: 0; margin-top: -1px; }

/* Video section */
.abt-video-section { width: 100%; background: #000; line-height: 0; overflow: hidden; }
.abt-video-section video { width: 100%; display: block; max-height: 65vh; object-fit: cover; }

/* Stats bar */
.abt-statsbar { background: var(--dark); }
.abt-statsbar-inner { display: flex; align-items: stretch; }
.abt-statsbar-item {
  flex: 1;
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.abt-statsbar-item:last-child { border-right: none; }
.abt-statsbar-num { font-size: 42px; font-weight: 800; color: white; line-height: 1; margin-bottom: 10px; }
.abt-statsbar-label { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.03em; text-transform: uppercase; }

/* Stock image section */
.abt-stock-img { width: 100%; line-height: 0; overflow: hidden; }
.abt-stock-img img { width: 100%; display: block; max-height: 480px; object-fit: cover; object-position: center 55%; }

/* Company section */
.abt-company-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.abt-company-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.abt-company-name { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.abt-company-cui { font-size: 13px; color: var(--mid); margin-bottom: 28px; letter-spacing: 0.02em; }
.abt-company-address { font-size: 15px; color: var(--grey); white-space: normal; line-height: 1.6; }

/* CTA band */
.abt-cta-band {
  background: linear-gradient(135deg, #b30000 0%, var(--red) 55%, #e83030 100%);
  padding: 80px 0;
  text-align: center;
}
.abt-cta-band h2 { color: white; font-size: 36px; max-width: 680px; margin: 0 auto 16px; }
.abt-cta-band p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }

/* Closing */
.abt-closing { padding: 72px 0; background: var(--light); text-align: center; }
.abt-closing p { font-size: 18px; color: var(--grey); line-height: 1.75; max-width: 720px; margin: 0 auto; }

/* About responsive */
@media (max-width: 1024px) {
  .abt-exp-grid { grid-template-columns: 1fr 1fr; }
  .abt-supply-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .abt-two-col,
  .abt-company-wrap { grid-template-columns: 1fr; gap: 40px; }
  .abt-exp-grid { grid-template-columns: 1fr; gap: 16px; }
  .abt-statsbar-inner { flex-wrap: wrap; }
  .abt-statsbar-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .abt-statsbar-item:last-child { border-bottom: none; }
  .abt-stock-img img { max-height: 300px; }
  .abt-company-address { white-space: normal; }
  /* Mobile: video natural aspect ratio, full width */
  .abt-video-section { height: auto; position: static; }
  .abt-video-section video {
    position: static;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: unset;
  }
  /* Stats bar — smaller/lighter on mobile */
  .abt-statsbar-item { padding: 20px 12px; }
  .abt-statsbar-num { font-size: 26px; margin-bottom: 5px; }
  .abt-statsbar-label { font-size: 10px; letter-spacing: 0.04em; }
}
@media (max-width: 480px) {
  .abt-supply-grid { grid-template-columns: 1fr 1fr; }
  .abt-cta-band h2 { font-size: 26px; }
  .abt-statsbar-num { font-size: 32px; }
  .abt-video-section video { max-height: 50vw; }
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
/* Stagger delays applied to direct children */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.52s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =====================================================
   PORTFOLIO PAGE
   ===================================================== */
.pf-intro { padding: 56px 0 40px; background: white; }
.pf-intro p { font-size: 17px; color: var(--grey); line-height: 1.75; }

/* Filter bar */
.pf-filters { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 0 40px; }
.pf-filter {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.pf-filter:hover { border-color: var(--red); color: var(--red); }
.pf-filter.active { background: var(--red); border-color: var(--red); color: white; }

/* Grid */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 80px;
}
.pf-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  background: white;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pf-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.13); }
.pf-card.hidden { display: none; }

/* Card header */
.pf-card-head {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.pf-card-head img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.pf-card-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.pf-card-head-bg {
  position: absolute; inset: 0;
}
.pf-card-head-content { position: relative; z-index: 1; }
.pf-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.pf-power {
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 2px;
}
.pf-location {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Card body */
.pf-card-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.pf-card-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.35; }
.pf-highlights { list-style: none; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pf-highlights li {
  font-size: 13px;
  color: var(--grey);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.pf-highlights li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* Category header backgrounds */
.pf-bg-healthcare { background: linear-gradient(135deg, #7a0000 0%, #c41e3a 100%); }
.pf-bg-datacenter { background: linear-gradient(135deg, #0d2b4e 0%, #1a4a80 100%); }
.pf-bg-logistics  { background: linear-gradient(135deg, #1a3a2a 0%, #1e6b3c 100%); }
.pf-bg-airport    { background: linear-gradient(135deg, #1c2332 0%, #2d3f5e 100%); }
.pf-bg-industrial { background: linear-gradient(135deg, #5a2800 0%, #c05000 100%); }
.pf-bg-port       { background: linear-gradient(135deg, #0a1a2a 0%, #1a3a5c 100%); }
.pf-bg-mining     { background: linear-gradient(135deg, #2c1a06 0%, #6b3a10 100%); }
.pf-bg-construction { background: linear-gradient(135deg, #1a1000 0%, #5a3e00 100%); }
.pf-bg-events     { background: linear-gradient(135deg, #1a0a2e 0%, #4a1a7a 100%); }

/* CTA */
.pf-cta { background: var(--light); padding: 64px 0; text-align: center; }
.pf-cta h2 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.pf-cta p { color: var(--grey); font-size: 17px; max-width: 540px; margin: 0 auto 28px; line-height: 1.7; }

/* Responsive */
@media (max-width: 1024px) {
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pf-grid { grid-template-columns: 1fr; }
  .pf-card-head { height: 180px; }
}

/* Portfolio card description */
.pf-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

/* PDF download button on portfolio cards */
.pf-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 8px 14px;
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 4px;
  transition: background .18s, color .18s;
}
.pf-pdf-btn:hover {
  background: var(--red);
  color: #fff;
}
