/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Design System Variables */
:root {
  /* COLORS */
  --primary: #E50914;
  --primary-hover: #FF1F2D;

  --bg: #0B0B0B;
  --bg-soft: #141414;

  --white: #FFFFFF;
  --text: #E5E5E5;
  --muted: #B3B3B3;

  --border: rgba(255,255,255,0.08);

  /* TYPOGRAPHY */
  --font-en: "Poppins", sans-serif;
  --font-ar: "Cairo", sans-serif;

  /* SPACING */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  /* SHADOW */
  --shadow: 0 10px 30px rgba(0,0,0,0.5);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

/* RTL Adjustment Variable */
[dir="rtl"] {
  --font-en: var(--font-ar);
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-en);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button, input, textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

p {
  color: var(--muted);
}

/* Premium Layout Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons and CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary);
}

/* Sticky Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

header.scrolled {
  background-color: rgba(11, 11, 11, 0.95);
  height: 70px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 16px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.lang-btn:hover {
  color: var(--white);
  border-color: var(--primary);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: none;
  min-width: 120px;
  box-shadow: var(--shadow);
  z-index: 1001;
}

[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

.lang-dropdown.show {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

.lang-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--muted);
}

.lang-dropdown a:hover {
  background-color: var(--border);
  color: var(--white);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Divider Accent */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #FF6B6B);
  margin: 0 auto 16px auto;
  border-radius: 2px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 800px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-top: 12px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.badge-item svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

/* Device Mockups on Hero Right */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.tv-mockup {
  position: absolute;
  top: 10%;
  left: 0;
  width: 90%;
  z-index: 1;
  animation: floatTV 6s ease-in-out infinite;
}

.phone-mockup {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 30%;
  z-index: 3;
  animation: floatPhone 5s ease-in-out infinite;
}

.tablet-mockup {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 45%;
  z-index: 2;
  animation: floatTablet 7s ease-in-out infinite;
}

/* SVG Mockup Screens and Bezels styling */
.tv-screen { fill: #000000; stroke: #334155; stroke-width: 12; rx: 8; }
.device-reflection { fill: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 50%); pointer-events: none; }

/* Sections general */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-header h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  color: var(--white);
}

.section-header p {
  font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
  background-color: var(--bg-soft);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: 0.3s ease;
  box-shadow: var(--shadow);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

/* Features Section (Why Choose Us) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  transition: 0.3s ease;
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: rgba(229, 9, 20, 0.1);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--white);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Supported Devices Section */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.device-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: 0.3s ease;
  box-shadow: var(--shadow);
}

.device-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.device-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

.device-card h4 {
  font-size: 1.1rem;
}

.device-card p {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.device-card .btn-guide {
  width: 100%;
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.device-card:hover .btn-guide {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Pricing Section */
.pricing-section {
  position: relative;
  background: radial-gradient(circle at bottom left, rgba(229, 9, 20, 0.08), transparent 50%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  box-shadow: var(--shadow);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  background-color: rgba(20, 20, 20, 0.8);
  box-shadow: 0 20px 40px -15px rgba(229, 9, 20, 0.25);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-duration {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-price-box {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-period {
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-features svg {
  color: var(--primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* How It Works Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(229, 9, 20, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 1.25rem;
}

.step-card p {
  font-size: 0.95rem;
  max-width: 280px;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-soft);
}

.testimonials-container {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 250px;
}

.testimonial-slide {
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeIn 0.4s ease-out;
}

.testimonial-slide.active {
  display: flex;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.rating {
  display: flex;
  gap: 4px;
  color: #FBBF24;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-content {
  padding: 0 24px 24px 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-body {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-card {
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.3s ease;
}

.channel-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.channel-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(229, 9, 20, 0.1);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.channel-details h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.channel-details p {
  font-size: 0.85rem;
}

/* Contact Form */
.contact-form {
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15);
}

.contact-form .btn {
  align-self: flex-start;
  min-width: 160px;
}

/* Footer Section */
footer {
  background-color: #070707;
  border-top: 1px solid var(--border);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--muted);
}

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

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(229, 9, 20, 0.4);
  animation: slideUp 0.4s ease-out;
}

.sticky-mobile-cta .btn {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes floatTV {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes floatTablet {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

/* Setup Guide Modal styles if needed */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  max-width: 600px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow);
  animation: slideUp 0.3s ease-out;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}

[dir="rtl"] .modal-close {
  right: auto;
  left: 24px;
}

.modal-close:hover {
  color: var(--white);
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.modal-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.modal-steps li {
  position: relative;
  padding-left: 32px;
}

[dir="rtl"] .modal-steps li {
  padding-left: 0;
  padding-right: 32px;
}

.modal-steps li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}

[dir="rtl"] .modal-steps li::before {
  left: auto;
  right: 8px;
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
  .hero h1 {
    font-size: 42px;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content {
    align-items: center;
  }
  .hero-content p {
    margin: 0 auto;
  }
  .trust-badges {
    justify-content: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-visual {
    height: 380px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .header {
    padding: 10px 20px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .header-actions .btn-primary {
    display: none;
  }
  .sticky-mobile-cta {
    display: block;
  }
  .nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg);
    padding: 40px 24px;
    gap: 32px;
    z-index: 998;
    animation: fadeIn 0.3s ease-out;
  }
  .nav-links.mobile-active a {
    font-size: 1.25rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .testimonials-container {
    height: 320px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 28px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .devices-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .contact-form {
    padding: 24px;
  }
}
