/* ===================================
   EKOSMART DOMOV - GEOMETRIC STRUCTURED CSS
   Design Style: Geometric & Structured
   =================================== */

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

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

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

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 {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

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

li {
  margin-bottom: 8px;
}

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

a:hover {
  color: #2D7A4F;
}

strong {
  font-weight: 700;
}

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

/* HEADER */
header {
  background: #ffffff;
  border-bottom: 3px solid #1D5336;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

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

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

.header-cta {
  display: flex;
  align-items: center;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #1D5336;
  color: #ffffff !important;
  border-color: #1D5336;
}

.btn-primary:hover {
  background: #2D7A4F;
  border-color: #2D7A4F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 83, 54, 0.3);
}

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

.btn-secondary:hover {
  background: #1D5336;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 83, 54, 0.2);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #1D5336;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 16px rgba(0,0,0,0.2);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #1D5336;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #1D5336;
  border-left-color: #1D5336;
  padding-left: 24px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-bottom: 4px solid #1D5336;
  padding: 60px 20px;
  margin-bottom: 60px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #D68A3D;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  color: #1a1a1a;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

.trust-indicators span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1D5336;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border: 2px solid #1D5336;
  background: #ffffff;
}

/* BREADCRUMBS */
.breadcrumbs {
  font-size: 14px;
  margin-bottom: 24px;
  color: #666;
}

.breadcrumbs a {
  color: #1D5336;
}

.breadcrumbs span {
  color: #1a1a1a;
}

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

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

/* PROBLEM-SOLUTION */
.problem-solution {
  background: #f9f9f9;
  border-top: 3px solid #1D5336;
  border-bottom: 3px solid #1D5336;
}

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

.problem,
.solution {
  flex: 1;
  min-width: 280px;
  padding: 32px;
  background: #ffffff;
  border: 3px solid #e0e0e0;
}

.problem h2,
.solution h2 {
  color: #1D5336;
  border-bottom: 3px solid #D68A3D;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.solution ul {
  list-style: none;
  padding-left: 0;
}

.solution ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
}

.solution ul li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #1D5336;
  font-size: 24px;
  line-height: 1;
}

/* SERVICES/PRODUCTS GRID */
.services-grid,
.product-grid,
.benefits-grid,
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card,
.product-card,
.benefit-item,
.article-card {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  padding: 32px;
  background: #ffffff;
  border: 3px solid #e0e0e0;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover,
.product-card:hover,
.article-card:hover {
  border-color: #1D5336;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card h3,
.product-card h3,
.benefit-item h3,
.article-card h3 {
  color: #1D5336;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 18px;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1D5336;
  margin: 16px 0;
}

.badge {
  display: inline-block;
  background: #D68A3D;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 16px;
}

.features {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.features li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  font-size: 14px;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1D5336;
  font-weight: 700;
}

/* BENEFITS */
.benefits {
  background: #f9f9f9;
  border-top: 3px solid #1D5336;
}

.benefit-item {
  background: #ffffff;
  text-align: center;
  padding: 40px 32px;
}

/* HOW IT WORKS */
.how-it-works {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-top: 3px solid #1D5336;
  border-bottom: 3px solid #1D5336;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: #ffffff;
  border-left: 4px solid #1D5336;
  position: relative;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #D68A3D;
  line-height: 1;
  min-width: 80px;
}

.step h3 {
  color: #1D5336;
  margin-bottom: 12px;
}

/* SOCIAL PROOF */
.social-proof {
  background: #1D5336;
  color: #ffffff;
  text-align: center;
}

.social-proof h2 {
  color: #ffffff;
}

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

.stat {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  padding: 24px;
  border: 3px solid #ffffff;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #D68A3D;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* TESTIMONIALS */
.testimonials {
  background: #f9f9f9;
}

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

.testimonial-card {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  padding: 32px;
  background: #ffffff;
  border: 3px solid #e0e0e0;
  border-left: 4px solid #D68A3D;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.testimonial-card .author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #1D5336;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA SECTIONS */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1D5336 0%, #2D7A4F 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  border-top: 4px solid #D68A3D;
  border-bottom: 4px solid #D68A3D;
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
}

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

.guarantee,
.benefits-list {
  margin-top: 32px;
  font-size: 14px;
  opacity: 0.9;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.benefits-list li {
  padding-left: 28px;
  position: relative;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #D68A3D;
}

/* PACKAGES */
.packages {
  background: #f9f9f9;
}

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

.package-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding: 40px 32px;
  background: #ffffff;
  border: 3px solid #e0e0e0;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.package-card.featured {
  border-color: #D68A3D;
  border-width: 4px;
  transform: scale(1.05);
}

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

.package-card .label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #D68A3D;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.discount {
  font-size: 16px;
  color: #666;
  text-decoration: line-through;
}

.savings {
  font-size: 14px;
  color: #1D5336;
  font-weight: 600;
  margin-top: 16px;
}

/* STORY/VALUES */
.story,
.values {
  background: #ffffff;
}

.timeline {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.milestone {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
  border: 3px solid #e0e0e0;
  position: relative;
}

.year {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #D68A3D;
  margin-bottom: 12px;
  display: block;
}

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

.value-item {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  padding: 32px;
  background: #ffffff;
  border: 3px solid #e0e0e0;
  border-top: 4px solid #1D5336;
  text-align: center;
  margin-bottom: 20px;
}

/* TEAM */
.team {
  background: #f9f9f9;
}

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

.team-member,
.team-contact {
  flex: 1;
  min-width: 260px;
  max-width: 350px;
  padding: 32px;
  background: #ffffff;
  border: 3px solid #e0e0e0;
  text-align: center;
  margin-bottom: 20px;
}

.role {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #D68A3D;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* BLOG */
.blog-featured {
  background: #f9f9f9;
  border-left: 4px solid #D68A3D;
  padding: 40px 20px;
  margin-bottom: 60px;
}

.featured-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: #ffffff;
  border: 3px solid #e0e0e0;
}

.meta {
  font-size: 14px;
  color: #666;
  margin-top: 16px;
}

.newsletter {
  background: linear-gradient(135deg, #1D5336 0%, #2D7A4F 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  border-top: 4px solid #D68A3D;
}

.newsletter h2 {
  color: #ffffff;
}

.subscribers {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 24px;
}

/* CONTACT */
.contact-options {
  background: #f9f9f9;
}

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

.contact-card {
  flex: 1;
  min-width: 260px;
  padding: 32px;
  background: #ffffff;
  border: 3px solid #e0e0e0;
  border-top: 4px solid #1D5336;
  text-align: center;
  margin-bottom: 20px;
}

.contact-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1D5336;
  margin: 16px 0;
}

.hours {
  background: #f9f9f9;
  padding: 24px;
  border: 3px solid #e0e0e0;
  margin: 24px 0;
  max-width: 500px;
}

.consultation {
  background: #f9f9f9;
  border-top: 3px solid #1D5336;
}

/* COMPARISON TABLE */
.comparison-table {
  background: #f9f9f9;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 3px solid #e0e0e0;
  margin-top: 32px;
}

thead {
  background: #1D5336;
  color: #ffffff;
}

th, td {
  padding: 16px;
  text-align: left;
  border: 1px solid #e0e0e0;
}

th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

tbody tr:nth-child(even) {
  background: #f9f9f9;
}

/* COMPARISON COLS */
.comparison {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.comparison-col {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  padding: 32px;
  background: #ffffff;
  border: 3px solid #e0e0e0;
}

.comparison-col.highlight {
  border-color: #1D5336;
  border-width: 4px;
  background: #f5faf7;
}

.total {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1D5336;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 3px solid #e0e0e0;
}

.roi-info {
  margin-top: 32px;
  padding: 24px;
  background: #f9f9f9;
  border-left: 4px solid #D68A3D;
}

/* MAIN BENEFITS */
.main-benefits {
  background: #ffffff;
}

.intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.benefit-large {
  flex: 1;
  min-width: 280px;
  max-width: 560px;
  padding: 40px;
  background: #f9f9f9;
  border: 3px solid #e0e0e0;
  border-left: 4px solid #1D5336;
  margin-bottom: 20px;
}

.highlight {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1D5336;
  margin-bottom: 16px;
}

.financial-breakdown {
  background: #f9f9f9;
  border-top: 3px solid #1D5336;
}

/* LEGAL PAGES */
.legal-page {
  background: #ffffff;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 32px;
  background: #f9f9f9;
  border: 3px solid #e0e0e0;
}

.legal-content h2 {
  color: #1D5336;
  border-bottom: 3px solid #D68A3D;
  padding-bottom: 12px;
  margin-top: 40px;
  margin-bottom: 24px;
}

.legal-content h3 {
  color: #2D7A4F;
  margin-top: 24px;
}

.last-updated {
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
}

/* THANK YOU PAGE */
.thank-you {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #ffffff;
  border: 4px solid #1D5336;
}

.thank-you h1 {
  color: #1D5336;
  font-size: 56px;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 24px;
  color: #D68A3D;
  margin-bottom: 24px;
  font-weight: 600;
}

.next-steps,
.while-waiting {
  margin-top: 48px;
  text-align: left;
}

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

.step,
.action-card {
  flex: 1;
  min-width: 240px;
  padding: 24px;
  background: #f9f9f9;
  border: 3px solid #e0e0e0;
  border-left: 4px solid #1D5336;
}

.urgent-contact {
  margin-top: 40px;
  padding: 32px;
  background: #fff9f0;
  border: 3px solid #D68A3D;
}

.testimonial-box {
  margin-top: 40px;
  padding: 32px;
  background: #f9f9f9;
  border-left: 4px solid #D68A3D;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 16px;
}

/* FOOTER */
footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 32px;
  border-top: 4px solid #D68A3D;
}

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

.footer-col {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

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

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

.footer-col a {
  color: #cccccc;
  font-size: 14px;
}

.footer-col a:hover {
  color: #D68A3D;
}

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

.tagline {
  font-size: 14px;
  color: #999;
  font-style: italic;
  margin-top: 12px;
}

.footer-bottom {
  border-top: 2px solid #333;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  font-size: 13px;
  color: #999;
}

.legal-links a:hover {
  color: #D68A3D;
}

.copyright {
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
  z-index: 1500;
  border-top: 3px solid #D68A3D;
  display: none;
}

.cookie-banner.active {
  display: block;
}

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

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text p {
  font-size: 14px;
  margin-bottom: 8px;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.cookie-btn.accept {
  background: #1D5336;
  color: #ffffff;
  border-color: #1D5336;
}

.cookie-btn.accept:hover {
  background: #2D7A4F;
  border-color: #2D7A4F;
}

.cookie-btn.reject {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-btn.reject:hover {
  background: #ffffff;
  color: #1a1a1a;
}

.cookie-btn.settings {
  background: transparent;
  color: #D68A3D;
  border-color: #D68A3D;
}

.cookie-btn.settings:hover {
  background: #D68A3D;
  color: #ffffff;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 4px solid #1D5336;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f9f9f9;
  border-left: 4px solid #1D5336;
}

.cookie-category h3 {
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 12px;
}

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

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

.cookie-toggle label {
  font-weight: 600;
  color: #1a1a1a;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* MOBILE MENU */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* TYPOGRAPHY */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* LAYOUT */
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .content-grid {
    flex-direction: column;
  }
  
  .services-grid,
  .product-grid,
  .benefits-grid,
  .articles-grid,
  .packages-grid,
  .values-grid,
  .team-grid,
  .contact-grid,
  .stats-grid,
  .testimonials-grid,
  .benefits-large-grid,
  .comparison,
  .timeline,
  .steps-grid,
  .actions-grid {
    flex-direction: column;
  }
  
  .service-card,
  .product-card,
  .benefit-item,
  .article-card,
  .package-card,
  .value-item,
  .team-member,
  .contact-card,
  .stat,
  .testimonial-card,
  .benefit-large,
  .comparison-col,
  .milestone,
  .step,
  .action-card {
    max-width: 100%;
  }
  
  .package-card.featured {
    transform: scale(1);
  }
  
  .step {
    flex-direction: column;
  }
  
  .step-number {
    font-size: 32px;
  }
  
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-col {
    max-width: 100%;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  table {
    font-size: 14px;
  }
  
  th, td {
    padding: 12px 8px;
  }
}

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

.service-card,
.product-card,
.benefit-item,
.article-card,
.testimonial-card {
  animation: fadeIn 0.5s ease forwards;
}

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

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

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

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid #D68A3D;
  outline-offset: 2px;
}

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

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