/* =================================
   CSS RESET & BASE STYLES
   ================================= */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #f4f1ed 0%, #ffffff 100%);
  min-height: 100vh;
}

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
   ================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a3a52;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1a3a52 0%, #2c5a7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #2c3e50;
}

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

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

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

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

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

header {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5a7a 100%);
  box-shadow: 0 4px 20px rgba(26, 58, 82, 0.15);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.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 img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #f4f1ed;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c49b63 0%, #d4b583 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #c49b63;
  background: rgba(196, 155, 99, 0.1);
}

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

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #1a3a52 0%, #2c5a7a 100%);
  color: #f4f1ed;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26, 58, 82, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(26, 58, 82, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #1a3a52 0%, #2c5a7a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px 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: rgba(244, 241, 237, 0.1);
  color: #f4f1ed;
  border: 2px solid #f4f1ed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #f4f1ed;
  color: #1a3a52;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #f4f1ed;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(244, 241, 237, 0.05);
  border: 1px solid rgba(244, 241, 237, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(196, 155, 99, 0.2);
  border-color: #c49b63;
  transform: translateX(10px);
}

/* =================================
   BUTTONS
   ================================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #c49b63 0%, #d4b583 100%);
  color: #1a3a52;
  box-shadow: 0 4px 15px rgba(196, 155, 99, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d4b583 0%, #e4c593 100%);
  box-shadow: 0 6px 20px rgba(196, 155, 99, 0.4);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: #1a3a52;
  color: #f4f1ed;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 58, 82, 0.3);
}

.btn-link {
  color: #c49b63;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover {
  color: #1a3a52;
  transform: translateX(5px);
}

.btn-link:hover::after {
  transform: translateX(5px);
}

/* =================================
   HERO SECTION
   ================================= */

.hero {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5a7a 50%, #1a3a52 100%);
  color: #f4f1ed;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="none"/%3E%3Cpath d="M50 0v100M0 50h100" stroke="rgba(196,155,99,0.1)" stroke-width="1"/%3E%3C/svg%3E');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #f4f1ed;
  background: linear-gradient(135deg, #f4f1ed 0%, #c49b63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 56px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: #f4f1ed;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  font-size: 16px;
  font-weight: 600;
  color: #c49b63;
  padding: 8px 20px;
  background: rgba(196, 155, 99, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(196, 155, 99, 0.3);
}

/* =================================
   PAGE HERO
   ================================= */

.page-hero {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5a7a 100%);
  color: #f4f1ed;
  padding: 60px 20px 40px;
  text-align: center;
}

.page-hero h1 {
  color: #f4f1ed;
  background: linear-gradient(135deg, #f4f1ed 0%, #c49b63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: #f4f1ed;
  font-size: 18px;
  opacity: 0.9;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: #c49b63;
  text-align: left;
}

.breadcrumb a {
  color: #c49b63;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #f4f1ed;
}

/* =================================
   CARDS & GRIDS
   ================================= */

.benefits-grid,
.services-grid,
.process-steps,
.statistics,
.testimonials-grid,
.categories-grid,
.criteria-grid,
.values-grid,
.stats-grid,
.approach-grid,
.metrics-grid,
.case-study,
.results-list,
.contact-methods,
.promises-grid,
.faq-list,
.signals-grid,
.resources-grid,
.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.benefit-card,
.service-card,
.step,
.stat,
.testimonial-card,
.category-card,
.criteria-item,
.value-item,
.stat-card,
.approach-item,
.metric-card,
.result-item,
.contact-method,
.promise-item,
.faq-item,
.signal-item,
.resource-card,
.detail-block {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 58, 82, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c49b63 0%, #d4b583 100%);
  border-radius: 16px 16px 0 0;
}

.benefit-card:hover,
.service-card:hover,
.category-card:hover,
.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(26, 58, 82, 0.15);
}

.service-card h3,
.benefit-card h3,
.category-card h3 {
  margin-top: 16px;
}

.price,
.service-price {
  font-size: 24px;
  font-weight: 700;
  color: #c49b63;
  margin: 20px 0;
  display: block;
}

/* =================================
   TESTIMONIALS
   ================================= */

.testimonials,
.testimonials-section {
  background: linear-gradient(135deg, #f4f1ed 0%, #ffffff 100%);
  padding: 60px 20px;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 58, 82, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 4px solid #c49b63;
}

.testimonial-card p {
  font-style: italic;
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #1a3a52;
  font-size: 16px;
}

.testimonial-author span {
  color: #5a6c7d;
  font-size: 14px;
}

/* =================================
   PROCESS STEPS
   ================================= */

.process {
  background: #ffffff;
  padding: 60px 20px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c49b63 0%, #d4b583 100%);
  color: #1a3a52;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(196, 155, 99, 0.3);
}

/* =================================
   STATISTICS
   ================================= */

.social-proof {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5a7a 100%);
  padding: 60px 20px;
  text-align: center;
}

.social-proof h2 {
  color: #f4f1ed;
  margin-bottom: 40px;
}

.statistics {
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(244, 241, 237, 0.1);
  border: 2px solid rgba(196, 155, 99, 0.3);
  padding: 32px;
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #c49b63;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 16px;
  color: #f4f1ed;
  font-weight: 600;
}

/* =================================
   CTA SECTIONS
   ================================= */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #c49b63 0%, #d4b583 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 40px 20px;
}

.cta-banner h2,
.cta-section h2 {
  color: #1a3a52;
  margin-bottom: 16px;
}

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

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

/* =================================
   SERVICE BLOCKS
   ================================= */

.service-block {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 58, 82, 0.08);
  margin-bottom: 40px;
  border-left: 4px solid #c49b63;
}

.service-tagline {
  font-size: 20px;
  color: #c49b63;
  font-weight: 600;
  margin-bottom: 20px;
}

.benefits-list {
  margin: 32px 0;
  padding: 24px;
  background: linear-gradient(135deg, #f4f1ed 0%, #ffffff 100%);
  border-radius: 12px;
}

.benefits-list h3 {
  color: #1a3a52;
  margin-bottom: 16px;
}

.benefits-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  padding-left: 28px;
  position: relative;
  color: #2c3e50;
  line-height: 1.6;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c49b63;
  font-weight: 700;
  font-size: 18px;
}

/* =================================
   CASE STUDIES
   ================================= */

.case-study {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 58, 82, 0.08);
  margin-bottom: 32px;
  border-left: 4px solid #c49b63;
  flex: 1 1 100%;
}

.client {
  color: #c49b63;
  font-weight: 600;
  margin-bottom: 16px;
}

/* =================================
   CONTACT PAGE
   ================================= */

.form-notice {
  background: linear-gradient(135deg, #f4f1ed 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #c49b63;
  max-width: 800px;
  margin: 0 auto;
}

.form-notice p {
  margin-bottom: 20px;
}

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

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

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #c49b63 0%, #d4b583 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(196, 155, 99, 0.3);
}

.confirmation-note {
  color: #5a6c7d;
  font-size: 14px;
  font-style: italic;
}

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

.legal-hero {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5a7a 100%);
  color: #f4f1ed;
  padding: 60px 20px 40px;
}

.legal-hero h1 {
  color: #f4f1ed;
  background: linear-gradient(135deg, #f4f1ed 0%, #c49b63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content {
  background: #ffffff;
  padding: 60px 20px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 58, 82, 0.05);
}

.text-section h2 {
  border-bottom: 2px solid #c49b63;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

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

footer {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5a7a 100%);
  color: #f4f1ed;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

.footer-section h4 {
  color: #c49b63;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #f4f1ed;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

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

.footer-nav a {
  color: #f4f1ed;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
  opacity: 0.9;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(244, 241, 237, 0.2);
}

.footer-bottom p {
  color: #f4f1ed;
  font-size: 14px;
  opacity: 0.8;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a3a52 0%, #2c5a7a 100%);
  color: #f4f1ed;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(26, 58, 82, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.cookie-banner-text p {
  color: #f4f1ed;
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-banner-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #5a6c7d;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #f4f1ed;
  color: #1a3a52;
}

.cookie-category {
  padding: 20px;
  background: #f4f1ed;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .cookie-slider {
  background: #c49b63;
}

input:checked + .cookie-slider::before {
  transform: translateX(24px);
}

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

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  max-width: 800px;
  margin: 0 auto 40px;
}

.trust-indicator,
.trust-text,
.response-time,
.contact-info {
  text-align: center;
  color: #5a6c7d;
  font-size: 14px;
  margin-top: 24px;
}

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

/* =================================
   RESPONSIVE DESIGN
   ================================= */

@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .benefit-card,
  .service-card,
  .category-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  h1 {
    font-size: 32px;
  }

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .benefit-card,
  .service-card,
  .step,
  .stat,
  .category-card,
  .criteria-item,
  .value-item,
  .stat-card,
  .approach-item,
  .resource-card {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-content {
    flex-direction: column;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner-buttons .btn {
    width: 100%;
  }

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

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

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

  h2 {
    font-size: 24px;
  }

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

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .service-block,
  .case-study {
    padding: 24px;
  }

  .text-section {
    padding: 20px;
  }
}

/* =================================
   ANIMATIONS
   ================================= */

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

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

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-settings-modal,
  header,
  footer {
    display: none;
  }

  body {
    background: white;
  }

  a {
    text-decoration: underline;
  }
}

/* =================================
   ACCESSIBILITY
   ================================= */

:focus-visible {
  outline: 3px solid #c49b63;
  outline-offset: 2px;
}

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

/* Ensure links are readable */
a:focus,
button:focus {
  outline: 3px solid #c49b63;
  outline-offset: 2px;
}

/* High contrast for readability */
@media (prefers-contrast: high) {
  body {
    background: #ffffff;
  }

  .testimonial-card p,
  .benefit-card p,
  .service-card p {
    color: #000000;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}