/* ========================================
   WEBBED GLOW - INDUSTRIAL MODERN CSS
   Dark colors, metallic accents, urban feel
   ======================================== */

/* CSS RESET & NORMALIZE */
* {
  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', sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #0D0D0D;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ========================================
   TYPOGRAPHY - INDUSTRIAL MODERN FONTS
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #E0E0E0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #E0E0E0;
  border-left: 4px solid #D84315;
  padding-left: 16px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #CCCCCC;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #B0B0B0;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #B0B0B0;
  line-height: 1.8;
}

.hero-subheadline, .section-subheadline {
  font-size: 18px;
  color: #999999;
  font-weight: 400;
  margin-bottom: 24px;
  text-transform: none;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ========================================
   HEADER - INDUSTRIAL STYLE
   ======================================== */

header {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  border-bottom: 2px solid #D84315;
}

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

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(216, 67, 21, 0.3));
}

.tagline {
  font-size: 12px;
  color: #999999;
  font-style: italic;
  text-transform: none;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

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

.main-nav a:hover {
  color: #D84315;
  border-bottom-color: #D84315;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #2D2D2D;
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid #454545;
}

.header-contact img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.header-contact span {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
}

/* ========================================
   MOBILE MENU - INDUSTRIAL BURGER
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 200;
  background: #D84315;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(216, 67, 21, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
  z-index: 300;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.8);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 2px solid #D84315;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #2D2D2D;
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #D84315;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #CCCCCC;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  background: rgba(45, 45, 45, 0.3);
  border-radius: 4px;
}

.mobile-nav a:hover {
  color: #D84315;
  border-left-color: #D84315;
  background: rgba(216, 67, 21, 0.1);
  transform: translateX(5px);
}

/* ========================================
   HERO SECTION - INDUSTRIAL IMPACT
   ======================================== */

.hero {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #2D2D2D 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 3px solid #D84315;
  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(216, 67, 21, 0.03) 10px,
    rgba(216, 67, 21, 0.03) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  font-size: 48px;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.trust-badge {
  background: rgba(216, 67, 21, 0.2);
  color: #D84315;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 24px;
  border: 1px solid #D84315;
}

/* ========================================
   BUTTONS - METALLIC INDUSTRIAL STYLE
   ======================================== */

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #D84315 0%, #C33D12 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(216, 67, 21, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C33D12 0%, #B03711 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(216, 67, 21, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #D84315;
  border: 2px solid #D84315;
}

.btn-secondary:hover {
  background: #D84315;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 67, 21, 0.4);
}

/* ========================================
   SECTIONS - INDUSTRIAL LAYOUT
   ======================================== */

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-proposition, .services, .products, .collections,
.featured-articles, .quick-tips {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-top: 2px solid #2D2D2D;
  border-bottom: 2px solid #2D2D2D;
}

.value-proposition h2, .services h2, .products h2,
.collections h2, .featured-articles h2, .quick-tips h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* ========================================
   CARD GRIDS - FLEXBOX ONLY
   ======================================== */

.value-grid, .service-grid, .product-categories,
.collections-grid, .articles-grid, .tips-grid,
.benefits-grid, .testimonial-grid, .commitment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

/* ========================================
   CARDS - INDUSTRIAL DESIGN
   ======================================== */

.value-card, .service-card, .category-card,
.collection-card, .article-card, .tip-card,
.benefit-card, .commitment-card {
  background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid #454545;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.value-card::before, .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #D84315 0%, transparent 100%);
  border-radius: 8px 0 0 8px;
}

.value-card:hover, .service-card:hover,
.category-card:hover, .collection-card:hover,
.article-card:hover, .tip-card:hover,
.benefit-card:hover, .commitment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(216, 67, 21, 0.3);
  border-color: #D84315;
}

.value-card img, .service-card img, .category-card img,
.collection-card img, .article-card img,
.benefit-card img, .commitment-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(0) saturate(100%) invert(41%) sepia(88%) saturate(1571%) hue-rotate(352deg) brightness(93%) contrast(94%);
}

.value-card h3, .service-card h3, .category-card h3,
.collection-card h3, .article-card h3, .tip-card h3,
.benefit-card h3, .commitment-card h3 {
  color: #E0E0E0;
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p, .service-card p, .category-card p,
.collection-card p, .article-card p, .tip-card p,
.benefit-card p, .commitment-card p {
  color: #999999;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #D84315;
  margin-top: 16px;
  display: block;
}

/* ========================================
   TESTIMONIALS - HIGH CONTRAST
   ======================================== */

.testimonials {
  background: #0D0D0D;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #FFFFFF;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #D84315;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  flex: 1 1 400px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.stars {
  color: #D84315;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #1A1A1A;
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
}

.author {
  color: #455A64;
  font-weight: 700;
  font-size: 14px;
  margin-top: 8px;
  display: block;
}

.review-count {
  text-align: center;
  color: #999999;
  font-size: 14px;
  margin-top: 32px;
  font-weight: 600;
}

/* ========================================
   TEXT-IMAGE SECTIONS - FLEXBOX ALIGNMENT
   ======================================== */

.story, .mission-vision, .commitment {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 24px;
  color: #B0B0B0;
  font-size: 16px;
  line-height: 1.8;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}

.mission-card, .vision-card {
  background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
  padding: 40px 32px;
  border-radius: 8px;
  border: 1px solid #454545;
  flex: 1 1 400px;
  max-width: 550px;
  border-left: 4px solid #D84315;
}

.mission-card h2, .vision-card h2 {
  border: none;
  padding: 0;
  margin-bottom: 16px;
}

.values {
  background: #0D0D0D;
  padding: 40px 32px;
  border-radius: 8px;
  border: 2px solid #2D2D2D;
  max-width: 900px;
  margin: 0 auto;
}

.values h3 {
  color: #D84315;
  margin-bottom: 24px;
  text-align: center;
}

.values ul {
  list-style: none;
}

.values li {
  color: #B0B0B0;
  padding: 12px 0 12px 32px;
  margin-bottom: 12px;
  border-left: 3px solid #D84315;
  position: relative;
}

.values li::before {
  content: '▸';
  position: absolute;
  left: 12px;
  color: #D84315;
  font-weight: 700;
}

/* ========================================
   TIPS & ARTICLES
   ======================================== */

.categories-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.categories-nav a {
  background: #2D2D2D;
  color: #CCCCCC;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid #454545;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.categories-nav a:hover {
  background: #D84315;
  color: #FFFFFF;
  border-color: #D84315;
  transform: translateY(-2px);
}

.guide-tips {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 32px;
}

.tip-item {
  background: #2D2D2D;
  padding: 20px 24px;
  border-radius: 8px;
  border-left: 4px solid #D84315;
  display: flex;
  align-items: center;
}

.tip-item::before {
  content: '✓';
  color: #D84315;
  font-size: 24px;
  font-weight: 700;
  margin-right: 16px;
}

.tip-item p {
  color: #B0B0B0;
  margin: 0;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: #2D2D2D;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #454545;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #D84315;
  box-shadow: 0 4px 12px rgba(216, 67, 21, 0.2);
}

.faq-item h3 {
  color: #D84315;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #B0B0B0;
  margin: 0;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-info, .contact-form-section {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-card {
  background: #2D2D2D;
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid #454545;
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #D84315;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(216, 67, 21, 0.3);
}

.contact-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(41%) sepia(88%) saturate(1571%) hue-rotate(352deg) brightness(93%) contrast(94%);
}

.contact-card h3 {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 12px;
}

.contact-card p {
  color: #B0B0B0;
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-card .small {
  font-size: 13px;
  color: #999999;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-info {
  background: #2D2D2D;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #454545;
  margin-bottom: 32px;
}

.form-info p {
  color: #B0B0B0;
  margin: 0;
}

.form-container {
  background: #2D2D2D;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #454545;
}

.form-note {
  text-align: center;
}

.form-note p {
  color: #999999;
  margin-bottom: 16px;
}

.form-note a {
  color: #D84315;
  font-weight: 700;
  text-decoration: underline;
}

.form-note a:hover {
  color: #C33D12;
}

.business-info {
  background: #1A1A1A;
  padding: 40px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.business-details {
  max-width: 600px;
  margin: 0 auto;
  background: #2D2D2D;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #454545;
}

.business-details p {
  color: #B0B0B0;
  margin-bottom: 8px;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  text-align: center;
  padding: 100px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #D84315;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(216, 67, 21, 0.4);
}

.confirmation-details {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.confirmation-card {
  background: #2D2D2D;
  padding: 40px 32px;
  border-radius: 8px;
  border: 1px solid #454545;
  max-width: 800px;
  margin: 0 auto;
  border-left: 4px solid #D84315;
}

.confirmation-card h2 {
  border: none;
  padding: 0;
  margin-bottom: 24px;
}

.next-steps {
  background: #0D0D0D;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step-card {
  background: #2D2D2D;
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid #454545;
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #D84315;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step-card p {
  color: #B0B0B0;
  margin: 0;
}

.additional-resources {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.resource-card {
  background: #2D2D2D;
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid #454545;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.resource-card:hover {
  border-color: #D84315;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(216, 67, 21, 0.3);
}

.resource-card img {
  width: 60px;
  height: 60px;
  filter: brightness(0) saturate(100%) invert(41%) sepia(88%) saturate(1571%) hue-rotate(352deg) brightness(93%) contrast(94%);
}

.resource-card h3 {
  color: #E0E0E0;
  font-size: 18px;
  margin: 0;
}

.emergency-contact {
  background: #D84315;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.emergency-contact h2 {
  color: #FFFFFF;
  border: none;
  padding: 0;
}

.emergency-contact p {
  color: #FFFFFF;
  font-size: 18px;
}

.contact-large {
  font-size: 24px;
  font-weight: 700;
  margin: 24px 0;
}

/* ========================================
   CTA BANNER - INDUSTRIAL STYLE
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, #D84315 0%, #C33D12 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-top: 3px solid #FFFFFF;
  border-bottom: 3px solid #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.cta-banner h2 {
  color: #FFFFFF;
  border: none;
  padding: 0;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: #FFF3E0;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #FFFFFF;
  color: #D84315;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: #FFF3E0;
  transform: translateY(-2px) scale(1.05);
}

.cta-banner .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-secondary:hover {
  background: #FFFFFF;
  color: #D84315;
}

/* ========================================
   LEGAL CONTENT
   ======================================== */

.legal-content {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content .text-section {
  background: #2D2D2D;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #454545;
}

.legal-content h2 {
  color: #D84315;
  border: none;
  padding: 0;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul {
  list-style: none;
  margin: 24px 0;
}

.legal-content li {
  color: #B0B0B0;
  padding: 12px 0 12px 32px;
  margin-bottom: 12px;
  border-left: 3px solid #D84315;
  position: relative;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 12px;
  color: #D84315;
  font-weight: 700;
  font-size: 20px;
}

.last-updated {
  color: #999999;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

/* ========================================
   FOOTER - INDUSTRIAL BASE
   ======================================== */

footer {
  background: linear-gradient(180deg, #0D0D0D 0%, #000000 100%);
  padding: 60px 20px 20px;
  border-top: 3px solid #D84315;
  color: #B0B0B0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 4px rgba(216, 67, 21, 0.3));
}

.footer-tagline {
  color: #999999;
  font-size: 14px;
  font-style: italic;
}

.footer-col h4 {
  color: #D84315;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #999999;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-col a {
  color: #B0B0B0;
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.3s ease;
  display: block;
}

.footer-col a:hover {
  color: #D84315;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid #2D2D2D;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #666666;
  font-size: 14px;
  margin: 0;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
  z-index: 400;
  border-top: 2px solid #D84315;
  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 400px;
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: #D84315;
  color: #FFFFFF;
  border: none;
}

.cookie-accept:hover {
  background: #C33D12;
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #B0B0B0;
  border: 1px solid #454545;
}

.cookie-reject:hover {
  background: #2D2D2D;
  color: #FFFFFF;
}

.cookie-settings {
  background: transparent;
  color: #D84315;
  border: 1px solid #D84315;
}

.cookie-settings:hover {
  background: #D84315;
  color: #FFFFFF;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #1A1A1A;
  border: 2px solid #D84315;
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 450;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal h3 {
  color: #D84315;
  margin-bottom: 24px;
}

.cookie-category {
  background: #2D2D2D;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #454545;
  margin-bottom: 16px;
}

.cookie-category h4 {
  color: #E0E0E0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #999999;
  font-size: 14px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #454545;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #D84315;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation */
  .main-nav, .header-contact {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  /* Header adjustments */
  .header-content {
    justify-content: center;
  }

  .logo {
    text-align: center;
  }

  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  /* Card grids mobile */
  .value-grid, .service-grid, .product-categories,
  .collections-grid, .articles-grid, .tips-grid,
  .benefits-grid, .testimonial-grid, .commitment-grid,
  .contact-methods, .mission-grid, .steps-grid,
  .resources-grid {
    flex-direction: column;
    align-items: center;
  }

  .value-card, .service-card, .category-card,
  .collection-card, .article-card, .tip-card,
  .benefit-card, .commitment-card, .contact-card,
  .testimonial-card, .mission-card, .vision-card,
  .step-card, .resource-card {
    max-width: 100%;
    width: 100%;
  }

  /* Footer mobile */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-col {
    text-align: center;
  }

  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Categories nav mobile */
  .categories-nav {
    flex-direction: column;
  }

  .categories-nav a {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .value-card, .service-card, .category-card,
  .collection-card, .article-card {
    flex: 1 1 300px;
  }
}

@media (min-width: 1025px) {
  .value-card, .service-card, .category-card {
    flex: 1 1 320px;
  }

  .testimonial-card {
    flex: 1 1 450px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mb-24 {
  margin-bottom: 24px;
}

.mt-32 {
  margin-top: 32px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus, button:focus {
  outline: 2px solid #D84315;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: #D84315;
  color: #FFFFFF;
}

::-moz-selection {
  background: #D84315;
  color: #FFFFFF;
}

/* ========================================
   END OF INDUSTRIAL MODERN CSS
   ======================================== */
