/* ===================================
   VINTAGE RETRO DESIGN SYSTEM
   EndoClesse - Intelligent Home Technology
   =================================== */

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

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

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.7;
  color: #2C1810;
  background: #F5E6D3;
  overflow-x: hidden;
}

/* === VINTAGE RETRO COLOR PALETTE === */
:root {
  --vintage-cream: #F5E6D3;
  --vintage-beige: #E8D5B7;
  --vintage-tan: #D4A574;
  --vintage-brown: #8B4513;
  --vintage-dark-brown: #2C1810;
  --vintage-rust: #C44536;
  --vintage-teal: #4A7C7E;
  --vintage-mustard: #D4A02C;
  --vintage-olive: #6B8E23;
  --retro-orange: #E87722;
  --retro-yellow: #F4D03F;
  --shadow-vintage: rgba(44, 24, 16, 0.2);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--vintage-dark-brown);
  margin-bottom: 16px;
  text-shadow: 2px 2px 0 rgba(212, 160, 44, 0.3);
}

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

h2 {
  font-size: 36px;
  letter-spacing: 1px;
}

h3 {
  font-size: 24px;
  color: var(--vintage-brown);
}

h4 {
  font-size: 20px;
  color: var(--vintage-brown);
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--vintage-dark-brown);
}

a {
  color: var(--vintage-teal);
  text-decoration: underline;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--vintage-rust);
  text-decoration: none;
}

ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

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

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HEADER === */
header {
  background: linear-gradient(180deg, var(--vintage-beige) 0%, var(--vintage-cream) 100%);
  border-bottom: 4px solid var(--vintage-brown);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 8px var(--shadow-vintage);
}

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

header img {
  height: 60px;
  filter: sepia(0.3) contrast(1.1);
}

header nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

header nav a {
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--vintage-brown);
  text-decoration: none;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--vintage-rust);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

header nav a:hover::after {
  width: 80%;
}

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

.cta-button {
  background: var(--vintage-rust);
  color: #FFF;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Georgia', serif;
  font-weight: 700;
  border: 3px solid var(--vintage-brown);
  box-shadow: 4px 4px 0 var(--vintage-brown);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: var(--vintage-brown);
  box-shadow: 2px 2px 0 var(--vintage-brown);
  transform: translate(2px, 2px);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: var(--vintage-rust);
  color: #FFF;
  border: 3px solid var(--vintage-brown);
  font-size: 24px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 3px 3px 0 var(--vintage-brown);
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--vintage-brown);
  box-shadow: 1px 1px 0 var(--vintage-brown);
  transform: translate(2px, 2px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--vintage-beige) 0%, var(--vintage-tan) 100%);
  border-left: 4px solid var(--vintage-brown);
  padding: 80px 32px 32px;
  z-index: 1050;
  transition: right 0.4s ease;
  box-shadow: -4px 0 16px var(--shadow-vintage);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--vintage-rust);
  color: #FFF;
  border: 3px solid var(--vintage-brown);
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--vintage-brown);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--vintage-brown);
  box-shadow: 1px 1px 0 var(--vintage-brown);
  transform: translate(1px, 1px);
}

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

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--vintage-dark-brown);
  text-decoration: none;
  padding: 12px 16px;
  border: 2px solid var(--vintage-brown);
  background: var(--vintage-cream);
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 0 var(--vintage-brown);
}

.mobile-nav a:hover {
  background: var(--vintage-rust);
  color: #FFF;
  box-shadow: 1px 1px 0 var(--vintage-brown);
  transform: translate(1px, 1px);
}

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

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, var(--vintage-tan) 0%, var(--vintage-beige) 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 4px solid var(--vintage-brown);
  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(139, 69, 19, 0.05) 10px,
    rgba(139, 69, 19, 0.05) 20px
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--vintage-dark-brown);
  font-size: 48px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  color: var(--vintage-brown);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .subtitle {
  font-size: 18px;
  color: var(--vintage-brown);
  margin-bottom: 24px;
}

.hero .stats {
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: var(--vintage-brown);
  font-weight: 700;
  margin-top: 24px;
}

/* === BUTTONS === */
.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-primary,
.btn-secondary,
.btn-link {
  font-family: 'Georgia', serif;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 3px solid var(--vintage-brown);
}

.btn-primary {
  background: var(--vintage-rust);
  color: #FFF;
  box-shadow: 4px 4px 0 var(--vintage-brown);
}

.btn-primary:hover {
  background: var(--vintage-brown);
  box-shadow: 2px 2px 0 var(--vintage-brown);
  transform: translate(2px, 2px);
}

.btn-secondary {
  background: var(--vintage-cream);
  color: var(--vintage-brown);
  box-shadow: 4px 4px 0 var(--vintage-brown);
}

.btn-secondary:hover {
  background: var(--vintage-beige);
  box-shadow: 2px 2px 0 var(--vintage-brown);
  transform: translate(2px, 2px);
}

.btn-link {
  background: transparent;
  color: var(--vintage-teal);
  border: 2px solid var(--vintage-teal);
  box-shadow: none;
  padding: 10px 20px;
  text-transform: none;
  font-size: 14px;
}

.btn-link:hover {
  background: var(--vintage-teal);
  color: #FFF;
}

.trust-badge {
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: var(--vintage-brown);
  font-weight: 600;
  margin-top: 32px;
  padding: 12px 24px;
  background: var(--vintage-cream);
  border: 2px solid var(--vintage-brown);
  border-radius: 4px;
  display: inline-block;
}

/* === SECTIONS === */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
  color: var(--vintage-dark-brown);
}

.subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--vintage-brown);
  margin-bottom: 32px;
  font-style: italic;
}

/* === BENEFITS SECTION === */
.benefits {
  background: var(--vintage-cream);
  border-top: 4px solid var(--vintage-brown);
  border-bottom: 4px solid var(--vintage-brown);
}

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

.benefit-card {
  background: var(--vintage-beige);
  padding: 32px 24px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 6px 6px 0 var(--vintage-brown);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px dashed var(--vintage-tan);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  box-shadow: 3px 3px 0 var(--vintage-brown);
  transform: translate(3px, 3px);
}

.benefit-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: sepia(0.4) saturate(0.8);
}

.benefit-card h3 {
  margin-bottom: 16px;
  color: var(--vintage-brown);
  font-size: 20px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--vintage-dark-brown);
  line-height: 1.6;
}

/* === SERVICES === */
.services-overview,
.services-grid {
  background: var(--vintage-beige);
}

.services-grid .container,
.services-overview .container {
  max-width: 1200px;
}

.services-grid,
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background: var(--vintage-cream);
  padding: 32px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  flex: 1 1 320px;
  max-width: 380px;
  box-shadow: 5px 5px 0 var(--vintage-brown);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 24px;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px dotted var(--vintage-tan);
  border-radius: 4px;
  pointer-events: none;
}

.service-card:hover {
  box-shadow: 2px 2px 0 var(--vintage-brown);
  transform: translate(3px, 3px);
}

.service-card h3 {
  font-size: 22px;
  color: var(--vintage-brown);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: var(--vintage-dark-brown);
  margin-bottom: 12px;
}

.service-card .price {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--vintage-rust);
  margin: 16px 0;
  padding: 12px;
  background: var(--vintage-beige);
  border: 2px dashed var(--vintage-brown);
  border-radius: 4px;
  text-align: center;
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(135deg, var(--vintage-cream) 0%, var(--vintage-beige) 100%);
  border-top: 4px solid var(--vintage-brown);
  border-bottom: 4px solid var(--vintage-brown);
}

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

.testimonial-card {
  background: var(--vintage-cream);
  padding: 32px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  flex: 1 1 450px;
  max-width: 550px;
  box-shadow: 6px 6px 0 var(--vintage-brown);
  position: relative;
  margin-bottom: 24px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 72px;
  font-family: 'Georgia', serif;
  color: var(--vintage-tan);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card p {
  font-size: 16px;
  color: var(--vintage-dark-brown);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-card .customer {
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: var(--vintage-brown);
  margin-bottom: 8px;
  font-style: normal;
}

.testimonial-card .rating {
  color: var(--vintage-mustard);
  font-size: 20px;
  text-shadow: 1px 1px 0 var(--vintage-brown);
}

/* === CTA SECTION === */
.cta-section {
  background: var(--vintage-rust);
  color: #FFF;
  text-align: center;
  padding: 80px 20px;
  border-top: 4px solid var(--vintage-brown);
  border-bottom: 4px solid var(--vintage-brown);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(139, 69, 19, 0.1) 20px,
    rgba(139, 69, 19, 0.1) 40px
  );
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: #FFF;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 var(--vintage-brown);
}

.cta-section p {
  color: var(--vintage-cream);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background: var(--vintage-cream);
  color: var(--vintage-brown);
  border-color: var(--vintage-brown);
  box-shadow: 4px 4px 0 var(--vintage-brown);
}

.cta-section .btn-primary:hover {
  background: var(--vintage-beige);
  box-shadow: 2px 2px 0 var(--vintage-brown);
}

.cta-section .guarantee {
  margin-top: 24px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  background: var(--vintage-brown);
  border: 2px solid var(--vintage-cream);
  border-radius: 4px;
  display: inline-block;
}

/* === STORY & VALUES === */
.story,
.values,
.achievements,
.service-benefits,
.protocols {
  background: var(--vintage-cream);
}

.story .container,
.service-benefits .container,
.protocols .container {
  max-width: 900px;
}

.story p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--vintage-dark-brown);
}

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

.value-card {
  background: var(--vintage-beige);
  padding: 32px 24px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  text-align: center;
  flex: 1 1 240px;
  max-width: 280px;
  box-shadow: 5px 5px 0 var(--vintage-brown);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.value-card:hover {
  box-shadow: 2px 2px 0 var(--vintage-brown);
  transform: translate(3px, 3px);
}

.value-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  filter: sepia(0.4);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--vintage-brown);
}

.value-card p {
  font-size: 14px;
  color: var(--vintage-dark-brown);
}

/* === ACHIEVEMENTS === */
.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.achievement {
  background: var(--vintage-beige);
  padding: 40px 32px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 5px 5px 0 var(--vintage-brown);
  position: relative;
}

.achievement::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 2px dashed var(--vintage-tan);
  border-radius: 4px;
}

.achievement h3 {
  font-size: 48px;
  color: var(--vintage-rust);
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 0 var(--vintage-tan);
}

.achievement p {
  font-size: 16px;
  color: var(--vintage-brown);
  font-weight: 600;
}

/* === PORTFOLIO & PROJECTS === */
.portfolio-grid,
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.project-card {
  background: var(--vintage-cream);
  padding: 32px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  flex: 1 1 340px;
  max-width: 380px;
  box-shadow: 6px 6px 0 var(--vintage-brown);
  transition: all 0.3s ease;
  margin-bottom: 24px;
  position: relative;
}

.project-card:hover {
  box-shadow: 3px 3px 0 var(--vintage-brown);
  transform: translate(3px, 3px);
}

.project-card h3 {
  font-size: 22px;
  color: var(--vintage-brown);
  margin-bottom: 12px;
}

.project-card .project-type {
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: var(--vintage-teal);
  font-weight: 600;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: var(--vintage-beige);
  border: 1px solid var(--vintage-tan);
  border-radius: 4px;
  display: inline-block;
}

.project-card p {
  font-size: 15px;
  color: var(--vintage-dark-brown);
  margin-bottom: 12px;
}

.project-card .timeline,
.project-card .investment,
.project-card .result {
  font-size: 14px;
  padding: 8px 12px;
  background: var(--vintage-beige);
  border-left: 4px solid var(--vintage-mustard);
  margin-bottom: 8px;
  font-weight: 600;
}

/* === STATS === */
.results-stats {
  background: var(--vintage-beige);
  padding: 60px 20px;
}

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

.stat-card,
.stat {
  background: var(--vintage-cream);
  padding: 40px 32px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  text-align: center;
  flex: 1 1 240px;
  max-width: 280px;
  box-shadow: 5px 5px 0 var(--vintage-brown);
}

.stat-card h3,
.stat h3 {
  font-size: 56px;
  color: var(--vintage-rust);
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
  text-shadow: 3px 3px 0 var(--vintage-tan);
}

.stat-card p,
.stat p {
  font-size: 16px;
  color: var(--vintage-brown);
  font-weight: 600;
}

/* === PLATFORMS & TECHNOLOGIES === */
.platform-ecosystem,
.technology-categories {
  background: var(--vintage-cream);
}

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

.platform-card,
.category-card {
  background: var(--vintage-beige);
  padding: 32px 24px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  text-align: center;
  flex: 1 1 260px;
  max-width: 300px;
  box-shadow: 4px 4px 0 var(--vintage-brown);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.platform-card:hover,
.category-card:hover {
  box-shadow: 2px 2px 0 var(--vintage-brown);
  transform: translate(2px, 2px);
}

.platform-card h3,
.category-card h3 {
  font-size: 20px;
  color: var(--vintage-brown);
  margin-bottom: 12px;
}

.platform-card p,
.category-card p {
  font-size: 14px;
  color: var(--vintage-dark-brown);
}

/* === BLOG === */
.blog-categories {
  background: var(--vintage-beige);
  padding: 40px 20px;
}

.category-tag {
  background: var(--vintage-cream);
  color: var(--vintage-brown);
  padding: 10px 20px;
  border: 2px solid var(--vintage-brown);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin: 8px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 0 var(--vintage-brown);
}

.category-tag:hover {
  background: var(--vintage-rust);
  color: #FFF;
  box-shadow: 1px 1px 0 var(--vintage-brown);
  transform: translate(1px, 1px);
}

.blog-grid {
  background: var(--vintage-cream);
}

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

.article-card {
  background: var(--vintage-beige);
  padding: 32px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  flex: 1 1 340px;
  max-width: 380px;
  box-shadow: 5px 5px 0 var(--vintage-brown);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.article-card:hover {
  box-shadow: 2px 2px 0 var(--vintage-brown);
  transform: translate(3px, 3px);
}

.article-card h3 {
  font-size: 20px;
  color: var(--vintage-brown);
  margin-bottom: 12px;
}

.article-card .meta {
  font-size: 12px;
  color: var(--vintage-teal);
  margin-bottom: 16px;
  font-style: italic;
}

.article-card p {
  font-size: 15px;
  color: var(--vintage-dark-brown);
}

/* === NEWSLETTER === */
.newsletter {
  background: var(--vintage-tan);
  text-align: center;
  padding: 60px 20px;
  border-top: 4px solid var(--vintage-brown);
  border-bottom: 4px solid var(--vintage-brown);
}

.newsletter h2 {
  color: var(--vintage-dark-brown);
  margin-bottom: 16px;
}

.newsletter p {
  font-size: 18px;
  color: var(--vintage-brown);
  margin-bottom: 12px;
}

.newsletter .benefits {
  font-size: 14px;
  font-style: italic;
  color: var(--vintage-dark-brown);
}

/* === CONTACT === */
.contact-methods {
  background: var(--vintage-cream);
}

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

.method-card {
  background: var(--vintage-beige);
  padding: 32px 24px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 340px;
  box-shadow: 5px 5px 0 var(--vintage-brown);
  margin-bottom: 24px;
}

.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  filter: sepia(0.4);
}

.method-card h3 {
  font-size: 20px;
  color: var(--vintage-brown);
  margin-bottom: 12px;
}

.method-card p {
  font-size: 15px;
  color: var(--vintage-dark-brown);
  margin-bottom: 8px;
}

.method-card .note {
  font-size: 13px;
  color: var(--vintage-teal);
  font-style: italic;
}

.contact-info,
.service-areas,
.business-info {
  background: var(--vintage-beige);
  padding: 40px 20px;
}

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

.info-block {
  background: var(--vintage-cream);
  padding: 24px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  flex: 1 1 280px;
  max-width: 360px;
  box-shadow: 3px 3px 0 var(--vintage-brown);
}

.info-block h3 {
  font-size: 18px;
  color: var(--vintage-brown);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--vintage-tan);
  padding-bottom: 8px;
}

.info-block p {
  font-size: 15px;
  color: var(--vintage-dark-brown);
  line-height: 1.8;
}

/* === LEGAL CONTENT === */
.legal-content {
  background: var(--vintage-cream);
  padding: 60px 20px;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h2 {
  text-align: left;
  font-size: 28px;
  color: var(--vintage-brown);
  margin-top: 32px;
  margin-bottom: 16px;
  border-bottom: 3px solid var(--vintage-tan);
  padding-bottom: 8px;
}

.legal-content h3 {
  text-align: left;
  font-size: 20px;
  color: var(--vintage-brown);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--vintage-dark-brown);
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 32px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: var(--vintage-dark-brown);
}

/* === THANK YOU PAGE === */
.success-icon {
  width: 100px;
  height: 100px;
  background: var(--vintage-olive);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  margin: 0 auto 32px;
  border: 4px solid var(--vintage-brown);
  box-shadow: 6px 6px 0 var(--vintage-brown);
}

.next-steps,
.confirmation-details,
.while-waiting,
.social-proof,
.back-home,
.confirmation,
.back-link {
  background: var(--vintage-cream);
  padding: 60px 20px;
}

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

.step {
  background: var(--vintage-beige);
  padding: 32px 24px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
  box-shadow: 4px 4px 0 var(--vintage-brown);
  margin-bottom: 24px;
}

.step h3 {
  font-size: 48px;
  color: var(--vintage-rust);
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}

.step p {
  font-size: 15px;
  color: var(--vintage-dark-brown);
}

.confirmation-details h2,
.while-waiting h2,
.social-proof h2 {
  text-align: center;
  margin-bottom: 24px;
}

.confirmation-details p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 12px;
}

.while-waiting ul {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}

.while-waiting li {
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
}

.while-waiting li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--vintage-rust);
  font-weight: 700;
  font-size: 20px;
}

.while-waiting a {
  color: var(--vintage-teal);
  text-decoration: underline;
  font-weight: 600;
}

.while-waiting a:hover {
  color: var(--vintage-rust);
}

.back-home,
.back-link {
  text-align: center;
  padding: 40px 20px;
}

/* === FOOTER === */
footer {
  background: linear-gradient(180deg, var(--vintage-brown) 0%, var(--vintage-dark-brown) 100%);
  color: var(--vintage-cream);
  padding: 60px 20px 20px;
  border-top: 4px solid var(--vintage-rust);
}

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

.footer-column {
  flex: 1 1 240px;
  max-width: 320px;
}

.footer-column img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) sepia(0.3);
}

.footer-column h4 {
  font-size: 18px;
  color: var(--vintage-mustard);
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
  border-bottom: 2px solid var(--vintage-tan);
  padding-bottom: 8px;
}

.footer-column p {
  font-size: 14px;
  color: var(--vintage-cream);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-column nav a {
  color: var(--vintage-cream);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 16px;
  position: relative;
}

.footer-column nav a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--vintage-mustard);
  transition: transform 0.3s ease;
}

.footer-column nav a:hover {
  color: var(--vintage-mustard);
}

.footer-column nav a:hover::before {
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 2px solid var(--vintage-tan);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom nav a {
  font-size: 13px;
  color: var(--vintage-beige);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom nav a:hover {
  color: var(--vintage-mustard);
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vintage-brown);
  color: var(--vintage-cream);
  padding: 24px;
  box-shadow: 0 -4px 16px var(--shadow-vintage);
  z-index: 1000;
  border-top: 4px solid var(--vintage-rust);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  color: var(--vintage-cream);
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 10px 20px;
  border-radius: 4px;
  border: 2px solid var(--vintage-cream);
  font-family: 'Georgia', serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cookie-accept {
  background: var(--vintage-olive);
  color: #FFF;
  border-color: var(--vintage-olive);
}

.cookie-accept:hover {
  background: #5A9E23;
}

.cookie-reject {
  background: var(--vintage-rust);
  color: #FFF;
  border-color: var(--vintage-rust);
}

.cookie-reject:hover {
  background: #D44536;
}

.cookie-settings {
  background: transparent;
  color: var(--vintage-cream);
}

.cookie-settings:hover {
  background: var(--vintage-beige);
  color: var(--vintage-brown);
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 24, 16, 0.8);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: var(--vintage-cream);
  border: 4px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 8px 8px 0 var(--vintage-brown);
  position: relative;
}

.cookie-modal h2 {
  color: var(--vintage-brown);
  margin-bottom: 24px;
  text-align: left;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: var(--vintage-beige);
  border: 2px solid var(--vintage-tan);
  border-radius: 4px;
}

.cookie-category h3 {
  font-size: 18px;
  color: var(--vintage-brown);
  margin-bottom: 8px;
}

.cookie-category p {
  font-size: 14px;
  color: var(--vintage-dark-brown);
  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 {
  font-size: 14px;
  font-weight: 600;
  color: var(--vintage-brown);
  cursor: pointer;
}

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

.cookie-save,
.cookie-close {
  flex: 1 1 140px;
  padding: 12px 24px;
  border-radius: 4px;
  border: 2px solid var(--vintage-brown);
  font-family: 'Georgia', serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cookie-save {
  background: var(--vintage-olive);
  color: #FFF;
}

.cookie-save:hover {
  background: #5A9E23;
}

.cookie-close {
  background: var(--vintage-beige);
  color: var(--vintage-brown);
}

.cookie-close:hover {
  background: var(--vintage-tan);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .benefits-grid,
  .services-grid,
  .services-list,
  .testimonials-grid,
  .values-grid,
  .achievements-grid,
  .projects-grid,
  .stats-grid,
  .platforms-grid,
  .categories-grid,
  .articles-grid,
  .methods-grid,
  .info-grid,
  .steps-grid {
    gap: 20px;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .value-card,
  .achievement,
  .project-card,
  .stat-card,
  .stat,
  .platform-card,
  .category-card,
  .article-card,
  .method-card,
  .info-block,
  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom nav {
    flex-direction: column;
    gap: 12px;
  }
  
  .cookie-consent .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
}

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

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

.benefit-card,
.service-card,
.testimonial-card,
.value-card,
.achievement,
.project-card,
.article-card {
  animation: fadeIn 0.6s ease forwards;
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* === PRINT STYLES === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    background: white;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}