/* =================================================================
   LUMINOUS WHEEL - GEOMETRIC STRUCTURED DESIGN SYSTEM
   Design Style: Geometric shapes, structured grids, angular fonts
   ================================================================= */

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

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #212121;
  background-color: #FAFAFA;
  line-height: 1.6;
  overflow-x: hidden;
}

/* GEOMETRIC STRUCTURED TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #FFFFFF;
  padding: 16px 24px;
  display: inline-block;
  margin-bottom: 32px;
}

h2 {
  font-size: 32px;
  color: #1B5E20;
  position: relative;
  padding-left: 24px;
  border-left: 8px solid #FFA726;
  margin-bottom: 32px;
}

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

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

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

ul {
  list-style: none;
}

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

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

/* GEOMETRIC HEADER */
header {
  background: #FFFFFF;
  box-shadow: 0 4px 0 0 #FFA726;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #E0E0E0;
}

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

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: none;
  gap: 8px;
}

.main-nav a {
  padding: 12px 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #424242;
  background: #FFFFFF;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.main-nav a:hover {
  background: #E3F2FD;
  border-color: #2E7D32;
  transform: translateY(-2px);
}

.header-cta {
  display: none;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #2E7D32;
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  transition: all 0.3s ease;
  z-index: 1001;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 24px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 48px;
  height: 48px;
  background: #1B5E20;
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #212121;
  background: #F5F5F5;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: #E3F2FD;
  border-left-color: #2E7D32;
  padding-left: 28px;
}

/* GEOMETRIC BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  text-align: center;
}

.btn-primary {
  background: #2E7D32;
  color: #FFFFFF;
  border-color: #2E7D32;
  box-shadow: 4px 4px 0 0 #FFA726;
}

.btn-primary:hover {
  background: #1B5E20;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 #FFA726;
}

.btn-secondary {
  background: #FFFFFF;
  color: #2E7D32;
  border-color: #2E7D32;
  box-shadow: 4px 4px 0 0 #E3F2FD;
}

.btn-secondary:hover {
  background: #E3F2FD;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 #E3F2FD;
}

/* HERO SECTION - GEOMETRIC */
.hero {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 167, 38, 0.1);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transform: rotate(15deg);
}

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

.hero h1 {
  background: transparent;
  clip-path: none;
  padding: 0;
  color: #FFFFFF;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
}

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

.trust-indicators,
.key-metrics,
.stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.trust-indicators span,
.key-metrics span,
.stats-inline span {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

/* SECTION STYLING */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

/* GEOMETRIC GRID LAYOUTS - FLEXBOX ONLY */
.benefits-grid,
.services-grid,
.stats-grid,
.options-grid,
.approach-grid,
.guarantees-grid,
.packages-grid,
.solutions-grid,
.cases-grid,
.tech-grid,
.financing-options,
.ref-grid,
.regions-grid,
.categories-grid,
.posts-grid,
.areas-grid,
.expectations-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* GEOMETRIC CARDS */
.benefit-card,
.service-card,
.stat-item,
.option-card,
.approach-item,
.guarantee-item,
.package-card,
.solution-card,
.case-card,
.tech-item,
.financing-option,
.ref-card,
.region-item,
.category-item,
.post-card,
.area-item,
.expectation-item,
.resource-item {
  flex: 1 1 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  border-left: 6px solid #FFA726;
  box-shadow: 6px 6px 0 0 #E0E0E0;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.option-card:hover,
.approach-item:hover,
.guarantee-item:hover,
.package-card:hover,
.solution-card:hover,
.case-card:hover,
.tech-item:hover,
.financing-option:hover,
.ref-card:hover,
.category-item:hover,
.post-card:hover,
.area-item:hover,
.expectation-item:hover,
.resource-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 0 #E3F2FD;
  border-left-color: #2E7D32;
}

.benefit-card h3,
.service-card h3,
.approach-item h3,
.guarantee-item h3,
.package-card h3,
.solution-card h3,
.case-card h3,
.tech-item h3,
.financing-option h3,
.ref-card h3,
.category-item h3,
.post-card h3,
.area-item h3,
.expectation-item h3,
.resource-item h3 {
  color: #1B5E20;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p,
.service-card p,
.approach-item p,
.guarantee-item p,
.package-card p,
.solution-card p,
.case-card p,
.tech-item p,
.financing-option p,
.ref-card p,
.category-item p,
.post-card p,
.area-item p,
.expectation-item p,
.resource-item p {
  color: #424242;
  line-height: 1.6;
}

.price,
.solution-price,
.package-price {
  font-size: 24px;
  font-weight: 700;
  color: #FFA726;
  margin: 16px 0;
  display: inline-block;
  padding: 8px 16px;
  background: #FFF3E0;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.savings,
.ref-result,
.case-result {
  font-weight: 600;
  color: #2E7D32;
  background: #E8F5E9;
  padding: 8px 12px;
  display: inline-block;
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  margin-top: 8px;
}

/* STAT NUMBERS - GEOMETRIC */
.stat-item {
  text-align: center;
  border-left: none;
  border-bottom: 6px solid #FFA726;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #1B5E20;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
  text-shadow: 3px 3px 0 #E3F2FD;
}

/* STEPS - GEOMETRIC PROGRESSION */
.steps,
.timeline-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.step,
.timeline-item {
  flex: 1 1 200px;
  background: #FFFFFF;
  padding: 24px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  border-top: 6px solid #2E7D32;
  box-shadow: 4px 4px 0 0 #E0E0E0;
  position: relative;
  margin-bottom: 20px;
}

.step-number,
.year {
  width: 56px;
  height: 56px;
  background: #FFA726;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.step h3,
.timeline-item p {
  color: #1B5E20;
  margin-bottom: 12px;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials-grid,
.testimonials-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 400px;
  background: #FFFFFF;
  padding: 32px;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  border-left: 8px solid #2E7D32;
  box-shadow: 6px 6px 0 0 #E0E0E0;
  position: relative;
  margin-bottom: 20px;
}

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

.testimonial-author {
  color: #424242;
  font-weight: 600;
  font-style: normal;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #E0E0E0;
}

.testimonial-author strong {
  color: #1B5E20;
  display: block;
  margin-bottom: 4px;
}

.rating {
  color: #FFA726;
  font-size: 18px;
  margin-top: 12px;
}

/* FEATURED PROJECTS & POSTS */
.project-featured,
.post-card-featured {
  background: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  clip-path: polygon(0 0, 100% 0, 100% 98%, 0 100%);
  border-left: 10px solid #FFA726;
  box-shadow: 8px 8px 0 0 #E0E0E0;
}

.project-featured h3,
.post-card-featured h3 {
  color: #1B5E20;
  font-size: 24px;
  margin-bottom: 16px;
}

.project-featured blockquote {
  background: #E8F5E9;
  padding: 20px;
  margin-top: 24px;
  border-left: 4px solid #2E7D32;
  font-style: italic;
  color: #212121;
  clip-path: polygon(0 0, 100% 0, 99% 100%, 0 100%);
}

.post-meta {
  color: #757575;
  font-size: 14px;
  margin-top: 12px;
}

/* CTA SECTIONS */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  margin: 60px 0;
  position: relative;
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  border: none;
  padding: 0;
  margin-bottom: 20px;
}

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

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

.trust-note,
.guarantee {
  font-size: 14px;
  margin-top: 24px;
  opacity: 0.9;
}

/* FOOTER - GEOMETRIC */
footer {
  background: #212121;
  color: #BDBDBD;
  padding: 60px 20px 20px;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
  margin-top: 60px;
}

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

.footer-about,
.footer-contact,
.footer-links {
  flex: 1 1 250px;
}

.footer-about h3,
.footer-contact h3,
.footer-links h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  border-left: 4px solid #FFA726;
  padding-left: 12px;
}

.footer-about p,
.footer-contact p {
  color: #BDBDBD;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-links a {
  color: #BDBDBD;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: #FFA726;
  border-bottom-color: #FFA726;
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 2px solid #424242;
  text-align: center;
  color: #757575;
  font-size: 14px;
}

.footer-bottom p {
  margin-bottom: 8px;
}

/* LEGAL PAGES */
.legal-page {
  padding: 40px 20px;
  background: #FFFFFF;
}

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

.legal-page h1 {
  background: transparent;
  clip-path: none;
  color: #1B5E20;
  padding: 0;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper {
  background: #FAFAFA;
  padding: 32px;
  clip-path: polygon(0 0, 100% 0, 100% 99%, 0 100%);
  border-left: 6px solid #2E7D32;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

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

.checkmark {
  width: 80px;
  height: 80px;
  background: #FFA726;
  color: #FFFFFF;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  animation: checkmarkPulse 2s infinite;
}

@keyframes checkmarkPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.steps-list,
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  padding: 16px;
  clip-path: polygon(0 0, 100% 0, 99% 100%, 0 100%);
  border-left: 4px solid #2E7D32;
}

.step-icon {
  width: 32px;
  height: 32px;
  background: #FFA726;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  flex-shrink: 0;
}

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

/* COOKIE CONSENT BANNER - GEOMETRIC */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #212121;
  color: #FFFFFF;
  padding: 24px;
  z-index: 3000;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-consent-banner.show {
  transform: translateY(0);
}

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

.cookie-consent-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  border: 2px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #FFFFFF;
  color: #212121;
}

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

.cookie-btn-accept:hover {
  background: #1B5E20;
  border-color: #1B5E20;
  color: #FFFFFF;
}

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

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

#cookie-settings-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  clip-path: polygon(0 0, 100% 0, 100% 98%, 0 100%);
  max-height: 90vh;
  overflow-y: auto;
}

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

.cookie-category {
  padding: 20px;
  background: #F5F5F5;
  margin-bottom: 16px;
  clip-path: polygon(0 0, 100% 0, 99% 100%, 0 100%);
  border-left: 4px solid #2E7D32;
}

.cookie-category h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

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

.cookie-toggle.active {
  background: #2E7D32;
}

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

.cookie-toggle.active::after {
  left: 27px;
}

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

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

/* FORMS */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

input,
textarea,
select {
  width: 100%;
  padding: 16px;
  border: 2px solid #E0E0E0;
  background: #FAFAFA;
  font-family: inherit;
  font-size: 16px;
  clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
  transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #2E7D32;
  background: #FFFFFF;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 14px;
  color: #757575;
  line-height: 1.6;
  margin: 20px 0;
}

/* POPULAR LIST */
.popular-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popular-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #FFFFFF;
  clip-path: polygon(0 0, 100% 0, 99% 100%, 0 100%);
  border-left: 4px solid #FFA726;
  box-shadow: 4px 4px 0 0 #E0E0E0;
}

.popular-item h3 {
  margin: 0;
  font-size: 18px;
}

.views {
  color: #757575;
  font-size: 14px;
  font-weight: 600;
}

/* NEWSLETTER */
.newsletter {
  background: #E3F2FD;
  padding: 60px 20px;
  text-align: center;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  margin: 60px 0;
}

.newsletter-benefits {
  margin: 24px 0;
}

.newsletter-form {
  max-width: 500px;
  margin: 32px auto 0;
}

/* TIMELINE */
.timeline-content {
  position: relative;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 40px;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
  }
  
  .header-cta {
    display: block;
  }
  
  .hero {
    padding: 120px 20px;
  }
  
  .hero-cta {
    justify-content: flex-start;
  }
  
  .benefit-card,
  .service-card,
  .stat-item,
  .option-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (min-width: 1024px) {
  .benefit-card,
  .service-card,
  .approach-item,
  .guarantee-item {
    flex: 1 1 calc(25% - 24px);
  }
  
  .stat-item {
    flex: 1 1 calc(25% - 24px);
  }
  
  .solution-card,
  .package-card,
  .case-card,
  .tech-item,
  .financing-option {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .ref-card,
  .category-item,
  .post-card,
  .area-item {
    flex: 1 1 calc(33.333% - 24px);
  }
}

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

.hero-content,
.benefit-card,
.service-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

/* UTILITIES */
.text-center {
  text-align: center;
}

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

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

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

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

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  .btn {
    display: none;
  }
  
  body {
    background: #FFFFFF;
    color: #000000;
  }
}