:root {
  --primary: #2d5a4a;
  --primary-dark: #1e3d32;
  --secondary: #c9a962;
  --accent: #8b6b3d;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --bg: #faf9f7;
  --bg-alt: #f0ede8;
  --bg-dark: #e5e0d8;
  --white: #ffffff;
  --shadow: rgba(45, 90, 74, 0.12);
  --radius: 6px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

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

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

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

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

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
  margin-bottom: 1rem;
}

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

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

/* Navigation */
.nav-wrapper {
  background: var(--white);
  box-shadow: 0 2px 20px var(--shadow);
  position: relative;
  z-index: 100;
}

.nav-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

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

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

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

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* Hero Section */
.hero-funnel {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-funnel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  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="0.5"/></svg>');
  background-size: 60px;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(10deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-funnel h1 {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-funnel p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 500px;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
}

.hero-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
}

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

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

.btn-primary:hover {
  background: #d4b56f;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

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

.btn-secondary:hover {
  background: var(--bg-alt);
}

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

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

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* Sections */
section {
  padding: 5rem 0;
}

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Story Flow */
.story-block {
  padding: 4rem 0;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

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

.story-text {
  flex: 1;
}

.story-text h2 {
  margin-bottom: 1.5rem;
}

.story-visual {
  flex: 1;
}

.story-visual img {
  border-radius: 12px;
  box-shadow: 0 20px 40px var(--shadow);
}

/* Problem Section */
.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.problem-item {
  flex: 1 1 280px;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 10px 30px var(--shadow);
}

.problem-item h4 {
  margin-bottom: 0.75rem;
  color: var(--accent);
}

/* Benefits */
.benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.benefit-card {
  flex: 1 1 300px;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px var(--shadow);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-8px);
}

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

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

.benefit-card h3 {
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-flow {
  padding: 4rem 0;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 10px 30px var(--shadow);
}

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

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
}

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

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

/* Services */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.service-card {
  flex: 1 1 320px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img svg {
  width: 60px;
  height: 60px;
  fill: var(--white);
  opacity: 0.8;
}

.service-body {
  padding: 2rem;
}

.service-body h3 {
  margin-bottom: 0.75rem;
}

.service-body p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

/* CTA Sections */
.cta-inline {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem;
  border-radius: 20px;
  text-align: center;
  color: var(--white);
  margin: 3rem 0;
}

.cta-inline h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-inline p {
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 -5px 30px var(--shadow);
  z-index: 99;
  transform: translateY(100%);
  transition: var(--transition);
}

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

.cta-sticky-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.cta-sticky p {
  margin: 0;
  font-weight: 500;
}

/* Forms */
.form-section {
  background: var(--bg-alt);
  padding: 5rem 0;
}

.form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.form-wrapper h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--bg-dark);
  border-radius: var(--radius);
  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(--primary);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  width: auto;
  margin-top: 0.25rem;
}

.form-checkbox label {
  margin: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

/* About Page */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 6rem 0;
  text-align: center;
  color: var(--white);
}

.about-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.about-content {
  padding: 4rem 0;
}

.about-grid {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 50px var(--shadow);
}

/* Values */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  flex: 1 1 250px;
  text-align: center;
  padding: 2rem;
}

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

.value-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-dark);
}

/* Contact */
.contact-wrapper {
  display: flex;
  gap: 4rem;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1.5;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

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

.contact-details h4 {
  margin-bottom: 0.25rem;
}

.contact-details p {
  margin: 0;
  color: var(--text-light);
}

/* Thanks Page */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

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

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

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

.thanks-content h1 {
  margin-bottom: 1rem;
}

.thanks-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Legal Pages */
.legal-page {
  padding: 4rem 0;
}

.legal-page h1 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--bg-dark);
}

.legal-page h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.legal-page ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

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

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

.footer-col li {
  margin-bottom: 0.75rem;
}

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

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

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

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

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

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

.cookie-text {
  flex: 1;
}

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

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

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

/* Urgency */
.urgency-bar {
  background: var(--secondary);
  color: var(--primary-dark);
  text-align: center;
  padding: 0.75rem;
  font-weight: 600;
}

/* Image Placeholders */
.img-placeholder {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-visual {
    display: none;
  }

  .hero-funnel {
    min-height: 70vh;
  }

  .story-content,
  .story-content.reverse {
    flex-direction: column;
    gap: 2rem;
  }

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

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

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

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

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

  .nav-links li {
    border-bottom: 1px solid var(--bg-alt);
  }

  .nav-links a {
    display: block;
    padding: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

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

  section {
    padding: 3rem 0;
  }

  .cta-inline {
    padding: 2rem;
    margin: 2rem 0;
  }

  .form-wrapper {
    padding: 2rem;
  }

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

  .cta-sticky-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .problem-item,
  .benefit-card,
  .service-card {
    flex: 1 1 100%;
  }
}
