/* Reset and Base Styles - Apple-like Minimalism */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding-top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  text-align: left;
}

/* Header - Fixed, Minimal - Logo Only with Enhanced Liquid Glass Effect */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s ease;
  border-bottom: none;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo {
  height: 28.8px;
  width: auto;
  max-width: 200px;
}

/* Burger Menu - Visible on All Devices */
.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  z-index: 1001;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger-menu[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger-menu[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Section - Ample Spacing with Offset for Fixed Header */
.cloud-native-section {
  padding: 140px 0 80px;
  background: var(--bg-primary);
}

.hero-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  line-height: 1.1;
  color: var(--text-primary);
  display: block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.logo-hero {
  height: 196.608px;
  width: auto;
  display: block;
  margin: 0 auto 4rem;
  filter: brightness(1.1);
}

.hero-logo {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0.6144rem auto 0;
  filter: brightness(1.1);
  object-fit: contain;
}

.hero-subtitle {
  font-size: 2.5rem;
  font-weight: 600;
  display: inline-block;
  margin: 0 0 2rem;
  text-transform: none;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.hero-subtitle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
  animation: glowScroll 2s linear infinite;
  z-index: -1;
}

@keyframes glowScroll {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 0.6144rem;
  line-height: 1.7;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.service-blocks-container {
  max-width: 900px;
  margin: 0 auto;
}

.subsection-title {
  font-size: 2rem;
  margin: 3.5rem 0 2.5rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
  flex-wrap: wrap;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  white-space: normal;
}

.subsection-title::after {
  content: "_";
  margin-left: 0.5rem;
  opacity: 1;
  animation: blink 1s infinite;
  font-family: monospace;
  font-weight: normal;
  color: var(--accent-cyan);
  flex-shrink: 0;
  white-space: nowrap;
  display: inline;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.section-title {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  line-height: 1.2;
  color: var(--text-primary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  white-space: normal;
  hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

.subsection-text {
  font-size: 1.05rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  max-width: 800px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Lists - Clean, Left-Aligned, Optimized for Extended Bullets */
ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  max-width: 800px;
}

.cloud-native-bullets li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.8rem;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.7;
  opacity: 1;
  transform: translateX(0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

.emoji-icon {
  position: absolute;
  left: 0;
  top: 0.25rem;
  color: var(--text-muted);
  font-weight: bold;
  font-size: 1rem;
}

/* Enhanced Service Blocks - Black Background, Uniform No Special Borders */
.service-block {
  background: var(--bg-primary);
  object-fit: contain;
  padding: 3.5rem;
  margin-bottom: 4.5rem;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: none;
}

/* Continuous Top and Bottom Border Animations - Independent of Hover */
.service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  animation: drawTopBorder 3s linear infinite;
  z-index: 1;
}

.service-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  animation: drawBottomBorder 3s linear infinite reverse;
  z-index: 1;
}

@keyframes drawTopBorder {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes drawBottomBorder {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

/* Free Asset Sections - Direct in Blocks, Full-Width, Black Background */
.asset-free {
  width: 100%;
  height: 350px;
  background: var(--bg-primary);
  border-radius: 12px;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  opacity: 1;
  transform: scale(1);
}

.asset-img-free {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.asset-placeholder-free {
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Process Section - Step Schema - Always Vertical Column on All Devices */
.process-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.process-steps-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 4rem auto 0;
  overflow-x: auto;
}

.process-step {
  text-align: center;
  padding: 3rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: border-color 0.3s ease;
  min-width: 200px;
  width: 100%;
}

.process-step:hover {
  border-color: var(--accent-cyan);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.step-bullets {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 200px;
  margin: 0 auto;
}

.step-bullets li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.step-bullets li::before {
  content: '•';
  color: var(--accent-cyan);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Services Section - Compact Layout - Vertical Stack on All Devices */
.pricing-section {
  padding: 60px 0;
  background: var(--bg-primary);
}

.pricing-packages-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.pricing-package {
  text-align: left;
  padding: 3rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: border-color 0.3s ease;
  width: 100%;
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
}

.pricing-package:hover {
  border-color: var(--accent-cyan);
}

.package-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.package-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.package-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.package-features {
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}

.package-features li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.package-features li::before {
  content: '•';
  color: var(--accent-cyan);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.package-right {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
}

.package-tiers {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.package-tier {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  position: relative;
  min-width: auto;
}

.package-tier.best-choice-tier {
  position: relative;
}

.best-choice-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-cyan);
  color: #000;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 255, 255, 0.2);
  z-index: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.package-tier h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.package-tier p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.tier-features {
  list-style: none;
  margin: 1rem 0 1rem;
  padding: 0;
}

.tier-features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  position: relative;
  padding-left: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.tier-features li::before {
  content: '•';
  color: var(--accent-cyan);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.pricing-cta {
  width: 100%;
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Accessibility for Best Choice Badge - Focus and Contrast */
.package-tier.best-choice-tier:focus-within .best-choice-badge,
.best-choice-badge:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

/* CTA Section with Contact Form */
.cta-section {
  padding: 80px 0;
  background: var(--bg-primary);
  text-align: center;
}

.mailto-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.contact-button {
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  min-width: 120px;
  background: var(--accent-cyan);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.contact-button:hover {
  background: #00CCCC;
  transform: none;
}

.button-icon {
  margin-right: 0.5rem;
  font-size: 1.1em;
}

.email-display {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

/* Footer - Minimal */
.footer {
  background: var(--bg-primary);
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  height: 30px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer p {
  opacity: 0.7;
  font-size: 0.85rem;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Mobile - Responsive Grid */
@media (max-width: 768px) {
  .header-container,
  .container,
  .footer-content {
    padding: 0 16px;
  }

  .header-container {
    padding: 0 16px 0 16px;
  }

  .logo {
    height: 25.92px;
    max-width: 180px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .logo-hero {
    height: 196.608px;
    margin: 0 auto 3rem;
  }

  .hero-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0.6144rem auto 0;
    object-fit: contain;
  }

  .hero-subtitle {
    font-size: 1.75rem;
    display: inline-block;
    margin: 0 0 1.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
    padding: 0 16px;
    margin-bottom: 0.6144rem;
    letter-spacing: 0em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .service-blocks-container {
    padding: 0 16px;
  }

  .subsection-title {
    font-size: 1.4rem;
    margin: 2.5rem 0 2rem;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    flex-wrap: wrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    white-space: normal;
  }

  .subsection-title::after {
    margin-left: 0.3rem;
    flex-shrink: 0;
    white-space: nowrap;
    display: inline;
  }

  .section-title {
    font-size: 2.25rem;
    text-align: center;
    padding: 0 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .cloud-native-bullets li {
    padding-left: 1.75rem;
    margin-bottom: 1.4rem;
    font-size: 0.95rem;
    line-height: 1.55;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .nested-bullets {
    margin-left: 1.5rem;
  }

  .nested-bullets li {
    padding-left: 1.25rem;
    font-size: 0.9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .cloud-native-section {
    padding: 100px 0 60px;
  }

  .service-block {
    padding: 2.2rem;
    margin-bottom: 3.5rem;
  }

  .asset-free {
    height: 200px;
    margin-bottom: 2.8rem;
  }

  .asset-img-free {
    object-fit: contain;
  }

  .asset-placeholder-free {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .mailto-container {
    margin: 1.5rem 0;
  }

  .email-display {
    font-size: 1rem;
    margin-top: 0.75rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 1rem;
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }

  .header {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.1);
  }

  /* Process Section Mobile - Compact with Glass Circles, Column Layout */
  .process-section {
    padding: 60px 0;
  }

  .process-steps-container {
    flex-direction: column;
    gap: 2rem;
    overflow-x: hidden;
  }

  .process-step {
    flex: none;
    min-width: auto;
    padding: 2rem;
  }

  .step-number {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .step-title {
    font-size: 1.1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .step-bullets {
    max-width: none;
  }

  /* Services Section Mobile - More Compact */
  .pricing-section {
    padding: 45px 0;
  }

  .pricing-packages-container {
    gap: 2rem;
  }

  .pricing-package {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .package-features li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    padding-left: 0.9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .best-choice-badge {
    top: -6px;
    right: -6px;
    font-size: 0.7rem;
    padding: 3px 6px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  /* Continuous Border Animations on Mobile - Reduced Speed for Performance */
  .service-block::before,
  .service-block::after {
    animation-duration: 5s;
  }
}

/* Tablet Responsive (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .process-steps-container {
    flex-direction: column;
    gap: 2.5rem;
    overflow-x: hidden;
  }

  .process-step {
    flex: none;
    min-width: auto;
    padding: 2.5rem;
    width: 100%;
  }

  .step-number {
    width: 55px;
    height: 55px;
    font-size: 2.2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .step-title {
    font-size: 1.15rem;
  }

  .step-bullets {
    max-width: 180px;
  }

  .step-bullets li {
    font-size: 0.9rem;
  }

  .pricing-packages-container {
    gap: 2.5rem;
  }

  .pricing-package {
    padding: 2.5rem;
    gap: 3rem;
  }

  .package-right {
    flex: 0 0 320px;
  }

  .package-tiers {
    gap: 1.2rem;
  }

  .package-tier {
    padding: 1.2rem;
  }

  .tier-features li {
    font-size: 0.85rem;
  }

  .package-features li {
    font-size: 0.92rem;
    margin-bottom: 0.65rem;
    line-height: 1.45;
    padding-left: 0.95rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .best-choice-badge {
    top: -7px;
    right: -7px;
    font-size: 0.7rem;
    padding: 3px 6px;
  }
}

/* Medium Desktop Responsive (1025px - 1199px) - Optimized Vertical Stack for Pricing and Process */
@media (min-width: 1025px) and (max-width: 1199px) {
  .container {
    max-width: 1100px;
  }

  .process-steps-container {
    flex-direction: column;
    gap: 3rem;
    justify-content: flex-start;
    overflow-x: hidden;
    max-width: 1100px;
  }

  .process-step {
    flex: none;
    min-width: auto;
    padding: 3rem;
    width: 100%;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }

  .step-title {
    font-size: 1.25rem;
  }

  .step-bullets {
    max-width: 200px;
  }

  .pricing-packages-container {
    flex-direction: column;
    gap: 3rem;
    max-width: 1100px;
    margin: 3rem auto 0;
  }

  .pricing-package {
    flex: none;
    padding: 3rem;
    gap: 3.5rem;
    width: 100%;
    max-width: none;
  }

  .package-right {
    flex: 0 0 350px;
  }

  .package-tiers {
    gap: 1.5rem;
  }

  .package-tier {
    padding: 1.5rem;
  }

  .package-icon {
    font-size: 3rem;
  }

  .package-title {
    font-size: 1.5rem;
  }
}

/* Large Desktop (1200px+) - Full Vertical Stack for Pricing and Process */
@media (min-width: 1200px) {
  .hero-intro {
    margin-bottom: 5rem;
  }

  .hero-logo {
    margin: 1.2288rem auto 0;
  }

  .hero-description {
    margin-bottom: 1.2288rem;
    letter-spacing: 0em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .process-steps-container {
    flex-direction: column;
    gap: 3rem;
  }

  .process-step {
    padding: 3rem;
    flex: none;
    min-width: auto;
    width: 100%;
  }

  .pricing-packages-container {
    flex-direction: column;
    gap: 3rem;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 3rem auto 0;
  }

  .pricing-package {
    flex: none;
    padding: 3rem;
    gap: 3.5rem;
    width: 100%;
    max-width: none;
  }

  .package-right {
    flex: 0 0 350px;
  }

  .package-tiers {
    gap: 1.5rem;
  }

  .package-tier {
    padding: 1.5rem;
  }
}

/* Very Narrow Screens Optimization */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .header-container {
    padding: 0 12px 0 12px;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
  }

  .logo {
    height: 23.328px;
    max-width: 160px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .logo-hero {
    height: 157.45248px;
    margin: 0 auto 2rem;
  }

  .hero-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0.393216rem auto 0;
    object-fit: contain;
  }

  .hero-subtitle {
    font-size: 1.4rem;
    margin: 0 0 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 8px;
    margin-bottom: 0.393216rem;
    letter-spacing: 0em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .subsection-title {
    font-size: 1.15rem;
    margin: 2rem 0 1.5rem;
    line-height: 1.3;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: left;
    flex-wrap: wrap;
    display: block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    white-space: normal;
  }

  .subsection-title::after {
    display: inline;
    margin-left: 0.3rem;
    position: static;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .section-title {
    font-size: 1.75rem;
    text-align: center;
    padding: 0 12px;
    word-break: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .service-block {
    padding: 2rem;
  }

  .asset-free {
    height: 180px;
    margin-bottom: 1.5rem;
  }

  .asset-img-free {
    object-fit: contain;
  }

  .cloud-native-bullets li {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.4;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .contact-button {
    min-width: 100%;
    padding: 12px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .footer-content {
    padding: 0 12px;
    gap: 0.5rem;
  }

  .header {
    background: rgba(255, 255, 255, 0.12);
  }

  .service-block::before,
  .service-block::after {
    animation-duration: 6s;
  }

  .process-section {
    padding: 40px 0;
  }

  .process-steps-container {
    gap: 1.5rem;
  }

  .process-step {
    padding: 1.5rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .pricing-section {
    padding: 40px 0;
  }

  .pricing-packages-container {
    gap: 1.5rem;
  }

  .pricing-package {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .best-choice-badge {
    top: -4px;
    right: -4px;
    font-size: 0.6rem;
    padding: 2px 4px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .tier-features li {
    font-size: 0.75rem;
    padding-left: 0.5rem;
  }

  .package-features li {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    padding-left: 0.7rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}

/* Accessibility - No Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .cloud-native-bullets li {
    transform: none;
    opacity: 1;
  }

  .contact-button:focus {
    transform: none;
  }

  .asset-img-free {
    transform: none;
    opacity: 1;
  }

  .hero-logo {
    transform: none;
  }

  .contact-button:hover {
    transform: none;
  }

  .header {
    transition: none;
  }

  .service-block::before,
  .service-block::after {
    animation: none !important;
    background: var(--border-light);
  }

  .process-step:hover {
    border-color: var(--border-light);
  }

  .pricing-package:hover {
    border-color: var(--border-light);
  }

  .subsection-title::after {
    animation: none !important;
    opacity: 1;
  }

  .hero-subtitle::before {
    animation: none !important;
  }
}

/* Emoji Icons - Subtle */
.emoji-icon {
  font-size: 1.1rem;
  line-height: 1;
  vertical-align: middle;
  margin-right: 0.75rem;
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .emoji-icon {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
}

/* Strong Keywords */
strong {
  color: var(--accent-cyan);
  font-weight: 600;
}

.nested-bullets {
  margin-left: 2rem;
  margin-top: 1rem;
}

.nested-bullets li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Performance Optimization for Assets */
@media (max-width: 480px) {
  .asset-free {
    height: 180px;
    margin-bottom: 2rem;
  }

  .service-block {
    padding: 1.8rem;
  }

  .hero-logo {
    margin: 0.5rem auto 0;
  }
}

/* Cross-browser prefixes for header glass effect */
.header {
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
}

/* Progress Bar - Lateral Vertical with Cyan */
.progress-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 4px;
  height: 0%;
  background: var(--accent-cyan);
  z-index: 10000;
  transition: height 0.3s ease;
  opacity: 0.8;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

@media (max-width: 768px) {
  .logo-hero {
    height: 157.45248px;
  }
}

@media (max-width: 480px) {
  .logo-hero {
    height: 141.707232px;
  }
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 600px;
    margin: 0.6144rem auto 0;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 400px;
    margin: 0.49152rem auto 0;
  }
}

/* Enhanced Bullet List Responsiveness for Extended Lists */
@media (max-width: 768px) {
  .cloud-native-bullets li {
    margin-bottom: 1.3rem;
    padding-left: 1.5rem;
    font-size: 0.92rem;
    line-height: 1.5;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .cloud-native-bullets {
    max-width: 100%;
    padding: 0 8px;
  }

  .service-block {
    padding: 2.2rem;
  }

  .package-features li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    padding-left: 0.9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}

@media (max-width: 480px) {
  .cloud-native-bullets li {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
    font-size: 0.88rem;
    line-height: 1.4;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .service-block {
    padding: 1.8rem;
  }

  .package-features li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    padding-left: 0.8rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}

/* Desktop Optimization for Extended Bullets */
@media (min-width: 769px) {
  .cloud-native-bullets li {
    margin-bottom: 1.8rem;
    line-height: 1.7;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 768px) {
  .cloud-native-bullets li {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cloud-native-bullets li {
    margin-bottom: 1.2rem;
  }
}

/* Tablet Bullet Optimization - Balanced Spacing */
@media (min-width: 769px) and (max-width: 1024px) {
  .cloud-native-bullets li {
    margin-bottom: 1.6rem;
    line-height: 1.65;
    padding-left: 1.8rem;
    font-size: 0.98rem;
  }
}

.tier-features li {
  font-size: 0.85rem;
  padding-left: 0.6rem;
}

.best-choice-badge {
  top: -5px;
  right: -5px;
  font-size: 0.65rem;
  padding: 2px 5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Mobile Menu Overlay - Right Slide In */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--bg-primary);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--border-light);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 5rem 1.5rem 1.5rem;
  overflow-y: auto;
}

.mobile-menu[aria-hidden="false"] {
  right: 0;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-link {
  display: block;
  padding: 1rem 0;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
  color: var(--accent-cyan);
}

.mobile-menu-link.whatsapp {
  color: var(--accent-cyan);
  font-weight: 600;
}

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-primary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.close-menu:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Overlay for Menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

/* Accessibility for Menu */
@media (prefers-reduced-motion: reduce) {
  .burger-menu span,
  .mobile-menu,
  .menu-overlay {
    transition: none;
  }
}

/* Desktop Menu Adjustments - Optimized for Large Screens */
@media (min-width: 769px) {
  .mobile-menu {
    width: 350px;
    max-width: 400px;
    right: -350px;
  }

  .mobile-menu[aria-hidden="false"] {
    right: 0;
  }

  .menu-overlay {
    z-index: 998;
  }

  .header-container {
    z-index: 1002;
  }

  .burger-menu {
    display: none;
  }

  .header-container {
    justify-content: space-between;
  }

  /* Desktop Navigation Styles */
  .desktop-nav {
    display: flex;
    align-items: center;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }

  .nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
    overflow: hidden;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
  }

  .nav-link:hover::after,
  .nav-link:focus::after {
    width: 100%;
  }

  .nav-link:hover,
  .nav-link:focus {
    color: var(--accent-cyan);
  }
}

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

  .header-container {
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .mobile-menu {
    width: 400px;
    right: -400px;
  }

  .mobile-menu[aria-hidden="false"] {
    right: 0;
  }

  .close-menu {
    top: 1.5rem;
    right: 1.5rem;
  }

  .mobile-menu-list {
    padding-top: 1rem;
  }
}

/* Quick Contact Modal Styles - Apple-like Minimalism with Terminal Form */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-content {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.quick-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-contact-form .form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.quick-contact-form label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: 'Courier New', Courier, monospace;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.quick-contact-form input,
.quick-contact-form textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
}

.quick-contact-form input:focus,
.quick-contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

.quick-contact-form input:focus::after,
.quick-contact-form textarea:focus::after {
  content: '_';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-cyan);
  animation: blink 1s infinite;
  font-family: 'Courier New', Courier, monospace;
  font-weight: normal;
  white-space: nowrap;
}

.quick-contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

.quick-contact-form .contact-button {
  align-self: center;
  margin-top: 1rem;
  width: 100%;
  max-width: 200px;
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 1.5rem;
    margin: 1rem;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .quick-contact-form input,
  .quick-contact-form textarea {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.25rem;
    width: 28px;
    height: 28px;
  }

  .quick-contact-form .form-group input,
  .quick-contact-form .form-group textarea {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
}

/* Privacy Policy Modal Styles */
.privacy-content {
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.privacy-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.privacy-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.75rem;
  line-height: 1.3;
}

.privacy-text p,
.privacy-text ul {
  margin-bottom: 1rem;
}

.privacy-text ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.privacy-text ul li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.privacy-text a {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.privacy-text a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 1.5rem;
    margin: 1rem;
  }

  .privacy-text {
    font-size: 0.9rem;
  }

  .privacy-text h4 {
    font-size: 1rem;
  }
}

/* Cookie Banner - Fixed Bottom, Glassmorphism Style */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  z-index: 1002;
  padding: 1rem 0;
  display: none;
  color: var(--text-primary);
}

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

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  flex: 1;
  min-width: 250px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.cookie-link {
  color: var(--accent-cyan);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-link:hover {
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.cookie-button {
  background: var(--accent-cyan);
  color: #000000;
}

.cookie-button:hover {
  background: #00CCCC;
}

.cookie-button.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}

.cookie-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

/* Mobile Responsive for Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 0.75rem 0;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 0 16px;
  }

  .cookie-content p {
    min-width: auto;
    font-size: 0.85rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-button {
    flex: 1;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .cookie-content p {
    font-size: 0.8rem;
  }

  .cookie-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Accessibility for Cookie Banner */
@media (prefers-reduced-motion: reduce) {
  .cookie-button {
    transition: none;
  }
}

.cookie-banner[aria-hidden="true"] {
  display: none;
}

@media (max-width: 768px) {
  .email-display {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
}