:root {
  --color-primary: #2d5a3d;
  --color-secondary: #8fb996;
  --color-accent: #d4a84b;
  --color-dark: #1a2e1f;
  --color-light: #f4f9f5;
  --color-muted: #6b8f73;
  --color-white: #ffffff;
  --color-text: #2c3e2f;
  --color-text-light: #5a7560;
  --font-heading: 'Georgia', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', sans-serif;
  --shadow-soft: 0 4px 20px rgba(45, 90, 61, 0.12);
  --shadow-medium: 0 8px 32px rgba(45, 90, 61, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-light);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.3;
}

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

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

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

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

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

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

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

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-menu 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(--color-dark);
  transition: all 0.3s ease;
}

.hero-funnel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-funnel::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="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="90" cy="80" r="2" fill="rgba(255,255,255,0.06)"/></svg>');
  background-size: 150px 150px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 60px 20px;
}

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

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--color-white);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

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

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

.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  padding: 80px 0;
}

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

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

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

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

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

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 15px;
}

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

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

.story-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.story-block:nth-child(even) {
  flex-direction: row-reverse;
}

.story-text {
  flex: 1;
}

.story-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.story-text p {
  margin-bottom: 15px;
  color: var(--color-text-light);
}

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

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

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.problem-card {
  flex: 1;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 35px;
  border-left: 4px solid var(--color-accent);
}

.problem-card h4 {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.problem-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.benefits-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.benefit-item {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 40px 30px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

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

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

.benefit-item h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  flex: 0 0 auto;
  width: 380px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 25px;
  line-height: 1.8;
}

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

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

.testimonial-info h5 {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 3px;
}

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

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

.service-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image svg {
  width: 80px;
  height: 80px;
  fill: var(--color-white);
  opacity: 0.9;
}

.service-body {
  padding: 30px;
}

.service-body h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

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

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

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

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

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

.form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-medium);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  font-size: 1rem;
  border: 2px solid #e0e8e2;
  border-radius: var(--radius-sm);
  background: var(--color-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

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

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

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
  text-align: center;
}

.trust-badge .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
}

.trust-badge .label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, #c89a3f 100%);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 60px auto;
  max-width: 900px;
}

.cta-banner h3 {
  color: var(--color-dark);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-banner p {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 25px;
}

.cta-banner .btn {
  background: var(--color-dark);
  color: var(--color-white);
}

.cta-banner .btn:hover {
  background: var(--color-primary);
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.sticky-cta p {
  color: var(--color-white);
  font-weight: 500;
}

.sticky-cta .btn {
  padding: 12px 28px;
}

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

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

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

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

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

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

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

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

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-medium);
  z-index: 10000;
  display: none;
}

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

.cookie-banner h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 0.9rem;
}

.page-header {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--color-white);
}

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

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

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

.content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

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

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

.content-section ul {
  margin: 15px 0;
  padding-left: 25px;
}

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

.about-story {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-story-text {
  flex: 1;
}

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

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

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

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

.team-member h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.team-member span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

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

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

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

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

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

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

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

.contact-map {
  flex: 1;
  min-width: 300px;
  min-height: 350px;
  background: var(--color-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
}

.thanks-content {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

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

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

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

.thanks-content p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 30px;
}

.urgency-bar {
  background: var(--color-accent);
  color: var(--color-dark);
  padding: 12px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.insight-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 50px;
  margin: 40px 0;
  border-left: 5px solid var(--color-accent);
}

.insight-block h3 {
  color: var(--color-accent);
  margin-bottom: 20px;
}

.insight-block p {
  font-size: 1.1rem;
  line-height: 1.9;
}

.reveal-section {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light) 100%);
}

.reveal-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.reveal-section .price-reveal {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 20px 50px;
  border-radius: var(--radius-md);
  margin: 30px 0;
}

.reveal-section .price-reveal span {
  font-size: 3rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 30px;
    gap: 15px;
    box-shadow: var(--shadow-medium);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

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

  .nav-toggle {
    display: flex;
  }

  .story-block,
  .story-block:nth-child(even) {
    flex-direction: column;
  }

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

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

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

  .cta-banner {
    padding: 40px 25px;
    margin: 40px 15px;
  }
}

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

  .hero-content {
    padding: 40px 15px;
  }

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

  .testimonial-card {
    width: 300px;
  }

  .sticky-cta {
    flex-direction: column;
    gap: 12px;
    padding: 12px 15px;
  }

  .sticky-cta p {
    font-size: 0.9rem;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    padding: 20px;
  }

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