/* ===================================
   SPRUNLINOS - INDUSTRIAL MODERN CSS
   Professional Insulation Services
   ================================== */

/* CSS RESET & BASE */
* {
  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;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #121212;
  overflow-x: hidden;
}

/* INDUSTRIAL MODERN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid #F4A259;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #cccccc;
}

p {
  margin-bottom: 16px;
  color: #cccccc;
  line-height: 1.7;
}

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

a:hover {
  color: #ffffff;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
  color: #cccccc;
}

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

strong {
  color: #F4A259;
  font-weight: 600;
}

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

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

/* HEADER */
header {
  background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid #2a2a2a;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(1.2) contrast(1.1);
}

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

.main-nav a {
  color: #cccccc;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F4A259;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

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

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

/* BUTTONS - INDUSTRIAL STYLE */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #F4A259;
  color: #121212;
  border-color: #F4A259;
  box-shadow: 0 4px 15px rgba(244, 162, 89, 0.3);
}

.btn-primary:hover {
  background: #ffffff;
  color: #121212;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

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

.btn-secondary:hover {
  background: #F4A259;
  color: #121212;
  transform: translateY(-2px);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #2a2a2a;
  color: #F4A259;
  border: 2px solid #F4A259;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #F4A259;
  color: #121212;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
  border-left: 3px solid #F4A259;
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #2a2a2a;
  color: #F4A259;
  border: 2px solid #F4A259;
  padding: 10px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #cccccc;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  padding: 16px 20px;
  border-bottom: 1px solid #2a2a2a;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.mobile-nav a:hover {
  background: #2a2a2a;
  color: #F4A259;
  padding-left: 30px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(244, 162, 89, 0.03) 10px,
    rgba(244, 162, 89, 0.03) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid #2a2a2a;
}

.trust-indicators span {
  color: #F4A259;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 20px;
}

.trust-indicators span::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4A259;
  font-weight: 700;
}

/* HERO INTERNAL */
.hero-internal {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 80px 20px 60px;
  position: relative;
  border-bottom: 3px solid #F4A259;
}

.hero-internal h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  color: #888;
}

.breadcrumbs a {
  color: #F4A259;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

/* CARDS & GRIDS - FLEXBOX ONLY */
.benefits-grid,
.services-grid,
.stats-grid,
.testimonials-grid,
.articles-grid,
.methods-grid,
.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.benefit-card,
.service-card,
.testimonial-card,
.article-card,
.method-card,
.reason-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #1a1a1a;
  padding: 32px;
  border-radius: 2px;
  border: 2px solid #2a2a2a;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.benefit-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #F4A259;
  transition: height 0.3s ease;
}

.benefit-card:hover,
.service-card:hover,
.article-card:hover,
.method-card:hover {
  border-color: #F4A259;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(244, 162, 89, 0.2);
}

.benefit-card:hover::before,
.service-card:hover::before {
  height: 100%;
}

.benefit-card h3,
.service-card h3,
.article-card h3 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 20px;
}

.benefit-card p,
.service-card p,
.article-card p {
  color: #cccccc;
  line-height: 1.6;
}

.service-card .price {
  color: #F4A259;
  font-weight: 700;
  font-size: 24px;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: #1a1a1a;
  padding: 60px 20px;
}

.testimonial-card {
  background: #2a2a2a;
  border: 2px solid #3a3a3a;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-author {
  color: #F4A259 !important;
  font-weight: 700;
  font-style: normal !important;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #3a3a3a;
}

.rating {
  text-align: center;
  margin-top: 32px;
  font-size: 20px;
  color: #F4A259;
  font-weight: 700;
}

/* STATS */
.stats {
  background: #2a2a2a;
  padding: 60px 20px;
  border-top: 3px solid #F4A259;
  border-bottom: 3px solid #F4A259;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 200px;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #F4A259;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 14px;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #1a1a1a;
  padding: 32px;
  border: 2px solid #2a2a2a;
  border-left: 4px solid #F4A259;
  position: relative;
  margin-bottom: 24px;
}

.step h3 {
  color: #F4A259;
  margin-bottom: 12px;
  font-size: 18px;
}

.step p {
  color: #cccccc;
}

/* CTA SECTIONS */
.cta-final,
.cta-about,
.cta-services,
.cta-portfolio,
.cta-subsidies,
.cta-blog,
.cta-contact {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 3px solid #F4A259;
  position: relative;
}

.cta-final h2,
.cta-about h2,
.cta-services h2 {
  font-size: 36px;
  margin-bottom: 16px;
  border: none;
  padding: 0;
}

.cta-final p,
.cta-about p {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 32px;
}

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

.cta-center {
  text-align: center;
  margin-top: 40px;
}

.urgency-note,
.guarantee,
.trust-signal {
  margin-top: 24px;
  color: #F4A259;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FOOTER */
footer {
  background: #0a0a0a;
  padding: 60px 20px 20px;
  border-top: 3px solid #F4A259;
}

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

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

.footer-col img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(1.2);
}

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

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

.footer-col nav a,
.footer-col p {
  color: #888;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #2a2a2a;
  color: #666;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 3px solid #F4A259;
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.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 300px;
  color: #cccccc;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #F4A259;
  background: transparent;
  color: #F4A259;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cookie-buttons button:hover {
  background: #F4A259;
  color: #121212;
}

.cookie-buttons .accept-all {
  background: #F4A259;
  color: #121212;
}

.cookie-buttons .accept-all:hover {
  background: #ffffff;
}

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

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

.cookie-modal-content {
  background: #1a1a1a;
  border: 3px solid #F4A259;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border-radius: 2px;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h3 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 24px;
}

.cookie-option {
  margin-bottom: 24px;
  padding: 20px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-option p {
  margin-top: 8px;
  color: #cccccc;
  font-size: 14px;
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #F4A259;
  background: #F4A259;
  color: #121212;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cookie-modal-buttons button:hover {
  background: #ffffff;
  border-color: #ffffff;
}

/* FORMS */
.form-placeholder {
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  padding: 40px;
  border-radius: 2px;
  margin-top: 32px;
}

.form-placeholder ul {
  margin-top: 16px;
  color: #cccccc;
}

.form-placeholder .form-note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #2a2a2a;
  color: #F4A259;
  font-size: 14px;
}

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

.legal-content {
  background: #1a1a1a;
  padding: 40px;
  border: 2px solid #2a2a2a;
  border-radius: 2px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
  border: none;
  padding: 0;
}

.legal-content h2:first-child {
  margin-top: 0;
}

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

/* THANK YOU PAGE */
.thank-you-page {
  padding: 100px 20px;
  background: #121212;
  min-height: 60vh;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: #1a1a1a;
  padding: 60px 40px;
  border: 3px solid #F4A259;
  border-radius: 2px;
}

.success-icon,
.checkmark {
  width: 80px;
  height: 80px;
  background: #F4A259;
  color: #121212;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  font-weight: 700;
}

/* ADDITIONAL SECTIONS */
.features,
.benefits-list {
  margin: 24px 0;
}

.benefits-list li,
.features li {
  padding-left: 24px;
  position: relative;
  color: #cccccc;
}

.benefits-list li::before,
.features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #F4A259;
  font-weight: 700;
}

.text-section {
  margin: 32px 0;
}

.section-intro {
  font-size: 18px;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
}

.label {
  display: inline-block;
  background: #F4A259;
  color: #121212;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  border-radius: 2px;
}

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

.popular-list {
  list-style: none;
  padding: 0;
}

.popular-list li {
  padding: 16px 20px;
  background: #1a1a1a;
  border-left: 4px solid #F4A259;
  margin-bottom: 12px;
  color: #cccccc;
}

/* MILESTONES */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.milestone {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  border-top: 4px solid #F4A259;
}

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

/* CONTACT SECTIONS */
.contact-benefits {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.contact-benefits span {
  color: #F4A259;
  font-weight: 700;
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}

.contact-benefits span::before {
  content: '✓';
  position: absolute;
  left: 0;
}

.contact-value {
  color: #F4A259 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  font-family: 'Montserrat', sans-serif;
}

.note {
  color: #888;
  font-size: 14px;
  font-style: italic;
}

.address {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 24px;
}

/* CATEGORIES */
.categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.categories span {
  background: #2a2a2a;
  color: #F4A259;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #3a3a3a;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.categories span:hover {
  background: #F4A259;
  color: #121212;
  border-color: #F4A259;
}

/* PROGRAM CARDS */
.program-card {
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  border-left: 4px solid #F4A259;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.program-card:hover {
  border-color: #F4A259;
  box-shadow: 0 4px 20px rgba(244, 162, 89, 0.2);
}

.provider {
  color: #888;
  font-size: 14px;
  margin-bottom: 8px;
}

.amount {
  color: #F4A259 !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  font-family: 'Montserrat', sans-serif;
  margin: 16px 0 !important;
}

.example-box {
  background: #1a1a1a;
  border: 3px solid #F4A259;
  padding: 32px;
  border-radius: 2px;
  margin-top: 32px;
}

.highlight {
  color: #F4A259 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 16px 0 !important;
  padding: 16px;
  background: #2a2a2a;
  border-left: 4px solid #F4A259;
}

.timeline {
  text-align: center;
  margin-top: 32px;
  color: #F4A259;
  font-weight: 700;
  font-size: 18px;
}

/* MISSION & VALUES */
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0;
}

.mission-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #1a1a1a;
  padding: 32px;
  border: 2px solid #2a2a2a;
  border-top: 4px solid #F4A259;
}

.values {
  background: #1a1a1a;
  padding: 40px;
  border: 2px solid #2a2a2a;
  margin-top: 40px;
}

.values h3 {
  margin-bottom: 24px;
}

.values ul li {
  padding: 12px 0;
  border-bottom: 1px solid #2a2a2a;
}

.values ul li:last-child {
  border-bottom: none;
}

/* RESPONSIVE - MOBILE FIRST */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

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

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

  .hero-subheadline {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .article-card,
  .method-card,
  .stat-item,
  .step,
  .milestone,
  .mission-item {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
    min-width: 120px;
  }

  .legal-content {
    padding: 24px;
  }

  .section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero-cta {
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 13px;
  }

  .benefit-card,
  .service-card,
  .program-card {
    padding: 24px;
  }

  .stat-number {
    font-size: 42px;
  }

  .cookie-banner {
    padding: 16px;
  }

  .cookie-modal-content {
    padding: 24px;
  }
}

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

  body {
    background: white;
    color: black;
  }

  h1, h2, h3, h4, h5, h6, p {
    color: black;
  }
}

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

:focus-visible {
  outline: 3px solid #F4A259;
  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;
}

/* LOADING STATES */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

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

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

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

.hidden {
  display: none;
}

.visible {
  display: block;
}