/* ============================================
   BLUEPRINT CURRICULUM - PROFESSIONAL CORPORATE CSS
   Professional blue/gray palette with structured layout
   ============================================ */

/* === CSS RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #F8F9FA;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A1A2E;
  margin-bottom: 16px;
}

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

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

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

p {
  margin-bottom: 16px;
  color: #34495E;
}

a {
  color: #0F4C81;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #E94560;
}

ul {
  list-style: none;
}

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

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

/* === HEADER === */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

.logo {
  height: 48px;
  width: auto;
}

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

.main-nav a {
  font-weight: 500;
  font-size: 16px;
  color: #2C3E50;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 150;
  background-color: #0F4C81;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 76, 129, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #1A1A2E;
  z-index: 200;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  background-color: #E94560;
  border-color: #E94560;
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E94560;
  padding-left: 12px;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #0F4C81 0%, #1A1A2E 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero p {
  color: #E8F4F8;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 800px;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #E8F4F8;
}

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

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: #E94560;
  color: #FFFFFF;
  border-color: #E94560;
}

.btn-primary:hover {
  background-color: #D63850;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 69, 96, 0.3);
}

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

.btn-secondary:hover {
  background-color: #0F4C81;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 76, 129, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

/* === TRUST BADGES === */
.trust-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span {
  font-size: 14px;
  font-weight: 500;
  color: #E8F4F8;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* === SECTIONS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

/* === VALUE PROPOSITION === */
.value-proposition {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1A1A2E;
}

.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card {
  flex: 1 1 280px;
  max-width: 320px;
  background-color: #F8F9FA;
  padding: 32px 24px;
  border-radius: 8px;
  border-left: 4px solid #0F4C81;
  transition: all 0.3s ease;
  position: relative;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.15);
  border-left-color: #E94560;
}

.value-card h3 {
  color: #0F4C81;
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  color: #5A6C7D;
  font-size: 15px;
}

/* === SERVICES === */
.services-preview,
.services-detailed {
  background-color: #FFFFFF;
}

.services-preview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-preview > .container > p {
  text-align: center;
  margin-bottom: 48px;
  color: #5A6C7D;
  font-size: 18px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 260px;
  max-width: 300px;
  background-color: #F8F9FA;
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid #E8EEF2;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.service-card:hover {
  border-color: #0F4C81;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.15);
}

.service-card h3 {
  color: #1A1A2E;
  font-size: 20px;
  margin-bottom: 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #E94560;
  margin-bottom: 0;
}

.service-item {
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 24px;
  border-left: 4px solid #0F4C81;
}

.service-item h2 {
  color: #1A1A2E;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-item .price {
  font-size: 24px;
  font-weight: 700;
  color: #E94560;
  margin-bottom: 16px;
  display: block;
}

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

.service-item ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #34495E;
}

.service-item ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0F4C81;
  font-weight: 700;
}

.service-item .duration {
  font-style: italic;
  color: #5A6C7D;
  font-size: 14px;
}

/* === BENEFITS === */
.benefits {
  background-color: #F8F9FA;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefit-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.benefit-card h3 {
  color: #0F4C81;
  margin-bottom: 12px;
}

/* === TESTIMONIALS === */
.testimonials {
  background-color: #F8F9FA;
  padding: 60px 20px;
}

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

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 560px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #E94560;
  position: relative;
}

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

.testimonial-card .author {
  color: #5A6C7D;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 0;
}

.testimonials .rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #0F4C81;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #0F4C81 0%, #1A1A2E 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 60px 20px;
}

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

.cta-banner p {
  color: #E8F4F8;
  font-size: 18px;
  margin-bottom: 32px;
}

/* === ABOUT SECTIONS === */
.about-story,
.values,
.stats {
  background-color: #FFFFFF;
}

.about-story h2,
.values h2,
.stats h2 {
  text-align: center;
  margin-bottom: 32px;
}

.about-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.8;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.milestone {
  flex: 1 1 200px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

.milestone strong {
  display: block;
  font-size: 36px;
  color: #E94560;
  font-weight: 700;
  margin-bottom: 8px;
}

.milestone p {
  color: #5A6C7D;
  font-size: 16px;
  margin-bottom: 0;
}

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

.stat-item {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
  border-top: 4px solid #E94560;
}

.stat-item strong {
  display: block;
  font-size: 48px;
  color: #0F4C81;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-item p {
  color: #5A6C7D;
  font-size: 16px;
  margin-bottom: 0;
}

/* === CASE STUDIES === */
.case-studies {
  background-color: #FFFFFF;
}

.case-studies h2 {
  text-align: center;
  margin-bottom: 48px;
}

.case-study {
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 4px solid #0F4C81;
}

.case-study h3 {
  color: #1A1A2E;
  margin-bottom: 8px;
}

.case-study .location {
  color: #5A6C7D;
  font-size: 14px;
  margin-bottom: 16px;
}

.case-study .budget {
  color: #0F4C81;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 0;
}

/* === GALLERY === */
.gallery-categories,
.featured-installations {
  background-color: #FFFFFF;
}

.category-grid,
.featured-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.category-card,
.featured-item {
  flex: 1 1 280px;
  max-width: 340px;
  background-color: #F8F9FA;
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid #E8EEF2;
  transition: all 0.3s ease;
  text-align: center;
}

.category-card:hover,
.featured-item:hover {
  border-color: #0F4C81;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.15);
}

.category-card h3,
.featured-item h3 {
  color: #0F4C81;
  margin-bottom: 12px;
}

.category-card .count {
  color: #E94560;
  font-weight: 600;
  margin-bottom: 0;
}

.featured-item .specs {
  color: #5A6C7D;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 0;
}

.installation-details {
  background-color: #F8F9FA;
}

.details-list {
  padding-left: 0;
  max-width: 800px;
  margin: 32px auto;
}

.details-list li {
  padding: 16px 0 16px 32px;
  position: relative;
  color: #34495E;
  border-bottom: 1px solid #E8EEF2;
}

.details-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #0F4C81;
  font-weight: 700;
}

.brands-showcase {
  background-color: #FFFFFF;
  text-align: center;
}

.brands-list {
  color: #5A6C7D;
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 24px auto;
}

/* === CONTACT === */
.contact-methods {
  background-color: #FFFFFF;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.method-card {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: #F8F9FA;
  padding: 32px 24px;
  border-radius: 8px;
  border-top: 4px solid #0F4C81;
}

.method-card h3 {
  color: #0F4C81;
  margin-bottom: 16px;
}

.method-card .info,
.method-card .email {
  color: #E94560;
  font-weight: 600;
  margin-bottom: 0;
}

.location-info,
.showroom-info {
  background-color: #F8F9FA;
}

.location-details {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.showroom-features {
  padding-left: 0;
  max-width: 800px;
  margin: 32px auto;
}

.showroom-features li {
  padding: 16px 0 16px 32px;
  position: relative;
  color: #34495E;
  border-bottom: 1px solid #E8EEF2;
}

.showroom-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0F4C81;
  font-weight: 700;
  font-size: 18px;
}

.contact-form-section {
  background-color: #FFFFFF;
}

.form-info {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

.form-info p {
  margin-bottom: 12px;
  color: #34495E;
}

.form-info .consent,
.form-info .note {
  font-size: 14px;
  color: #5A6C7D;
  margin-top: 16px;
}

/* === LEGAL PAGES === */
.legal-content {
  background-color: #FFFFFF;
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

.legal-section h2 {
  color: #0F4C81;
  font-size: 24px;
  margin-bottom: 16px;
}

.legal-section ul {
  padding-left: 24px;
}

.legal-section ul li {
  margin-bottom: 12px;
  color: #34495E;
  padding-left: 8px;
  position: relative;
}

.legal-section ul li::before {
  content: '•';
  position: absolute;
  left: -16px;
  color: #0F4C81;
  font-weight: 700;
}

.update-date,
.effective-date {
  text-align: center;
  color: #5A6C7D;
  font-size: 14px;
  font-style: italic;
}

/* === THANK YOU PAGE === */
.success-icon {
  width: 80px;
  height: 80px;
  background-color: #27AE60;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  font-weight: 700;
}

.confirmation-details,
.next-steps,
.social-proof {
  background-color: #FFFFFF;
}

.steps-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.step-card,
.action-card {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #F8F9FA;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid #0F4C81;
}

.action-card .btn {
  margin-top: 16px;
}

.contact-confirmation {
  background-color: #F8F9FA;
  text-align: center;
  padding: 40px 20px;
}

.stats-preview {
  color: #E8F4F8;
  font-size: 14px;
  margin-top: 16px;
}

/* === FOOTER === */
footer {
  background-color: #1A1A2E;
  color: #E8F4F8;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

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

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

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

.footer-nav a {
  color: #B8C5D6;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

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

.footer-bottom p {
  color: #B8C5D6;
  font-size: 14px;
  margin-bottom: 0;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1A2E;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 150;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: #E8F4F8;
  margin-bottom: 0;
  flex: 1 1 300px;
}

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

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 26, 46, 0.9);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #1A1A2E;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

.cookie-category h3 {
  color: #0F4C81;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #34495E;
}

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

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

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

  .hero {
    padding: 60px 20px;
  }

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

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }

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

  .value-cards,
  .service-cards,
  .benefit-cards,
  .testimonial-cards {
    flex-direction: column;
  }

  .value-card,
  .service-card,
  .benefit-card,
  .testimonial-card {
    max-width: 100%;
  }

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

  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

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

  .stats-grid,
  .milestones {
    flex-direction: column;
    align-items: center;
  }

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

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  h1 {
    font-size: 40px;
  }

  .value-card,
  .service-card {
    flex: 1 1 45%;
  }
}

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

.value-card,
.service-card,
.testimonial-card,
.benefit-card {
  animation: fadeIn 0.6s ease forwards;
}

/* === PRINT STYLES === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }

  header {
    position: relative;
  }

  .hero {
    background: #0F4C81;
    color: #000000;
  }

  .cta-banner {
    background: #F8F9FA;
    color: #000000;
  }
}