/* ================================
   AutoOrder - Industrial Modern CSS
   Design Style: Industrial Modern
   ================================ */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background: #1a1a1a;
  overflow-x: hidden;
}

/* Industrial Modern Color Palette */
:root {
  --primary: #2C5F8D;
  --secondary: #E8692C;
  --accent: #F4F4F4;
  --dark-bg: #1a1a1a;
  --metal-gray: #4a4a4a;
  --steel-blue: #3d5a80;
  --concrete: #b8b8b8;
  --rust: #d1603d;
  --charcoal: #2a2a2a;
  --white: #ffffff;
  --text-light: #e0e0e0;
}

/* Typography - Industrial Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--accent);
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 24px;
  border-left: 4px solid var(--secondary);
  padding-left: 16px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--concrete);
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-light);
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 16px;
}

a {
  text-decoration: none;
  color: var(--secondary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--rust);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
  color: var(--text-light);
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
  color: var(--accent);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header - Industrial Style */
header {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 100%);
  border-bottom: 2px solid var(--metal-gray);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(1.2) contrast(1.1);
}

.tagline {
  font-size: 12px;
  color: var(--concrete);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Navigation - Industrial Menu */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.header-contact {
  color: var(--concrete);
  font-size: 14px;
  font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--secondary);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--rust);
  transform: scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--dark-bg) 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.6);
  border-left: 2px solid var(--metal-gray);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--metal-gray);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid var(--metal-gray);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--secondary);
  padding-left: 12px;
}

/* Buttons - Industrial Style */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: var(--metal-gray);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--rust) 100%);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--rust) 0%, var(--secondary) 100%);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--steel-blue);
}

.btn-secondary:hover {
  background: var(--steel-blue);
  color: var(--white);
}

/* Hero Section - Industrial Impact */
.hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 50%, var(--steel-blue) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.02) 10px,
    rgba(255, 255, 255, 0.02) 20px
  );
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: var(--accent);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--concrete);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  display: inline-block;
  background: var(--metal-gray);
  color: var(--accent);
  padding: 12px 24px;
  border-radius: 2px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border: 1px solid var(--steel-blue);
}

/* Sections - Industrial Spacing */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  background: var(--dark-bg);
}

.benefits, .products, .how-it-works, .problem-solution, .testimonials, .guarantee, .cta-final {
  padding: 60px 20px;
  background: var(--dark-bg);
  border-top: 1px solid var(--metal-gray);
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--metal-gray) 100%);
  padding: 32px 24px;
  border-radius: 2px;
  border: 1px solid var(--steel-blue);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.benefit-card:hover::before {
  width: 8px;
}

.benefit-card h3 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p {
  color: var(--concrete);
  font-size: 15px;
}

/* Product Grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.product-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 100%);
  padding: 32px 24px;
  border: 2px solid var(--metal-gray);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card.featured {
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(232, 105, 44, 0.3);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  border-color: var(--steel-blue);
}

.product-card h3 {
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 16px;
}

.product-card p {
  color: var(--concrete);
  margin-bottom: 20px;
  flex-grow: 1;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary);
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary);
  color: var(--white);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Product Grid Full Width */
.product-grid-full {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.product-card-detailed {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--metal-gray) 100%);
  padding: 40px 32px;
  border: 2px solid var(--steel-blue);
  border-radius: 2px;
  position: relative;
}

.product-card-detailed.featured {
  border-color: var(--secondary);
  background: linear-gradient(135deg, var(--charcoal) 0%, rgba(232, 105, 44, 0.1) 100%);
}

.product-card-detailed h2 {
  border-left: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.specs {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.specs li {
  padding: 8px 0;
  border-bottom: 1px solid var(--metal-gray);
  color: var(--concrete);
}

.specs li::before {
  content: '▸';
  color: var(--secondary);
  margin-right: 8px;
  font-weight: 700;
}

.price-compare {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}

.old-price {
  font-size: 20px;
  color: var(--concrete);
  text-decoration: line-through;
}

/* Steps Grid */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: var(--charcoal);
  padding: 32px 24px;
  border: 1px solid var(--metal-gray);
  border-radius: 2px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--rust) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 3px solid var(--metal-gray);
}

.step h3 {
  color: var(--accent);
  margin-bottom: 12px;
}

.step p {
  color: var(--concrete);
}

/* Solutions Grid */
.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.solution-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--charcoal);
  padding: 32px 24px;
  border-left: 4px solid var(--secondary);
  border-radius: 2px;
}

.solution-item h3 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 18px;
}

.solution-item p {
  color: var(--concrete);
}

/* Testimonials - Readable Dark on Light */
.testimonials {
  background: linear-gradient(135deg, var(--steel-blue) 0%, var(--primary) 100%);
  padding: 60px 20px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: var(--accent);
  padding: 32px 24px;
  border-radius: 2px;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.testimonial-card p {
  color: var(--charcoal);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.author {
  color: var(--metal-gray);
  font-weight: 700;
  font-size: 14px;
}

.rating {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

/* Guarantee Grid */
.guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.guarantee-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: var(--charcoal);
  padding: 24px 20px;
  border: 2px solid var(--steel-blue);
  border-radius: 2px;
  text-align: center;
  color: var(--concrete);
  font-weight: 600;
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
}

/* CTA Final */
.cta-final {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--steel-blue) 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta-final h2 {
  border-left: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.trust-elements {
  margin-top: 32px;
  color: var(--concrete);
  font-size: 14px;
  font-weight: 600;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--steel-blue) 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 2px solid var(--metal-gray);
}

.breadcrumbs {
  color: var(--concrete);
  font-size: 14px;
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: var(--secondary);
}

.subtitle {
  font-size: 18px;
  color: var(--concrete);
}

/* Text Sections */
.text-section {
  max-width: 800px;
  margin: 40px auto;
}

.text-section p {
  margin-bottom: 24px;
  line-height: 1.8;
}

/* Mission Grid */
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

.mission-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: var(--charcoal);
  padding: 40px 32px;
  border: 2px solid var(--steel-blue);
  border-radius: 2px;
}

.values {
  margin-top: 40px;
  background: var(--charcoal);
  padding: 40px 32px;
  border-left: 4px solid var(--secondary);
  border-radius: 2px;
}

.values ul {
  list-style: none;
  margin-left: 0;
}

.values li {
  padding: 12px 0;
  border-bottom: 1px solid var(--metal-gray);
}

/* Stats Grid */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: var(--charcoal);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--steel-blue);
  border-radius: 2px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 14px;
  color: var(--concrete);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Installation Guides */
.guide-item {
  background: var(--charcoal);
  padding: 40px 32px;
  margin-bottom: 32px;
  border: 2px solid var(--metal-gray);
  border-radius: 2px;
}

.guide-item h2 {
  border-left: none;
  padding-left: 0;
}

.difficulty {
  display: inline-block;
  background: var(--steel-blue);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.steps {
  counter-reset: step-counter;
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.steps li {
  counter-increment: step-counter;
  padding: 16px 16px 16px 60px;
  margin-bottom: 12px;
  background: var(--dark-bg);
  border-left: 3px solid var(--secondary);
  position: relative;
}

.steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.tips {
  background: var(--steel-blue);
  padding: 16px 20px;
  border-radius: 2px;
  margin-top: 20px;
  border-left: 4px solid var(--secondary);
}

.tip-box {
  background: var(--steel-blue);
  padding: 24px;
  border-radius: 2px;
  border-left: 4px solid var(--secondary);
  margin: 32px 0;
}

/* Contact Methods */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: var(--charcoal);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--steel-blue);
  border-radius: 2px;
}

.method-card h3 {
  color: var(--accent);
  margin-bottom: 16px;
}

.method-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

/* Form Placeholder */
.form-placeholder {
  background: var(--charcoal);
  padding: 60px 40px;
  text-align: center;
  border: 2px dashed var(--metal-gray);
  border-radius: 2px;
  margin-top: 40px;
}

/* FAQ Grid */
.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.faq-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--charcoal);
  padding: 32px 24px;
  border-left: 4px solid var(--secondary);
  border-radius: 2px;
}

.faq-item h3 {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 12px;
}

/* Legal Content */
.legal-content {
  padding: 40px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.cookie-table {
  margin-top: 40px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--charcoal);
  border: 2px solid var(--metal-gray);
}

thead {
  background: var(--steel-blue);
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--metal-gray);
  color: var(--text-light);
}

th {
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 14px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, var(--steel-blue) 0%, var(--primary) 100%);
  padding: 80px 20px;
  text-align: center;
}

.checkmark {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  border: 4px solid var(--accent);
}

/* Footer - Industrial Style */
footer {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 100%);
  border-top: 2px solid var(--metal-gray);
  padding: 60px 20px 20px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(1.2);
}

.footer-col h4 {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 8px;
}

.footer-col ul {
  list-style: none;
  margin-left: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--concrete);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--secondary);
  padding-left: 8px;
}

.footer-col p {
  color: var(--concrete);
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--metal-gray);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: var(--concrete);
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 100%);
  border-top: 2px solid var(--secondary);
  padding: 24px 20px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 60%;
  min-width: 300px;
  color: var(--text-light);
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--metal-gray);
  color: var(--white);
}

.cookie-btn.accept {
  background: var(--secondary);
  border-color: var(--secondary);
}

.cookie-btn.accept:hover {
  background: var(--rust);
}

.cookie-btn.reject {
  background: transparent;
  border-color: var(--concrete);
  color: var(--concrete);
}

.cookie-btn.reject:hover {
  background: var(--metal-gray);
}

.cookie-btn.settings {
  background: var(--steel-blue);
}

.cookie-btn.settings:hover {
  background: var(--primary);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 100%);
  border: 2px solid var(--metal-gray);
  border-radius: 2px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--secondary);
  color: var(--white);
}

.cookie-category {
  background: var(--charcoal);
  padding: 20px;
  margin-bottom: 16px;
  border-left: 3px solid var(--steel-blue);
  border-radius: 2px;
}

.cookie-category h4 {
  margin-bottom: 8px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Utility Classes */
.cta-center {
  text-align: center;
  margin-top: 40px;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.milestone {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  background: var(--charcoal);
  padding: 20px;
  border-left: 4px solid var(--secondary);
  border-radius: 2px;
  color: var(--text-light);
}

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.reason-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: var(--charcoal);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--steel-blue);
  border-radius: 2px;
}

.promises {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.promises li {
  padding: 16px 16px 16px 48px;
  background: var(--charcoal);
  border-left: 4px solid var(--secondary);
  margin-bottom: 12px;
  border-radius: 2px;
  position: relative;
}

.promises li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 20px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.trust-item {
  flex: 1 1 calc(25% - 16px);
  min-width: 200px;
  background: var(--charcoal);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--steel-blue);
  border-radius: 2px;
  font-weight: 600;
  color: var(--concrete);
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.info-col {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: var(--charcoal);
  padding: 32px 24px;
  border: 2px solid var(--metal-gray);
  border-radius: 2px;
}

.info-col h3 {
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.warning-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.warning-list li {
  padding: 16px 16px 16px 48px;
  background: rgba(232, 105, 44, 0.1);
  border-left: 4px solid var(--secondary);
  margin-bottom: 12px;
  border-radius: 2px;
  position: relative;
}

.warning-list li::before {
  content: '⚠';
  position: absolute;
  left: 16px;
  color: var(--secondary);
  font-size: 20px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: var(--charcoal);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--steel-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.action-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.action-card h3 {
  margin-bottom: 12px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

.link-card {
  flex: 0 1 auto;
  background: var(--steel-blue);
  color: var(--accent);
  padding: 16px 32px;
  border-radius: 2px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
}

.link-card:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Header adjustments */
  .header-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .header-contact {
    font-size: 12px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Grid adjustments */
  .benefits-grid,
  .product-grid,
  .steps-grid,
  .solutions-grid,
  .testimonial-grid,
  .guarantee-grid,
  .methods-grid,
  .faq-grid,
  .stats-grid,
  .reasons-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .product-card,
  .step,
  .solution-item,
  .testimonial-card,
  .guarantee-item,
  .method-card,
  .faq-item,
  .stat-item,
  .reason-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Product grid full */
  .product-card-detailed {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Sections padding */
  .section,
  .benefits,
  .products,
  .how-it-works,
  .problem-solution,
  .testimonials,
  .guarantee,
  .cta-final {
    padding: 40px 20px;
  }
  
  /* Tables */
  .cookie-table {
    font-size: 12px;
  }
  
  th, td {
    padding: 8px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .product-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 24px);
  }
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* Accessibility improvements */
:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* Smooth animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Skip to main content link for accessibility */
.skip-to-main {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--secondary);
  color: var(--white);
  padding: 8px 16px;
  z-index: 3000;
  transition: top 0.3s;
}

.skip-to-main:focus {
  top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary: #1a4d7a;
    --secondary: #ff6600;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* End of CSS */
