/* =================================================================
   AeroVita - Geometric Structured Design Style CSS
   Modern Air Purifier Company - Complete Stylesheet
   ================================================================= */

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

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

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

/* TYPOGRAPHY - Geometric Structured Style
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #17252A;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

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

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

a:hover {
  color: #17252A;
}

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 - Geometric Structured
   ================================================================= */
header {
  background: linear-gradient(135deg, #17252A 0%, #2B7A78 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #2B7A78;
}

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

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #FEFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #FEFFFF;
  border: 2px solid #2B7A78;
  background-color: rgba(43, 122, 120, 0.2);
  transform: translateY(-2px);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FEFFFF;
  font-weight: 600;
  padding: 10px 20px;
  background-color: rgba(43, 122, 120, 0.3);
  border: 2px solid #2B7A78;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

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

/* MOBILE MENU - Burger Navigation
   ================================================================= */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background-color: #2B7A78;
  color: #FEFFFF;
  border: 2px solid #17252A;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #17252A 0%, #2B7A78 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #2B7A78;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background-color: transparent;
  color: #FEFFFF;
  border: 2px solid #FEFFFF;
  padding: 8px 16px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.mobile-menu-close:hover {
  background-color: #FEFFFF;
  color: #17252A;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FEFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.mobile-nav a:hover {
  background-color: #2B7A78;
  border: 2px solid #FEFFFF;
  transform: translateX(-8px);
}

/* BUTTONS - Geometric Angular Design
   ================================================================= */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.btn-primary {
  background-color: #2B7A78;
  color: #FEFFFF;
  border-color: #17252A;
}

.btn-primary:hover {
  background-color: #17252A;
  color: #FEFFFF;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(43, 122, 120, 0.4);
}

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

.btn-secondary:hover {
  background-color: #2B7A78;
  color: #FEFFFF;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(43, 122, 120, 0.3);
}

/* HERO SECTION - Geometric Layout
   ================================================================= */
.hero {
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  color: #FEFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(255, 255, 255, 0.05);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, 20px) rotate(90deg); }
  50% { transform: translate(0, 40px) rotate(180deg); }
  75% { transform: translate(-20px, 20px) rotate(270deg); }
}

.hero h1 {
  color: #FEFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

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

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

.trust-badges span {
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid #FEFFFF;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

/* PAGE HERO - Breadcrumbs
   ================================================================= */
.page-hero {
  background: linear-gradient(135deg, #17252A 0%, #2B7A78 100%);
  color: #FEFFFF;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
}

.page-hero h1 {
  color: #FEFFFF;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs a {
  color: #FEFFFF;
  text-decoration: underline;
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.7);
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}

/* CARD LAYOUTS - Geometric Design
   ================================================================= */
.benefits-grid,
.products-grid,
.testimonials-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.benefit-card,
.product-card,
.testimonial-card,
.stat-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FEFFFF;
  border: 3px solid #2B7A78;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.benefit-card:hover,
.product-card:hover,
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(43, 122, 120, 0.3);
  border-color: #17252A;
}

.benefit-card img,
.product-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: invert(48%) sepia(30%) saturate(1000%) hue-rotate(140deg);
}

.benefit-card h3,
.product-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #2B7A78;
  color: #FEFFFF;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.product-features {
  font-size: 14px;
  color: #2B7A78;
  font-weight: 600;
  margin: 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #17252A;
  font-family: 'Montserrat', sans-serif;
  margin-top: 16px;
}

/* TESTIMONIALS - High Contrast for Readability
   ================================================================= */
.testimonials {
  background-color: #f8f9fa;
  padding: 60px 0;
  margin-bottom: 60px;
}

.testimonial-card {
  background-color: #FFFFFF;
  border: 3px solid #e0e0e0;
  padding: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

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

.testimonial-card .author {
  color: #2B7A78;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* STATS SECTION
   ================================================================= */
.stats {
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  clip-path: polygon(0 30px, 100% 0, 100% calc(100% - 30px), 0 100%);
}

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

.stat-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 3px solid #FEFFFF;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #FEFFFF;
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  color: #FEFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* CTA BANNER - Geometric Emphasis
   ================================================================= */
.cta-banner {
  background: linear-gradient(135deg, #17252A 0%, #2B7A78 100%);
  color: #FEFFFF;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 30px, 100% 0, 100% calc(100% - 30px), 0 100%);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.cta-banner h2 {
  color: #FEFFFF;
  margin-bottom: 24px;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 16px;
}

.cta-banner .subtitle {
  font-size: 16px;
  margin-bottom: 32px;
  opacity: 0.9;
}

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

.trust-elements span {
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid #FEFFFF;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

/* TEXT SECTIONS
   ================================================================= */
.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

.text-section p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.section-subtitle {
  font-size: 18px;
  color: #2B7A78;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

/* GRIDS & FLEXBOX LAYOUTS
   ================================================================= */
.values-grid,
.guide-grid,
.groups-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.value-card,
.guide-card,
.group-card,
.method-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FEFFFF;
  border: 3px solid #2B7A78;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.value-card:hover,
.group-card:hover,
.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(43, 122, 120, 0.3);
}

.value-card img,
.method-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: invert(48%) sepia(30%) saturate(1000%) hue-rotate(140deg);
}

.group-card .recommended,
.stats {
  font-size: 14px;
  color: #2B7A78;
  font-weight: 600;
  margin-top: 16px;
  padding: 12px;
  background-color: rgba(43, 122, 120, 0.1);
  border-left: 4px solid #2B7A78;
}

/* MISSION & VISION
   ================================================================= */
.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.mission-card,
.vision-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  color: #FEFFFF;
  padding: 40px;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.mission-card h2,
.vision-card h2 {
  color: #FEFFFF;
  margin-bottom: 20px;
}

/* TIMELINE
   ================================================================= */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background-color: #FEFFFF;
  border-left: 6px solid #2B7A78;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(12px);
  box-shadow: 0 8px 24px rgba(43, 122, 120, 0.2);
}

.timeline-item .year {
  font-size: 32px;
  font-weight: 700;
  color: #2B7A78;
  font-family: 'Montserrat', sans-serif;
  min-width: 100px;
}

/* COMPARISON TABLE
   ================================================================= */
.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-item {
  background-color: #FEFFFF;
  border: 3px solid #2B7A78;
  padding: 24px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.comparison-item h3 {
  color: #17252A;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comparison-item .without {
  color: #c0392b;
  padding: 12px;
  margin-bottom: 12px;
  background-color: rgba(192, 57, 43, 0.1);
  border-left: 4px solid #c0392b;
  font-weight: 600;
}

.comparison-item .with {
  color: #27ae60;
  padding: 12px;
  background-color: rgba(39, 174, 96, 0.1);
  border-left: 4px solid #27ae60;
  font-weight: 600;
}

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

.faq-item {
  background-color: #FEFFFF;
  border: 3px solid #2B7A78;
  padding: 32px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(43, 122, 120, 0.2);
  transform: translateY(-4px);
}

.faq-item h3 {
  color: #2B7A78;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CONTACT SECTIONS
   ================================================================= */
.contact-note {
  background-color: rgba(43, 122, 120, 0.1);
  border: 3px solid #2B7A78;
  border-left-width: 8px;
  padding: 32px;
  margin: 40px auto;
  max-width: 800px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.contact-note p {
  margin-bottom: 16px;
}

.contact-note strong {
  color: #2B7A78;
  font-weight: 700;
}

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

.team-member {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #FEFFFF;
  border: 3px solid #2B7A78;
  padding: 32px;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  margin-bottom: 20px;
}

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

.team-member .role {
  color: #2B7A78;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.team-member .email {
  color: #2B7A78;
  font-weight: 600;
  margin-bottom: 16px;
  word-break: break-word;
}

.team-member .specialization {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* THANK YOU PAGE
   ================================================================= */
.thank-you-hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  color: #FEFFFF;
  margin-bottom: 60px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
}

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

.checkmark-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
}

.thank-you-hero h1 {
  color: #FEFFFF;
  font-size: 48px;
  margin-bottom: 20px;
}

.thank-you-hero .subtitle {
  font-size: 20px;
  margin-bottom: 24px;
  font-weight: 600;
}

.thank-you-hero .message {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.step-card,
.link-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #FEFFFF;
  border: 3px solid #2B7A78;
  padding: 32px;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 54px;
  background-color: #2B7A78;
  color: #FEFFFF;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.urgent-contact {
  background-color: rgba(43, 122, 120, 0.1);
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
}

.urgent-contact .headline {
  font-size: 24px;
  font-weight: 700;
  color: #2B7A78;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.urgent-contact .phone {
  font-size: 36px;
  font-weight: 700;
  color: #17252A;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 16px;
}

.urgent-contact .availability,
.urgent-contact .alternative {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
}

/* LEGAL CONTENT
   ================================================================= */
.legal-content {
  padding: 40px 0;
}

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

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content li {
  list-style-type: square;
  margin-bottom: 8px;
  color: #17252A;
}

/* FOOTER - Geometric Structured
   ================================================================= */
footer {
  background: linear-gradient(135deg, #17252A 0%, #2B7A78 100%);
  color: #FEFFFF;
  padding: 60px 0 0;
  margin-top: 60px;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}

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

.footer-column {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-column h3 {
  color: #FEFFFF;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 14px;
}

.footer-column a:hover {
  color: #FEFFFF;
  text-decoration: underline;
}

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

.tagline {
  font-weight: 600;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #FEFFFF;
  text-decoration: underline;
}

/* COOKIE CONSENT BANNER
   ================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #17252A 0%, #2B7A78 100%);
  color: #FEFFFF;
  padding: 24px;
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #2B7A78;
}

.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 60%;
  min-width: 300px;
}

.cookie-text p {
  margin-bottom: 0;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #FEFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.cookie-accept {
  background-color: #FEFFFF;
  color: #2B7A78;
}

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

.cookie-reject {
  background-color: transparent;
  color: #FEFFFF;
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cookie-settings {
  background-color: transparent;
  color: #FEFFFF;
}

.cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* COOKIE PREFERENCES MODAL
   ================================================================= */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cookie-modal-content {
  background-color: #FEFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 4px solid #2B7A78;
  max-height: 90vh;
  overflow-y: auto;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #2B7A78;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: rgba(43, 122, 120, 0.05);
  border-left: 4px solid #2B7A78;
}

.cookie-category h3 {
  color: #17252A;
  margin-bottom: 12px;
  font-size: 18px;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background-color: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background-color: #2B7A78;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FEFFFF;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* RESPONSIVE DESIGN - Mobile First
   ================================================================= */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
    letter-spacing: 1px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  /* Header & Navigation */
  .main-nav,
  .header-contact {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  header {
    padding: 16px 0;
  }

  .logo {
    height: 40px;
  }

  /* Hero */
  .hero {
    padding: 60px 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px));
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

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

  .trust-badges {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  /* Cards & Grids */
  .benefits-grid,
  .products-grid,
  .testimonials-grid,
  .stats-grid,
  .values-grid,
  .guide-grid,
  .groups-grid,
  .methods-grid,
  .team-grid,
  .steps-grid,
  .links-grid {
    flex-direction: column;
  }

  .benefit-card,
  .product-card,
  .testimonial-card,
  .stat-card,
  .value-card,
  .guide-card,
  .group-card,
  .method-card,
  .team-member,
  .step-card,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Mission & Vision */
  .mission-vision-grid {
    flex-direction: column;
  }

  .mission-card,
  .vision-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Timeline */
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .timeline-item .year {
    min-width: auto;
  }

  /* Page Hero */
  .page-hero {
    padding: 40px 0;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 60px 0;
  }

  .trust-elements {
    flex-direction: column;
    align-items: stretch;
  }

  /* Stats */
  .stat-number {
    font-size: 36px;
  }

  /* Footer */
  .footer-columns {
    flex-direction: column;
  }

  .footer-column {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
  }

  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }

  .cookie-text {
    flex: 1 1 100%;
    min-width: 100%;
  }

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

  .cookie-btn {
    width: 100%;
  }

  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .cookie-modal-buttons .btn {
    width: 100%;
  }

  /* Thank You Page */
  .thank-you-hero h1 {
    font-size: 32px;
  }

  .urgent-contact .phone {
    font-size: 28px;
  }
}

/* TABLET OPTIMIZATIONS
   ================================================================= */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .product-card,
  .value-card,
  .guide-card,
  .group-card,
  .method-card {
    flex: 1 1 calc(50% - 12px);
  }

  .stat-card {
    flex: 1 1 calc(50% - 12px);
  }

  .team-member,
  .step-card,
  .link-card {
    flex: 1 1 calc(50% - 12px);
  }
}

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

  body {
    background-color: white;
    color: black;
  }

  .hero,
  .page-hero,
  .cta-banner {
    background: white;
    color: black;
    clip-path: none;
  }
}

/* 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; }
.mb-5 { margin-bottom: 40px; }

.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; }
.mt-5 { margin-top: 40px; }

/* ACCESSIBILITY
   ================================================================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #2B7A78;
  outline-offset: 2px;
}

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

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

/* SMOOTH SCROLLING FOR ANCHOR LINKS
   ================================================================= */
html {
  scroll-padding-top: 80px;
}

/* END OF STYLESHEET */