:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #0f3460;
  --highlight: #e94560;
  --light: #f8f9fa;
  --text: #2d3436;
  --text-light: #636e72;
  --border: #dfe6e9;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
}

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

header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  letter-spacing: -0.5px;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--highlight);
}

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

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

.split-hero {
  display: flex;
  min-height: 85vh;
  align-items: center;
}

.split-left,
.split-right {
  flex: 1;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-left {
  background: var(--secondary);
  color: var(--light);
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.cta-primary {
  display: inline-block;
  background: var(--highlight);
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-primary:hover {
  background: #d63850;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233,69,96,0.3);
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--light);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--light);
  cursor: pointer;
  font-size: 1rem;
}

.cta-secondary:hover {
  background: var(--light);
  color: var(--primary);
}

.section {
  padding: 5rem 0;
}

.section-split {
  display: flex;
  align-items: center;
  gap: 4rem;
}

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

.section-content,
.section-visual {
  flex: 1;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
  line-height: 1.2;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.section-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dark-section {
  background: var(--primary);
  color: var(--light);
}

.dark-section .section-title {
  color: var(--light);
}

.dark-section .section-text {
  color: rgba(255,255,255,0.8);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--highlight);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--highlight);
  font-weight: bold;
}

.form-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  padding: 5rem 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

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

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

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

.form-button {
  width: 100%;
  background: var(--highlight);
  color: white;
  padding: 1.2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.form-button:hover {
  background: #d63850;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--highlight);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(233,69,96,0.4);
  z-index: 999;
  transition: all 0.3s;
}

.sticky-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(233,69,96,0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--light);
  padding: 1.5rem;
  display: none;
  z-index: 10000;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

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

.cookie-accept {
  background: var(--highlight);
  color: white;
}

.cookie-accept:hover {
  background: #d63850;
}

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

.cookie-reject:hover {
  background: var(--light);
  color: var(--primary);
}

footer {
  background: var(--primary);
  color: var(--light);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

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

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

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

.testimonial-section {
  background: var(--light);
  padding: 5rem 0;
}

.testimonials {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.05rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
}

.testimonial-role {
  color: var(--text-light);
  font-size: 0.9rem;
}

.stats-section {
  background: var(--accent);
  color: var(--light);
  padding: 4rem 0;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  text-align: center;
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--highlight);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}

.contact-info {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
}

.contact-item {
  margin-bottom: 2rem;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.contact-label {
  font-weight: 700;
  color: var(--primary);
  min-width: 140px;
}

.contact-value {
  color: var(--text);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 20px;
}

.policy-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.policy-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--secondary);
}

.policy-section p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.8;
}

.policy-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.thanks-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 20px;
}

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

.thanks-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.thanks-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.thanks-text {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

@media (max-width: 968px) {
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s;
    gap: 1rem;
  }

  nav.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .split-hero {
    flex-direction: column;
    min-height: auto;
  }

  .section-split {
    flex-direction: column !important;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .services-grid {
    flex-direction: column;
  }

  .testimonials {
    flex-direction: column;
  }

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

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

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

  .sticky-cta {
    bottom: 10px;
    right: 10px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .split-left,
  .split-right {
    padding: 2rem 1.5rem;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }
}
