/* ============================================================
   Dieseltoolworkshop — Main Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-navy:      #1A2340;
  --color-crimson:   #C0392B;
  --color-white:     #FFFFFF;
  --color-offwhite:  #F5F4F0;
  --color-muted:     #6B7280;
  --color-border:    #DDD9D0;
  --color-light:     #EAE8E2;

  --font-heading: 'Noto Serif', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1160px;
  --gutter: 1.5rem;
  --radius: 6px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; background: var(--color-white); }
body { font-family: var(--font-body); color: var(--color-navy); line-height: 1.6; background: var(--color-white); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section     { padding: 80px 0; }
.section--alt { background: var(--color-offwhite); }
.section--dark { background: var(--color-navy); color: var(--color-white); }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-crimson);
  margin-bottom: 0.75rem;
}

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--color-muted); line-height: 1.7; }

.section--dark p, .section--dark h2, .section--dark h3 { color: var(--color-white); }
.section--dark p { opacity: 0.75; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-crimson);
  color: var(--color-white);
  border-color: var(--color-crimson);
}
.btn--primary:hover { background: #a93226; border-color: #a93226; }
.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn--outline:hover { background: var(--color-navy); color: var(--color-white); }
.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--outline-light:hover { background: var(--color-white); color: var(--color-navy); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.header-brand img { width: 44px; height: 44px; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}
.brand-name span { color: var(--color-crimson); }
.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav a {
  padding: 0.4rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-navy);
  border-radius: var(--radius);
}
.site-nav a:hover { background: var(--color-offwhite); }
.site-nav .nav-cta {
  background: var(--color-crimson);
  color: var(--color-white);
  margin-left: 0.5rem;
}
.site-nav .nav-cta:hover { background: #a93226; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-navy); margin: 5px 0;
}

/* ---------- HERO ---------- */
.hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: clamp(60px, 8vw, 120px) 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-text { 
  display: flex; 
  flex-direction: column; 
  gap: 1.5rem;
  z-index: 2;
}
.hero-text .tag {
  color: var(--color-crimson);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-text h1 { 
  color: var(--color-white);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.hero-text p { 
  color: rgba(255,255,255,0.8); 
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
}
.hero-actions { 
  display: flex; 
  gap: 1rem; 
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.hero-actions .btn {
  font-weight: 600;
  padding: 0.875rem 2rem;
}
.hero-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-muted);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.hero-image-wrap img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}
.placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a3a5c 0%, #3d5080 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.placeholder-img svg { opacity: 0.3; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--color-offwhite);
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-navy);
}
.trust-item svg { color: var(--color-crimson); flex-shrink: 0; }

/* ---------- ABOUT / INTRO ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-light);
}
.about-image-wrap .placeholder-img { background: linear-gradient(135deg, #f5f4f0 0%, #ddd9d0 100%); color: rgba(26,35,64,0.3); }
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-text p { font-size: 1rem; }

/* ---------- STATS ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  text-align: center;
}
.section--dark .stat-item { background: rgba(255,255,255,0.06); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-crimson);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.8rem; font-weight: 500; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.section--dark .stat-label { color: rgba(255,255,255,0.55); }

/* ---------- SERVICES ---------- */
.services-header { text-align: center; margin-bottom: 3.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.services-header p { margin-top: 0.75rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card:hover { border-color: var(--color-crimson); }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--color-offwhite);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-crimson);
}
.service-card h3 { font-size: 1rem; }
.service-card p { font-size: 0.875rem; }

/* ---------- PRODUCTS ---------- */
.products-header { text-align: center; margin-bottom: 3rem; }
.products-header p { margin-top: 0.75rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-img-wrap {
  aspect-ratio: 16/10;
  background: var(--color-light);
  overflow: hidden;
}
.product-img-wrap .placeholder-img { background: linear-gradient(135deg, #eae8e2 0%, #ccc9c0 100%); color: rgba(26,35,64,0.25); min-height: 140px; }
.product-img-wrap img { width: 100%; height: 220px; object-fit: cover; display: block; }
.product-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.product-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-crimson);
}
.product-body h3 { font-size: 1rem; color: var(--color-navy); }
.product-body p { font-size: 0.875rem; flex: 1; }
.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-navy);
}
.product-price span { font-size: 0.8rem; font-weight: 400; color: var(--color-muted); }
.product-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.product-actions .btn { font-size: 0.8rem; padding: 0.55rem 1rem; }

/* ---------- HOW IT WORKS ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: steps;
}
.step-item { display: flex; flex-direction: column; gap: 0.75rem; }
.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-crimson);
  line-height: 1;
}
.step-item h3 { font-size: 0.95rem; }
.step-item p { font-size: 0.85rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 600; color: var(--color-white); }
.author-meta { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.testimonials-section-header { text-align: center; margin-bottom: 3rem; }
.testimonials-section-header h2 { color: var(--color-white); }
.testimonials-section-header p { color: rgba(255,255,255,0.6); margin-top: 0.5rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-size: 0.975rem; font-weight: 600;
  color: var(--color-navy);
  gap: 1rem;
}
.faq-question:hover { background: var(--color-offwhite); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--color-crimson); }
.faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: var(--color-muted); line-height: 1.7; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header p { margin-top: 0.5rem; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--color-crimson);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--color-white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-band .btn--outline-light { border-color: rgba(255,255,255,0.6); }
.cta-band .btn--outline-light:hover { background: rgba(255,255,255,0.15); color: var(--color-white); }
.cta-actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }

/* ---------- CONTACTS ---------- */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--color-offwhite);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-crimson);
}
.contact-detail h4 { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact-detail p { font-size: 0.875rem; }
.contact-detail a { color: var(--color-crimson); }
.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
  background: var(--color-light);
}
.contact-map-wrap .placeholder-img { min-height: 260px; background: linear-gradient(135deg, #eae8e2 0%, #ccc9c0 100%); color: rgba(26,35,64,0.3); }
.contact-map-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand-row { display: flex; align-items: center; gap: 0.65rem; }
.footer-brand-row img { width: 40px; height: 40px; filter: brightness(0) invert(1); }
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
}
.footer-brand-name span { color: #f07167; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.55); max-width: 260px; line-height: 1.6; margin-bottom: 1rem; }
.footer-contact { font-size: 0.85rem; }
.footer-contact p { margin: 0.25rem 0; }
.footer-contact strong { display: block; margin-bottom: 0.5rem; color: var(--color-white); }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--color-white); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-col ul li a:hover { color: var(--color-white); }
.footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: rgba(255,255,255,0.75); }

/* ---------- CENTER-ALIGNED BLOCKS (index.php) ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-text { max-width: 640px; margin: 0 auto; }
.services-header { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.services-header h2 { margin-bottom: 0.75rem; }
.faq-header { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.faq-header h2 { margin-bottom: 0.75rem; }
.products-header { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.products-header h2 { margin-bottom: 0.75rem; }
.faq-list { max-width: 800px; margin: 0 auto; }
.cta-band { background: var(--color-navy); color: var(--color-white); padding: 60px var(--gutter); text-align: center; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--color-white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.testimonials-section-header { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.testimonials-section-header h2 { margin-bottom: 0.75rem; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 1.5rem var(--gutter);
  z-index: 9999;
  display: none;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-banner.show { display: block; }
.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.cookie-banner-content, .cookie-customize-panel {
  display: none;
}
.cookie-banner-content { display: block; }

.cookie-banner-text {
  margin-bottom: 1.5rem;
}
.cookie-banner-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.cookie-banner-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 0.75rem 0;
}
.cookie-banner-text a {
  color: var(--color-white);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-banner-text a:hover { color: #f0a9a6; }

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cookie-banner .btn {
  font-size: 0.8rem;
  padding: 0.6rem 1.25rem;
}
.cookie-banner .btn--primary {
  background: var(--color-crimson);
  color: var(--color-white);
  border-color: var(--color-crimson);
}
.cookie-banner .btn--primary:hover {
  background: #a93226;
  border-color: #a93226;
}
.cookie-banner .btn--secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.cookie-banner .btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.cookie-banner .btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.cookie-banner .btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
}

/* Customize Panel */
.cookie-customize-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.cookie-customize-header h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.cookie-customize-header p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.cookie-options {
  margin: 1.5rem 0;
  max-height: 300px;
  overflow-y: auto;
}
.cookie-option {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cookie-option:last-child { border-bottom: none; }

.cookie-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.cookie-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}
.cookie-checkbox-label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.cookie-checkbox-label input:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.checkbox-text {
  font-weight: 600;
  color: var(--color-white);
}
.cookie-badge {
  display: inline-block;
  font-size: 0.65rem;
  background: rgba(255,255,255,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cookie-option-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.cookie-customize-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.cookie-customize-actions .btn {
  flex: 1;
}
.cookie-banner .btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.cookie-banner .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; aspect-ratio: 16/9; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .site-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--color-white); border-bottom: 1px solid var(--color-border); flex-direction: column; align-items: flex-start; padding: 1rem var(--gutter); gap: 0.25rem; }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 0.6rem 0.85rem; }
  .nav-toggle { display: block; }
  .header-inner { position: relative; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: flex-start; }
  .cookie-banner .btn { width: auto; }
  .cookie-customize-actions .btn { flex: 1; }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col h4 { font-size: 0.75rem; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-banner .btn { width: 100%; }
}
