/* Reset a základní styly */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Active nav link */
.nav-link.active,
.mobile-nav-link.active {
  color: #000;
  font-weight: 600;
}

.nav-link.active::after,
.mobile-nav-link.active::after {
  width: 100%;
}

/* Hlavička */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
}

.logo h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.03rem;
  position: relative;
}

.logo h1::after {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: linear-gradient(90deg, #000, #666);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.logo h1:hover::after {
  transform: scaleX(1);
}

/* Navigace */
.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0.125rem;
  background: #1a1a1a;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #000;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.3125rem;
}

.hamburger-line {
  width: 1.5625rem;
  height: 0.125rem;
  background: #1a1a1a;
  margin: 0.1875rem 0;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.4375rem, -0.375rem);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  transition: right 0.3s ease;
  z-index: 999;
  padding-top: 80px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  color: #1a1a1a;
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-close:hover {
  color: #000;
  transform: scale(1.1);
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  padding: 40px 20px;
}

.mobile-nav-list li {
  margin: 30px 0;
}

.mobile-nav-link {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 500;
  display: block;
  padding: 15px;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #000;
  transform: translateY(-2px);
}

/* Hero sekce */
.main {
  padding-top: 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.875rem;
  letter-spacing: -0.125rem;
}

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(1.875rem);
  transition: all 0.8s ease;
}

.hero-title-line.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-title-highlight {
  background: linear-gradient(135deg, #1a1a1a 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-title-highlight::after {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(90deg, #000, #666);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineExpand 1s ease 1.5s forwards;
}

@keyframes lineExpand {
  to {
    transform: scaleX(1);
  }
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  color: #333;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
  transform: translateY(1.25rem);
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero price section */
.hero-price-section {
  text-align: center;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
  transform: translateY(1.25rem);
}

.hero-price {
  display: inline-block;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.price-benefits {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.benefit {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0;
}

.price-highlight {
  font-weight: 700;
  color: #ffffff;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.3s forwards;
  transform: translateY(1.25rem);
}

/* Tlačítka - BEZ focus outlines */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
  outline: none; /* Odstranění focus outline */
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 2;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 3;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover::after {
  width: 20rem;
  height: 20rem;
}

.btn-primary {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2),
              0 0.25rem 0.5rem rgba(0, 0, 0, 0.1), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2),
                0 0.25rem 0.5rem rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1), 
                0 0 0 0 rgba(26, 26, 26, 0.4);
  }
  50% {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2),
                0 0.25rem 0.5rem rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1), 
                0 0 0 0.5rem rgba(26, 26, 26, 0.1);
  }
}

.btn-primary:hover {
  transform: translateY(-0.25rem) scale(1.02);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3), 
              0 0.5rem 1rem rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  animation: none;
}

.btn-primary:active {
  transform: translateY(-0.125rem) scale(1.01);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1),
              0 0.25rem 0.5rem rgba(0, 0, 0, 0.05), 
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.125rem);
  }
}

.btn-secondary::before {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.btn-secondary:hover {
  transform: translateY(-0.25rem) scale(1.02);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #1a1a1a;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15), 
              0 0.5rem 1rem rgba(0, 0, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.2);
  animation: none;
}

.btn-secondary:active {
  transform: translateY(-0.125rem) scale(1.01);
}

/* CO NABÍZÍM SEKCE */
.services {
  background: #0a0a0a;
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
}

.services-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.services-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.services-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #a0a0a0;
}

.services-description p {
  margin-bottom: 1.5rem;
}

.highlight {
  color: #ffffff;
  font-weight: 600;
}

.services-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 4rem 0;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.problems {
  border-left: 3px solid #ef4444;
}

.solutions {
  border-left: 3px solid #10b981;
}

.comparison-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.comparison-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.comparison-card ul {
  list-style: none;
}

.comparison-card li {
  padding: 0.75rem 0;
  color: #a0a0a0;
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-card li:last-child {
  border-bottom: none;
}

.problems li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 600;
}

.solutions li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 600;
}

/* Stats section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: #a0a0a0;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Process section */
.process-section {
  margin-top: 4rem;
  text-align: center;
}

.process-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
}

.process-flow {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
  position: relative;
}

.step-number {
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  color: #0a0a0a;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #a0a0a0;
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  left: 1.5rem;
  top: 3rem;
  bottom: -2rem;
  width: 2px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  z-index: 1;
}

.process-step:last-child .step-connector {
  display: none;
}

/* Technické vlastnosti */
.tech-features {
  background: #111111;
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
}

.tech-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tech-intro h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.tech-intro p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #a0a0a0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.tech-category {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.tech-category:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
}

.tech-category h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tech-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
}

.tech-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.tech-description {
  font-size: 0.875rem;
  color: #a0a0a0;
  line-height: 1.5;
}

/* ZÁPATÍ */
.footer {
  background: #000000;
  color: #ffffff;
  padding: 2rem 0 1rem;
  border-top: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-brand h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.footer-brand p {
  color: #a0a0a0;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact p {
  color: #a0a0a0;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.footer-contact strong {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    min-width: 15.625rem;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .hero-price-section {
    margin-bottom: 2rem;
  }

  .hero-price {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 0.5rem;
  }

  /* Hide price benefits on mobile to save space */
  .price-benefits {
    display: none;
  }

  .hero {
    padding-top: 6rem; /* Zvětšeno z 2rem na 6rem */
    min-height: 100vh;
  }

  .services {
    padding: 3rem 0;
  }

  .services-intro {
    margin-bottom: 3rem;
  }

  .services-comparison {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 1.5rem;
  }

  .process-section {
    margin-top: 3rem;
  }

  .process-flow {
    gap: 1.5rem;
  }

  .comparison-card {
    padding: 1.5rem;
  }

  .tech-features {
    padding: 3rem 0;
  }

  .tech-intro {
    margin-bottom: 3rem;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .tech-category {
    padding: 1.5rem;
  }

  .footer {
    padding: 1.5rem 0 0.75rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .header .container {
    padding: 0.9375rem 1.25rem;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 0.9375rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.875rem;
  }

  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    min-width: 12.5rem;
  }

  .hero {
    padding-top: 7rem; /* Zvětšeno z 1rem na 7rem */
    min-height: 100vh;
  }

  .hero-content {
    padding: 0 1rem; /* Přidán padding pro lepší spacing na stranách */
  }

  .services {
    padding: 2rem 0;
  }

  .services-intro {
    margin-bottom: 2rem;
  }

  .services-description {
    font-size: 1rem;
  }

  .services-comparison {
    margin: 2rem 0;
  }

  .stats-section {
    grid-template-columns: 1fr;
    margin: 2rem 0;
    padding: 1.25rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .process-section {
    margin-top: 2rem;
  }

  .process-flow {
    gap: 1.25rem;
  }

  .comparison-card {
    padding: 1.25rem;
  }

  .tech-features {
    padding: 2rem 0;
  }

  .tech-intro {
    margin-bottom: 2rem;
  }

  .tech-grid {
    margin-bottom: 2rem;
  }

  .tech-category {
    padding: 1.25rem;
  }

  .footer {
    padding: 1.25rem 0 0.5rem;
  }

  .footer-content {
    gap: 1.25rem;
  }

  .footer-brand h3 {
    font-size: 1.125rem;
  }

  .footer-brand p,
  .footer-links a,
  .footer-contact p {
    font-size: 0.85rem;
  }

  .hero-price {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-price-section {
    margin-bottom: 2rem;
  }

  .hero-buttons {
    margin-bottom: 2rem;
  }
}

/* Smooth scrolling enhancement */
html {
  scroll-behavior: smooth;
}

/* Body lock when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* Loading animation for better UX */
.hero-title-line {
  animation-fill-mode: both;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-title-highlight {
    -webkit-text-fill-color: #000;
    color: #000;
  }

  .hero-subtitle {
    color: #333;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero-title-line,
  .hero-subtitle,
  .hero-price-section,
  .hero-buttons {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .hero-title-highlight::after {
    animation: none;
    transform: scaleX(1);
  }
  
  .btn-primary,
  .btn-secondary {
    animation: none;
  }
  
  .tech-item:hover,
  .comparison-card:hover,
  .tech-category:hover {
    transform: none;
  }
}