/* =================================================================
   SERENEBASE - SCANDINAVIAN CLEAN DESIGN SYSTEM
   Minimal, functional, and harmonious CRM interface
   ================================================================= */

/* 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', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* SCANDINAVIAN COLOR PALETTE */
:root {
  --primary: #2C5F7C;
  --primary-light: #5A9BB5;
  --primary-dark: #1A3A4D;
  --accent: #E8F1F5;
  --accent-warm: #F5F3F0;
  --text-dark: #2C3E50;
  --text-medium: #5A6C7D;
  --text-light: #8B9BAA;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --border: #E4E7EB;
  --success: #7FB069;
  --shadow: rgba(44, 95, 124, 0.08);
  --shadow-hover: rgba(44, 95, 124, 0.15);
}

/* TYPOGRAPHY - SCANDINAVIAN HIERARCHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

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

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: var(--text-medium);
}

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

a:hover {
  color: var(--primary-light);
}

strong {
  font-weight: 600;
  color: var(--text-dark);
}

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

/* HEADER - MINIMAL & CLEAN */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 8px var(--shadow);
}

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

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

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

/* NAVIGATION - SCANDINAVIAN SIMPLICITY */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-medium);
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--border);
  font-size: 24px;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: var(--accent);
  border-color: var(--primary);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -4px 0 20px var(--shadow);
  z-index: 1000;
  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: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--text-medium);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--primary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 0;
}

.mobile-nav a {
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

/* HERO SECTION - SCANDINAVIAN SPACIOUSNESS */
.hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--white) 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--primary-dark);
}

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

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 14px;
  color: var(--text-medium);
  margin-top: 24px;
}

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-hover);
}

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

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

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

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary-dark);
}

/* FLEXBOX GRIDS - NO CSS GRID ALLOWED */
.benefits-grid,
.services-grid,
.features-grid,
.pricing-grid,
.posts-grid,
.team-grid,
.values-grid,
.contact-grid,
.actions-grid,
.stats,
.support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* CARDS - MINIMAL SCANDINAVIAN AESTHETIC */
.benefit-card,
.service-card,
.feature-item,
.pricing-card,
.post-card,
.team-member,
.value-item,
.contact-option,
.action-card,
.stat-item,
.support-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.post-card:hover,
.pricing-card:hover,
.contact-option:hover,
.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-hover);
  border-color: var(--primary-light);
}

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

/* PRICING CARDS */
.pricing-card {
  flex: 1 1 calc(33.333% - 16px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 24px var(--shadow-hover);
  transform: scale(1.05);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-container {
  margin: 24px 0;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}

.period,
.unit {
  font-size: 16px;
  color: var(--text-medium);
  font-weight: 400;
}

.plan-description {
  color: var(--text-medium);
  margin-bottom: 24px;
  min-height: 48px;
}

/* FEATURES LIST */
.features-list {
  list-style: none;
  text-align: left;
  margin: 24px 0;
  width: 100%;
}

.features-list li {
  padding: 8px 0;
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid var(--accent);
}

.features-list li:last-child {
  border-bottom: none;
}

/* TESTIMONIALS - LIGHT & READABLE */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background-color: var(--accent-warm);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
  margin-top: 8px;
}

/* STATS - SCANDINAVIAN SIMPLICITY */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  padding: 48px 0;
  background-color: var(--accent);
  border-radius: 8px;
}

.stat-item {
  text-align: center;
  flex: 0 1 auto;
  min-width: 150px;
  padding: 0;
  background: transparent;
  border: none;
}

.stat-item strong {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section,
.content-wrapper {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

/* SERVICE DETAILED */
.service-detailed {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 32px;
}

.service-detailed h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.service-detailed .price {
  font-size: 36px;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin: 16px 0;
}

.best-for,
.timeline,
.duration {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent);
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-medium);
  margin-top: 16px;
}

/* BLOG & POST CARDS */
.post-featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 48px;
  border-radius: 8px;
  margin-bottom: 48px;
}

.post-featured h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.post-featured .post-excerpt {
  color: var(--white);
  font-size: 18px;
  opacity: 0.95;
}

.post-featured .post-meta {
  color: var(--white);
  opacity: 0.8;
  font-size: 14px;
}

.post-meta {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}

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

.mission-item {
  background-color: var(--accent);
  border-radius: 8px;
  padding: 40px;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
}

.mission-item h2 {
  text-align: left;
  margin-bottom: 16px;
}

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

.milestone {
  flex: 1 1 calc(25% - 24px);
  min-width: 150px;
  text-align: center;
}

.milestone strong {
  display: block;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 8px;
}

/* CERTIFICATIONS */
.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cert-item {
  background-color: var(--accent);
  padding: 16px 24px;
  border-radius: 24px;
  font-size: 14px;
  color: var(--text-medium);
  border: 1px solid var(--border);
}

/* LEGAL CONTENT */
.legal-content {
  background-color: var(--white);
  padding: 40px 20px;
}

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

.legal-content h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}

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

.document-date {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 32px;
}

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

.contact-detail {
  font-weight: 600;
  color: var(--primary);
  margin-top: 16px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-note {
  background-color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}

.form-note ul {
  list-style: none;
  margin: 16px 0;
}

.form-note li {
  margin: 8px 0;
}

/* OFFICE INFO */
.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.office-column {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 200px;
}

.office-column h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 18px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 100px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--success);
  color: var(--white);
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.step-item {
  background-color: var(--accent);
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  text-align: center;
}

.step-item h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.response-time,
.confirmation-note,
.emergency-note {
  text-align: center;
  padding: 16px;
  background-color: var(--accent);
  border-radius: 4px;
  margin-top: 24px;
  color: var(--text-medium);
}

/* CTA SECTIONS */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 60px 20px;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

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

.cta-section .btn-primary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

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

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

.guarantee,
.trust-elements {
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.9;
}

/* FOOTER - SCANDINAVIAN MINIMAL */
footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 36px);
  min-width: 200px;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

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

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

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px var(--shadow);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.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;
  font-size: 14px;
  color: var(--text-medium);
}

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

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

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

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

.cookie-modal-content {
  background-color: var(--white);
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

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

.cookie-category {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

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

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background-color: var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: var(--primary);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Grids */
  .benefits-grid,
  .services-grid,
  .features-grid,
  .pricing-grid,
  .posts-grid,
  .team-grid,
  .values-grid,
  .contact-grid,
  .actions-grid,
  .milestones,
  .mission-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .feature-item,
  .pricing-card,
  .post-card,
  .team-member,
  .value-item,
  .contact-option,
  .action-card,
  .milestone,
  .mission-item,
  .step-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  /* Stats */
  .stats {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Office Details */
  .office-details {
    flex-direction: column;
  }
  
  /* Service Detailed */
  .service-detailed {
    padding: 24px;
  }
  
  .service-detailed .price {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }
  
  /* Typography */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .pricing-card,
  .testimonial-card {
    padding: 24px;
  }
  
  /* Price */
  .price {
    font-size: 36px;
  }
  
  /* Success Icon */
  .success-icon {
    width: 64px;
    height: 64px;
    font-size: 36px;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-section,
  header,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 {
    font-size: 24pt;
  }
  
  h2 {
    font-size: 18pt;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ACCESSIBILITY ENHANCEMENTS */
*:focus-visible {
  outline: 2px solid var(--primary);
  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-width: 0;
}

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

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  :root {
    --primary: #1A3A4D;
    --border: #2C3E50;
  }
  
  .btn {
    border-width: 3px;
  }
}

/* DARK MODE PREPARATION (Optional) */
@media (prefers-color-scheme: dark) {
  /* Scandinavian design typically stays light, but prepare for future */
  /* Uncomment to implement dark mode */
  /*
  :root {
    --white: #1A1A1A;
    --text-dark: #E8E8E8;
    --text-medium: #B8B8B8;
    --light-gray: #2A2A2A;
    --border: #3A3A3A;
  }
  */
}

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

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* SMOOTH SCROLL PADDING */
html {
  scroll-padding-top: 80px;
}

/* SELECTION STYLING */
::selection {
  background-color: var(--primary-light);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--primary-light);
  color: var(--white);
}

/* END OF SCANDINAVIAN CLEAN DESIGN SYSTEM */