/* ===================================
   MYSTICROUTES - PROFESSIONAL CORPORATE STYLE
   CSS Reset & Base Styles
   =================================== */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - Professional Corporate
   =================================== */

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

h1 {
  font-size: 48px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #475569;
  font-size: 16px;
}

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

a:hover {
  color: #0284C7;
}

ul {
  list-style: none;
}

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

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

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

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

/* ===================================
   MOBILE MENU TOGGLE BUTTON
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #1E3A8A;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #64748B;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 20px;
  color: #1e293b;
  font-weight: 500;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: #f1f5f9;
  color: #1E3A8A;
  transform: translateX(4px);
}

/* ===================================
   HEADER - Professional Corporate
   =================================== */

header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  padding: 10px 18px;
  color: #475569;
  font-weight: 500;
  font-size: 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: #f1f5f9;
  color: #1E3A8A;
}

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

/* ===================================
   BUTTONS - Professional Corporate
   =================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #1E3A8A;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}

.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 58, 138, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-secondary:hover {
  background: #1E3A8A;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-link {
  background: transparent;
  color: #0EA5E9;
  padding: 12px 24px;
  font-weight: 600;
  border: none;
}

.btn-link:hover {
  color: #0284C7;
  transform: translateX(4px);
}

button:disabled,
.btn-primary:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  opacity: 0.6;
}

/* ===================================
   HERO SECTION - Professional Corporate
   =================================== */

.hero {
  background: linear-gradient(135deg, #1E3A8A 0%, #1e40af 100%);
  color: #ffffff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 52px;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: #e0e7ff;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

.badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===================================
   PAGE HERO - Professional Corporate
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #1E3A8A 0%, #1e40af 100%);
  color: #ffffff;
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  color: #e0e7ff;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.last-updated,
.effective-date {
  color: #cbd5e1;
  font-size: 14px;
  margin-top: 12px;
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits {
  padding: 80px 0;
  background: #f8fafc;
}

.benefits h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
  border-color: #0EA5E9;
}

.metric {
  font-size: 52px;
  font-weight: 700;
  color: #0EA5E9;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1E3A8A;
}

.benefit-card p {
  color: #64748B;
  font-size: 15px;
  line-height: 1.6;
}

/* ===================================
   SERVICES OVERVIEW
   =================================== */

.services-overview {
  padding: 80px 0;
}

.services-overview h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}

.section-description {
  text-align: center;
  font-size: 18px;
  color: #64748B;
  max-width: 700px;
  margin: 0 auto 50px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.service-card {
  background: #ffffff;
  padding: 36px 30px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(33.333% - 28px);
  min-width: 280px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  border-color: #0EA5E9;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 22px;
  color: #1E3A8A;
  margin-bottom: 12px;
}

.service-card p {
  color: #64748B;
  flex: 1;
  line-height: 1.7;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #0EA5E9;
  margin: 12px 0;
}

/* ===================================
   HOW IT WORKS
   =================================== */

.how-it-works {
  padding: 80px 0;
  background: #f8fafc;
}

.how-it-works h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.step {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  border-left: 4px solid #0EA5E9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.15);
}

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

.step h3 {
  font-size: 20px;
  color: #1E3A8A;
  margin-bottom: 8px;
}

.step p {
  color: #64748B;
  line-height: 1.6;
}

/* ===================================
   SECURITY FEATURES
   =================================== */

.security-features {
  padding: 80px 0;
}

.security-features h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature:hover {
  border-color: #1E3A8A;
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.12);
  transform: translateY(-4px);
}

.feature img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.feature h3 {
  font-size: 16px;
  color: #1E3A8A;
  margin: 0;
}

/* ===================================
   TESTIMONIALS - Improved Contrast
   =================================== */

.testimonials {
  padding: 80px 0;
  background: #f8fafc;
}

.testimonials h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.testimonial-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 28px);
  min-width: 320px;
  max-width: 550px;
  border-left: 4px solid #0EA5E9;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
  transform: translateY(-4px);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #1e293b;
  font-style: italic;
  margin-bottom: 20px;
}

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

.author strong {
  font-size: 16px;
  font-weight: 600;
  color: #1E3A8A;
}

.author span {
  font-size: 14px;
  color: #64748B;
}

/* ===================================
   STATS COUNTER
   =================================== */

.stats-counter {
  padding: 80px 0;
  background: linear-gradient(135deg, #1E3A8A 0%, #1e40af 100%);
  color: #ffffff;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.stat {
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  padding: 20px;
}

.stat-number {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: #e0e7ff;
  font-weight: 500;
}

/* ===================================
   CTA BANNER
   =================================== */

.cta-banner,
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  text-align: center;
}

.cta-banner h2,
.cta-section h2 {
  font-size: 36px;
  color: #1E3A8A;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  font-size: 18px;
  color: #64748B;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* ===================================
   FOOTER - Professional Corporate
   =================================== */

footer {
  background: #1e293b;
  color: #cbd5e1;
  padding: 60px 0 30px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-column p,
.footer-column a {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #0EA5E9;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 14px;
}

/* ===================================
   SERVICES DETAILED PAGE
   =================================== */

.services-detailed {
  padding: 60px 0;
}

.service-detail {
  background: #ffffff;
  padding: 40px 36px;
  margin-bottom: 32px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-color: #0EA5E9;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.1);
}

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

.service-detail p {
  color: #64748B;
  margin-bottom: 24px;
  line-height: 1.7;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.features-list li {
  background: #f1f5f9;
  padding: 10px 18px;
  border-radius: 6px;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  flex: 1 1 calc(50% - 12px);
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-list li::before {
  content: '✓';
  color: #0EA5E9;
  font-weight: 700;
  font-size: 16px;
}

.price-tag {
  font-size: 28px;
  font-weight: 700;
  color: #0EA5E9;
  margin-top: 20px;
}

/* ===================================
   INTEGRATIONS
   =================================== */

.integrations {
  padding: 80px 0;
  background: #f8fafc;
  text-align: center;
}

.integrations h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.integrations p {
  font-size: 18px;
  color: #64748B;
  margin-bottom: 40px;
}

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.integration-badge {
  background: #ffffff;
  padding: 14px 24px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  font-weight: 600;
  color: #475569;
  font-size: 15px;
  transition: all 0.3s ease;
}

.integration-badge:hover {
  border-color: #1E3A8A;
  color: #1E3A8A;
  transform: translateY(-2px);
}

/* ===================================
   USE CASES
   =================================== */

.use-cases {
  padding: 80px 0;
}

.use-cases h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.use-cases-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.use-case-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(33.333% - 28px);
  min-width: 280px;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  border-color: #0EA5E9;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.12);
  transform: translateY(-4px);
}

.use-case-card h3 {
  font-size: 22px;
  color: #1E3A8A;
  margin-bottom: 16px;
}

.use-case-card p {
  color: #64748B;
  margin-bottom: 12px;
  line-height: 1.7;
}

.use-case-card strong {
  color: #1e293b;
  font-weight: 600;
}

/* ===================================
   COMPANY STORY & VALUES
   =================================== */

.company-story,
.timeline,
.values,
.team-intro,
.certifications {
  padding: 60px 0;
}

.company-story h2,
.timeline h2,
.values h2,
.team-intro h2,
.certifications h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 32px;
}

.company-story p {
  max-width: 800px;
  margin: 0 auto 20px;
  color: #64748B;
  font-size: 17px;
  line-height: 1.8;
}

.timeline-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.timeline-item {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 12px;
  border-left: 4px solid #0EA5E9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.12);
}

.year {
  font-size: 32px;
  font-weight: 700;
  color: #0EA5E9;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.timeline-item h3 {
  font-size: 20px;
  color: #1E3A8A;
  margin-bottom: 8px;
}

.timeline-item p {
  color: #64748B;
  font-size: 15px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card {
  background: #ffffff;
  padding: 36px 30px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(25% - 28px);
  min-width: 240px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.value-card:hover {
  border-color: #1E3A8A;
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.12);
  transform: translateY(-4px);
}

.value-card img {
  width: 60px;
  height: 60px;
}

.value-card h3 {
  font-size: 20px;
  color: #1E3A8A;
  margin: 0;
}

.value-card p {
  color: #64748B;
  font-size: 15px;
  line-height: 1.6;
}

.expertise-list {
  max-width: 600px;
  margin: 32px auto 0;
}

.expertise-list li {
  padding: 12px 0;
  color: #475569;
  font-size: 16px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.expertise-list li::before {
  content: '✓';
  color: #0EA5E9;
  font-weight: 700;
  font-size: 18px;
}

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 40px;
}

.cert-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(25% - 28px);
  min-width: 240px;
  text-align: center;
  transition: all 0.3s ease;
}

.cert-card:hover {
  border-color: #0EA5E9;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.12);
  transform: translateY(-4px);
}

.cert-card h3 {
  font-size: 22px;
  color: #1E3A8A;
  margin-bottom: 12px;
}

.cert-card p {
  color: #64748B;
  font-size: 14px;
  line-height: 1.6;
}

.stats-highlights {
  padding: 80px 0;
  background: #a3a5a7;
}

.stats-highlights h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

/* ===================================
   SECURITY PAGE
   =================================== */

.security-overview {
  padding: 60px 0;
}

.security-overview h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 24px;
}

.security-overview p {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: #64748B;
  font-size: 17px;
}

.security-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.point {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 16px 24px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.point:hover {
  border-color: #0EA5E9;
  transform: translateY(-2px);
}

.point img {
  width: 32px;
  height: 32px;
}

.point span {
  font-weight: 600;
  color: #1e293b;
  font-size: 15px;
}

.encryption-details,
.compliance,
.data-centers,
.backup-recovery,
.access-control {
  padding: 60px 0;
}

.encryption-details h2,
.compliance h2,
.data-centers h2,
.backup-recovery h2,
.access-control h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.encryption-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.encryption-spec {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(33.333% - 28px);
  min-width: 260px;
  text-align: center;
  transition: all 0.3s ease;
}

.encryption-spec:hover {
  border-color: #1E3A8A;
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.12);
  transform: translateY(-4px);
}

.encryption-spec h3 {
  font-size: 20px;
  color: #1E3A8A;
  margin-bottom: 12px;
}

.encryption-spec p {
  color: #64748B;
  margin-bottom: 16px;
}

.standard {
  background: linear-gradient(135deg, #1E3A8A 0%, #1e40af 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
}

.compliance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.compliance-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(50% - 28px);
  min-width: 300px;
  transition: all 0.3s ease;
  position: relative;
}

.compliance-card:hover {
  border-color: #0EA5E9;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.12);
  transform: translateY(-4px);
}

.compliance-card h3 {
  font-size: 24px;
  color: #1E3A8A;
  margin-bottom: 16px;
}

.compliance-card p {
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 16px;
}

.date {
  color: #0EA5E9;
  font-weight: 600;
  font-size: 14px;
}

.data-centers p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #64748B;
  font-size: 17px;
}

.feature-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(25% - 28px);
  min-width: 240px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #1E3A8A;
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.12);
  transform: translateY(-4px);
}

.feature-card h3 {
  font-size: 20px;
  color: #1E3A8A;
  margin-bottom: 12px;
}

.feature-card p {
  color: #64748B;
  font-size: 15px;
  line-height: 1.6;
}

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

.backup-item {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 12px;
  border-left: 4px solid #0EA5E9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
}

.backup-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.12);
}

.backup-item h3 {
  font-size: 18px;
  color: #1E3A8A;
  margin-bottom: 8px;
}

.backup-item p {
  color: #64748B;
  font-size: 15px;
  margin-bottom: 8px;
}

.backup-item span {
  color: #0EA5E9;
  font-size: 13px;
  font-weight: 600;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.metric {
  background: #f1f5f9;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 18px;
  color: #1e293b;
}

.metric strong {
  color: #1E3A8A;
  font-weight: 700;
}

.access-features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.access-feature {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(50% - 28px);
  min-width: 300px;
  transition: all 0.3s ease;
}

.access-feature:hover {
  border-color: #0EA5E9;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.12);
  transform: translateY(-4px);
}

.access-feature h3 {
  font-size: 22px;
  color: #1E3A8A;
  margin-bottom: 12px;
}

.access-feature p {
  color: #64748B;
  line-height: 1.7;
}

.security-faq {
  padding: 60px 0;
  background: #f8fafc;
}

.security-faq h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  padding: 28px 32px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #0EA5E9;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.1);
}

.faq-item h3 {
  font-size: 20px;
  color: #1E3A8A;
  margin-bottom: 12px;
}

.faq-item p {
  color: #64748B;
  line-height: 1.7;
}

/* ===================================
   PRICING PAGE
   =================================== */

.pricing-tables {
  padding: 60px 0;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: flex-start;
}

.pricing-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(33.333% - 28px);
  min-width: 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card:hover {
  border-color: #0EA5E9;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
  transform: translateY(-6px);
}

.pricing-card.popular {
  border-color: #1E3A8A;
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.2);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #1E3A8A 0%, #1e40af 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.pricing-card h3 {
  font-size: 28px;
  color: #1E3A8A;
  margin-bottom: 8px;
}

.target {
  color: #64748B;
  font-size: 15px;
  margin-bottom: 20px;
}

.price {
  margin: 20px 0;
}

.amount {
  font-size: 42px;
  font-weight: 700;
  color: #1E3A8A;
  font-family: 'Montserrat', sans-serif;
}

.period {
  font-size: 16px;
  color: #64748B;
  font-weight: 500;
}

.pricing-card .features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  flex: 1;
}

.pricing-card .features li {
  color: #475569;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.pricing-card .features li::before {
  content: '✓';
  color: #0EA5E9;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.addon-services {
  padding: 60px 0;
  background: #f8fafc;
}

.addon-services h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}

.addon-services p {
  text-align: center;
  color: #64748B;
  font-size: 17px;
  margin-bottom: 40px;
}

.addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.addon-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  text-align: center;
  transition: all 0.3s ease;
}

.addon-card:hover {
  border-color: #0EA5E9;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.12);
  transform: translateY(-4px);
}

.addon-card h3 {
  font-size: 20px;
  color: #1E3A8A;
  margin-bottom: 12px;
}

.addon-card p {
  color: #64748B;
  font-size: 14px;
  margin-bottom: 16px;
}

.addon-card .price {
  font-size: 22px;
  font-weight: 700;
  color: #0EA5E9;
}

.trial-offer,
.money-back {
  padding: 60px 0;
  text-align: center;
}

.trial-offer h2,
.money-back h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.trial-offer p,
.money-back p {
  font-size: 17px;
  color: #64748B;
  max-width: 700px;
  margin: 0 auto 32px;
}

.benefits-list {
  max-width: 500px;
  margin: 0 auto 32px;
  text-align: left;
}

.benefits-list li {
  padding: 12px 0;
  color: #475569;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.benefits-list li::before {
  content: '✓';
  color: #0EA5E9;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.money-back {
  background: #f8fafc;
}

.terms {
  font-size: 15px;
  color: #64748B;
  font-style: italic;
}

.pricing-faq {
  padding: 60px 0;
}

.pricing-faq h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

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

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

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.contact-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(33.333% - 28px);
  min-width: 260px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-card:hover {
  border-color: #0EA5E9;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.12);
  transform: translateY(-4px);
}

.contact-card img {
  width: 50px;
  height: 50px;
}

.contact-card h3 {
  font-size: 20px;
  color: #1E3A8A;
  margin: 0;
}

.contact-card p {
  color: #64748B;
  font-size: 15px;
  line-height: 1.6;
}

.contact-form-section {
  padding: 60px 0;
  background: #f8fafc;
}

.contact-form-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}

.contact-form-section > p {
  text-align: center;
  color: #64748B;
  margin-bottom: 40px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: #1e293b;
  font-size: 15px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #0EA5E9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.form-field.checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-field.checkbox label {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.form-note {
  font-size: 14px;
  color: #64748B;
  margin-top: 8px;
}

.quick-actions,
.office-hours {
  padding: 60px 0;
}

.quick-actions h2,
.office-hours h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.action-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(33.333% - 28px);
  min-width: 260px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.action-card:hover {
  border-color: #1E3A8A;
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.12);
  transform: translateY(-4px);
}

.action-card img {
  width: 60px;
  height: 60px;
}

.action-card h3 {
  font-size: 22px;
  color: #1E3A8A;
  margin: 0;
}

.action-card p {
  color: #64748B;
  font-size: 15px;
  line-height: 1.6;
}

.schedule {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-item {
  background: #ffffff;
  padding: 24px 28px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
}

.schedule-item:hover {
  border-color: #0EA5E9;
  transform: translateX(4px);
}

.schedule-item strong {
  color: #1E3A8A;
  font-size: 18px;
}

.schedule-item span {
  color: #0EA5E9;
  font-weight: 700;
  font-size: 20px;
}

.schedule-item p {
  color: #64748B;
  font-size: 14px;
  margin: 0;
}

.contact-faq {
  padding: 60px 0;
  background: #f8fafc;
}

.contact-faq h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

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

.legal-hero {
  background: linear-gradient(135deg, #1E3A8A 0%, #1e40af 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.legal-hero h1 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 12px;
}

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

.text-section {
  margin-bottom: 40px;
}

.text-section h2 {
  font-size: 28px;
  color: #1E3A8A;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.text-section h3 {
  font-size: 20px;
  color: #1e293b;
  margin: 20px 0 12px;
}

.text-section p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.text-section ul {
  margin: 16px 0;
  padding-left: 0;
}

.text-section ul li {
  padding: 8px 0;
  color: #475569;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.text-section ul li::before {
  content: '•';
  color: #0EA5E9;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.5;
}

.gdpr-rights {
  padding: 60px 0;
}

.gdpr-rights h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.right-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  transition: all 0.3s ease;
}

.right-card:hover {
  border-color: #0EA5E9;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.12);
  transform: translateY(-4px);
}

.right-card h3 {
  font-size: 20px;
  color: #1E3A8A;
  margin-bottom: 12px;
}

.right-card p {
  color: #64748B;
  font-size: 15px;
  line-height: 1.6;
}

.dpo-contact,
.supervisory-authority {
  padding: 60px 0;
  background: #f8fafc;
  text-align: center;
}

.dpo-contact h2,
.supervisory-authority h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.dpo-contact p,
.supervisory-authority p {
  font-size: 17px;
  color: #64748B;
  margin-bottom: 24px;
}

.contact-info,
.authority-info {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info p,
.authority-info p {
  color: #475569;
  font-size: 16px;
  margin-bottom: 12px;
}

.contact-info strong,
.authority-info strong {
  color: #1E3A8A;
  font-weight: 600;
}

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

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

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.success-icon img {
  width: 100%;
  height: 100%;
}

.thank-you-hero h1 {
  font-size: 42px;
  color: #1E3A8A;
  margin-bottom: 16px;
}

.thank-you-hero p {
  font-size: 18px;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto 32px;
}

.next-steps,
.confirmation-details,
.useful-resources,
.social-proof,
.alternative-actions,
.contact-reminder {
  padding: 60px 0;
}

.next-steps h2,
.confirmation-details h2,
.useful-resources h2,
.social-proof h2,
.alternative-actions h2,
.contact-reminder h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.next-steps {
  background: #f8fafc;
}

.useful-resources p,
.alternative-actions p {
  text-align: center;
  color: #64748B;
  margin-bottom: 32px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.resource-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-color: #0EA5E9;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.12);
  transform: translateY(-4px);
}

.resource-card h3 {
  font-size: 20px;
  color: #1E3A8A;
  margin-bottom: 12px;
}

.resource-card p {
  color: #64748B;
  font-size: 15px;
}

.time {
  display: block;
  margin-top: 12px;
  color: #0EA5E9;
  font-weight: 600;
  font-size: 14px;
}

.social-proof {
  background: #f8fafc;
}

.contact-reminder {
  background: linear-gradient(135deg, #f1f5f9 0%, #e0e7ff 100%);
  text-align: center;
}

.contact-reminder p {
  font-size: 17px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto 12px;
}

.contact-reminder strong {
  color: #1E3A8A;
}

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e293b;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#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;
  min-width: 300px;
}

.cookie-text p {
  color: #cbd5e1;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

#accept-all {
  background: #0EA5E9;
  color: #ffffff;
}

#accept-all:hover {
  background: #0284C7;
  transform: translateY(-2px);
}

#reject-all {
  background: transparent;
  color: #cbd5e1;
  border: 2px solid #475569;
}

#reject-all:hover {
  border-color: #64748B;
  color: #ffffff;
}

#cookie-settings {
  background: transparent;
  color: #cbd5e1;
  border: 2px solid #475569;
}

#cookie-settings:hover {
  border-color: #64748B;
  color: #ffffff;
}

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

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

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

.modal-content h2 {
  font-size: 28px;
  color: #1E3A8A;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
}

.cookie-category h3 {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #64748B;
  font-size: 14px;
  margin: 0;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
}

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

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

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

input:checked + .slider {
  background: #0EA5E9;
}

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

input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* ===================================
   RESPONSIVE DESIGN - Mobile First
   =================================== */

@media (max-width: 768px) {
  /* Mobile menu visibility */
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav,
  .cta-buttons {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

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

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

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

  /* Layout adjustments */
  .section {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .hero {
    padding: 60px 0 50px;
  }

  .page-hero {
    padding: 50px 0 40px;
  }

  /* Grid to column */
  .benefits-grid,
  .services-grid,
  .steps-grid,
  .features-grid,
  .testimonials-grid,
  .stats-grid,
  .timeline-grid,
  .values-grid,
  .certifications-grid,
  .use-cases-grid,
  .encryption-grid,
  .compliance-grid,
  .addons-grid,
  .pricing-grid,
  .contact-grid,
  .actions-grid,
  .rights-grid,
  .resources-grid {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .step,
  .feature,
  .testimonial-card,
  .stat,
  .timeline-item,
  .value-card,
  .cert-card,
  .use-case-card,
  .encryption-spec,
  .compliance-card,
  .addon-card,
  .pricing-card,
  .contact-card,
  .action-card,
  .right-card,
  .resource-card,
  .feature-card,
  .backup-item,
  .access-feature {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  /* CTA groups */
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-group .btn-primary,
  .cta-group .btn-secondary {
    width: 100%;
  }

  /* Trust indicators */
  .trust-indicators {
    justify-content: center;
  }

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

  .footer-column {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cookie-btn {
    width: 100%;
  }

  /* Modal */
  .modal-content {
    padding: 24px;
    max-height: 90vh;
  }

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

  /* Form adjustments */
  .form-container {
    padding: 24px;
  }

  /* Stats and metrics */
  .metric {
    font-size: 42px;
  }

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

  /* Service detail */
  .features-list li {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .value-card,
  .cert-card,
  .addon-card,
  .contact-card {
    flex: 1 1 calc(50% - 24px);
  }

  .service-card,
  .use-case-card,
  .pricing-card {
    flex: 1 1 calc(50% - 28px);
  }

  .step,
  .feature,
  .timeline-item,
  .backup-item {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ===================================
   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);
  }
}

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

/* Smooth scroll for all elements */
* {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid #0EA5E9;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #0EA5E9;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  .cta-buttons,
  .cta-group,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 18pt;
  }

  h3 {
    font-size: 14pt;
  }
}