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

:root {
  --primary: #0066cc;
  --primary-dark: #004999;
  --secondary: #00cc99;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px var(--shadow);
  z-index: 1000;
  padding: 20px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  transition: 0.3s;
}

.split-hero {
  display: flex;
  min-height: 100vh;
  padding-top: 80px;
}

.split-left,
.split-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.split-left {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.split-right {
  background: var(--light);
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 35px;
  opacity: 0.95;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

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

.btn-primary:hover {
  background: #00b386;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 204, 153, 0.3);
}

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

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

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px var(--shadow);
}

.split-section {
  display: flex;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.section-content,
.section-visual {
  flex: 1;
  padding: 80px 60px;
}

.section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-visual {
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

.section-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.section-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
  line-height: 1.3;
  color: var(--dark);
}

.section-content p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin: 30px 0;
}

.feature-list li {
  padding: 15px 0;
  padding-left: 35px;
  position: relative;
  font-size: 17px;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 20px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 80px 0;
}

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 25px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 280px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 16px;
}

.service-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0;
}

.service-price span {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 100px 60px;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 48px;
  margin-bottom: 25px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.form-section {
  background: var(--light);
  padding: 100px 60px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 40px var(--shadow);
}

.form-container h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.stats-section {
  display: flex;
  gap: 0;
  background: var(--dark);
  color: var(--white);
}

.stat-item {
  flex: 1;
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 25px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 -5px 20px var(--shadow);
  z-index: 9999;
}

.cookie-banner.show {
  display: flex;
}

.cookie-text {
  flex: 1;
}

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

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.cookie-accept {
  background: var(--secondary);
  color: var(--dark);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-accept:hover {
  background: #00b386;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.thanks-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
}

.thanks-content h1 {
  font-size: 56px;
  margin-bottom: 25px;
}

.thanks-content p {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  font-size: 50px;
  animation: scaleIn 0.5s ease-out;
}

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

.content-page {
  padding-top: 100px;
  min-height: 100vh;
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

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

.page-content h2 {
  font-size: 32px;
  margin: 40px 0 20px;
  color: var(--dark);
}

.page-content h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--dark);
}

.page-content p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray);
}

.page-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.page-content ul li {
  margin-bottom: 12px;
  font-size: 17px;
  color: var(--gray);
}

.contact-info {
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
  margin: 40px 0;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--dark);
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-info strong {
  color: var(--primary);
}

@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    right: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px var(--shadow);
    padding: 30px 0;
  }

  .nav-links.active {
    right: 0;
  }

  .split-hero,
  .split-section {
    flex-direction: column;
  }

  .split-left,
  .split-right,
  .section-content,
  .section-visual {
    padding: 40px 30px;
  }

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

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

  .service-card {
    flex: 1 1 100%;
  }

  .stats-section {
    flex-direction: column;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-content {
    flex-direction: column;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta {
    bottom: 15px;
    right: 15px;
  }
}

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

  .section-content h2 {
    font-size: 26px;
  }

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

  .form-container {
    padding: 30px 20px;
  }
}
