/* ================================
   EXTERTRAMA - INDUSTRIAL MODERN DESIGN
   CSS Reset & Base Styles
   ================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background-color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #e8e8e8;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  border-bottom: 3px solid #E8D5C4;
  padding-bottom: 12px;
  display: inline-block;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  margin-bottom: 16px;
  color: #b8b8b8;
  font-size: 16px;
}

a {
  color: #E8D5C4;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
}

a:hover {
  color: #d4c1b0;
  transform: translateX(3px);
}

strong {
  font-weight: 700;
  color: #e8e8e8;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: #b8b8b8;
}

li {
  margin-bottom: 8px;
}

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

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

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

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

header {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid #E8D5C4;
}

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

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

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

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

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

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

.main-nav a:hover {
  color: #fff;
  transform: none;
}

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

/* ================================
   MOBILE MENU - INDUSTRIAL DESIGN
   ================================ */

.mobile-menu-toggle {
  display: none;
  background: #E8D5C4;
  border: 2px solid #2C3E50;
  color: #2C3E50;
  font-size: 24px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #2C3E50 0%, #1a252f 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  border-left: 3px solid #E8D5C4;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #E8D5C4;
  color: #E8D5C4;
  font-size: 32px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #E8D5C4;
  color: #2C3E50;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 0;
}

.mobile-nav a {
  color: #E8D5C4;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(232, 213, 196, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(232, 213, 196, 0.1);
  color: #fff;
  padding-left: 30px;
  transform: none;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #E8D5C4;
  background: linear-gradient(135deg, #E8D5C4 0%, #d4c1b0 100%);
  color: #2C3E50;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #E8D5C4;
  border-color: #E8D5C4;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1a252f 0%, #0f1419 100%);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #E8D5C4;
  border-color: #E8D5C4;
}

.btn-secondary:hover {
  background: #E8D5C4;
  color: #2C3E50;
}

/* ================================
   HERO SECTION - URBAN INDUSTRIAL
   ================================ */

.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #1a1a1a 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #E8D5C4;
}

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

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

.hero h1 {
  color: #E8D5C4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 20px;
  color: #b8b8b8;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-indicator,
.supporting-text {
  color: #95A5A6;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

/* ================================
   SECTIONS - FLEXBOX LAYOUTS
   ================================ */

.value-proposition,
.services-overview,
.process,
.testimonials,
.about-preview,
.cta-final {
  background: #242424;
  border-left: 4px solid #E8D5C4;
  padding: 60px 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.value-proposition h2,
.services-overview h2,
.process h2,
.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #E8D5C4;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #95A5A6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================
   GRID LAYOUTS - FLEXBOX ONLY
   ================================ */

.benefits-grid,
.services-grid,
.stats-grid,
.testimonials-grid,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.benefit-card,
.service-card,
.stat,
.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #2C3E50;
  padding: 32px 24px;
  border: 2px solid #E8D5C4;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0 rgba(232, 213, 196, 0.3);
}

.benefit-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #E8D5C4 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.benefit-card:hover::before,
.service-card:hover::before {
  opacity: 0.1;
}

.benefit-card:hover,
.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 rgba(232, 213, 196, 0.5);
  border-color: #fff;
}

.benefit-card h3,
.service-card h3 {
  color: #E8D5C4;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefit-card p,
.service-card p {
  color: #b8b8b8;
  font-size: 15px;
}

/* ================================
   SERVICE CARDS
   ================================ */

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #E8D5C4;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

.service-card .duration {
  font-size: 14px;
  color: #95A5A6;
  margin-bottom: 16px;
}

/* ================================
   PROCESS STEPS - FLEXBOX
   ================================ */

.process-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #2C3E50;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid #E8D5C4;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #E8D5C4;
  color: #2C3E50;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.step h3 {
  color: #E8D5C4;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step p {
  color: #b8b8b8;
  font-size: 15px;
}

/* ================================
   TESTIMONIALS - DARK BACKGROUNDS
   ================================ */

.testimonials {
  background: #1a1a1a;
  padding: 60px 20px;
}

.testimonial-card {
  background: #2C3E50;
  padding: 32px;
  border-left: 4px solid #E8D5C4;
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 4px 4px 0 rgba(232, 213, 196, 0.2);
}

.testimonial-card .quote {
  font-size: 18px;
  font-style: italic;
  color: #e8e8e8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .quote::before {
  content: '"';
  font-size: 48px;
  color: #E8D5C4;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 8px;
}

.testimonial-card .name {
  font-weight: 700;
  color: #E8D5C4;
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-card .result,
.testimonial-card .profession {
  color: #95A5A6;
  font-size: 14px;
}

/* ================================
   STATS - FLEXBOX LAYOUT
   ================================ */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.stat {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  background: #2C3E50;
  padding: 32px 24px;
  border: 2px solid #E8D5C4;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.stat h3 {
  font-size: 48px;
  color: #E8D5C4;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat p {
  color: #b8b8b8;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================
   TRUST BADGES - FLEXBOX
   ================================ */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.trust-badges span {
  background: #2C3E50;
  color: #E8D5C4;
  padding: 12px 24px;
  border: 1px solid #E8D5C4;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 2px 2px 0 rgba(232, 213, 196, 0.3);
}

/* ================================
   CTA SECTIONS
   ================================ */

.cta-final,
.cta {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 4px solid #E8D5C4;
  border-bottom: 4px solid #E8D5C4;
}

.cta-final h2,
.cta h2 {
  color: #E8D5C4;
  margin-bottom: 24px;
}

.cta-final p,
.cta p {
  font-size: 18px;
  color: #b8b8b8;
  margin-bottom: 32px;
}

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

.guarantee {
  font-style: italic;
  color: #95A5A6;
  font-size: 14px;
  margin-top: 24px;
}

/* ================================
   DETAILED SERVICE SECTIONS
   ================================ */

.services-detailed .container,
.case-studies .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detail,
.case-study {
  background: #2C3E50;
  padding: 32px;
  border-left: 4px solid #E8D5C4;
  margin-bottom: 24px;
  box-shadow: 4px 4px 0 rgba(232, 213, 196, 0.2);
}

.service-detail h3,
.case-study h2 {
  color: #E8D5C4;
  margin-bottom: 16px;
  border-bottom: none;
  display: block;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 700;
  color: #E8D5C4;
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
}

.service-detail .duration {
  color: #95A5A6;
  font-size: 14px;
  margin-bottom: 20px;
}

.original-price {
  text-decoration: line-through;
  color: #95A5A6;
  font-size: 18px;
  margin-left: 12px;
}

/* ================================
   PACKAGES - FLEXBOX
   ================================ */

.packages .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.package-card {
  background: #2C3E50;
  padding: 32px;
  border: 2px solid #E8D5C4;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 rgba(232, 213, 196, 0.3);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 rgba(232, 213, 196, 0.5);
}

.package-card h3 {
  color: #E8D5C4;
  margin-bottom: 12px;
}

.package-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #E8D5C4;
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
}

/* ================================
   STORY & PHILOSOPHY
   ================================ */

.story,
.philosophy,
.values,
.impact {
  background: #242424;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-left: 4px solid #E8D5C4;
}

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

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

.pillars-grid,
.values-grid,
.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.pillar,
.value,
.option,
.option-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: #2C3E50;
  padding: 24px;
  border: 2px solid #E8D5C4;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.pillar:hover,
.value:hover,
.option:hover,
.option-card:hover {
  transform: translateX(8px);
  box-shadow: -4px 4px 0 rgba(232, 213, 196, 0.3);
}

.pillar h3,
.option h3,
.option-card h3 {
  color: #E8D5C4;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.pillar p,
.value p,
.option p,
.option-card p {
  color: #b8b8b8;
}

/* ================================
   BLOG & ARTICLES
   ================================ */

.blog-categories {
  margin: 40px 0;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.category {
  background: #2C3E50;
  color: #E8D5C4;
  padding: 12px 24px;
  border: 2px solid #E8D5C4;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.category:hover {
  background: #E8D5C4;
  color: #2C3E50;
  transform: translateY(-2px);
}

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

.article-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #2C3E50;
  padding: 24px;
  border-left: 4px solid #E8D5C4;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 0 rgba(232, 213, 196, 0.2);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 0 rgba(232, 213, 196, 0.4);
}

.article-card h3 {
  color: #E8D5C4;
  font-size: 20px;
  margin-bottom: 12px;
}

.article-card .meta {
  color: #95A5A6;
  font-size: 13px;
  margin-top: 16px;
}

/* ================================
   NEWSLETTER
   ================================ */

.newsletter {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid #E8D5C4;
  border-bottom: 4px solid #E8D5C4;
}

.newsletter h2 {
  color: #E8D5C4;
  margin-bottom: 16px;
}

.newsletter p {
  color: #b8b8b8;
  margin-bottom: 16px;
}

.bonus {
  font-weight: 700;
  color: #E8D5C4;
  font-size: 18px;
  margin: 24px 0;
}

.privacy {
  font-size: 13px;
  color: #95A5A6;
  font-style: italic;
}

/* ================================
   CONTACT PAGE
   ================================ */

.contact-options,
.location-info,
.contact-details {
  background: #242424;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-left: 4px solid #E8D5C4;
}

.quick-contact {
  font-size: 24px;
  font-weight: 700;
  color: #E8D5C4;
  margin-top: 24px;
}

.business-hours {
  color: #95A5A6;
  font-size: 14px;
  font-style: italic;
}

.note {
  background: #2C3E50;
  padding: 16px;
  border-left: 3px solid #E8D5C4;
  color: #b8b8b8;
  font-style: italic;
  margin: 24px 0;
}

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

.faq-contact,
.faq-item {
  background: #242424;
  padding: 40px 20px;
  margin-bottom: 32px;
}

.faq-item {
  background: #2C3E50;
  padding: 24px;
  border-left: 4px solid #E8D5C4;
  margin-bottom: 20px;
}

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

.faq-item p {
  color: #b8b8b8;
}

/* ================================
   LEGAL PAGES
   ================================ */

.legal-content {
  background: #242424;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  border-left: 4px solid #E8D5C4;
}

.legal-content h2 {
  color: #E8D5C4;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #E8D5C4;
  padding-bottom: 12px;
}

.legal-content h3 {
  color: #E8D5C4;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  line-height: 1.8;
  color: #b8b8b8;
}

.legal-content a {
  color: #E8D5C4;
  text-decoration: underline;
}

.rights-overview {
  background: #1a1a1a;
  padding: 60px 20px;
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.right {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: #2C3E50;
  padding: 24px;
  border: 2px solid #E8D5C4;
  margin-bottom: 20px;
}

.right h3 {
  color: #E8D5C4;
  margin-bottom: 12px;
}

.right p {
  color: #b8b8b8;
}

/* ================================
   CANCELLATION POLICY
   ================================ */

.cancellation-policy {
  background: #242424;
  padding: 60px 20px;
  margin: 40px 0;
}

.policy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.policy-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background: #2C3E50;
  padding: 24px;
  text-align: center;
  border: 2px solid #E8D5C4;
  margin-bottom: 20px;
}

.policy-item h3 {
  color: #E8D5C4;
  margin-bottom: 12px;
  font-size: 16px;
}

.policy-item p {
  color: #b8b8b8;
  font-size: 14px;
}

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

.next-steps,
.preparation,
.resources,
.contact-support,
.confirmation {
  background: #242424;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-left: 4px solid #E8D5C4;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.resource-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #2C3E50;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid #E8D5C4;
  margin-bottom: 20px;
}

.resource-card h3 {
  color: #E8D5C4;
  margin-bottom: 20px;
}

/* ================================
   MATERIALS SECTION
   ================================ */

.materials {
  background: #242424;
  padding: 60px 20px;
  margin-bottom: 40px;
}

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

.material {
  flex: 1 1 calc(50% - 10px);
  min-width: 250px;
  background: #2C3E50;
  padding: 20px;
  border-left: 4px solid #E8D5C4;
  margin-bottom: 20px;
}

.material p {
  color: #b8b8b8;
  font-size: 16px;
}

/* ================================
   FOOTER - INDUSTRIAL DESIGN
   ================================ */

footer {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #b8b8b8;
  padding: 60px 20px 20px;
  border-top: 4px solid #E8D5C4;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(232, 213, 196, 0.3);
}

.footer-col {
  flex: 1 1 calc(33.333% - 27px);
  min-width: 250px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0.9);
}

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

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

.footer-col nav a {
  color: #b8b8b8;
  font-size: 15px;
  transition: all 0.3s ease;
  padding-left: 0;
}

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

.footer-col p {
  color: #95A5A6;
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-legal a {
  color: #95A5A6;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-legal a:hover {
  color: #E8D5C4;
}

.footer-bottom p {
  color: #95A5A6;
  font-size: 13px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 998;
  border-top: 3px solid #E8D5C4;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  color: #b8b8b8;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* ================================
   COOKIE SETTINGS MODAL
   ================================ */

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

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

.cookie-modal-content {
  background: #2C3E50;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border: 3px solid #E8D5C4;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  position: relative;
}

.cookie-modal h2 {
  color: #E8D5C4;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(26, 26, 26, 0.5);
  border-left: 3px solid #E8D5C4;
}

.cookie-category h3 {
  color: #E8D5C4;
  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;
}

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

.cookie-toggle label {
  color: #b8b8b8;
  cursor: pointer;
}

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .benefit-card,
  .service-card,
  .stat,
  .testimonial-card,
  .step,
  .article-card,
  .pillar,
  .value,
  .option,
  .option-card,
  .right,
  .policy-item,
  .resource-card,
  .material {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .step,
  .article-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 16px);
  }
}

/* ================================
   ANIMATIONS & TRANSITIONS
   ================================ */

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

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

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

/* ================================
   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; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ================================
   PRINT STYLES
   ================================ */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}

/* ================================
   ACCESSIBILITY ENHANCEMENTS
   ================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus {
  outline: 2px solid #E8D5C4;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #E8D5C4;
  outline-offset: 2px;
}

/* ================================
   END OF INDUSTRIAL MODERN STYLES
   ================================ */