/* ===================================
   SOLFOVAGON - GEOMETRIC STRUCTURED DESIGN
   CSS Reset & Base Styles
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2D5F3F;
  --secondary: #7BA05B;
  --accent: #E8F5E9;
  --dark: #1a1a1a;
  --gray: #4a4a4a;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - GEOMETRIC & STRUCTURED
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

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

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
}

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

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

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

/* ===================================
   HEADER - GEOMETRIC STRUCTURE
   =================================== */

header {
  background-color: var(--white);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px var(--shadow);
}

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

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

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

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

.main-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ===================================
   MOBILE MENU - GEOMETRIC SLIDE
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background-color: var(--secondary);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1002;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background-color: var(--secondary);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  padding: 16px 0;
  border-bottom: 2px solid var(--light-gray);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--primary);
  padding-left: 12px;
}

/* ===================================
   BUTTONS - GEOMETRIC & ANGULAR
   =================================== */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border: 3px solid var(--primary);
  background-color: var(--white);
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

/* ===================================
   HERO SECTION - GEOMETRIC LAYOUT
   =================================== */

.hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--white) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background-color: var(--primary);
  opacity: 0.05;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  transform: rotate(15deg);
}

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

.hero h1 {
  font-size: 56px;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

.trust-indicator {
  margin-top: 32px;
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================
   PAGE HERO - GEOMETRIC PATTERN
   =================================== */

.page-hero {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(255, 255, 255, 0.03) 35px,
    rgba(255, 255, 255, 0.03) 70px
  );
}

.page-hero h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===================================
   CARDS - GEOMETRIC STRUCTURE
   =================================== */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-card,
.service-card,
.testimonial-card,
.stat-card,
.value-card,
.process-step,
.category-card,
.guide-card,
.method-card,
.fact-card {
  background-color: var(--white);
  border: 3px solid var(--light-gray);
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  transition: var(--transition);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.category-card:hover,
.guide-card:hover,
.method-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}

.benefit-card img,
.value-card img,
.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.benefit-card h3,
.service-card h3,
.value-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* ===================================
   GRIDS - STRUCTURED FLEXBOX LAYOUTS
   =================================== */

.benefits-grid,
.services-grid,
.values-grid,
.team-grid,
.stats-grid,
.process-grid,
.categories-grid,
.guides-grid,
.methods-grid,
.facts-grid,
.seasons-grid,
.page-grid,
.funding-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefits-grid > *,
.services-grid > *,
.values-grid > *,
.stats-grid > * {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.team-grid > *,
.categories-grid > * {
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
}

.process-grid > *,
.seasons-grid > * {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
}

/* ===================================
   SERVICE CARDS - GEOMETRIC PRICING
   =================================== */

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.service-card .price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0;
  text-transform: uppercase;
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
}

/* ===================================
   PROCESS STEPS - NUMBERED GEOMETRIC
   =================================== */

.process-step {
  text-align: center;
  border-color: var(--primary);
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: 0.3;
}

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

.testimonials {
  background-color: var(--light-gray);
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial-card {
  background-color: var(--white);
  border-left: 4px solid var(--primary);
  padding: 32px;
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  clip-path: none;
}

.testimonial-card p {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* ===================================
   STATS - GEOMETRIC NUMBERS
   =================================== */

.stats {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.stats h2 {
  color: var(--white);
  margin-bottom: 40px;
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 40px 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.stat-card p {
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================
   CTA BANNER - GEOMETRIC EMPHASIS
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background-color: var(--white);
  opacity: 0.05;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.cta-banner h2 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-banner .btn {
  border-color: var(--white);
  color: var(--white);
}

.cta-banner .btn:hover {
  background-color: var(--white);
  color: var(--primary);
}

.support-text {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================
   SERVICE DETAIL - STRUCTURED INFO
   =================================== */

.service-detail {
  padding: 60px 20px;
  border-bottom: 3px solid var(--light-gray);
}

.service-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;
}

.tagline {
  font-size: 18px;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.service-detail .price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0;
}

.highlight {
  background-color: var(--accent);
  color: var(--primary);
  padding: 12px 20px;
  border-left: 4px solid var(--primary);
  font-weight: 700;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================
   CONTACT PAGE - GEOMETRIC METHODS
   =================================== */

.contact-methods {
  padding: 60px 20px;
}

.method-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
}

.method-card .value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 16px 0;
}

.method-card .hours {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 12px;
  font-weight: 600;
}

/* ===================================
   FORMS - GEOMETRIC INPUT FIELDS
   =================================== */

.form-note {
  background-color: var(--accent);
  border: 3px solid var(--primary);
  padding: 32px;
  margin: 40px 0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.form-note p {
  margin-bottom: 12px;
}

.form-note .phone,
.form-note strong {
  color: var(--primary);
  font-weight: 700;
}

/* ===================================
   ERROR 404 PAGE
   =================================== */

.error-404 {
  padding: 80px 20px;
  text-align: center;
}

.error-code {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 var(--primary);
}

.subheadline {
  font-size: 20px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 24px;
}

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

.thank-you {
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.subtitle {
  font-size: 20px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 24px;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
  text-align: left;
}

.step {
  background-color: var(--accent);
  padding: 20px;
  border-left: 4px solid var(--primary);
}

.urgent-contact {
  background-color: var(--light-gray);
  padding: 32px;
  margin-top: 40px;
  border: 3px solid var(--primary);
}

.urgent-contact .phone {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 12px;
}

/* ===================================
   LEGAL PAGES - STRUCTURED CONTENT
   =================================== */

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--primary);
  margin-top: 40px;
  padding-top: 24px;
  border-top: 3px solid var(--light-gray);
}

.legal-content h3 {
  color: var(--secondary);
  margin-top: 24px;
}

.updated {
  color: var(--gray);
  font-size: 14px;
  font-style: italic;
  margin-bottom: 32px;
}

/* ===================================
   FOOTER - GEOMETRIC STRUCTURE
   =================================== */

footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 16px;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: var(--transition);
}

.footer-nav a:hover,
.footer-nav a.active {
  color: var(--white);
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: var(--white);
  padding: 24px 20px;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-btn {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 2px solid var(--white);
  background-color: transparent;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn:hover {
  background-color: var(--white);
  color: var(--dark);
}

.cookie-btn.accept {
  background-color: var(--primary);
  border-color: var(--primary);
}

.cookie-btn.accept:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

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

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

.cookie-modal-content {
  background-color: var(--white);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--dark);
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: var(--light-gray);
  border-left: 4px solid var(--primary);
}

.cookie-category h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

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

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

.cookie-toggle label {
  cursor: pointer;
  font-weight: 600;
}

/* ===================================
   SECTION SPECIFIC STYLES
   =================================== */

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.benefit-detailed {
  padding: 40px 0;
  border-bottom: 3px solid var(--light-gray);
}

.benefit-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;
}

.fact {
  background-color: var(--accent);
  color: var(--primary);
  padding: 16px 20px;
  border-left: 4px solid var(--primary);
  font-weight: 700;
  margin-top: 20px;
}

.myth-card {
  background-color: var(--light-gray);
  padding: 32px;
  margin-bottom: 24px;
  border-left: 4px solid var(--secondary);
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.cert-list li {
  background-color: var(--accent);
  padding: 16px 20px;
  border-left: 4px solid var(--primary);
  font-weight: 600;
}

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

@media (max-width: 768px) {
  /* Typography scaling */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Hide desktop nav, show mobile toggle */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Adjust grid layouts */
  .benefits-grid > *,
  .services-grid > *,
  .values-grid > *,
  .stats-grid > *,
  .team-grid > *,
  .categories-grid > * {
    flex: 1 1 100%;
  }
  
  .process-grid > *,
  .seasons-grid > * {
    flex: 1 1 100%;
  }
  
  /* Sections padding */
  .section {
    padding: 32px 16px;
  }
  
  .hero,
  .page-hero,
  .cta-banner {
    padding: 40px 20px;
  }
  
  /* Stats */
  .stat-number {
    font-size: 40px;
  }
  
  /* Service numbers */
  .service-number,
  .benefit-number {
    font-size: 48px;
  }
  
  /* Error code */
  .error-code {
    font-size: 80px;
  }
  
  /* Buttons */
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-group .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-grid > *,
  .services-grid > *,
  .values-grid > * {
    flex: 1 1 calc(50% - 12px);
  }
  
  .process-grid > * {
    flex: 1 1 calc(50% - 12px);
  }
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

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

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}