/* ============================================
   VitalPuls - Geometric Structured Design
   Modern Health & Wellness Platform
   ============================================ */

/* 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', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #f8f9fa;
  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;
}

/* Typography - Geometric & Angular */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #1A5028;
}

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

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

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

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

strong {
  font-weight: 700;
  color: #1A5028;
}

/* Container & Layout System */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header - Geometric & Clean */
header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid #1A5028;
  box-shadow: 0 2px 8px rgba(26, 80, 40, 0.1);
}

.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;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

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

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

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

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

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  background: #1A5028;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(26, 80, 40, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1A5028;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #FFFFFF;
  color: #1A5028;
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
  padding: 12px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D67B2E;
  padding-left: 8px;
  border-bottom-color: #D67B2E;
}

/* Hero Section - Angular & Bold */
.hero {
  background: linear-gradient(135deg, #1A5028 0%, #2D7A3E 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(214, 123, 46, 0.1);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Buttons - Geometric & Strong */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #D67B2E;
  color: #FFFFFF;
  border: 3px solid #D67B2E;
}

.btn-primary:hover {
  background: #FFFFFF;
  color: #D67B2E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 123, 46, 0.3);
}

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

.btn-secondary:hover {
  background: #FFFFFF;
  color: #1A5028;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

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

/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.value-proposition,
.services-overview,
.testimonials,
.mission,
.team,
.story,
.services-detail,
.workshop-benefits,
.workshops-list,
.blog-categories,
.featured-article,
.blog-grid,
.contact-options,
.contact-form-section,
.location-info,
.office-hours,
.legal-content,
.next-steps,
.immediate-actions,
.social-proof,
.next-actions {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 40px;
  position: relative;
}

.value-proposition::before,
.services-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: #1A5028;
  opacity: 0.05;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.value-proposition h2,
.services-overview h2,
.testimonials h2,
.mission h2,
.team h2,
.workshop-benefits h2,
.workshops-list h2,
.blog-grid h2 {
  text-align: center;
  margin-bottom: 16px;
}

.value-proposition > .container > p,
.services-overview > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #555;
}

/* Grid Layouts - Flexbox Based */
.benefits-grid,
.services-grid,
.testimonials-grid,
.team-grid,
.contact-grid,
.steps-grid,
.actions-grid,
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.benefit-item,
.service-card,
.team-member,
.contact-option,
.step-item,
.action-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #f8f9fa;
  padding: 32px;
  border-left: 4px solid #1A5028;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: #D67B2E;
  opacity: 0.1;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.benefit-item:hover,
.service-card:hover,
.team-member:hover,
.contact-option:hover,
.action-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 80, 40, 0.15);
  border-left-color: #D67B2E;
}

.benefit-item h3,
.service-card h3,
.team-member h3,
.contact-option h3,
.step-item h3,
.action-item h3 {
  margin-bottom: 12px;
  color: #1A5028;
  font-size: 20px;
}

.benefit-item p,
.service-card p,
.team-member p,
.contact-option p {
  color: #555;
  line-height: 1.7;
}

/* Service Cards */
.service-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
}

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

/* Service Detail Blocks */
.service-block {
  background: #f8f9fa;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 6px solid #1A5028;
  position: relative;
}

.service-block h2 {
  text-align: left;
  margin-bottom: 16px;
}

.service-block .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #D67B2E;
  margin: 16px 0;
  display: block;
}

.service-block ul {
  margin: 24px 0;
  padding-left: 20px;
}

.service-block ul li {
  margin-bottom: 12px;
  padding-left: 8px;
  color: #555;
}

/* Team Grid */
.team-member {
  flex: 1 1 calc(50% - 12px);
  text-align: center;
}

.team-member .role {
  font-weight: 600;
  color: #D67B2E;
  margin-bottom: 8px;
  display: block;
}

/* Testimonials - Geometric Cards */
.testimonials {
  background: #1A5028;
  color: #FFFFFF;
  padding: 60px 20px;
  position: relative;
}

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

.testimonials-grid {
  gap: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  position: relative;
  backdrop-filter: blur(10px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(214, 123, 46, 0.3);
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #D67B2E;
  font-style: italic;
  margin-top: 16px;
  text-align: right;
}

.trust-metrics {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 16px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* Workshop Cards */
.workshop-card {
  background: #f8f9fa;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 6px solid #D67B2E;
  transition: all 0.3s ease;
}

.workshop-card:hover {
  transform: translateX(4px);
  box-shadow: -4px 4px 16px rgba(26, 80, 40, 0.1);
}

.workshop-card h3 {
  margin-bottom: 12px;
}

.workshop-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1A5028;
  margin: 12px 0;
  display: inline-block;
}

/* Blog Categories */
.blog-categories {
  padding: 40px 20px;
  background: #f8f9fa;
}

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

.categories a {
  padding: 12px 24px;
  background: #FFFFFF;
  color: #1A5028;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border: 2px solid #1A5028;
  transition: all 0.3s ease;
}

.categories a:hover {
  background: #1A5028;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Featured Article */
.featured-article {
  background: linear-gradient(135deg, #2D7A3E 0%, #1A5028 100%);
  color: #FFFFFF;
  padding: 60px 20px;
}

.article-featured {
  max-width: 800px;
  margin: 0 auto;
}

.article-featured h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.article-featured p {
  color: rgba(255, 255, 255, 0.95);
}

.badge {
  display: inline-block;
  background: #D67B2E;
  color: #FFFFFF;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* Article Cards */
.article-card {
  background: #f8f9fa;
  padding: 32px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  border-top: 4px solid #1A5028;
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 80, 40, 0.15);
  border-top-color: #D67B2E;
}

.article-card h3 {
  margin-bottom: 12px;
}

.article-card .meta {
  color: #888;
  margin-top: 12px;
}

/* Contact Sections */
.contact-option {
  text-align: center;
  flex: 1 1 calc(33.333% - 16px);
}

.contact-option h3 {
  margin-bottom: 16px;
}

.form-note {
  background: #f8f9fa;
  padding: 32px;
  border-left: 4px solid #D67B2E;
  margin-top: 32px;
}

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

.form-note ul {
  margin-top: 16px;
  padding-left: 24px;
}

.form-note ul li {
  margin-bottom: 8px;
  color: #555;
}

.location-details {
  background: #f8f9fa;
  padding: 32px;
  border-left: 4px solid #1A5028;
  margin-top: 24px;
}

.hours-list {
  background: #f8f9fa;
  padding: 32px;
  margin-top: 24px;
  border-left: 4px solid #D67B2E;
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 8px;
}

/* CTA Banner - Bold & Geometric */
.cta-banner {
  background: linear-gradient(135deg, #D67B2E 0%, #1A5028 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.95);
}

.trust-element {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* Legal Pages */
.legal-hero {
  background: #1A5028;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.legal-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.9);
}

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid #1A5028;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 32px;
}

.legal-content ul li {
  margin-bottom: 8px;
  color: #555;
}

.legal-content a {
  color: #1A5028;
  font-weight: 600;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #D67B2E;
}

/* Thank You Page */
.success-icon {
  width: 100px;
  height: 100px;
  background: #D67B2E;
  color: #FFFFFF;
  font-size: 64px;
  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%);
}

.metrics {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.metric-item {
  text-align: center;
  flex: 1 1 200px;
}

.metric-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #1A5028;
  margin-bottom: 8px;
}

/* Footer - Structured */
footer {
  background: #1A5028;
  color: #FFFFFF;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

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

.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

footer h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #D67B2E;
  padding-bottom: 8px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-links a::before {
  content: '▸';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #D67B2E;
  padding-left: 16px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A5028;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #D67B2E;
}

.cookie-banner.show {
  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;
}

.cookie-text p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: #FFFFFF;
}

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

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

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

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f0f0f0;
}

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

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

.cookie-toggle.active {
  background: #1A5028;
}

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

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

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

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Grids to single column */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .team-grid,
  .contact-grid,
  .steps-grid,
  .actions-grid,
  .articles-grid {
    flex-direction: column;
  }
  
  .benefit-item,
  .service-card,
  .testimonial-card,
  .team-member,
  .contact-option,
  .step-item,
  .action-item,
  .article-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Sections */
  .section,
  .value-proposition,
  .services-overview,
  .testimonials,
  .cta-banner {
    padding: 40px 20px;
  }
  
  /* Hours list */
  .hours-list p {
    flex-direction: column;
    gap: 4px;
  }
  
  .metrics {
    flex-direction: column;
    gap: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .benefit-item,
  .team-member {
    flex: 1 1 calc(50% - 12px);
  }
  
  .service-card,
  .article-card {
    flex: 1 1 calc(50% - 12px);
  }
}

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

.hero-content,
.section {
  animation: fadeIn 0.6s ease-out;
}

/* Accessibility */
:focus {
  outline: 3px solid #D67B2E;
  outline-offset: 2px;
}

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

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-banner,
  header {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}