:root {
  --primary: #e85d75;
  --primary-dark: #c94a60;
  --secondary: #5d9ce8;
  --accent: #f4a261;
  --dark: #2b2d42;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

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

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

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

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

.nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 20px;
  transform: translateY(-150%);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.nav.active {
  transform: translateY(0);
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-link {
  font-weight: 500;
  padding: 10px;
  border-radius: var(--radius);
}

.nav-link:hover {
  background: var(--gray-light);
  color: var(--primary);
}

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

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: #4a8cd4;
  transform: translateY(-2px);
}

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

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

.btn-large {
  padding: 18px 48px;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(232,93,117,0.1) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 0;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}

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

.hero-text {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 500px;
}

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

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

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

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

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

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

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* Story Section */
.story-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

.story-text {
  font-size: 1.125rem;
  line-height: 1.9;
}

.story-text p {
  margin-bottom: 20px;
}

.story-highlight {
  padding: 30px;
  background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Problem Section */
.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.problem-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(244,162,97,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.problem-content h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.problem-content p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Solution Section */
.solution-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.solution-intro {
  text-align: center;
}

.solution-intro h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.solution-check {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

/* Trust Section */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.trust-label {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Testimonials */
.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial-card {
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

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

.testimonial-info h5 {
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--gray);
}

.testimonial-stars {
  color: var(--accent);
  margin-left: auto;
  font-size: 1rem;
}

/* Services/Pricing */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-card.featured {
  border: 3px solid var(--primary);
  position: relative;
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-image {
  height: 200px;
  overflow: hidden;
}

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

.service-content {
  padding: 25px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.service-feature::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

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

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

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

/* Benefits Section */
.benefits-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.benefit-row.reverse {
  background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.benefit-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* CTA Sections */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-section .btn:hover {
  background: var(--light);
}

/* Urgency Section */
.urgency-wrap {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--primary);
}

.urgency-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.urgency-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.urgency-sub {
  color: var(--gray);
  margin-bottom: 25px;
}

/* Form Section */
.form-section {
  background: var(--dark);
  padding: 80px 0;
}

.form-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 15px;
}

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

.form {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

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

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,93,117,0.15);
}

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

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-checkbox-label {
  font-size: 0.9rem;
  color: var(--gray);
}

.form-checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: var(--transition);
}

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

.sticky-cta .btn {
  width: 100%;
  max-width: 400px;
}

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

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

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

.footer-col p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  z-index: 10000;
  display: none;
}

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

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  font-size: 0.95rem;
  color: var(--dark);
}

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

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

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

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

.cookie-reject {
  background: var(--gray-light);
  color: var(--dark);
}

/* Page Styles */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #fff5f7 0%, #f0f7ff 100%);
  text-align: center;
}

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

.page-header p {
  color: var(--gray);
  font-size: 1.125rem;
}

.page-content {
  padding: 60px 0;
}

.page-content h2 {
  font-size: 1.75rem;
  margin: 40px 0 20px;
}

.page-content h3 {
  font-size: 1.35rem;
  margin: 30px 0 15px;
}

.page-content p {
  margin-bottom: 20px;
}

.page-content ul {
  margin: 20px 0;
  padding-left: 25px;
  list-style: disc;
}

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

/* About Page */
.about-intro {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.value-card {
  padding: 30px;
  background: var(--light);
  border-radius: var(--radius);
}

.value-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--light);
  border-radius: var(--radius);
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

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

.contact-details p {
  color: var(--gray);
  font-size: 0.95rem;
}

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

.thanks-card {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 500px;
}

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

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

.thanks-card p {
  color: var(--gray);
  margin-bottom: 30px;
}

/* Responsive */
@media (min-width: 768px) {
  .nav {
    position: static;
    transform: none;
    padding: 0;
    box-shadow: none;
    width: auto;
  }

  .nav-list {
    flex-direction: row;
    gap: 30px;
  }

  .nav-toggle {
    display: none;
  }

  .hero-content {
    padding: 80px 0;
  }

  .story-block {
    flex-direction: row;
    align-items: center;
  }

  .story-block.reverse {
    flex-direction: row-reverse;
  }

  .story-text,
  .story-image {
    flex: 1;
  }

  .problem-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .problem-card {
    flex: 1;
    min-width: 280px;
  }

  .solution-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .solution-item {
    flex: 1;
    min-width: 250px;
  }

  .testimonial-stack {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial-card {
    flex: 1;
    min-width: 300px;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1;
    min-width: 300px;
    max-width: calc(50% - 12.5px);
  }

  .benefit-row {
    flex-direction: row;
    align-items: center;
  }

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

  .benefit-content {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-col {
    flex: 1;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-text {
    flex: 1;
  }

  .about-intro {
    flex-direction: row;
    align-items: center;
  }

  .about-intro > div {
    flex: 1;
  }

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

  .value-card {
    flex: 1;
    min-width: 250px;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > div {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .service-card {
    max-width: calc(33.333% - 17px);
  }

  .sticky-cta {
    display: none;
  }
}
