* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --blue-dark: #0a2540;
  --blue-mid: #14395f;
  --blue-soft: #2f5f82;
  --orange: #f28c28;
  --orange-2: #ff9f3f;
  --text: #0f172a;
  --text-soft: #64748b;
  --bg: #f4f7fb;
  --white: #ffffff;
  --border: rgba(15, 23, 42, 0.06);
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 24px 48px rgba(15, 23, 42, 0.12);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 16px;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  padding-top: 92px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(90deg, rgba(10,37,64,0.98), rgba(18,52,86,0.96));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: 0.25s ease;
  flex-shrink: 0;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  height: 92px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18));
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.6px;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-text span {
  margin-top: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: white;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.main-nav a:not(.nav-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  color: white !important;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(242, 140, 40, 0.22);
  transition: 0.25s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* =========================
   HERO
========================= */
.hero,
.subhero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--blue-dark) 0%, #234e78 55%, #466d84 100%);
  color: white;
}

.hero {
  padding: 110px 0 100px;
}

.subhero {
  padding: 100px 0 80px;
}

.hero::before,
.hero::after,
.subhero::before,
.subhero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  z-index: 0;
}

.hero::before,
.subhero::before {
  width: 280px;
  height: 280px;
  left: -80px;
  top: -70px;
  background: rgba(242, 140, 40, 0.18);
}

.hero::after,
.subhero::after {
  width: 380px;
  height: 380px;
  right: -100px;
  bottom: -140px;
  background: rgba(255,255,255,0.08);
}

.hero-content,
.subhero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
}

.hero-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  font-weight: 500;
  color: #e5edf6;
  margin-bottom: 24px;
}

.hero h1,
.subhero h1 {
  margin: 0 auto 20px;
  max-width: 980px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero h1 {
  font-size: 58px;
}

.subhero h1 {
  font-size: 54px;
}

.hero p,
.subhero p {
  margin: 0 auto 34px;
  max-width: 780px;
  line-height: 1.8;
  color: #e2ebf5;
}

.hero p {
  font-size: 19px;
}

.subhero p {
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  color: white;
  box-shadow: 0 14px 28px rgba(242, 140, 40, 0.24);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
}

.btn-dark {
  background: var(--blue-dark);
  color: white;
}

/* =========================
   HERO CARDS
========================= */
.hero-cards {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-card {
  min-width: 230px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 18px 20px;
  text-align: left;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.hero-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
  color: white;
}

.hero-card span {
  font-size: 14px;
  color: #d9e6f2;
}

/* =========================
   SECTION HEADINGS
========================= */
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: 44px;
  color: var(--blue-dark);
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.8;
}

/* =========================
   PRODUCTS
========================= */
.products-section {
  padding: 90px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border-radius: 26px 26px 0 0;
  transition: 0.3s ease;
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-card:hover::before {
  height: 8px;
}

.product-image-wrap {
  padding: 26px 26px 12px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-wrap img {
  width: 100%;
  max-width: 260px;
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.product-content {
  padding: 10px 28px 30px;
}

.product-content h3 {
  margin: 0 0 12px;
  font-size: 28px;
  color: var(--blue-dark);
  transition: color 0.3s ease;
}

.product-card:hover .product-content h3 {
  color: var(--orange);
}

.product-content p {
  margin: 0 0 18px;
  color: #475569;
  line-height: 1.8;
  font-size: 15px;
}

.product-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-content li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #334155;
  line-height: 1.7;
  font-size: 15px;
}

.product-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

/* =========================
   WHY
========================= */
.why-section {
  padding: 0 0 90px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.why-card {
  background: white;
  border-radius: 24px;
  padding: 32px 26px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0;
  background: linear-gradient(90deg, #f28c28, #ff9f3f);
  border-radius: 24px 24px 0 0;
  transition: 0.3s ease;
}

.why-card:hover::before {
  height: 6px;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.1);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 140, 40, 0.12);
  color: #f28c28;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}

.why-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #0a2540;
}

.why-card p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
  font-size: 15px;
}

/* =========================
   USE CASES / KATEGORIEN
========================= */
.use-cases,
.usecases-section {
  padding: 90px 0;
}

.use-cases-grid,
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.use-case-card,
.usecase-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: 0.3s ease;
  display: block;
  color: inherit;
}

.use-case-card:hover,
.usecase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.use-case-image,
.usecase-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.use-case-image img,
.usecase-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.use-case-content,
.usecase-content {
  padding: 26px;
}

.use-case-content h3,
.usecase-content h3 {
  margin: 0 0 12px;
  font-size: 26px;
  color: #0a2540;
}

.use-case-content p,
.usecase-content p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
  font-size: 16px;
}

/* =========================
   HERSTELLER LOGOS
========================= */
.manufacturers-section {
  padding: 0 0 90px;
}

.manufacturers-grid,
.manufacturers-grid-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 20px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.manufacturer-card,
.logo-card {
  background: #ffffff;
  border-radius: 26px;
  min-height: 140px;
  height: 140px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.manufacturer-card::before,
.logo-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0;
  background: linear-gradient(90deg, #f28c28, #ff9f3f);
  border-radius: 26px 26px 0 0;
  transition: 0.3s ease;
}

.manufacturer-card:hover::before,
.logo-card:hover::before {
  height: 6px;
}

.manufacturer-card:hover,
.logo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.manufacturer-card img,
.logo-card img,
.manufacturer-logo {
  max-width: 170px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.manufacturer-card:hover img,
.logo-card:hover img,
.manufacturer-card:hover .manufacturer-logo {
  transform: scale(1.05);
}

.manufacturer-card span,
.manufacturer-card p {
  display: none !important;
}

/* =========================
   CTA
========================= */
.cta-section {
  padding: 0 0 90px;
}

.cta-box {
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  color: white;
  border-radius: 30px;
  padding: 70px 30px;
  text-align: center;
  box-shadow: 0 24px 40px rgba(242, 140, 40, 0.18);
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: 44px;
}

.cta-box p {
  margin: 0 0 26px;
  font-size: 18px;
  opacity: 0.96;
}

/* =========================
   KONTAKT
========================= */
.contact-section {
  padding: 90px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.contact-card {
  background: white;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.contact-form-card {
  padding: 38px 34px;
}

.contact-form-card h2 {
  margin: 0 0 10px;
  font-size: 34px;
  color: var(--blue-dark);
}

.contact-intro {
  margin: 0 0 28px;
  color: var(--text-soft);
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 16px;
  padding: 15px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #f8fbff;
  outline: none;
  transition: 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.10);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-side {
  display: grid;
  gap: 22px;
}

.info-card {
  padding: 28px 26px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border-radius: 28px 28px 0 0;
  transition: 0.3s ease;
}

.info-card:hover::before {
  height: 6px;
}

.info-card:hover {
  transform: translateY(-6px);
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 140, 40, 0.12);
  color: var(--orange);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--blue-dark);
}

.info-card p {
  margin: 0 0 10px;
  color: var(--text-soft);
  line-height: 1.7;
}

.info-card a,
.info-text {
  color: var(--blue-dark);
  font-weight: 600;
  word-break: break-word;
}

/* =========================
   LEGAL
========================= */
.legal-section {
  padding: 90px 0;
}

.legal-card {
  background: white;
  border-radius: 30px;
  padding: 42px 36px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.legal-card h2 {
  margin: 0 0 28px;
  font-size: 38px;
  color: var(--blue-dark);
}

.legal-block {
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-block:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.legal-block h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--blue-dark);
}

.legal-block p {
  margin: 0;
  color: #475569;
  line-height: 1.9;
  font-size: 15px;
}

.legal-block a {
  color: var(--orange);
  font-weight: 600;
}

.legal-download {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  color: white !important;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(242, 140, 40, 0.20);
}

/* =========================
   PLACEHOLDER
========================= */
.placeholder {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e8edf5, #d9e2ee);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* =========================
   HERSTELLER DETAILSEITEN
========================= */
.manufacturer-hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 26px;
}

.manufacturer-hero-logo img {
  max-width: 240px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.12));
}

.manufacturer-intro-section {
  padding: 90px 0 30px;
}

.manufacturer-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.manufacturer-intro-card {
  background: white;
  border-radius: 26px;
  padding: 34px 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: 0.3s ease;
}

.manufacturer-intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.11);
}

.manufacturer-intro-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #0a2540;
}

.manufacturer-intro-card p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
  font-size: 15px;
}

.manufacturer-products-section {
  padding: 60px 0 90px;
}

.manufacturer-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.manufacturer-product-card {
  background: white;
  border-radius: 28px;
  padding: 34px 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.manufacturer-product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0;
  background: linear-gradient(90deg, #f28c28, #ff9f3f);
  border-radius: 28px 28px 0 0;
  transition: 0.3s ease;
}

.manufacturer-product-card:hover::before {
  height: 6px;
}

.manufacturer-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.manufacturer-product-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 140, 40, 0.12);
  font-size: 28px;
  margin-bottom: 18px;
}

.manufacturer-product-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  color: #0a2540;
}

.manufacturer-product-card p {
  margin: 0 0 18px;
  color: #475569;
  line-height: 1.8;
  font-size: 15px;
}

.manufacturer-product-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.manufacturer-product-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #334155;
  line-height: 1.7;
  font-size: 15px;
}

.manufacturer-product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f28c28;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  width: 100%;
  background: #0b2d57;
  margin-top: 0;
  padding: 0;
}

.footer-inner {
  width: 100%;
  margin: 0;
  padding: 26px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #ffffff;
  box-sizing: border-box;
}

.footer-inner p {
  margin: 0;
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #f7942f;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .brand-logo {
    height: 82px;
  }

  .brand-text strong {
    font-size: 26px;
  }

  .brand-text span {
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  .main-nav {
    gap: 22px;
  }
}

@media (max-width: 1100px) {
  .hero h1,
  .subhero h1 {
    font-size: 48px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-content h3 {
    font-size: 26px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .manufacturers-grid,
  .manufacturers-grid-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .manufacturer-intro-grid {
    grid-template-columns: 1fr;
  }

  .manufacturer-products-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    height: 74px;
  }

  .brand-text strong {
    font-size: 23px;
  }

  .brand-text span {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 88px;
  }

  body {
    padding-top: 78px;
  }

  .menu-toggle {
    display: block;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 24px;
    width: 240px;
    background: rgba(10, 37, 64, 0.98);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    margin: 0;
    width: 100%;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }

  .brand {
    gap: 12px;
    padding: 4px 0;
    max-width: calc(100% - 60px);
  }

  .brand-logo {
    height: 58px;
  }

  .brand-text strong {
    font-size: 20px;
    white-space: normal;
  }

  .brand-text span {
    font-size: 8px;
    letter-spacing: 1.2px;
    white-space: normal;
  }

  .hero {
    padding: 90px 0 80px;
  }

  .subhero {
    padding: 85px 0 70px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .subhero h1 {
    font-size: 38px;
  }

  .hero p,
  .subhero p {
    font-size: 16px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 8px 14px;
  }

  .hero-card {
    min-width: 100%;
    text-align: center;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .cta-box h2 {
    font-size: 34px;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .contact-form-card h2 {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .footer-links {
    justify-content: center;
    gap: 18px;
  }

  .manufacturer-hero-logo img {
    max-width: 200px;
    max-height: 74px;
  }

  .manufacturer-intro-section {
    padding: 70px 0 20px;
  }

  .manufacturer-intro-card,
  .manufacturer-product-card {
    border-radius: 22px;
    padding: 28px 22px;
  }

  .manufacturer-product-card h3,
  .manufacturer-intro-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 700px) {
  .manufacturers-grid,
  .manufacturers-grid-logos {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    height: 52px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text span {
    font-size: 7px;
    letter-spacing: 1px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .subhero h1 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1200px, calc(100% - 32px));
  }

  .header-inner {
    min-height: 84px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    height: 48px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text span {
    font-size: 6.8px;
    letter-spacing: 0.8px;
  }

  .main-nav {
    top: 84px;
    right: 12px;
    width: calc(100% - 24px);
  }

  .legal-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .legal-card h2 {
    font-size: 30px;
  }

  .legal-block h3 {
    font-size: 21px;
  }

  .manufacturer-hero-logo img {
    max-width: 180px;
    max-height: 64px;
  }

  .manufacturer-product-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
    border-radius: 16px;
  }
}