:root {
  --primary: #8b4c6a;
  --primary-dark: #6a3a52;
  --secondary: #d4a574;
  --accent: #c9928e;
  --dark: #2c2c2c;
  --light: #faf8f6;
  --white: #ffffff;
  --gray: #6b6b6b;
  --gray-light: #e8e4e0;
}

* {
  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(--dark);
  background: var(--light);
}

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

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

/* Navigation */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

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

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

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

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

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

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

.nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

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

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

/* Hero Section */
.hero-funnel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light) 0%, #f0e8e4 100%);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-funnel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  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="%238b4c6a" opacity="0.05"/></svg>');
  background-size: 100px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 0;
}

.hero-text {
  flex: 1;
  position: relative;
  z-index: 2;
}

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

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--dark);
}

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

.hero-text p {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 35px;
  max-width: 500px;
}

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

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(139,76,106,0.2);
}

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

.hero-float-card {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: var(--white);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.hero-float-card .stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-float-card .stat-label {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139,76,106,0.3);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  cursor: pointer;
}

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

.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Section Styles */
.section {
  padding: 100px 0;
}

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

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

/* Problem Section */
.problem-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.problem-card {
  flex: 1;
  min-width: 280px;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border-left: 4px solid var(--accent);
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.problem-card p {
  color: var(--gray);
}

/* Story Section */
.story-wrapper {
  display: flex;
  gap: 80px;
  align-items: center;
}

.story-image {
  flex: 1;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.story-content {
  flex: 1;
}

.story-content h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.story-content p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.story-highlight {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  padding: 25px 30px;
  border-radius: 15px;
  margin: 30px 0;
  color: var(--white);
}

.story-highlight p {
  color: var(--white);
  margin: 0;
  font-weight: 600;
}

/* Services Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  flex: 1;
  min-width: 320px;
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  transition: all 0.4s;
}

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

.service-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: relative;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 35px;
}

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

.service-card-body p {
  color: var(--gray);
  margin-bottom: 25px;
}

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

.service-price .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.service-price .label {
  color: var(--gray);
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  color: var(--gray);
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}

/* Testimonials */
.testimonials-flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-item:nth-child(even) {
  flex-direction: row-reverse;
}

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

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  opacity: 0.95;
}

.testimonial-author {
  font-weight: 700;
}

.testimonial-role {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Benefits */
.benefits-split {
  display: flex;
  gap: 60px;
  align-items: center;
}

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

.benefits-visual img {
  width: 100%;
  border-radius: 20px;
}

.benefits-list {
  flex: 1;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  align-items: flex-start;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.benefit-text h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.benefit-text p {
  color: var(--gray);
}

/* CTA Sections */
.cta-banner {
  text-align: center;
  padding: 80px 40px;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

/* Form Styles */
.form-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.form-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.form-info {
  flex: 1;
}

.form-info h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
}

.form-info p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.form-trust {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
}

.form-trust-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.form-container {
  flex: 1;
  background: var(--white);
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139,76,106,0.1);
}

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

.form-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Contact Page */
.contact-grid {
  display: flex;
  gap: 60px;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--gray);
}

.contact-map {
  flex: 1;
  background: var(--gray-light);
  border-radius: 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Urgency Bar */
.urgency-bar {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: var(--white);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  padding: 18px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(139,76,106,0.4);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139,76,106,0.5);
}

.sticky-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

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

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

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

.footer-col p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 25px 40px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

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

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

.cookie-accept {
  background: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  padding: 12px 30px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

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

/* Thanks Page */
.thanks-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--light) 0%, #f0e8e4 100%);
}

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

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

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

.thanks-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.thanks-content p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 40px;
}

/* Legal Pages */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
}

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

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.legal-content .last-update {
  color: var(--gray);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary);
}

.legal-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.legal-content ul {
  color: var(--gray);
  margin-bottom: 20px;
  padding-left: 25px;
}

.legal-content li {
  margin-bottom: 10px;
}

/* About Page */
.about-hero {
  padding-top: 150px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--light) 0%, #f0e8e4 100%);
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.about-hero p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
}

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

.team-member {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
}

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

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.team-member .role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-member p {
  color: var(--gray);
}

/* Stats */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  padding: 60px 0;
}

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

.stat-item .number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item .label {
  color: var(--gray);
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-text p {
    margin: 0 auto 35px;
  }

  .btn-group {
    justify-content: center;
  }

  .hero-float-card {
    left: 50%;
    transform: translateX(-50%);
  }

  .story-wrapper,
  .benefits-split,
  .form-wrapper,
  .contact-grid {
    flex-direction: column;
  }

  .testimonial-item,
  .testimonial-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .nav-inner {
    padding: 15px 20px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }

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

  .sticky-cta {
    bottom: 20px;
    right: 20px;
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .stats-row {
    gap: 40px;
  }

  .stat-item .number {
    font-size: 2.5rem;
  }
}

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

  .btn-primary,
  .btn-secondary {
    padding: 14px 30px;
    font-size: 0.95rem;
  }

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