:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #fdba74;
  --secondary: #0ea5e9;
  --accent: #f59e0b;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --border-radius: 16px;
  --shadow: 0 10px 25px rgba(249, 115, 22, 0.1);
  --shadow-lg: 0 20px 40px rgba(249, 115, 22, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fdba74 100%);
  --gradient-dark: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Vazirmatn", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: var(--dark);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header - Desktop */
.desktop-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(249, 115, 22, 0.08);
  border-bottom: 2px solid var(--primary-light);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 55px;
  height: 55px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.logo-text h1 {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.logo-text p {
  font-size: 0.9rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
}

.cta-header {
  background: var(--gradient);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
  white-space: nowrap;
}

.cta-header:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Mobile Header */
.mobile-header {
  display: none;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(249, 115, 22, 0.08);
  border-bottom: 2px solid var(--primary-light);
}

.mobile-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.mobile-logo-text h1 {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.menu-toggle {
  background: var(--gradient);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.menu-toggle:hover {
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  right: 0;
  width: 100%;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  padding: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 3px solid transparent;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary);
  border-right-color: var(--primary);
}

.mobile-nav-links a i {
  width: 25px;
  text-align: center;
}

.mobile-cta {
  background: var(--gradient);
  color: white;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
  transition: var(--transition);
  text-align: center;
}

.mobile-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* Hero Section */
.hero {
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 100%;
  max-width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.15) 0%,
    rgba(251, 146, 60, 0) 70%
  );
  border-radius: 50%;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--dark);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-weight: 500;
  line-height: 1.8;
}

.hero-highlight {
  background: linear-gradient(90deg, var(--primary-light), #ffedd5);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  color: var(--primary-dark);
  font-weight: 700;
  display: inline-block;
  margin: 0.3rem 0;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.badge {
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  border: 2px solid var(--primary-light);
}

.badge i {
  color: var(--primary);
}

/* Features Overview */
.features-overview {
  padding: 3rem 0 4rem;
  background: white;
  border-radius: var(--border-radius);
  margin: 2rem auto;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--primary);
  max-width: 95%;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 20px;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 5px;
  background: var(--gradient);
  border-radius: 3px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 20px;
  line-height: 1.6;
}

/* Competitive Advantages */
.competitive-advantages {
  padding: 3rem 0;
  margin: 2rem auto;
  max-width: 95%;
}

.advantages-header {
  text-align: center;
  margin-bottom: 3rem;
}

.advantages-header h3 {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.advantages-subtitle {
  color: var(--gray);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.advantages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.advantage-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--primary-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.advantage-card h4 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.advantage-description {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Feature Comparison Meter */
.comparison-meter {
  background: #f8fafc;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid var(--gray-light);
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.meter-bar {
  height: 20px;
  background: var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin: 1rem 0;
}

.other-progress {
  position: absolute;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gray), #94a3b8);
  border-radius: 10px;
}

.qup-progress {
  position: absolute;
  right: 0;
  height: 100%;
  background: var(--gradient);
  border-radius: 10px;
}

.meter-values {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.meter-values span {
  font-weight: 800;
  font-size: 1.2rem;
}

.meter-values span:first-child {
  color: var(--gray);
}

.meter-values span:last-child {
  color: var(--primary-dark);
}

.exclusive-features {
  list-style: none;
  margin-top: 1.5rem;
}

.exclusive-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
}

.exclusive-features li i {
  color: var(--success);
}

/* Speed Stats */
.speed-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.speed-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
}

.speed-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.speed-value span {
  font-size: 1.2rem;
  color: var(--gray);
}

.speed-label {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Support Stats */
.support-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
}

.support-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.support-content h5 {
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.support-content p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Advantage CTA */
.advantage-cta {
  background: var(--gradient-dark);
  color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 2rem;
}

.advantage-cta h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.advantage-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Features Grid */
.features-grid-section {
  padding: 3rem 0 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.1),
    rgba(251, 146, 60, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  line-height: 1.3;
}

.feature-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.feature-list {
  list-style: none;
  margin-top: auto;
}

.feature-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--success);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient-dark);
  color: white;
  padding: 3rem 1.5rem;
  border-radius: var(--border-radius);
  margin: 3rem auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 95%;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="white" opacity="0.1"/></svg>');
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-banner p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  text-align: center;
  min-width: 200px;
}

.cta-button-primary {
  background: white;
  color: var(--primary-dark);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.cta-button-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Benefits Section */
.benefits {
  padding: 3rem 0;
  background: white;
  border-radius: var(--border-radius);
  margin: 2rem auto;
  box-shadow: var(--shadow);
  max-width: 95%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 15px;
}

.benefit-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  background: var(--light);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}

.benefit-item h4 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.benefit-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 3rem;
  border-top: 5px solid var(--primary);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 0 15px;
}

.footer-about h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-right: 8px;
}

.footer-links a i {
  width: 20px;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  padding: 2rem 15px 0;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
  z-index: 100;
  white-space: nowrap;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
  }
  50% {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.7);
  }
  100% {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
  }
}

.floating-cta:hover {
  transform: translateX(-50%) scale(1.05);
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 992px) {
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: block;
  }
  .hero {
    padding: 7rem 0 3rem;
  }
  .features-overview,
  .benefits,
  .competitive-advantages {
    max-width: 100%;
    border-radius: 0;
    margin: 1rem 0;
  }
  .advantages-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 1.1rem;
  }
  .feature-card {
    padding: 1.5rem;
  }
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .feature-card h3 {
    font-size: 1.3rem;
  }
  .floating-cta {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    bottom: 1rem;
  }
  .advantages-header h3 {
    font-size: 1.8rem;
  }
  .advantage-card {
    padding: 1.5rem;
  }
  .advantage-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  .advantage-card h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .badge {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
  .feature-card {
    padding: 1.2rem;
  }
  .features-grid {
    gap: 1.5rem;
  }
  .cta-button {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }
  .floating-cta {
    font-size: 0.8rem;
    padding: 0.7rem 1.2rem;
  }
  .speed-stats {
    grid-template-columns: 1fr;
  }
}
