/* =========================================
   FLINGK.DK – KS Maskiner
   Farver: Sort #111111, Mørkegrøn #1E3A2F,
           Orange #EC6B34, Hvid #FFFFFF
   Font: Montserrat (overskrifter), Inter (brødtekst)
   ========================================= */

/* Google Fonts moved to HTML <link> for better LCP performance */

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #111111;
  --dark:    #1a1a1a;
  --green:   #1E3A2F;
  --orange:  #EC6B34;
  --white:   #FFFFFF;
  --gray-light: #F4F4F2;
  --gray-mid:   #D1D1C7;
  --text-muted: #AAAAAA;
  --radius:  4px;
  --transition: 0.25s ease;
  --max-w: 1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.btn-primary:hover { background: #e0b215; border-color: #e0b215; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: #333; border-color: #333; }

/* =========================================
   NAVIGATION
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid #222;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--orange);
  letter-spacing: 1px;
  line-height: 1;
}
.logo-sub {
  font-size: 9px;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }

.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}

.dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  z-index: 200;
  min-width: 220px;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: 8px; left: 0; right: 0; bottom: 0;
  background: var(--black);
  border: 1px solid #333;
  border-radius: var(--radius);
  z-index: -1;
}
.has-dropdown:hover .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--white);
  white-space: nowrap;
}
.dropdown a:hover { background: #222; color: var(--orange); }

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--black);
  border-top: 1px solid #222;
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #222;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.45);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 45%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 8px;
}
.hero h1 span { color: var(--orange); }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  margin: 0 auto 8px;
}

/* =========================================
   USP BAR
   ========================================= */
.usp-bar {
  background: var(--dark);
  padding: 28px 0;
  border-bottom: 3px solid var(--orange);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.usp-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(236,107,52,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 2; }

.usp-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.usp-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header {
  margin-bottom: 48px;
}
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.section-header h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 14px;
}
.section-header p {
  color: #555;
  max-width: 560px;
  font-size: 17px;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.65); }
.section-header.light .section-eyebrow { color: var(--orange); }

/* =========================================
   MACHINES SECTION
   ========================================= */
.machines-section {
  padding: 88px 0;
  background: var(--gray-light);
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.machine-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.machine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.machine-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e0e0d8;
}
.machine-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.machine-card:hover .machine-card-img img { transform: scale(1.04); }

.machine-card-body {
  padding: 18px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.machine-card-body h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}
.machine-card-body span {
  font-size: 13px;
  color: #777;
}

.card-arrow {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.machine-card:hover .card-arrow { background: var(--black); }
.card-arrow svg { width: 14px; height: 14px; stroke: var(--black); fill: none; stroke-width: 2.5; }
.machine-card:hover .card-arrow svg { stroke: var(--white); }

.machines-cta { text-align: center; }

/* =========================================
   ABOUT / BRAND SECTION
   ========================================= */
.brand-section {
  background: var(--black);
  padding: 88px 0;
}

.brand-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.brand-content .section-header { margin-bottom: 28px; }

.brand-content p {
  color: #444;
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.brand-section .brand-content p {
  color: rgba(255,255,255,0.7);
}

.brand-img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.brand-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.brand-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--orange);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: var(--radius);
}

/* =========================================
   FEATURES ICONS
   ========================================= */
.features-section {
  background: var(--green);
  padding: 56px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.feature-item {
  text-align: center;
  padding: 24px 16px;
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(30,58,47,0.08);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.feature-item:hover .feature-icon-wrap { background: rgba(236,107,52,0.2); }
.feature-icon-wrap svg {
  width: 30px;
  height: 30px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
}

.feature-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

/* Feature items on dark green background (features-section on index/homepage) */
.features-section .feature-icon-wrap {
  background: rgba(255,255,255,0.08);
}
.features-section .feature-item:hover .feature-icon-wrap {
  background: rgba(236,107,52,0.15);
}
.features-section .feature-icon-wrap svg {
  stroke: var(--white);
}
.features-section .feature-item h4 {
  color: var(--white);
}
.features-section .feature-item p {
  color: rgba(255,255,255,0.6);
}

/* =========================================
   SPARE PARTS PREVIEW
   ========================================= */
.parts-section {
  padding: 88px 0;
  background: var(--white);
}

.parts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.parts-img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.parts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.parts-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid var(--gray-mid);
  transition: border-color var(--transition), background var(--transition);
}
.parts-list-item:hover { border-color: var(--orange); background: #fdf0e9; }

.parts-list-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.parts-list-icon svg { width: 20px; height: 20px; stroke: var(--black); fill: none; stroke-width: 2; }

.parts-list-item h4 { font-size: 15px; margin-bottom: 2px; }
.parts-list-item p { font-size: 13px; color: #666; line-height: 1.5; }

/* =========================================
   MANUALS SECTION
   ========================================= */
.manuals-section {
  padding: 88px 0;
  background: var(--gray-light);
}

.manuals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.manual-card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--gray-mid);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.manual-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: var(--orange); }

.manual-icon {
  width: 52px;
  height: 52px;
  background: var(--black);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.manual-icon svg { width: 26px; height: 26px; stroke: var(--orange); fill: none; stroke-width: 1.5; }

.manual-info h3 { font-size: 16px; margin-bottom: 6px; }
.manual-info p { font-size: 13px; color: #777; margin-bottom: 12px; line-height: 1.5; }
.manual-download {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.manual-download:hover { color: var(--orange); }
.manual-download svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* =========================================
   B2B SECTION
   ========================================= */
.b2b-section {
  padding: 88px 0;
  background: var(--dark);
}

.b2b-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.b2b-content .section-header { margin-bottom: 24px; }
.b2b-content p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 16px; line-height: 1.8; }

.b2b-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.b2b-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-size: 15px;
}
.b2b-section .b2b-benefit {
  color: rgba(255,255,255,0.85);
}
.b2b-benefit::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5C518' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

.b2b-form {
  background: #222;
  border-radius: 8px;
  padding: 32px;
}
.b2b-form h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #333;
  border: 1px solid #444;
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #666; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group select option { background: #333; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* =========================================
   NEWS SECTION
   ========================================= */
.news-section {
  padding: 88px 0;
  background: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }

.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-mid);
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }

.news-card-body { padding: 24px; }
.news-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.news-card-body h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.news-card-body p { font-size: 14px; color: #666; line-height: 1.65; margin-bottom: 16px; }
.news-date { font-size: 12px; color: #999; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--orange);
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-inner h2 { font-size: clamp(24px, 2.5vw, 36px); color: var(--black); }
.cta-inner p { color: rgba(0,0,0,0.65); margin-top: 6px; font-size: 16px; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--black);
  padding: 64px 0 0;
  border-top: 3px solid var(--green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #222;
}

.footer-brand .logo-name { font-size: 24px; }
.footer-brand .logo-sub { margin-bottom: 20px; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--orange); }

.footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact svg { width: 15px; height: 15px; stroke: var(--orange); fill: none; stroke-width: 2; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 13px; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: var(--black);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green) 0%, transparent 60%);
  opacity: 0.3;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-eyebrow { margin-bottom: 12px; }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 560px; }

/* =========================================
   MODEL PAGES
   ========================================= */
.breadcrumbs {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.breadcrumbs a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span { margin: 0 6px; }

.model-overview { padding: 72px 0; background: var(--white); }
.model-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.model-overview-img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.model-overview-text p { color: #555; line-height: 1.75; margin-bottom: 16px; }
.model-overview-text .b2b-benefits { margin-top: 24px; display: grid; gap: 10px; }

.model-specs { padding: 72px 0; background: var(--gray-light); }
.spec-table-wrap { overflow-x: auto; margin-top: 32px; }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
}
.spec-table th, .spec-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--gray-mid);
  white-space: nowrap;
}
.spec-table thead th {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.spec-table tbody tr:nth-child(even) { background: var(--gray-light); }
.spec-table tbody td:first-child { font-weight: 600; }

@media (max-width: 900px) {
  .model-overview-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================
   FILTER BAR (machines page)
   ========================================= */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 20px 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}
.filter-inner { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 24px;
  border: 2px solid var(--gray-mid);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

/* =========================================
   PRODUCT GRID (machines page)
   ========================================= */
.products-section { padding: 64px 0 88px; background: var(--gray-light); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }

.product-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--gray-light);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }

.product-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-series {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  display: block;
}
.product-card-body h3 { font-size: 20px; margin-bottom: 10px; }
.product-card-body p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 20px; }

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
  padding: 14px;
  background: var(--gray-light);
  border-radius: var(--radius);
}
.spec-item { font-size: 12px; }
.spec-item strong { display: block; color: #333; font-weight: 600; }
.spec-item span { color: #888; }

.product-card-footer {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--black);
  color: rgba(255,255,255,0.9);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 14px; line-height: 1.6; margin: 0; flex: 1; min-width: 260px; }
.cookie-banner a { color: var(--orange); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner-actions .btn { font-size: 13px; padding: 10px 18px; }
.product-card-footer .btn { flex: 1; justify-content: center; font-size: 13px; padding: 10px 16px; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-section { padding: 88px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }

.contact-info h3 { font-size: 22px; margin-bottom: 24px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--black); fill: none; stroke-width: 2; }
.contact-detail h4 { font-size: 14px; margin-bottom: 2px; }
.contact-detail p { font-size: 14px; color: #666; }

.map-placeholder {
  background: var(--gray-light);
  border-radius: 6px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-mid);
  color: #999;
  font-size: 14px;
}

.contact-form-wrap { background: var(--gray-light); border-radius: 8px; padding: 36px; }
.contact-form-wrap h3 { font-size: 22px; margin-bottom: 24px; }
.contact-form-wrap .form-group input,
.contact-form-wrap .form-group select,
.contact-form-wrap .form-group textarea {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  color: var(--dark);
}
.contact-form-wrap .form-group label { color: var(--dark); }
.contact-form-wrap .form-group input::placeholder,
.contact-form-wrap .form-group textarea::placeholder { color: #aaa; }
.contact-form-wrap .form-group input:focus,
.contact-form-wrap .form-group select:focus,
.contact-form-wrap .form-group textarea:focus { border-color: var(--orange); }
.contact-form-wrap .form-group select { color: var(--dark); background: var(--white); }

/* =========================================
   UTILITIES
   ========================================= */
.text-yellow { color: var(--orange); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .machine-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-inner,
  .parts-inner,
  .b2b-inner,
  .contact-inner { grid-template-columns: 1fr; }
  .brand-img img { height: 300px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .manuals-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .machine-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .manuals-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
