/* Modern Light Theme - Appliance Wizzard V2 */

:root {
  /* Light theme colors */
  --primary: #2563eb;           /* Blue */
  --primary-dark: #1e40af;
  --accent: #7c3aed;            /* Purple accent */
  --success: #10b981;
  --danger: #ef4444;
  
  /* Backgrounds */
  --bg-body: #f8fafc;
  --bg-white: #ffffff;
  --bg-gray: #f1f5f9;
  --bg-light: #e2e8f0;
  
  /* Text colors */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  /* Borders */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

/* Основной контейнер чекбокса */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Сам чекбокс */
.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  flex-shrink: 0;
}

/* Текст рядом с чекбоксом */
.checkbox-label span {
  flex: 1;
}

/* Ссылка на Privacy Policy */
.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

/* Ссылка при наведении */
.checkbox-label a:hover {
  color: var(--primary-dark);
}


/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header */
header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.phone-link:hover {
  background: var(--bg-gray);
  color: var(--primary);
}

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9375rem;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

/* Hero Section - Minimalist */
.hero {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

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

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero .btn-primary {
  background: white;
  color: var(--primary);
  border: none;
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.hero .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: transparent;
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.hero .btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.hero-stat .icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Sections */
.services {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cards */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Problem Cards */
.problem-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: var(--spacing-sm);
}

.check-icon {
  color: var(--success);
  flex-shrink: 0;
}

/* Service Layout */
.service-layout {
  padding: var(--spacing-xl) 0;
  background: var(--bg-gray);
}

.service-grid {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* Service List */
.service-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.service-list .icon {
  margin-top: 0.125rem;
}

/* Brand Tags */
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brand-tag {
  padding: 0.5rem 1rem;
  background: var(--bg-gray);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Forms */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: all 0.2s;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: var(--spacing-sm);
}

/* CTA Section */
.cta-section {
  padding: var(--spacing-xl) 0;
  background: var(--bg-white);
}

.cta-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: var(--radius-xl);
  color: white;
}

.cta-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-card p {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

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

.cta-card .btn-primary:hover {
  background: var(--bg-gray);
}

/* Thank You Page */
.thank-you-container {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: var(--spacing-xl) 0;
}

.thank-you-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-xl);
}

.success-icon {
  width: 4rem;
  height: 4rem;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  color: white;
}

.thank-you-card h1 {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.phone-highlight {
  background: var(--bg-gray);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  margin: var(--spacing-lg) 0;
}

.phone-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.steps-list {
  text-align: left;
  margin: var(--spacing-lg) 0;
}

.step-item {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  align-items: flex-start;
}

.step-number {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* Footer */
footer {
  background: var(--text-primary);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: 1fr;
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

footer h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Notifications */
.notification {
  position: fixed;
  top: var(--spacing-md);
  right: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-md);
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  max-width: 400px;
  animation: slideIn 0.3s ease-out;
  border-left: 4px solid var(--success);
}

.notification-error {
  border-left-color: var(--danger);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Utility Classes */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .phone-link {
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }
}



/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-primary);
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  margin-top: var(--spacing-md);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu.active {
  display: flex;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-nav-link {
  padding: 0.625rem var(--spacing-md);
  color: var(--text-primary);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s;
  font-size: 0.9375rem;
}

.mobile-nav-link:hover {
  background: var(--bg-gray);
  border-left-color: var(--primary);
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  margin: 0.5rem var(--spacing-md) 0.75rem;
  padding: 0.75rem var(--spacing-md);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
  position: sticky;
  bottom: 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-nav-cta:hover {
  background: var(--primary-dark);
  border-left-color: var(--primary-dark);
}

/* Floating Call Button */
.floating-call-btn {
  
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: all 0.3s;
  animation: pulse 2s infinite;
    display: none;
}

.floating-call-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
  box-shadow: 0 20px 30px -5px rgba(37, 99, 235, 0.4);
}

.floating-call-btn svg {
  width: 1.75rem;
  height: 1.75rem;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
  }
}

/* Responsive - Mobile */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .header-actions {
    display: none;
  }
  
  .mobile-menu {
    display: flex;
  }
}

@media (max-width: 768px) {
  .floating-call-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
  }
  
  .floating-call-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}



/* Service SVG Icons */
.service-svg-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  stroke-width: 1.5;
}

.service-icon {
  margin-bottom: var(--spacing-sm);
  display: flex;
  justify-content: flex-start;
}



/* Privacy Policy Page */
.privacy-container {
  padding: var(--spacing-xl) 0;
  background: var(--bg-body);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.privacy-content h1 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 2px solid var(--border-color);
}

.privacy-section {
  margin-bottom: var(--spacing-lg);
}

.privacy-section h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.privacy-section p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

.privacy-section ul {
  margin-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.privacy-section li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.privacy-section a {
  color: var(--primary);
  text-decoration: underline;
}

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

.highlight-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border-left: 4px solid var(--primary);
  padding: var(--spacing-md);
  border-radius: var(--radius);
  margin: var(--spacing-md) 0;
  display: flex;
  gap: var(--spacing-sm);
}

.highlight-box .icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.highlight-box h3 {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.highlight-box ul {
  margin-left: var(--spacing-md);
  margin-bottom: 0;
}

.highlight-box li {
  color: var(--text-primary);
}

.contact-info {
  background: var(--bg-gray);
  padding: var(--spacing-md);
  border-radius: var(--radius);
  margin-top: var(--spacing-sm);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.back-home {
  text-align: center;
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 2px solid var(--border-color);
}



/* Service Areas Section */
.service-areas {
  padding: var(--spacing-xl) 0;
  background: var(--bg-white);
}

.areas-grid {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.area-card {
  background: var(--bg-gray);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.area-card:hover {
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.area-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  margin: 0 auto var(--spacing-sm);
}

.area-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.area-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

.areas-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  border-radius: var(--radius-lg);
}

.areas-cta p {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin: 0;
}

.areas-cta a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
  transition: all 0.2s;
}

.areas-cta a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}

@media (max-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  
  .area-card {
    padding: var(--spacing-sm);
  }
  
  .area-icon {
    width: 2rem;
    height: 2rem;
  }
  
  .area-card h3 {
    font-size: 1rem;
  }
  
  .area-card p {
    font-size: 0.8125rem;
  }
}



/* Logo styling */
.logo {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s;
}

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

@media (max-width: 768px) {
  .logo {
    font-size: 1.25rem;
  }
}

