@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Mono", monospace;
  background: #F5F3EF;
  color: #2A2A2A;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #2A2A2A;
}

h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-family: "DM Mono", monospace;
  font-size: 1rem;
  line-height: 1.8;
  color: #3D3D3D;
  margin-bottom: 1rem;
}

a {
  transition: color 0.3s ease;
}
a:hover {
  color: #D4635A;
}

.blackText {
  color: #2A2A2A !important;
}

.whiteText {
  color: white !important;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-mono {
  font-family: "Space Mono", monospace;
}

.text-display {
  font-family: "Syne", sans-serif;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.btn {
  font-family: "Space Mono", monospace;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border: 2px solid #2A2A2A;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #2A2A2A;
  transition: left 0.3s ease;
  z-index: -1;
}
.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: #D4635A;
  color: white;
  box-shadow: 4px 4px 0 #2A2A2A;
}
.btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #2A2A2A;
  color: white;
}

.btn-secondary {
  background: transparent;
  color: #2A2A2A;
}
.btn-secondary:hover {
  background: #2A2A2A;
  color: white;
}

.btn-outline {
  background: transparent;
  color: #2A2A2A;
}
.btn-outline:hover {
  background: #2A2A2A;
  color: white;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

.card, .plan-card, .service-card {
  background: white;
  padding: 3rem;
  border: 3px solid #2A2A2A;
  position: relative;
  transition: all 0.3s ease;
}
.card:hover, .plan-card:hover, .service-card:hover {
  transform: translateY(-8px);
}

.card-shadow:hover, .service-card:hover {
  box-shadow: 8px 8px 0 #D4635A;
}

.service-card {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.service-title {
  font-family: "Syne", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2A2A2A;
}

.service-description {
  font-family: "DM Mono", monospace;
  color: #3D3D3D;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
}
.service-features li {
  padding: 0.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 1.5rem;
}
.service-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #D4635A;
  font-weight: bold;
}

.plan-card {
  position: relative;
}
.plan-card.featured {
  background: #D4635A;
  color: white;
  box-shadow: 8px 8px 0 #2A2A2A;
}
.plan-card.featured .plan-name,
.plan-card.featured .plan-price,
.plan-card.featured .price-amount {
  color: white;
}
.plan-card.featured .plan-features {
  color: white;
}
.plan-card.featured .plan-features li {
  border-color: rgba(255, 255, 255, 0.2);
}
.plan-card.featured .plan-features li::before {
  color: #E8C547;
}
.plan-card.featured .price-period {
  color: rgba(255, 255, 255, 0.8);
}

.plan-badge {
  position: absolute;
  top: -15px;
  right: 2rem;
  background: #E8C547;
  color: #2A2A2A;
  padding: 0.5rem 1rem;
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border: 2px solid #2A2A2A;
}

.plan-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid currentColor;
}

.plan-name {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2A2A2A;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #2A2A2A;
}

.price-period {
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  color: #3D3D3D;
}

.plan-features {
  list-style: none;
  margin-bottom: 3rem;
}
.plan-features li {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-family: "DM Mono", monospace;
  position: relative;
  padding-left: 1.5rem;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7A9B76;
  font-weight: bold;
}
.plan-features li.plan-feature-disabled {
  opacity: 0.4;
  text-decoration: line-through;
}
.plan-features li.plan-feature-disabled::before {
  content: "✗";
  color: rgba(42, 42, 42, 0.3);
}

.plan-yearly {
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.stat-item {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  min-width: 100px;
  text-align: center;
}

.stat-number {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #D4635A;
  line-height: 1;
}

.stat-label {
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3D3D3D;
  margin-top: 0.5rem;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #2A2A2A;
}

.section-subtitle {
  font-family: "DM Mono", monospace;
  font-size: 1.1rem;
  color: #3D3D3D;
  line-height: 1.8;
}

section {
  padding: 6rem 2rem;
}

.main-content {
  min-height: 50vh;
  padding-top: 60px;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FBF9F5;
  border-bottom: 3px solid #2A2A2A;
  z-index: 1000;
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  font-size: 2rem;
  animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: #2A2A2A;
  text-decoration: none;
  font-family: "Space Mono", monospace;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4635A;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: #D4635A !important;
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border: 2px solid #2A2A2A;
  box-shadow: 3px 3px 0 #2A2A2A;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #2A2A2A;
}
.nav-cta::after {
  display: none;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FBF9F5;
  border: 2px solid #2A2A2A;
  box-shadow: 4px 4px 0 #2A2A2A;
  list-style: none;
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.nav-dropdown .dropdown-menu li {
  margin: 0;
}
.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #2A2A2A;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.nav-dropdown .dropdown-menu a:hover {
  background: #D4635A;
  color: white;
}
.nav-dropdown .dropdown-menu a::after {
  display: none;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #2A2A2A;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem;
  margin-top: 70px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FBF9F5 0%, #F5F3EF 50%, #E8DFD0 100%);
  z-index: -1;
}
.hero-background::before, .hero-background::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #7A9B76;
  opacity: 0.08;
  animation: float 20s ease-in-out infinite;
}
.hero-background::before {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}
.hero-background::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -50px;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #D4635A;
  background: white;
  padding: 0.5rem 1rem;
  border: 2px solid #2A2A2A;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.hero-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-line.highlight {
  color: #D4635A;
  position: relative;
  display: inline-block;
}
.hero-line.highlight::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 20px;
  background: #E8C547;
  opacity: 0.3;
  z-index: -1;
  transform: skewY(-2deg);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-subtitle {
  font-family: "DM Mono", monospace;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #3D3D3D;
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease;
  animation-delay: 0.4s;
  animation-fill-mode: backwards;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease;
  animation-delay: 0.5s;
  animation-fill-mode: backwards;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.plans-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.footer {
  background: #2A2A2A;
  color: white;
  padding: 6rem 2rem 2rem;
  border-top: 4px solid #D4635A;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #E8C547;
}
.footer-section p {
  font-family: "DM Mono", monospace;
  color: rgba(255, 255, 255, 0.7);
}
.footer-section ul {
  list-style: none;
}
.footer-section li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: "DM Mono", monospace;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #D4635A;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.services {
  background: #FBF9F5;
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, #2A2A2A 0px, #2A2A2A 20px, transparent 20px, transparent 40px);
}

.services-detail {
  background: #FBF9F5;
}

.services-detail-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
  }
}

.service-detail-card {
  background: white;
  border: 2px solid #2A2A2A;
  box-shadow: 4px 4px 0 #2A2A2A;
  transition: all 0.3s ease;
}
.service-detail-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #2A2A2A;
}

.service-detail-header {
  padding: 3rem;
  border-bottom: 2px solid #2A2A2A;
  background: #F5F3EF;
}
.service-detail-header .service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.service-detail-header h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2A2A2A;
  margin: 0;
}

.service-detail-content {
  padding: 3rem;
}
.service-detail-content p {
  font-family: "DM Mono", monospace;
  font-size: 1rem;
  line-height: 1.8;
  color: #3D3D3D;
  margin-bottom: 2rem;
}

.service-detail-features {
  list-style: none;
  margin: 0 0 3rem 0;
  padding: 0;
  font-family: "DM Mono", monospace;
  font-size: 1rem;
}
.service-detail-features li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: #3D3D3D;
  line-height: 1.6;
}
.service-detail-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7A9B76;
  font-weight: bold;
  font-size: 1.2rem;
}

.services-cta {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 6rem;
  background: white;
  border: 2px solid #2A2A2A;
  box-shadow: 4px 4px 0 #2A2A2A;
}
.services-cta h3 {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2A2A2A;
}
.services-cta p {
  font-family: "DM Mono", monospace;
  font-size: 1.1rem;
  color: #3D3D3D;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.services-cta p a {
  color: #D4635A;
  text-decoration: underline;
}
.services-cta p a:hover {
  color: #7A9B76;
}

.hosting-plans {
  background: #F5F3EF;
}

.maintenance {
  background: #2A2A2A;
  color: white;
  position: relative;
  overflow: hidden;
}
.maintenance::before {
  content: "🔧";
  position: absolute;
  font-size: 30rem;
  opacity: 0.03;
  right: -100px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
}

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

.maintenance .section-title {
  color: white;
  text-align: left;
}

.maintenance-description {
  font-family: "DM Mono", monospace;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 800px;
}

.maintenance-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.tier-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.tier-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #D4635A;
  transform: translateY(-4px);
}
.tier-item h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #E8C547;
}

.tier-price {
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}
.tier-price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.tier-item p {
  font-family: "DM Mono", monospace;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.maintenance-note {
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  background: #E8C547;
  color: #2A2A2A;
  padding: 1rem 2rem;
  border: 2px solid #2A2A2A;
  display: inline-block;
}

.about {
  background: #FBF9F5;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text {
  font-family: "DM Mono", monospace;
}
.about-text .section-title {
  text-align: left;
  margin-bottom: 2rem;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3D3D3D;
  margin-bottom: 2rem;
}

.about-page {
  background: #FBF9F5;
}

.about-page-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-intro {
  margin-bottom: 6rem;
}
.about-intro .lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #3D3D3D;
  margin-bottom: 2rem;
  font-weight: 500;
}
.about-intro p {
  font-family: "DM Mono", monospace;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3D3D3D;
  margin-bottom: 2rem;
}
.about-intro p a {
  color: #D4635A;
  text-decoration: underline;
}
.about-intro p a:hover {
  color: #7A9B76;
}

.about-mission,
.about-approach {
  background: white;
  padding: 3rem;
  border: 2px solid #2A2A2A;
  box-shadow: 4px 4px 0 #2A2A2A;
  margin-bottom: 6rem;
}
.about-mission h3,
.about-approach h3 {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #2A2A2A;
}
.about-mission p,
.about-approach p {
  font-family: "DM Mono", monospace;
  font-size: 1rem;
  line-height: 1.8;
  color: #3D3D3D;
  margin-bottom: 2rem;
}
.about-mission p:last-child,
.about-approach p:last-child {
  margin-bottom: 0;
}

.about-expertise {
  margin-bottom: 6rem;
}
.about-expertise h3 {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #2A2A2A;
  text-align: center;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.expertise-item {
  text-align: center;
  padding: 3rem;
  background: white;
  border: 2px solid #2A2A2A;
  box-shadow: 3px 3px 0 #2A2A2A;
  transition: all 0.3s ease;
}
.expertise-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #2A2A2A;
}
.expertise-item .expertise-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.expertise-item h4 {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2A2A2A;
}
.expertise-item p {
  font-family: "DM Mono", monospace;
  font-size: 0.85rem;
  color: #3D3D3D;
  line-height: 1.6;
  margin: 0;
}

.about-timeline-section {
  margin-bottom: 6rem;
}
.about-timeline-section h3 {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #2A2A2A;
}

.about-cta {
  text-align: center;
  padding: 6rem;
  background: #7A9B76;
  color: white;
  border: 2px solid #2A2A2A;
  box-shadow: 4px 4px 0 #2A2A2A;
}
.about-cta h3 {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}
.about-cta p {
  font-family: "DM Mono", monospace;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #D4635A;
}

.timeline-item {
  position: relative;
  padding: 2rem 0;
  padding-left: 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 2rem;
  width: 20px;
  height: 20px;
  background: #D4635A;
  border: 3px solid #FBF9F5;
  border-radius: 50%;
}

.timeline-year {
  font-family: "Syne", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #D4635A;
  margin-bottom: 0.25rem;
}

.timeline-event {
  font-family: "DM Mono", monospace;
  color: #3D3D3D;
}

.contact-cta {
  background: #7A9B76;
  color: white;
  text-align: center;
}

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

.cta-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.cta-subtitle {
  font-family: "DM Mono", monospace;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-cta .btn-primary {
  background: #E8C547;
  color: #2A2A2A;
}

.contact-cta .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}
.contact-cta .btn-secondary:hover {
  background: white;
  color: #7A9B76;
}

.Credit-Card a {
  background: url("../images/icons/credit-card-icon.png") no-repeat scroll 0 0 transparent;
  float: left;
  height: 55px;
  text-indent: -999em;
  width: 55px;
}

.update_creditcard {
  display: none;
}

.members-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}
.members-page h1, .members-page h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

[class*=page-blogs-] .content, [class*=page-members-] .content, .page-terms-of-use .content, .page-privacy-policy .content, .page-refund-policy .content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-us {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.page-item.active .page-link {
  background-color: #D4635A;
  border-color: #D4635A;
  color: white;
}

.paginator {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(42, 42, 42, 0.1);
}
.paginator .pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 1rem;
  padding: 0;
}
.paginator .pagination li {
  margin: 0;
}
.paginator .pagination li a,
.paginator .pagination li span {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  text-decoration: none;
  color: #2A2A2A;
  background: white;
  border: 2px solid #2A2A2A;
  transition: all 0.2s ease;
  min-width: 40px;
  text-align: center;
}
.paginator .pagination li a:hover,
.paginator .pagination li span:hover {
  background: #D4635A;
  color: white;
  transform: translateY(-2px);
  box-shadow: 2px 2px 0 #2A2A2A;
}
.paginator .pagination li.active span {
  background: #D4635A;
  color: white;
  box-shadow: 3px 3px 0 #2A2A2A;
}
.paginator .pagination li.disabled span {
  opacity: 0.4;
  cursor: not-allowed;
}
.paginator .pagination li.disabled span:hover {
  background: white;
  color: #2A2A2A;
  transform: none;
  box-shadow: none;
}
.paginator p {
  text-align: center;
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  color: #3D3D3D;
  margin: 0;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: #D4635A;
  color: white;
  border: 2px solid #2A2A2A;
  box-shadow: 3px 3px 0 #2A2A2A;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #2A2A2A;
  background: #B34942;
  color: white;
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
}

.blog-post {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}
.blog-post h2, .blog-post h2.page-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
}
.blog-post h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero-small {
  height: 60vh;
  max-height: 70vh;
  min-height: 50vh;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .hero-small {
    height: 50vh;
    min-height: 40vh;
  }
}
.hero-small .carousel-inner,
.hero-small .carousel-item {
  height: 100%;
}
.hero-small img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.hero-small .carousel-caption {
  background: rgba(42, 42, 42, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
}
.hero-small .carousel-caption h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-family: "Syne", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin: 0;
}
@media (max-width: 768px) {
  .hero-small .carousel-caption {
    padding: 1rem;
  }
}

.blogs.index .post-title h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}
.blogs.index .post-title h2 a {
  color: #2A2A2A;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blogs.index .post-title h2 a:hover {
  color: #D4635A;
}

.blogtoolbar {
  left: 0;
  position: absolute;
  top: 50%;
  max-height: calc(100vh - 110px);
  max-width: 250px;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .blogtoolbar {
    position: relative;
    top: 0;
    max-height: none;
  }
}
.blogtoolbar .side-nav {
  background: white;
  border: 2px solid #2A2A2A;
  padding: 2rem;
  box-shadow: 3px 3px 0 #2A2A2A;
}
.blogtoolbar .side-nav h4.heading {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #2A2A2A;
  border-bottom: 2px solid rgba(42, 42, 42, 0.1);
  padding-bottom: 0.5rem;
}
.blogtoolbar .side-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blogtoolbar .side-nav ul li {
  margin-bottom: 0.5rem;
}
.blogtoolbar .side-nav .side-nav-item {
  display: block;
  padding: 0.5rem 1rem;
  color: #2A2A2A;
  text-decoration: none;
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  text-align: left;
  width: 100%;
}
.blogtoolbar .side-nav .side-nav-item:hover {
  background: #D4635A;
  color: white;
  border-color: #2A2A2A;
}
.blogtoolbar .side-nav button.side-nav-item {
  cursor: pointer;
}

.SocialShare {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: #F5F3EF;
  border: 2px solid #2A2A2A;
  border-radius: 0;
}
.SocialShare .social-share {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.SocialShare .social-share li {
  margin: 0;
}
.SocialShare .social-share h3 {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  margin: 0;
  color: #2A2A2A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.SocialShare .social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: white;
  color: #2A2A2A;
  border: 2px solid #2A2A2A;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1.25rem;
  box-shadow: 2px 2px 0 #2A2A2A;
}
.SocialShare .social-share a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #2A2A2A;
}
.SocialShare .social-share a:has(.fa-facebook-f):hover {
  background: #1877f2;
  color: white;
}
.SocialShare .social-share a:has(.fa-twitter):hover {
  background: #1da1f2;
  color: white;
}
.SocialShare .social-share a:has(.fa-linkedin-in):hover {
  background: #0077b5;
  color: white;
}
.SocialShare .social-share a:has(.fa-whatsapp):hover {
  background: #25d366;
  color: white;
}
.SocialShare .social-share a:has(.fa-pinterest):hover {
  background: #e60023;
  color: white;
}
.SocialShare .social-share a:has(.fa-reddit):hover {
  background: #ff4500;
  color: white;
}
.SocialShare .social-share a:has(.fa-envelope):hover {
  background: #7A9B76;
  color: white;
}
.SocialShare .social-share a i {
  font-size: inherit;
}
@media (max-width: 768px) {
  .SocialShare {
    padding: 1rem;
  }
  .SocialShare .social-share {
    gap: 0.5rem;
  }
  .SocialShare .social-share a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.error-page {
  background: #FBF9F5;
}
.error-page .main-content {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.error-404 {
  text-align: center;
}

.error-content {
  background: white;
  border: 3px solid #2A2A2A;
  box-shadow: 8px 8px 0 #2A2A2A;
  padding: 6rem;
}
@media (max-width: 768px) {
  .error-content {
    padding: 3rem;
  }
}

.error-code {
  margin-bottom: 3rem;
}
.error-code .glitch {
  font-family: "Syne", sans-serif;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  line-height: 1;
  color: #D4635A;
  display: inline-block;
  position: relative;
  animation: glitch 2s infinite;
}
.error-code .glitch::before, .error-code .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.error-code .glitch::before {
  left: 2px;
  text-shadow: -2px 0 #7A9B76;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 5s infinite linear alternate-reverse;
}
.error-code .glitch::after {
  left: -2px;
  text-shadow: -2px 0 #E8C547;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 3s infinite linear alternate-reverse;
}

@keyframes glitch {
  0%, 100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
}
@keyframes glitch-anim {
  0% {
    clip: rect(10px, 9999px, 31px, 0);
  }
  20% {
    clip: rect(85px, 9999px, 140px, 0);
  }
  40% {
    clip: rect(48px, 9999px, 95px, 0);
  }
  60% {
    clip: rect(60px, 9999px, 72px, 0);
  }
  80% {
    clip: rect(25px, 9999px, 38px, 0);
  }
  100% {
    clip: rect(70px, 9999px, 110px, 0);
  }
}
.error-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #2A2A2A;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.error-message {
  font-family: "DM Mono", monospace;
  font-size: 1.1rem;
  color: #3D3D3D;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.error-url {
  background: #F5F3EF;
  padding: 1rem 2rem;
  border: 1px solid rgba(42, 42, 42, 0.1);
  margin-bottom: 3rem;
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  word-break: break-all;
}
.error-url strong {
  color: #2A2A2A;
  display: block;
  margin-bottom: 0.5rem;
}
.error-url code {
  color: #D4635A;
  background: white;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(42, 42, 42, 0.1);
  display: inline-block;
  font-family: "Space Mono", monospace;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}
.error-actions .btn {
  min-width: 180px;
}

.error-suggestions {
  text-align: left;
  background: #F5F3EF;
  padding: 2rem;
  border: 2px solid rgba(42, 42, 42, 0.1);
  margin-bottom: 3rem;
}
.error-suggestions h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2A2A2A;
  margin-bottom: 1rem;
}
.error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.error-suggestions ul li {
  font-family: "DM Mono", monospace;
  font-size: 1rem;
  color: #3D3D3D;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.error-suggestions ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #D4635A;
  font-weight: bold;
}
.error-suggestions ul li a {
  color: #D4635A;
  text-decoration: underline;
}
.error-suggestions ul li a:hover {
  color: #7A9B76;
}

.error-visual {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(42, 42, 42, 0.1);
}
.error-visual .error-dog {
  font-size: 5rem;
  margin-bottom: 1rem;
  animation: wiggle 3s ease-in-out infinite;
}
.error-visual .error-caption {
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  color: #3D3D3D;
  font-style: italic;
  margin: 0;
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animate-fade-in {
  animation: fadeIn 0.5s ease;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease;
}

.animate-slide-down {
  animation: slideDown 0.6s ease;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.transition-fast {
  transition: all 0.2s ease;
}

.transition-base {
  transition: all 0.3s ease;
}

.transition-slow {
  transition: all 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}
.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #D4635A;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #FBF9F5;
    border-bottom: 3px solid #2A2A2A;
    flex-direction: column;
    gap: 0;
    padding: 2rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .nav-links.active {
    max-height: 500px;
    opacity: 1;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(42, 42, 42, 0.1);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    width: 100%;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid #D4635A;
    margin-left: 1rem;
    padding-left: 1rem;
  }
  .nav-cta {
    margin-top: 1rem;
    display: block;
    text-align: center;
  }
  .hero-stats {
    gap: 2rem;
  }
  .services-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .about-container {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  section {
    padding: 3rem 1rem;
  }
  .hero {
    padding: 3rem 1rem;
  }
}
@media (max-width: 414px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 2rem;
  }
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.85rem;
  }
  .btn-large {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
  .maintenance-tiers {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  .nav-container,
  .hero-content,
  .services-grid,
  .plans-grid,
  .maintenance-content,
  .about-container,
  .contact-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
    min-width: 44px;
  }
  .nav-links a {
    padding: 0.5rem;
  }
  .service-card:hover,
  .plan-card:hover,
  .tier-item:hover {
    transform: none;
  }
  .card:hover {
    box-shadow: none;
  }
}
@media print {
  .nav,
  .footer {
    display: none;
  }
  * {
    background: white !important;
    color: black !important;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  .section {
    page-break-inside: avoid;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    min-height: auto;
    padding: 2rem;
  }
  .hero-stats {
    margin-top: 2rem;
  }
}