:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --accent-light: #ff6b6b;
  --text: #f1f1f1;
  --text-dark: #2d2d2d;
  --bg-light: #fafafa;
  --bg-dark: #0f0f23;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

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

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

.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
}

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

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

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

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

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

.hero-asymmetric {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-asymmetric::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: var(--accent);
  opacity: 0.05;
  transform: rotate(-15deg);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  padding: var(--spacing-lg) 0;
}

.hero-text {
  flex: 1;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.hero-text h1 span {
  color: var(--accent);
}

.hero-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: var(--spacing-md);
  max-width: 500px;
}

.hero-visual {
  flex: 1;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  transform: translateX(50px);
}

.hero-image {
  width: 100%;
  height: 450px;
  background: linear-gradient(45deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 0 100px 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image svg {
  width: 60%;
  height: 60%;
  opacity: 0.3;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 10px;
  color: var(--text);
}

.floating-card.top {
  top: -20px;
  left: -40px;
}

.floating-card.bottom {
  bottom: -20px;
  right: -40px;
}

.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

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

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: var(--text);
}

.section {
  padding: var(--spacing-xl) 0;
}

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

.section-offset {
  background: var(--bg-light);
  position: relative;
}

.section-offset::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: var(--secondary);
}

.offset-content {
  display: flex;
  position: relative;
  z-index: 2;
}

.offset-left {
  flex: 0 0 40%;
  padding: var(--spacing-lg);
  color: var(--text);
}

.offset-right {
  flex: 1;
  padding: var(--spacing-lg);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin-top: var(--spacing-sm);
}

.section-title-light::after {
  background: var(--text);
}

.asymmetric-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.asymmetric-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.asymmetric-item:hover {
  transform: translateY(-10px);
}

.asymmetric-item.large {
  flex: 0 0 calc(60% - var(--spacing-sm));
}

.asymmetric-item.small {
  flex: 0 0 calc(40% - var(--spacing-sm));
}

.asymmetric-item.medium {
  flex: 0 0 calc(50% - var(--spacing-sm));
}

.item-content {
  padding: var(--spacing-md);
}

.item-image {
  height: 200px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-image svg {
  width: 80px;
  height: 80px;
  fill: var(--accent);
  opacity: 0.6;
}

.price-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  margin-top: var(--spacing-sm);
}

.overlap-section {
  position: relative;
  padding: var(--spacing-xl) 0;
}

.overlap-bg {
  position: absolute;
  top: 20%;
  right: 0;
  width: 70%;
  height: 60%;
  background: var(--accent);
  opacity: 0.1;
  border-radius: 100px 0 0 100px;
}

.overlap-content {
  display: flex;
  gap: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.overlap-text {
  flex: 1;
  padding: var(--spacing-lg) 0;
}

.overlap-visual {
  flex: 1;
  position: relative;
}

.overlap-image {
  width: 100%;
  height: 400px;
  background: var(--secondary);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.overlap-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border: 3px solid var(--accent);
  border-radius: 20px;
}

.stats-row {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
}

.testimonial-section {
  background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.testimonial-wrapper {
  display: flex;
  gap: var(--spacing-lg);
}

.testimonial-large {
  flex: 2;
  background: var(--primary);
  color: var(--text);
  padding: var(--spacing-lg);
  border-radius: 30px;
  position: relative;
}

.testimonial-large::before {
  content: '"';
  font-size: 8rem;
  position: absolute;
  top: -20px;
  left: 20px;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-small {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.testimonial-card {
  background: white;
  padding: var(--spacing-md);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border-left: 4px solid var(--accent);
}

.testimonial-author {
  margin-top: var(--spacing-sm);
  font-weight: 600;
  color: var(--accent);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.service-row {
  display: flex;
  gap: var(--spacing-md);
  align-items: stretch;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-card {
  flex: 1;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.service-card.featured {
  flex: 1.5;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text);
}

.service-header {
  padding: var(--spacing-md);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--text);
}

.service-card.featured .service-header {
  background: var(--accent);
}

.service-body {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
  padding-top: var(--spacing-sm);
}

.service-card.featured .service-price {
  color: var(--accent-light);
}

.form-section {
  background: var(--primary);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: var(--accent);
  opacity: 0.05;
  transform: rotate(20deg);
}

.form-wrapper {
  display: flex;
  gap: var(--spacing-xl);
  position: relative;
  z-index: 2;
}

.form-info {
  flex: 1;
}

.form-container {
  flex: 1;
  background: rgba(255,255,255,0.05);
  padding: var(--spacing-lg);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-group select option {
  background: var(--primary);
  color: var(--text);
}

.contact-info-list {
  list-style: none;
  margin-top: var(--spacing-md);
}

.contact-info-list li {
  padding: var(--spacing-sm) 0;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.contact-info-list svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.footer {
  background: var(--bg-dark);
  color: var(--text);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  margin-bottom: var(--spacing-md);
  color: var(--accent);
}

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

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  color: var(--text);
  padding: var(--spacing-md);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-sm);
}

.sticky-cta {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-cta .btn {
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

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

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--spacing-sm);
}

.page-header p {
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  padding: var(--spacing-xl) 0;
}

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

.content-wrapper h2 {
  color: var(--primary);
  margin: var(--spacing-lg) 0 var(--spacing-md);
}

.content-wrapper p {
  margin-bottom: var(--spacing-md);
}

.content-wrapper ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-md);
}

.content-wrapper li {
  margin-bottom: var(--spacing-xs);
}

.about-grid {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.about-visual {
  flex: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 0 80px 0 80px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1;
}

.values-grid {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.value-card {
  flex: 1;
  background: var(--secondary);
  color: var(--text);
  padding: var(--spacing-md);
  border-radius: 20px;
  text-align: center;
}

.value-card h3 {
  color: var(--accent);
  margin-bottom: var(--spacing-sm);
}

.contact-grid {
  display: flex;
  gap: var(--spacing-lg);
}

.contact-details {
  flex: 1;
}

.contact-map {
  flex: 1;
  background: var(--secondary);
  border-radius: 20px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text);
  text-align: center;
}

.thanks-content {
  max-width: 600px;
  padding: var(--spacing-lg);
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--text);
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-image-wrapper {
    transform: none;
  }

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

  .section-offset::before {
    width: 100%;
    height: 40%;
  }

  .offset-left,
  .offset-right {
    padding: var(--spacing-md);
  }

  .asymmetric-item.large,
  .asymmetric-item.small,
  .asymmetric-item.medium {
    flex: 0 0 100%;
  }

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

  .testimonial-wrapper {
    flex-direction: column;
  }

  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }

  .form-wrapper {
    flex-direction: column;
  }

  .footer-grid {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 0 0 calc(50% - var(--spacing-md));
  }

  .about-grid,
  .contact-grid {
    flex-direction: column;
  }

  .values-grid {
    flex-wrap: wrap;
  }

  .value-card {
    flex: 0 0 calc(50% - var(--spacing-sm));
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .stats-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    flex: 0 0 50%;
  }

  .footer-col {
    flex: 0 0 100%;
  }

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

  .value-card {
    flex: 0 0 100%;
  }
}
