:root {
  --primary: #2d6a4f;
  --primary-dark: #1b4332;
  --secondary: #74c69d;
  --accent: #d8f3dc;
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --bg: #fefefe;
  --bg-alt: #f8f9fa;
  --bg-dark: #264653;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

a:hover {
  color: var(--primary-dark);
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
}

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

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

.ad-disclosure {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

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

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

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease;
}

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

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

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 500px;
}

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

.hero-image-wrapper {
  background-color: var(--secondary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 500px;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

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

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

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

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

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

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

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

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

.section-accent {
  background: var(--accent);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.8);
}

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

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

.story-block:last-child {
  margin-bottom: 0;
}

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

.story-content {
  flex: 1;
}

.story-image {
  flex: 1;
  background-color: var(--secondary);
  border-radius: var(--radius);
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 400px;
}

.story-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.story-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.story-text {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Problem Section */
.problem-grid {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.problem-card {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px;
}

.problem-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.problem-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.problem-text {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
  height: 200px;
  background-color: var(--secondary);
  overflow: hidden;
}

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

.service-content {
  padding: 30px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

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

.service-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.price-unit {
  font-size: 0.875rem;
  color: var(--text-light);
}

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

.benefits-image {
  flex: 1;
  background-color: var(--secondary);
  border-radius: var(--radius);
  overflow: hidden;
}

.benefits-image img {
  width: 100%;
  height: 500px;
}

.benefits-content {
  flex: 1;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

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

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

/* Testimonials */
.testimonials-grid {
  display: flex;
  gap: 30px;
}

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

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-top: 30px;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
}

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

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

/* Form Section */
.form-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.form-wrapper {
  display: flex;
  gap: 80px;
  align-items: center;
}

.form-content {
  flex: 1;
  color: var(--white);
}

.form-content .section-title {
  color: var(--white);
}

.form-content .section-subtitle {
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

.form-features {
  list-style: none;
}

.form-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
}

.form-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--secondary);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.form-container {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 30px;
  text-align: center;
}

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

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

.form-input,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--white);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-submit {
  width: 100%;
  padding: 18px;
  margin-top: 10px;
}

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

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

.footer-brand {
  flex: 2;
}

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

.footer-description {
  color: rgba(255,255,255,0.7);
  max-width: 300px;
  line-height: 1.7;
}

.footer-links {
  flex: 1;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--white);
}

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

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

.footer-list a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

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

.footer-contact {
  flex: 1;
}

.footer-contact-item {
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

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

/* Disclaimer */
.disclaimer {
  background: var(--bg-alt);
  padding: 40px 0;
  border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* References */
.references {
  background: var(--bg-alt);
  padding: 60px 0;
}

.references-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.references-list {
  list-style: none;
}

.references-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
  font-size: 0.9rem;
}

.references-list li::before {
  content: attr(data-ref);
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.references-list a {
  color: var(--primary);
  word-break: break-all;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 24px;
  z-index: 9999;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.9rem;
}

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

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

.cookie-reject {
  background: transparent;
  color: var(--text);
  border: 1px solid #e0e0e0;
}

.cookie-reject:hover {
  background: var(--bg-alt);
}

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

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  font-size: 3rem;
  color: var(--white);
}

.thanks-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.thanks-text {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.thanks-service {
  background: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.thanks-service-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.thanks-service-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

/* About Page */
.about-hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--bg) 100%);
}

.about-hero-content {
  max-width: 800px;
}

.about-hero .section-title {
  font-size: 3rem;
}

.values-grid {
  display: flex;
  gap: 40px;
  margin-top: 60px;
}

.value-card {
  flex: 1;
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.value-text {
  color: var(--text-light);
}

/* Contact Page */
.contact-section {
  padding: 160px 0 100px;
}

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

.contact-info {
  flex: 1;
}

.contact-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-value {
  font-size: 1.125rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.contact-map {
  flex: 1;
  background-color: var(--secondary);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
}

.contact-map img {
  width: 100%;
  height: 100%;
}

/* Legal Pages */
.legal-page {
  padding: 160px 0 100px;
}

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

.legal-content h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 40px;
}

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

.legal-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 30px;
  color: var(--text-light);
}

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

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

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

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

/* Insight Section */
.insight-section {
  position: relative;
  overflow: hidden;
}

.insight-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-dark);
}

.insight-bg img {
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.insight-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 0;
}

.insight-icon {
  font-size: 4rem;
  margin-bottom: 30px;
}

.insight-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.insight-text {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Trust Badges */
.trust-section {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid #e0e0e0;
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
}

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

.trust-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-content,
  .story-block,
  .story-block.reverse,
  .benefits-wrapper,
  .form-wrapper {
    flex-direction: column;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .service-card {
    min-width: 100%;
  }

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

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

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

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

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

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow);
  }

  .nav.active {
    display: flex;
  }

  .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

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

  .section {
    padding: 60px 0;
  }

  .form-container {
    padding: 30px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-grid {
    flex-wrap: wrap;
    gap: 30px;
  }

  .sticky-cta {
    bottom: 20px;
    right: 20px;
    left: 20px;
  }

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