/* Base Styles & Variables */
:root {
  --primary-color: #6C63FF;
  --primary-dark: #5A52D9;
  --primary-light: #8A84FF;
  --secondary-color: #2A2A72;
  --accent-color: #FF6584;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #888888;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --bg-dark: #1A1A2E;
  --border-color: #E1E4E8;
  --success-color: #28A745;
  --warning-color: #FFC107;
  --error-color: #DC3545;
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-md: 1rem;      /* 16px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
  --font-size-5xl: 3rem;     /* 48px */
  
  /* Spacing */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

p {
  margin-bottom: var(--space-md);
}

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

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Section Styles */
section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.section-title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  text-align: center;
  line-height: 1;
}

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

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

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-text {
  padding: 0.5rem 0;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.btn-text .arrow-right {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-text:hover .arrow-right {
  transform: translateX(4px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-2xl);
  color: var(--text-primary);
}

.logo-text .accent {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  margin-right: var(--space-xl);
}

.nav-item {
  margin: 0 var(--space-md);
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: var(--space-sm) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-color);
}

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

.nav-buttons {
  display: flex;
  gap: var(--space-md);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 10px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7f0 100%);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: #333;
}

.hero-image {
  flex: 1;
  max-width: 550px;
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-lg);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(108, 99, 255, 0.2),
    transparent
  );
}

.scanning-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  box-shadow: 0 0 10px 2px var(--primary-color);
  animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
  0% {
    top: 0;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 0;
  }
}

/* Features Section */
.features {
  background-color: var(--bg-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: var(--space-xl);
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--primary-color);
}

.feature-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.feature-description {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* How It Works Section */
.how-it-works {
  background-color: var(--bg-light);
}

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

.tab-header {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
  border-bottom: 2px solid var(--border-color);
}

.tab-btn {
  padding: var(--space-md) var(--space-xl);
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active::after {
  width: 100%;
}

.tab-content {
  position: relative;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.tab-pane.active {
  display: block;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.step {
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.step-content p {
  color: var(--text-secondary);
  font-size: var(--font-size-md);
  margin-bottom: 0;
}

/* Trust Signals Section */
.trust-signals {
  background-color: var(--bg-white);
  text-align: center;
}

.company-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  transition: var(--transition);
}

.logo-item:hover {
  opacity: 1;
}

.logo-item span {
  margin-top: var(--space-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.badge svg {
  color: var(--success-color);
}

/* Pricing Section */
.pricing {
  background-color: var(--bg-light);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.toggle-label {
  font-weight: 500;
  margin: 0 var(--space-md);
}

.discount {
  background-color: rgba(255, 101, 132, 0.2);
  color: var(--accent-color);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  margin-left: var(--space-sm);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.pricing-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: var(--space-xl);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border-color);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-color);
}

.pricing-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
}

.period {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-left: var(--space-sm);
}

.pricing-features {
  margin-bottom: var(--space-xl);
}

.pricing-features ul li {
  padding: var(--space-sm) 0;
  position: relative;
  padding-left: 30px;
}

.pricing-features ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

.pricing-features ul li.not-included {
  color: var(--text-light);
  text-decoration: line-through;
}

.pricing-features ul li.not-included::before {
  content: '✕';
  color: var(--text-light);
}

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

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

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: var(--space-lg);
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  font-size: var(--font-size-lg);
  font-style: italic;
  margin-bottom: var(--space-lg);
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: rgba(108, 99, 255, 0.1);
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: var(--space-md);
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0;
  font-size: var(--font-size-md);
}

.author-info p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-xl);
}

.control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
  color: var(--text-primary);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.control-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.testimonial-dots {
  display: flex;
  gap: var(--space-sm);
  margin: 0 var(--space-md);
}

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

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Blog Preview Section */
.blog-preview {
  background-color: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--space-lg);
}

.blog-tag {
  display: inline-block;
  background-color: rgba(108, 99, 255, 0.1);
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.blog-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-md);
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
  padding: var(--space-3xl) 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--font-size-4xl);
  color: white;
  margin-bottom: var(--space-md);
}

.cta-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.cta-section .btn-primary:hover {
  background-color: transparent;
  color: white;
}

.cta-section .btn-outline {
  border-color: white;
  color: white;
}

.cta-section .btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: white;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.footer-logo {
  max-width: 300px;
}

.footer-logo .logo {
  color: white;
  margin-bottom: var(--space-md);
}

.footer-tagline {
  opacity: 0.8;
  font-size: var(--font-size-sm);
}

.footer-newsletter h3 {
  color: white;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  position: relative;
}

.newsletter-form input {
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  border: none;
  min-width: 250px;
  color: var(--text-primary);
  background-color: var(--bg-white);
}

.newsletter-form input::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.newsletter-message {
  margin-top: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--border-radius);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.newsletter-message.success {
  color: white;
  background-color: var(--success-color);
}

.newsletter-message.error {
  color: white;
  background-color: var(--error-color);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-col h4 {
  color: white;
  font-size: var(--font-size-md);
  margin-bottom: var(--space-md);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
  
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-col ul li a.wot {
  color: white;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content, .hero-image {
    max-width: 100%;
  }
  
  .hero-image {
    margin-top: var(--space-xl);
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.25rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    flex-direction: column;
    padding: var(--space-xl);
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: var(--space-xl);
    width: 100%;
  }
  
  .nav-item {
    margin: var(--space-sm) 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-buttons {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
  }
  
  .hamburger {
    display: flex;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .footer-top, .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo, .footer-newsletter {
    max-width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-social {
    justify-content: center;
    margin-bottom: var(--space-md);
  }
  
  .company-logos {
    gap: var(--space-lg);
  }
  
  .logo-item {
    width: calc(50% - var(--space-lg));
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.5rem;
    --space-3xl: 3rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: row;
    gap: var(--space-md);
    flex-wrap: wrap;
  }
  
  .hero-stats .stat-item {
    width: calc(50% - var(--space-md) / 2);
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .company-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .logo-item {
    width: 100%;
  }
}
