:root {
  --primary: #1a1a2e;
  --secondary: #e94560;
  --accent: #0f3460;
  --light: #f8f9fa;
  --dark: #16213e;
  --text: #2d2d2d;
  --text-light: #6c757d;
  --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', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

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

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

.narrow {
  max-width: 760px;
  margin: 0 auto;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

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

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

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

.nav-links a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  position: relative;
}

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

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

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

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 160px 24px 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
  background-size: 200px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

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

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

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

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

/* Editorial Content */
.editorial {
  padding: 80px 24px;
}

.editorial-intro {
  background: var(--light);
  padding: 100px 24px;
}

.editorial h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.3;
}

.editorial h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 20px;
  margin-top: 48px;
}

.editorial p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 24px;
}

.editorial-image {
  margin: 48px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.editorial-image img {
  width: 100%;
  display: block;
}

.pull-quote {
  padding: 40px;
  margin: 48px 0;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  position: relative;
}

.pull-quote::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 4rem;
  opacity: 0.2;
  font-family: Georgia, serif;
}

/* Split Section */
.split {
  display: flex;
  align-items: stretch;
  min-height: 500px;
}

.split-content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-visual {
  flex: 1;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* Services Cards */
.services-section {
  padding: 100px 24px;
  background: var(--light);
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.services-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  color: var(--text-light);
  font-size: 1.1rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  flex: 1 1 340px;
  max-width: 380px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary);
}

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

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}

.service-price span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Testimonials */
.testimonials {
  padding: 100px 24px;
  background: var(--primary);
}

.testimonials h2 {
  text-align: center;
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px;
  flex: 1 1 320px;
  max-width: 400px;
}

.testimonial-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

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

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-info span {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* Features */
.features {
  padding: 100px 24px;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 60px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.feature-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.feature-content h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 8px;
}

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

/* Form Section */
.form-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--light) 0%, #e8ecef 100%);
}

.form-container {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 60px 48px;
  box-shadow: var(--shadow-lg);
}

.form-container h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  text-align: center;
}

.form-container > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(233,69,96,0.1);
}

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

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: #d63850;
  transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
  padding: 80px 24px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  padding: 40px 24px;
  background: var(--light);
  border-radius: var(--radius);
}

.contact-card svg {
  width: 48px;
  height: 48px;
  fill: var(--secondary);
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 24px 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 60px;
}

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

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

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

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

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

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

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
}

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

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

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

.sticky-cta .btn {
  box-shadow: var(--shadow-lg);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 24px;
  z-index: 10000;
  transform: translateY(100%);
  transition: var(--transition);
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--secondary);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

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

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

.cookie-reject:hover {
  border-color: var(--white);
}

/* Thanks Page */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

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

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

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

.thanks-content h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.thanks-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

/* Page Headers */
.page-header {
  padding: 160px 24px 80px;
  background: var(--primary);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* Legal Pages */
.legal-content {
  padding: 80px 24px;
}

.legal-content h2 {
  font-size: 1.75rem;
  color: var(--primary);
  margin: 48px 0 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 1rem;
}

.legal-content ul {
  margin: 16px 0 24px 24px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text);
}

/* About Page */
.about-story {
  padding: 100px 24px;
}

.about-values {
  padding: 100px 24px;
  background: var(--light);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  flex: 1 1 280px;
  max-width: 340px;
  text-align: center;
  padding: 40px 24px;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.value-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Team Section */
.team-section {
  padding: 100px 24px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-card {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
}

.team-avatar {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  font-weight: 700;
}

.team-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-card span {
  color: var(--secondary);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 100px 24px;
  background: var(--secondary);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Inline CTA */
.inline-cta {
  background: var(--light);
  padding: 48px;
  border-radius: var(--radius);
  text-align: center;
  margin: 48px 0;
}

.inline-cta h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.inline-cta p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* Stats Section */
.stats-section {
  padding: 80px 24px;
  background: var(--accent);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

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

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

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

  .hero p {
    font-size: 1.1rem;
  }

  .split {
    flex-direction: column;
  }

  .split-content {
    padding: 60px 24px;
  }

  .split-visual {
    min-height: 300px;
  }

  .editorial h2 {
    font-size: 1.85rem;
  }

  .form-container {
    padding: 40px 24px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-number {
    margin: 0 auto;
  }

  .page-header h1 {
    font-size: 2.25rem;
  }

  .services-section h2,
  .testimonials h2,
  .features h2,
  .cta-section h2 {
    font-size: 2rem;
  }

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

@media (max-width: 480px) {
  .hero {
    padding: 140px 16px 80px;
  }

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

  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .service-card {
    padding: 32px 24px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }
}
