:root {
  --primary: #2d3436;
  --secondary: #6c5ce7;
  --accent: #fd79a8;
  --light: #f8f9fa;
  --dark: #1e272e;
  --text: #2d3436;
  --text-light: #636e72;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

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

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

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

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

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.6rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.8rem; }

p { margin-bottom: 1.2rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

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

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

.btn-accent:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 8px 16px;
  color: var(--text);
  font-weight: 500;
  border-radius: 8px;
}

nav a:hover {
  background: var(--light);
  color: var(--secondary);
}

nav a.active {
  background: var(--secondary);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,92,231,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3.2rem;
  max-width: 700px;
}

.hero p.lead {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--light);
}

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

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255,255,255,0.85);
}

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

.editorial-block {
  margin-bottom: 60px;
}

.editorial-block p {
  font-size: 1.1rem;
}

.editorial-block.with-image {
  display: flex;
  gap: 40px;
  align-items: center;
}

.editorial-block.with-image.reverse {
  flex-direction: row-reverse;
}

.editorial-block .text-content {
  flex: 1;
}

.editorial-block .image-content {
  flex: 0 0 45%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.editorial-block .image-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.inline-cta {
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--secondary) 0%, #8b7cf7 100%);
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 40px 0;
}

.inline-cta p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.inline-cta .btn {
  background: var(--white);
  color: var(--secondary);
  white-space: nowrap;
}

.inline-cta .btn:hover {
  background: var(--accent);
  color: var(--white);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 32px;
  transition: var(--transition);
}

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

.service-icon {
  flex: 0 0 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  margin-bottom: 12px;
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
}

.service-price .amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
}

.service-price .period {
  color: var(--text-light);
  font-size: 0.95rem;
}

.testimonial-block {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 40px 0;
  position: relative;
}

.testimonial-block::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  color: var(--secondary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-block p {
  font-size: 1.2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .info {
  line-height: 1.4;
}

.testimonial-author .name {
  font-weight: 600;
  color: var(--dark);
}

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

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.feature-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-item h4 {
  color: var(--secondary);
  margin-bottom: 8px;
}

.feature-item p {
  margin: 0;
  color: var(--text-light);
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 0;
  background: var(--dark);
  flex-wrap: wrap;
}

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

.stat-item .number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-item .label {
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  font-size: 0.95rem;
}

.about-story {
  max-width: 780px;
  margin: 0 auto;
}

.about-story p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.about-story .highlight {
  background: linear-gradient(135deg, rgba(108,92,231,0.1) 0%, rgba(253,121,168,0.1) 100%);
  padding: 32px;
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
  margin: 32px 0;
}

.about-story .highlight p {
  margin: 0;
  font-weight: 500;
}

.team-section {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.team-member {
  flex: 1 1 300px;
  text-align: center;
}

.team-member img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
}

.team-member h4 {
  margin-bottom: 4px;
}

.team-member .role {
  color: var(--secondary);
  font-weight: 500;
}

.contact-section {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail .text strong {
  display: block;
  margin-bottom: 4px;
}

.contact-detail .text span {
  color: var(--text-light);
}

.contact-form {
  flex: 1 1 400px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border: 2px solid #e1e5eb;
  border-radius: 8px;
  transition: var(--transition);
  font-family: inherit;
}

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

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

.form-submit {
  width: 100%;
}

footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}

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

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-inner p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
}

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

.cookie-buttons button {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.cookie-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

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

.sticky-cta .btn {
  box-shadow: var(--shadow-lg);
  padding: 16px 28px;
}

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

.thanks-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.thanks-content h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.thanks-content p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.policy-content {
  padding-top: 140px;
  padding-bottom: 80px;
}

.policy-content h1 {
  margin-bottom: 40px;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.policy-content ul {
  margin-left: 24px;
  margin-bottom: 20px;
}

.policy-content li {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .editorial-block.with-image {
    flex-direction: column;
  }

  .editorial-block.with-image.reverse {
    flex-direction: column;
  }

  .editorial-block .image-content {
    flex: 0 0 auto;
    width: 100%;
  }

  .service-card {
    flex-direction: column;
  }

  .stats-bar {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .hero {
    padding: 140px 0 60px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow);
  }

  nav.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .section {
    padding: 60px 0;
  }

  .inline-cta {
    flex-direction: column;
    text-align: center;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta {
    right: 16px;
    bottom: 100px;
  }
}

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .feature-item {
    flex: 1 1 100%;
  }
}
