/* ============================================
   JOURNACELO - INDUSTRIAL MODERN DESIGN SYSTEM
   ============================================ */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* TYPOGRAPHY - Industrial Modern */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #F5F5F5;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 24px; }
h3 { font-size: 24px; margin-bottom: 16px; }
h4 { font-size: 18px; margin-bottom: 16px; }

p {
  margin-bottom: 16px;
  color: #B8B8B8;
}

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

a:hover {
  color: #E76F51;
}

ul {
  list-style: none;
}

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

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* HEADER - Industrial Steel Effect */
header {
  background: linear-gradient(135deg, #2A2A2A 0%, #1C1C1C 100%);
  border-bottom: 3px solid #D45635;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(212, 86, 53, 0.3));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #E8E8E8;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D45635;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #D45635;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #D45635 0%, #E76F51 100%);
  border: 2px solid #8B8B8B;
  color: #FFF;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #E76F51 0%, #D45635 100%);
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #2A2A2A 0%, #1C1C1C 100%);
  border-left: 3px solid #D45635;
  padding: 80px 32px 32px;
  z-index: 1999;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #8B8B8B;
  border: 2px solid #5A5A5A;
  color: #FFF;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #D45635;
  border-color: #E76F51;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #E8E8E8;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: #D45635;
  border-left-color: #D45635;
  background: rgba(212, 86, 53, 0.1);
  padding-left: 24px;
}

/* HERO SECTION - Industrial Backdrop */
.hero {
  background: linear-gradient(135deg, #2A2A2A 0%, #1C1C1C 50%, #2A2A2A 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(212, 86, 53, 0.03) 10px,
    rgba(212, 86, 53, 0.03) 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: #F5F5F5;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 20px;
  color: #B8B8B8;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* CTA BUTTONS - Metallic Industrial */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.btn-primary {
  background: linear-gradient(135deg, #D45635 0%, #E76F51 100%);
  color: #FFF;
  border: 2px solid #8B8B8B;
  box-shadow: 0 4px 12px rgba(212, 86, 53, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E76F51 0%, #D45635 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 86, 53, 0.6);
}

.btn-secondary {
  background: #3A3A3A;
  color: #F5F5F5;
  border: 2px solid #8B8B8B;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  background: #4A4A4A;
  border-color: #D45635;
  color: #D45635;
  transform: translateY(-2px);
}

.btn-link {
  background: transparent;
  color: #D45635;
  border: 2px solid #D45635;
  padding: 12px 24px;
}

.btn-link:hover {
  background: #D45635;
  color: #FFF;
}

/* TRUST BADGES - Industrial Tags */
.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badges span {
  padding: 12px 24px;
  background: #2A2A2A;
  border: 2px solid #8B8B8B;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #E8E8E8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* VALUE PROPOSITION */
.value-proposition {
  padding: 60px 20px;
  background: #1C1C1C;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #F5F5F5;
}

/* BENEFITS GRID - Flexbox Only */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: linear-gradient(135deg, #2A2A2A 0%, #252525 100%);
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #D45635;
  transition: height 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: #D45635;
  box-shadow: 0 8px 24px rgba(212, 86, 53, 0.3);
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(75%) sepia(25%) saturate(500%) hue-rotate(320deg) brightness(95%);
}

.benefit-card h3 {
  margin-bottom: 16px;
  color: #F5F5F5;
}

.benefit-card p {
  color: #B8B8B8;
  line-height: 1.6;
}

/* SERVICES SECTION */
.services {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1C1C1C 0%, #252525 100%);
}

.services h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: #B8B8B8;
  font-size: 18px;
  margin-bottom: 48px;
}

/* SERVICES GRID - Flexbox Only */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #D45635 0%, #E76F51 100%);
  transition: width 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #D45635;
  box-shadow: 0 8px 24px rgba(212, 86, 53, 0.3);
}

.service-card:hover::after {
  width: 100%;
}

.service-card h3 {
  margin-bottom: 16px;
  color: #F5F5F5;
}

.service-card p {
  color: #B8B8B8;
  margin-bottom: 16px;
  line-height: 1.6;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #D45635;
  margin: 20px 0;
}

/* TESTIMONIALS - Industrial Cards */
.testimonials {
  padding: 60px 20px;
  background: #1C1C1C;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 500px;
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-left: 4px solid #D45635;
  border-radius: 4px;
  padding: 32px;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.testimonial-card p {
  color: #E8E8E8;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #D45635;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA SECTION - Strong Industrial Call */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1C1C1C 100%);
  text-align: center;
  border-top: 3px solid #D45635;
  border-bottom: 3px solid #D45635;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(212, 86, 53, 0.03) 10px,
    rgba(212, 86, 53, 0.03) 20px
  );
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #B8B8B8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* PAGE HERO */
.page-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1C1C1C 100%);
  border-bottom: 3px solid #D45635;
  text-align: center;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  color: #B8B8B8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs a {
  color: #D45635;
}

.breadcrumbs a:hover {
  color: #E76F51;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

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

.hero-badges span {
  padding: 10px 20px;
  background: #2A2A2A;
  border: 2px solid #8B8B8B;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #E8E8E8;
  text-transform: uppercase;
}

/* PRODUCTS GRID */
.products {
  padding: 60px 20px;
  background: #1C1C1C;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.product-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #D45635;
  box-shadow: 0 8px 24px rgba(212, 86, 53, 0.3);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: #D45635;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card h3 {
  margin-bottom: 16px;
  margin-top: 8px;
}

.product-card p {
  margin-bottom: 20px;
  color: #B8B8B8;
}

/* TRUST SECTION */
.trust-section {
  padding: 60px 20px;
  background: #252525;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.trust-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  margin-bottom: 20px;
}

.trust-item img {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  filter: invert(75%) sepia(25%) saturate(500%) hue-rotate(320deg) brightness(95%);
}

.trust-item p {
  color: #E8E8E8;
  font-weight: 600;
  font-size: 14px;
}

/* BENEFITS SECTION */
.benefits {
  padding: 60px 20px;
  background: #1C1C1C;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* PRODUCT SHOWCASE */
.product-showcase {
  padding: 60px 20px;
  background: linear-gradient(135deg, #252525 0%, #1C1C1C 100%);
  text-align: center;
}

.product-showcase h2 {
  margin-bottom: 24px;
}

.price-large {
  font-size: 48px;
  font-weight: 700;
  color: #D45635;
  margin: 24px 0;
}

.features-list {
  max-width: 700px;
  margin: 32px auto;
  text-align: left;
}

.features-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #E8E8E8;
  line-height: 1.6;
}

.features-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #D45635;
  font-size: 20px;
}

.guarantee-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.guarantee-badges span {
  padding: 12px 24px;
  background: #2A2A2A;
  border: 2px solid #8B8B8B;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #E8E8E8;
  text-transform: uppercase;
}

/* STORY & VALUES */
.story,
.values,
.team {
  padding: 60px 20px;
  background: #1C1C1C;
}

.story h2,
.values h2,
.team h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.text-section h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #F5F5F5;
}

.text-section p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #B8B8B8;
}

.text-section ul {
  margin: 20px 0;
}

.text-section li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #E8E8E8;
  line-height: 1.6;
}

.text-section li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #D45635;
  font-size: 18px;
}

/* VALUES GRID */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: #D45635;
  box-shadow: 0 8px 24px rgba(212, 86, 53, 0.3);
}

.value-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: invert(75%) sepia(25%) saturate(500%) hue-rotate(320deg) brightness(95%);
}

/* TEAM GRID */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.team-member {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.team-member h3 {
  margin-bottom: 8px;
  color: #F5F5F5;
}

.role {
  color: #D45635;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* GUIDE CATEGORIES */
.guide-categories {
  padding: 60px 20px;
  background: #252525;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.category-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: #D45635;
}

.category-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: invert(75%) sepia(25%) saturate(500%) hue-rotate(320deg) brightness(95%);
}

/* GUIDE CONTENT */
.guide-content {
  padding: 60px 20px;
  background: #1C1C1C;
}

/* EXPERT HELP */
.expert-help {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2A2A2A 0%, #252525 100%);
  text-align: center;
  border-top: 3px solid #D45635;
}

/* CONTACT METHODS */
.contact-methods {
  padding: 60px 20px;
  background: #1C1C1C;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: #D45635;
  box-shadow: 0 8px 24px rgba(212, 86, 53, 0.3);
}

.contact-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: invert(75%) sepia(25%) saturate(500%) hue-rotate(320deg) brightness(95%);
}

.contact-detail {
  font-size: 20px;
  font-weight: 700;
  color: #D45635;
  margin: 16px 0;
}

.hours {
  font-size: 14px;
  color: #8B8B8B;
  font-style: italic;
  margin-bottom: 12px;
}

/* STORE INFO */
.store-info {
  padding: 60px 20px;
  background: #252525;
}

/* CONTACT FORM */
.contact-form-section {
  padding: 60px 20px;
  background: #1C1C1C;
  text-align: center;
}

.form-placeholder {
  max-width: 600px;
  margin: 32px auto;
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  padding: 40px;
  text-align: left;
}

.form-placeholder p {
  margin-bottom: 16px;
  color: #E8E8E8;
  font-weight: 600;
}

.privacy-note {
  font-size: 12px;
  color: #8B8B8B;
  margin-top: 24px;
}

.privacy-note a {
  color: #D45635;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
  background: #1C1C1C;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #F5F5F5;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.legal-content strong {
  color: #D45635;
}

/* THANK YOU PAGE */
.thank-you-hero,
.thank-you-page {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1C1C1C 100%);
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  filter: invert(45%) sepia(85%) saturate(700%) hue-rotate(330deg) brightness(95%);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-note {
  font-size: 14px;
  color: #8B8B8B;
  margin-top: 16px;
}

/* NEXT STEPS */
.next-steps {
  padding: 60px 20px;
  background: #1C1C1C;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.step-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: invert(75%) sepia(25%) saturate(500%) hue-rotate(320deg) brightness(95%);
}

/* MEANWHILE */
.meanwhile {
  padding: 60px 20px;
  background: #252525;
}

.meanwhile-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.action-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  margin-bottom: 20px;
}

/* CONTACT ALTERNATIVES */
.contact-alternatives {
  padding: 60px 20px;
  background: #1C1C1C;
}

.alternatives-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.alternative-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 400px;
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-left: 4px solid #D45635;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.alternative-card .detail {
  font-size: 20px;
  font-weight: 700;
  color: #D45635;
  margin: 16px 0;
}

/* FOOTER - Industrial Base */
footer {
  background: linear-gradient(135deg, #2A2A2A 0%, #1C1C1C 100%);
  border-top: 3px solid #D45635;
  padding: 60px 20px 20px;
  color: #B8B8B8;
}

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

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(212, 86, 53, 0.3));
}

.footer-brand p {
  color: #8B8B8B;
  font-size: 14px;
}

.footer-links,
.footer-contact,
.footer-legal {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4,
.footer-legal h4 {
  color: #F5F5F5;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-legal a {
  color: #B8B8B8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #D45635;
  padding-left: 8px;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #B8B8B8;
}

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

.footer-bottom p {
  color: #8B8B8B;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #2A2A2A 0%, #1C1C1C 100%);
  border-top: 3px solid #D45635;
  padding: 24px;
  z-index: 1500;
  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;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: #E8E8E8;
  font-size: 14px;
  line-height: 1.5;
}

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

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

.accept-all {
  background: #D45635;
  color: #FFF;
  border: 2px solid #8B8B8B;
}

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

.reject-all {
  background: #3A3A3A;
  color: #E8E8E8;
  border: 2px solid #8B8B8B;
}

.reject-all:hover {
  background: #4A4A4A;
  color: #D45635;
}

.cookie-settings {
  background: transparent;
  color: #D45635;
  border: 2px solid #D45635;
}

.cookie-settings:hover {
  background: #D45635;
  color: #FFF;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background: linear-gradient(135deg, #2A2A2A 0%, #252525 100%);
  border: 3px solid #D45635;
  border-radius: 4px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #8B8B8B;
  border: 2px solid #5A5A5A;
  color: #FFF;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #D45635;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #3A3A3A;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h3 {
  color: #F5F5F5;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #B8B8B8;
  font-size: 14px;
  margin-bottom: 12px;
}

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

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

.toggle-switch.active {
  background: #D45635;
}

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

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

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

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

.save-preferences {
  flex: 1;
  padding: 14px 28px;
  background: #D45635;
  color: #FFF;
  border: 2px solid #8B8B8B;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.save-preferences:hover {
  background: #E76F51;
  transform: translateY(-2px);
}

/* RESPONSIVE - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }
  
  /* Mobile menu width */
  .mobile-menu {
    width: 280px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-link {
    width: 100%;
    text-align: center;
  }
  
  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Grid layouts - single column */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .products-grid,
  .trust-grid,
  .values-grid,
  .team-grid,
  .categories-grid,
  .contact-grid,
  .steps-grid,
  .meanwhile-grid,
  .alternatives-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .product-card,
  .trust-item,
  .value-card,
  .team-member,
  .category-card,
  .contact-card,
  .step-card,
  .action-card,
  .alternative-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-legal {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Modal */
  .modal-content {
    padding: 24px;
    max-height: 90vh;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .save-preferences {
    width: 100%;
  }
  
  /* Price */
  .price-large {
    font-size: 36px;
  }
  
  /* Features list */
  .features-list li {
    font-size: 14px;
  }
  
  /* Guarantee badges */
  .guarantee-badges {
    flex-direction: column;
    align-items: stretch;
  }
  
  .guarantee-badges span {
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .value-card,
  .team-member {
    flex: 1 1 calc(50% - 12px);
  }
  
  .service-card,
  .product-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .trust-item,
  .category-card {
    flex: 1 1 calc(50% - 16px);
  }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

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

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

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1C1C1C;
}

::-webkit-scrollbar-thumb {
  background: #3A3A3A;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #D45635;
}

/* FOCUS STATES */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid #D45635;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
}