/* ============================================
   SOLARPEAK ENERGY - MODERN BOLD CSS
   Design Style: Bold Modern with Strong Typography
   ============================================ */

/* ============================================
   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', Arial, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   TYPOGRAPHY - BOLD & STRONG
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

strong {
  font-weight: 700;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

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

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background: linear-gradient(135deg, #2B5F3F 0%, #1e4329 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

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

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

.main-nav a:hover {
  color: #F4A420;
}

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

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #2B5F3F;
  color: #ffffff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2B5F3F 0%, #1e4329 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #ffffff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background: #F4A420;
  transform: translateX(8px);
}

/* ============================================
   BUTTONS - BOLD & GEOMETRIC
   ============================================ */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  margin: 8px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #F4A420 0%, #d68900 100%);
  color: #1a1a1a;
  border: 3px solid #F4A420;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d68900 0%, #F4A420 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(244,164,32,0.4);
}

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

.btn-secondary:hover {
  background: #2B5F3F;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(43,95,63,0.3);
}

/* ============================================
   HERO SECTIONS - BOLD & IMPACTFUL
   ============================================ */

.hero {
  background: linear-gradient(135deg, #2B5F3F 0%, #1e4329 50%, #0f2314 100%);
  color: #ffffff;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="%23F4A420" fill-opacity="0.05" width="50" height="50"/><rect fill="%23F4A420" fill-opacity="0.05" x="50" y="50" width="50" height="50"/></svg>');
  opacity: 0.3;
}

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

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

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

.trust-indicators {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.trust-indicators span {
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(244,164,32,0.2);
  border-radius: 8px;
  border-left: 4px solid #F4A420;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-simple {
  background: linear-gradient(135deg, #2B5F3F 0%, #1e4329 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-simple h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-simple .hero-subheadline {
  color: #E8F4F0;
  max-width: 700px;
  margin: 0 auto;
}

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

.benefits-grid,
.services-grid,
.process-steps,
.testimonials-grid,
.stats-grid,
.values-grid,
.team-grid,
.packages-grid,
.guarantees-grid,
.portfolio-grid,
.categories-grid,
.contact-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 40px;
}

.benefit-card,
.service-card,
.testimonial-card,
.stat-card,
.value-card,
.team-member,
.package-card,
.guarantee-card,
.project-card,
.category-card,
.contact-card,
.resource-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.benefit-card::before,
.service-card::before,
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #F4A420 0%, #2B5F3F 100%);
  border-radius: 12px 0 0 12px;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.category-card:hover,
.contact-card:hover,
.resource-card:hover {
  transform: translateY(-8px);
  border-color: #F4A420;
  box-shadow: 0 12px 32px rgba(244,164,32,0.2);
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.category-card h3,
.contact-card h3 {
  color: #2B5F3F;
  margin-bottom: 16px;
  font-size: 22px;
}

.price {
  font-size: 28px;
  font-weight: 800;
  color: #F4A420;
  margin: 20px 0;
  display: block;
}

/* ============================================
   PROCESS STEPS - BOLD NUMBERS
   ============================================ */

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 6px solid #F4A420;
  margin-bottom: 20px;
  position: relative;
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: #F4A420;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.step h3 {
  color: #2B5F3F;
  margin-bottom: 12px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonial-card {
  background: #E8F4F0;
  border: 3px solid #2B5F3F;
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  font-weight: 900;
  color: #F4A420;
  line-height: 1;
}

.rating {
  color: #F4A420;
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
  font-weight: 700;
}

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

.client-name {
  font-weight: 700;
  color: #2B5F3F;
  font-size: 18px;
  margin-top: 20px;
}

.client-location,
.client-project {
  color: #666666;
  font-size: 14px;
}

/* ============================================
   STATS - BOLD NUMBERS
   ============================================ */

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, #2B5F3F 0%, #1e4329 100%);
  border-radius: 12px;
  border: 3px solid #F4A420;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #F4A420;
  display: block;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   CTA SECTIONS - HIGH IMPACT
   ============================================ */

.cta-banner,
.cta-contact,
.cta-consultation,
.cta-funding,
.cta-project,
.cta-guide {
  background: linear-gradient(135deg, #F4A420 0%, #d68900 100%);
  color: #1a1a1a;
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(244,164,32,0.3);
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-banner h2,
.cta-contact h2,
.cta-consultation h2 {
  color: #1a1a1a;
  font-size: 40px;
  margin-bottom: 20px;
}

.benefits-list,
.benefits-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.benefits-list li,
.benefits-checklist li {
  font-weight: 600;
  font-size: 18px;
  padding-left: 32px;
  position: relative;
}

.benefits-list li::before,
.benefits-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2B5F3F;
  font-weight: 900;
  font-size: 24px;
}

/* ============================================
   FORMS & CONTACT
   ============================================ */

.form-placeholder {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 3px solid #2B5F3F;
  margin-top: 32px;
}

.form-placeholder p {
  margin-bottom: 24px;
  font-size: 16px;
  color: #1a1a1a;
}

.form-placeholder strong {
  color: #2B5F3F;
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.form-note {
  background: #E8F4F0;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #F4A420;
  margin-bottom: 24px;
}

.contact-value {
  font-size: 24px;
  font-weight: 800;
  color: #F4A420;
  margin: 16px 0;
}

.availability,
.hours {
  color: #666666;
  font-size: 14px;
  font-weight: 600;
  margin: 8px 0;
}

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

.legal-page {
  padding: 40px 20px;
}

.legal-page h1 {
  color: #2B5F3F;
  margin-bottom: 32px;
}

.legal-page h2 {
  color: #2B5F3F;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-page h3 {
  color: #2B5F3F;
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

.legal-page li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-page dl {
  margin-bottom: 24px;
}

.legal-page dt {
  font-weight: 700;
  color: #2B5F3F;
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 18px;
}

.legal-page dd {
  margin-left: 24px;
  margin-bottom: 16px;
}

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

.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #2B5F3F 0%, #1e4329 100%);
  color: #ffffff;
  margin-bottom: 60px;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: #F4A420;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(244,164,32,0.4);
}

.thank-you-message {
  font-size: 20px;
  color: #E8F4F0;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

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

.footer-logo {
  height: 45px;
  margin-bottom: 16px;
}

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

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

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

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

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

.footer-bottom {
  border-top: 2px solid #333333;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #999999;
  font-size: 14px;
}

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

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

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

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

.cookie-banner-text {
  flex: 1 1 400px;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-banner button {
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept-all {
  background: #F4A420;
  color: #1a1a1a;
  border: 2px solid #F4A420;
}

.cookie-accept-all:hover {
  background: #d68900;
  transform: translateY(-2px);
}

.cookie-reject-all {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

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

.cookie-settings {
  background: transparent;
  color: #F4A420;
  border: 2px solid #F4A420;
}

.cookie-settings:hover {
  background: #F4A420;
  color: #1a1a1a;
}

/* ============================================
   COOKIE PREFERENCES MODAL
   ============================================ */

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

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

.cookie-modal-content {
  background: #ffffff;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  border: 4px solid #F4A420;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #E8F4F0;
  border-radius: 8px;
  border-left: 4px solid #2B5F3F;
}

.cookie-category h3 {
  color: #2B5F3F;
  margin-bottom: 12px;
  font-size: 20px;
}

.cookie-category p {
  color: #1a1a1a;
  margin-bottom: 12px;
}

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

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

/* ============================================
   ADDITIONAL COMPONENTS
   ============================================ */

.highlight-box {
  background: linear-gradient(135deg, #F4A420 0%, #d68900 100%);
  color: #1a1a1a;
  padding: 24px;
  border-radius: 12px;
  margin: 32px 0;
  border: 3px solid #2B5F3F;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(244,164,32,0.3);
}

.section-subtitle {
  font-size: 18px;
  color: #666666;
  text-align: center;
  margin-bottom: 32px;
}

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

.stats-inline span {
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(244,164,32,0.2);
  border-radius: 8px;
  border-left: 4px solid #F4A420;
}

.mission {
  font-size: 20px;
  font-weight: 700;
  color: #2B5F3F;
  padding: 24px;
  background: #E8F4F0;
  border-radius: 12px;
  border-left: 6px solid #F4A420;
  margin: 32px 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 6px solid #F4A420;
}

.milestone .year {
  font-size: 32px;
  font-weight: 900;
  color: #F4A420;
  min-width: 100px;
}

.certifications-list,
.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.certifications-list li,
.services-list li {
  padding: 16px 20px;
  background: #E8F4F0;
  border-radius: 8px;
  border-left: 4px solid #2B5F3F;
  font-weight: 600;
}

.success-rate,
.environmental-impact {
  font-size: 20px;
  font-weight: 700;
  color: #2B5F3F;
  text-align: center;
  padding: 24px;
  background: #E8F4F0;
  border-radius: 12px;
  margin-top: 32px;
  border: 3px solid #F4A420;
}

.key-points {
  margin-left: 24px;
  margin-top: 16px;
}

.key-points li {
  margin-bottom: 12px;
  padding-left: 8px;
  border-left: 3px solid #F4A420;
}

.content-block {
  margin-bottom: 40px;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.service-card-detailed {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-left: 6px solid #F4A420;
  margin-bottom: 32px;
}

.service-card-detailed h2 {
  color: #2B5F3F;
  margin-bottom: 20px;
}

.service-card-detailed ul {
  margin: 24px 0;
  margin-left: 24px;
}

.service-card-detailed li {
  margin-bottom: 12px;
  padding-left: 8px;
  border-left: 3px solid #2B5F3F;
}

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

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .benefit-card,
  .service-card,
  .stat-card,
  .value-card,
  .team-member,
  .package-card,
  .guarantee-card,
  .project-card,
  .step {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-banner-buttons {
    width: 100%;
  }
  
  .cookie-banner button {
    flex: 1;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .milestone {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .value-card,
  .team-member,
  .package-card,
  .guarantee-card,
  .project-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat-card,
  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (min-width: 1025px) {
  .stat-card {
    flex: 1 1 calc(25% - 24px);
  }
  
  .step {
    flex: 1 1 calc(33.333% - 24px);
  }
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  animation: fadeIn 0.8s ease-out;
}

.benefit-card,
.service-card {
  animation: scaleIn 0.6s ease-out;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .btn {
    border: 2px solid #000;
  }
}