:root {
  /* Gledring brand palette */
  --dark: #111217;
  --dark-section: #16171d;
  --dark-card: #1c1d24;
  --dark-border: #2a2b34;
  --white: #ffffff;
  --off-white: #f4f4f6;
  --light-gray: #dddde2;
  --mid-gray: #72737e;
  --text-muted: #8e8f9a;
  /* Gledring red from their logo/site */
  --red: #c8102e;
  --red-light: #e0243f;
  --red-dark: #a00d24;
  --red-glow: rgba(200,16,46,0.15);
  --red-subtle: rgba(200,16,46,0.08);
  /* Utility */
  --green: #22c55e;
  --green-subtle: rgba(34,197,94,0.1);
  --amber: #f59e0b;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.animate-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ========== SITE HEADER ========== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 24px 0;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-logo {
  display: inline-block;
  transition: opacity 0.2s ease;
  text-decoration: none;
}
.site-logo:hover { opacity: 0.85; }
.logo-text {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--white);
  display: inline-block;
}
.site-logo img {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .site-header { padding: 18px 0; }
  .site-logo img { height: 38px; }
  .logo-text { font-size: 22px; letter-spacing: 3px; }
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(160deg, #111217 0%, #1a1b24 40%, #131419 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-background.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 110% auto;
  opacity: 0.09;
  filter: invert(1) brightness(1.4);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero > .site-header { z-index: 11; }
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.2), transparent);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: #f5c542;
  margin-bottom: 24px;
  animation: fadeIn 0.8s ease;
  letter-spacing: 0.3px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #f5c542;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 span { color: var(--red-light); }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 530px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.2px;
}
.cta-btn:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,16,46,0.25);
}
.hero-cta { animation: fadeInUp 0.8s ease 0.3s both; }
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-social-proof .rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.hero-social-proof .stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; }
.hero-social-proof .divider { width: 1px; height: 20px; background: rgba(255,255,255,0.1); }

/* Hero Card */
.hero-right { animation: fadeIn 1s ease 0.5s both; }
.hero-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 32px;
}
.hero-card h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 4px; color: var(--white); }
.hero-card .card-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.urgency-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.06);
  border: 1px solid rgba(200,16,46,0.12);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
}
.urgency-bar .dot-red {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
.hero-card .form-group { margin-bottom: 12px; }
.form-input {
  width: 100%;
  padding: 13px 15px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  color: var(--white);
  font-size: 13.5px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s;
}
.form-input::placeholder { color: rgba(255,255,255,0.28); }
.form-input:focus { border-color: var(--red); }
select.form-input option { background: var(--dark); color: var(--white); }
.form-btn {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  margin-top: 4px;
  transition: all 0.3s;
  letter-spacing: 0.2px;
}
.form-btn:hover { background: var(--red-light); box-shadow: 0 6px 24px rgba(200,16,46,0.25); }
.form-note { text-align: center; font-size: 11.5px; color: rgba(255,255,255,0.28); margin-top: 12px; }

/* ========== CREDIBILITY BAR ========== */
.cred-bar {
  background: var(--dark);
  border-top: 1px solid rgba(200,16,46,0.25);
  border-bottom: 1px solid rgba(200,16,46,0.25);
  padding: 32px 0;
  box-shadow: inset 0 0 60px rgba(200,16,46,0.04);
}
.cred-bar-inner { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.cred-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.85); white-space: nowrap; font-weight: 500; }
.cred-item strong { color: var(--red-light); font-weight: 700; font-size: 18px; }
.cred-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.15); }

/* ========== MILESTONES / HERITAGE ========== */
.heritage-section {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.heritage-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.06) 0%, transparent 65%);
  border-radius: 50%;
}
.heritage-header { text-align: center; max-width: 780px; margin: 0 auto 64px; position: relative; }
.heritage-header .section-tag { color: var(--red-light); }
.heritage-header h2.section-h2 { color: var(--white); }
.heritage-header .section-sub { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.7; margin-top: 14px; }

.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(200,16,46,0.5) 0%, rgba(200,16,46,0.15) 100%);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 80px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 20px;
  top: 4px;
  width: 22px;
  height: 22px;
  background: var(--dark);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.timeline-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.timeline-item.featured .timeline-dot {
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(200,16,46,0.2);
}
.timeline-item.featured .timeline-dot::after {
  background: var(--white);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 8px;
}
.timeline-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}
.timeline-text {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.timeline-item.featured .timeline-title { color: var(--red-light); }

.heritage-footer {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.heritage-footer p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--white);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}
.heritage-footer p span { color: var(--red-light); }

@media (max-width: 700px) {
  .timeline::before { left: 18px; }
  .timeline-item { padding-left: 56px; }
  .timeline-dot { left: 8px; width: 20px; height: 20px; }
  .timeline-year { font-size: 24px; }
}

/* ========== BENEFITS BAR ========== */
.benefits-bar { padding: 64px 0; background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.benefit-card:hover { background: var(--off-white); border-color: var(--light-gray); }
.benefit-icon { width: 52px; height: 52px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; }
.benefit-icon svg { width: 40px; height: 40px; stroke: var(--red); stroke-width: 1.5; fill: none; }
.benefit-card h4 { font-family: var(--font-display); font-size: 15.5px; font-weight: 600; margin-bottom: 8px; color: var(--dark); }
.benefit-card p { font-size: 13px; color: var(--mid-gray); line-height: 1.55; }

/* ========== PROBLEM SECTION ========== */
.problem-section { padding: 80px 0; background: var(--off-white); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }
.tag-red { color: var(--red); }
.tag-green { color: var(--green); }
.tag-dark { color: var(--mid-gray); }
h2.section-h2 { font-family: var(--font-display); font-size: clamp(26px, 2.8vw, 36px); font-weight: 600; line-height: 1.25; margin-bottom: 18px; }
.problem-text { font-size: 15.5px; color: #4b5563; line-height: 1.75; margin-bottom: 14px; }
.problem-text strong { color: var(--dark); }
.problem-visual {
  background: var(--dark-section);
  border-radius: 14px;
  padding: 36px;
  border: 1px solid var(--dark-border);
}
.pain-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pain-item:last-child { border-bottom: none; }
.pain-x {
  width: 26px; height: 26px;
  background: rgba(200,16,46,0.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.pain-x svg { width: 14px; height: 14px; stroke: var(--red); stroke-width: 2.5; }
.pain-item p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.55; }
.pain-item p strong { color: var(--white); }

/* ========== SOLUTION SECTION ========== */
.solution-section { padding: 80px 0; background: var(--white); }
.solution-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-sub { font-size: 15.5px; color: var(--mid-gray); line-height: 1.7; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.solution-card {
  background: var(--off-white);
  border-radius: 14px;
  padding: 30px 26px;
  border: 1px solid var(--light-gray);
  transition: all 0.35s;
}
.solution-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.sol-icon {
  width: 44px; height: 44px;
  background: var(--dark-section);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.sol-icon svg { width: 22px; height: 22px; stroke: var(--red-light); stroke-width: 1.8; fill: none; }
.solution-card h4 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.solution-card p { font-size: 13.5px; color: var(--mid-gray); line-height: 1.6; }

/* ========== BAIT / FREE VALUE ========== */
.bait-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #111217 0%, #1a1b24 40%, #131419 100%);
  position: relative;
  overflow: hidden;
}
.bait-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,0.03) 0%, transparent 65%);
}
.bait-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.bait-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-subtle);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.bait-section h2.section-h2 { color: var(--white); }
.bait-section h2 span { color: var(--red-light); }
.bait-sub { font-size: 15.5px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 26px; }
.bait-list { list-style: none; margin-bottom: 30px; }
.bait-list li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; color: rgba(255,255,255,0.7); font-size: 14.5px; line-height: 1.5; }
.bait-list li strong { color: var(--white); }
.check-icon {
  width: 20px; height: 20px;
  background: rgba(34,197,94,0.12);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 3px;
}
.check-icon svg { width: 12px; height: 12px; stroke: var(--green); stroke-width: 2.5; }
.bait-card-visual {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 32px;
}
.bait-card-visual h3 { font-family: var(--font-display); font-size: 19px; color: var(--white); margin-bottom: 20px; }
.kit-item { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.kit-item:last-child { border-bottom: none; }
.kit-num {
  width: 30px; height: 30px;
  background: var(--red);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700; font-size: 12.5px;
  flex-shrink: 0;
}
.kit-item p { color: rgba(255,255,255,0.6); font-size: 13.5px; }
.kit-item p strong { color: var(--white); }
.bait-price-tag {
  text-align: center;
  margin-top: 22px;
  padding: 16px;
  background: var(--red-subtle);
  border: 1px solid rgba(200,16,46,0.12);
  border-radius: 10px;
}
.bait-price-tag .old-price { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: line-through; }
.bait-price-tag .new-price { font-size: 26px; font-weight: 700; color: var(--red-light); font-family: var(--font-display); }
.bait-price-tag .price-note { font-size: 11.5px; color: rgba(255,255,255,0.3); margin-top: 2px; }

/* ========== WHO IS THIS FOR ========== */
.who-section { padding: 80px 0; background: var(--off-white); }
.who-section h2 { text-align: center; margin-bottom: 44px; }
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 780px; margin: 0 auto; }
.who-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 20px 22px;
  transition: all 0.3s;
}
.who-item:hover { border-color: var(--red); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.who-check {
  width: 22px; height: 22px;
  background: var(--red-subtle);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.who-check svg { width: 12px; height: 12px; stroke: var(--red); stroke-width: 2.5; }
.who-item p { font-size: 14px; color: #374151; line-height: 1.5; }

/* ========== INNOVATION ========== */
.innovation-section { padding: 80px 0; background: var(--white); }
.innovation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.innovation-text { font-size: 15.5px; color: #4b5563; line-height: 1.7; margin-bottom: 22px; }
.cert-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 7px;
  padding: 7px 12px;
  font-size: 11.5px; font-weight: 500; color: var(--mid-gray);
}
.cert-badge .badge-dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
.innovation-visual {
  background: var(--dark-section);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.innovation-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(200,16,46,0.05), transparent 70%);
}
.innovation-visual h3 { font-family: var(--font-display); font-size: 30px; color: var(--red-light); margin-bottom: 6px; position: relative; z-index: 1; }
.innovation-visual > p { color: rgba(255,255,255,0.45); font-size: 13px; position: relative; z-index: 1; }
.innovation-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 26px; position: relative; z-index: 1; }
.inno-stat { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 16px; }
.inno-stat .num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--red-light); }
.inno-stat .label { font-size: 11.5px; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* ========== BOOTH BAND (Automechanika visual) ========== */
.booth-section {
  background: var(--dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.booth-section::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(200,16,46,0.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.booth-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.booth-grid h2.section-h2 { color: var(--white); }
.booth-grid .section-tag { color: var(--red-light); }
.booth-grid p.section-sub { color: rgba(255,255,255,0.6); font-size: 15.5px; line-height: 1.75; margin-bottom: 26px; }
.booth-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,16,46,0.10);
  position: relative;
}
.booth-img-wrap img { display: block; width: 100%; height: auto; }
.booth-img-wrap::after {
  content: 'AUTOMECHANIKA 2026 · HALL PREVIEW';
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 10.5px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.booth-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.booth-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.booth-pill .dot { width: 6px; height: 6px; background: var(--red-light); border-radius: 50%; }

/* ========== HQ / HERITAGE SPLIT (building image) ========== */
.hq-section {
  background: var(--white);
  padding: 56px 0 64px;
  border-top: 1px solid #eef0f3;
  border-bottom: 1px solid #eef0f3;
}
.hq-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}
.hq-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(17,18,23,0.16);
  position: relative;
}
.hq-img-wrap img { display: block; width: 100%; height: auto; }
.hq-img-wrap::after {
  content: 'GLEDRING HQ · SLOVENIA';
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(17,18,23,0.85);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 10.5px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.hq-section h2.section-h2 { font-size: clamp(24px, 2.5vw, 30px); margin-bottom: 14px; }
.hq-section .section-sub { font-size: 15px; line-height: 1.65; margin-bottom: 22px; }
.hq-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 22px; }
.hq-stat { padding: 14px 10px; border: 1px solid #e8ebef; border-radius: 10px; background: var(--off-white); text-align: center; }
.hq-stat .num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--red); line-height: 1; }
.hq-stat .label { font-size: 10px; color: var(--mid-gray); margin-top: 6px; letter-spacing: 0.5px; font-weight: 600; }
@media (max-width: 860px) {
  .hq-grid { grid-template-columns: 1fr; gap: 28px; }
  .hq-section { padding: 44px 0 48px; }
  .hq-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ========== AWARD / PROOF SPLIT (AutoBild product shot) ========== */
.award-img-wrap {
  background: linear-gradient(160deg, #f7f7f9 0%, #ecedf1 100%);
  border-radius: 16px;
  overflow: hidden;
  padding: 32px;
  position: relative;
  border: 1px solid #e6e8ec;
  box-shadow: 0 20px 50px rgba(17,18,23,0.10);
}
.award-img-wrap img { display: block; width: 100%; height: auto; }
.award-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,16,46,0.08);
  border: 1px solid rgba(200,16,46,0.20);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* ========== RUBBER MAT COMPARISON ========== */
.compare-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  padding: 80px 0 100px;
  border-top: 1px solid #eef0f3;
}
.compare-header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.compare-intro { font-size: 15.5px; color: var(--mid-gray); line-height: 1.7; max-width: 720px; margin: 0 auto 40px; text-align: center; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto 48px;
}
.compare-col {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(17,18,23,0.05);
  position: relative;
  overflow: hidden;
}
.compare-col.ordinary {
  background: #f5f5f7;
  border: 1px solid #e5e7eb;
}
.compare-col.gledring {
  background: linear-gradient(160deg, #16171d 0%, #1c1d24 100%);
  color: var(--white);
  border: 1px solid var(--red);
  box-shadow: 0 12px 40px rgba(200,16,46,0.18);
}
.compare-col-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.compare-col.ordinary .compare-col-tag {
  background: rgba(114,115,126,0.12);
  color: var(--mid-gray);
}
.compare-col.gledring .compare-col-tag {
  background: rgba(200,16,46,0.18);
  color: #ff6b7e;
  border: 1px solid rgba(200,16,46,0.3);
}
.compare-col h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.3;
}
.compare-col.ordinary h3 { color: #4b5563; }
.compare-col.gledring h3 { color: var(--white); }
.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.compare-col.gledring .compare-list li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
}
.compare-col.ordinary .compare-list li { color: #6b7280; }
.compare-list li:last-child { border-bottom: none; }
.compare-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
}
.compare-icon.no { background: rgba(156,163,175,0.18); color: #9ca3af; }
.compare-icon.yes { background: rgba(200,16,46,0.22); color: var(--red-light); }
.compare-footer {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 14.5px;
  color: var(--mid-gray);
  line-height: 1.7;
  font-style: italic;
}
.compare-footer strong { color: var(--dark); font-style: normal; }
.compare-cta { text-align: center; margin-top: 40px; }
.compare-cta .cta-btn { background: var(--red); padding: 18px 38px; font-size: 15px; }
.compare-cta-note { font-size: 12.5px; color: var(--mid-gray); margin-top: 14px; letter-spacing: 0.3px; }


.testimonials-section { padding: 80px 0; background: var(--dark-section); }
.testimonials-section h2 { color: var(--white); text-align: center; margin-bottom: 44px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.test-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 26px;
  transition: all 0.3s;
}
.test-card:hover { border-color: rgba(200,16,46,0.25); }
.test-stars { color: var(--amber); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.test-card blockquote { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 14px;
}
.test-author-info .name { font-weight: 600; font-size: 13.5px; color: var(--white); }
.test-author-info .role { font-size: 11.5px; color: rgba(255,255,255,0.35); }
.test-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; color: var(--green); margin-top: 2px; }

/* ========== PROCESS ========== */
.process-section { padding: 80px 0; background: var(--white); }
.process-section h2 { text-align: center; }
.process-sub { text-align: center; font-size: 15px; color: var(--mid-gray); margin-bottom: 48px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.process-card {
  text-align: center;
  padding: 34px 24px;
  border-radius: 14px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}
.process-card:hover { border-color: var(--red); box-shadow: 0 8px 28px rgba(0,0,0,0.05); }
.process-num {
  width: 46px; height: 46px;
  background: var(--dark-section);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-light);
  font-weight: 800; font-size: 18px;
  margin: 0 auto 18px;
  font-family: var(--font-display);
}
.process-card h4 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.process-card p { font-size: 13.5px; color: var(--mid-gray); line-height: 1.6; }

/* ========== FINAL CTA ========== */
.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #111217 0%, #1a1b24 40%, #131419 100%);
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.03), transparent 65%);
}
.final-cta-inner { text-align: center; max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.final-cta-section h2.section-h2 { color: var(--white); }
.final-cta-section h2 span { color: var(--red-light); }
.final-cta-sub { font-size: 15.5px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 34px; }
.final-form {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 32px;
  text-align: left;
}
.final-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.final-trust-row { display: flex; justify-content: center; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(255,255,255,0.4); }
.trust-item svg { width: 16px; height: 16px; stroke: var(--red-light); stroke-width: 1.8; fill: none; }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 28px 0;
  text-align: center;
}
.footer p { font-size: 12.5px; color: rgba(255,255,255,0.25); }
.footer a { color: var(--red-light); text-decoration: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid, .solution-grid, .bait-grid, .innovation-grid, .test-grid, .process-grid, .who-grid, .booth-grid, .hq-grid, .compare-grid { grid-template-columns: 1fr; }
  .cred-bar-inner { gap: 16px; }
  .cred-divider { display: none; }
  .final-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 60px; }
}