@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --primary: #0A4D68;
  --primary-light: #088395;
  --secondary: #05BFDB;
  --accent: #00FFCA;
  --bg-main: #F8FEFF;
  --bg-surface: #FFFFFF;
  --text-primary: #1A2B3C;
  --text-secondary: #5A6C7D;
  --border-glass: rgba(8, 131, 149, 0.2);
  --shadow-sm: 0 2px 8px rgba(10, 77, 104, 0.08);
  --shadow-md: 0 4px 16px rgba(10, 77, 104, 0.12);
  --shadow-lg: 0 8px 32px rgba(10, 77, 104, 0.16);
  --shadow-xl: 0 16px 48px rgba(10, 77, 104, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.iti, #phone {
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.85);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 32px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.logo-wrapper:hover {
  transform: translateY(-2px);
}

.logo-wrapper svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(10, 77, 104, 0.15));
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-light);
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--glass-bg);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.lang-btn {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--primary-light);
  background: rgba(8, 131, 149, 0.1);
}

.lang-btn.active {
  color: var(--primary);
  background: rgba(10, 77, 104, 0.1);
  font-weight: 700;
}

.lang-divider {
  color: var(--border-glass);
  font-weight: 300;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

.hero-section {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 85vh;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 77, 104, 0.2), rgba(5, 191, 219, 0.1));
  z-index: 1;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.08);
}

.hero-content {
  padding: 40px 0;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 500;
}

.hero-benefits li i {
  color: var(--accent);
  font-size: 24px;
  min-width: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 255, 202, 0.3));
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
}

.cta-button i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(4px);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

.glass-card:hover::before {
  opacity: 1;
}

.section {
  padding: 100px 0;
  position: relative;
}

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

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg);
  box-shadow: var(--shadow-lg);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-section {
  background: linear-gradient(180deg, var(--bg-main), rgba(8, 131, 149, 0.05));
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary), var(--accent), var(--primary));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: white;
  border: 3px solid var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  position: relative;
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.process-step:hover .step-number::before {
  opacity: 0.2;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-align: center;
}

.process-step p {
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
}

.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.work-card {
  position: relative;
  padding-top: 60px;
}

.work-number {
  position: absolute;
  top: 0;
  left: 40px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.work-card .glass-card {
  padding-top: 60px;
  min-height: 320px;
}

.work-card i {
  font-size: 48px;
  color: var(--primary-light);
  margin-bottom: 24px;
  display: block;
}

.work-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.work-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.comparison-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.appliance-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.appliance-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.appliance-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.appliance-info {
  padding: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
}

.energy-rating {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #10B981, #34D399);
  color: white;
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.appliance-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.appliance-info p {
  color: var(--text-secondary);
  font-size: 14px;
}

.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item h3 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, white, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: 18px;
  opacity: 0.9;
}

.contact-section {
  background: linear-gradient(180deg, var(--bg-main), rgba(5, 191, 219, 0.05));
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.contact-item i {
  font-size: 28px;
  color: var(--primary-light);
  min-width: 40px;
}

.contact-item div h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-item div p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 15px;
}

.contact-item div a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item div a:hover {
  color: var(--primary-light);
}

.form-wrapper {
  background: white;
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--glass-border);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-glass);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-main);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: white;
  box-shadow: 0 0 0 4px rgba(8, 131, 149, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.checkbox-group label a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group label a:hover {
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
}

.submit-button:active {
  transform: translateY(0);
}

footer {
  background: linear-gradient(135deg, var(--primary), #083d50);
  color: white;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, white, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 32px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #10B981, #34D399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thanks-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.thanks-content p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.legal-page {
  padding: 140px 0 80px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.legal-page .last-updated {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border-glass);
}

.legal-page h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 48px;
  margin-bottom: 20px;
}

.legal-page h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-light);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-page p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-page ul {
  margin: 20px 0;
  padding-left: 24px;
}

.legal-page li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.legal-page a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 24px rgba(10, 77, 104, 0.15);
  padding: 24px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--primary-light);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.cookie-text a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: var(--shadow-md);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cookie-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border-glass);
}

.cookie-decline:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .hero-image-wrapper {
    order: 1;
    min-height: 400px;
  }

  .hero-content {
    order: 2;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .how-it-works {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-glass);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    width: 100%;
  }

  .lang-switcher {
    margin-top: 16px;
    justify-content: center;
  }

  .hero-section {
    margin-top: 60px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-benefits li {
    font-size: 16px;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .section-header p {
    font-size: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .comparison-preview {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 32px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .legal-page {
    padding: 100px 0 60px;
  }

  .legal-page h1 {
    font-size: 36px;
  }

  .legal-page h2 {
    font-size: 28px;
  }

  .thanks-content h1 {
    font-size: 36px;
  }

  .thanks-content p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .stat-item h3 {
    font-size: 42px;
  }

  .contact-info h2 {
    font-size: 32px;
  }

  .thanks-icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
  }
}