:root {
  --color-sand-light: #f8f5f0;
  --color-sand: #ede6db;
  --color-green-warm: #c8d5b9;
  --color-green: #9db882;
  --color-lime: #b8d84e;
  --color-turquoise: #5dd4bf;
  --color-amber: #fbbf24;
  --color-graphite: #2c3e3d;
  --color-graphite-light: #4a5f5d;
  --color-white: #ffffff;
  --color-gray-light: #f5f5f5;
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-secondary: Georgia, "Times New Roman", serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-graphite);
  background: linear-gradient(135deg, var(--color-sand-light) 0%, var(--color-sand) 50%, var(--color-green-warm) 100%);
  overflow-x: hidden;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-graphite) 0%, var(--color-graphite-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.organic-pattern {
  position: relative;
  overflow: hidden;
}

.organic-pattern::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 50%, rgba(184, 216, 78, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(93, 212, 191, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-turquoise) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
}

.navbar-brand:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.nav-link {
  color: var(--color-graphite);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-lime);
  background: rgba(184, 216, 78, 0.1);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-lime);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-graphite) 0%, var(--color-graphite-light) 50%, var(--color-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-graphite-light);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 600px;
}

.btn-gradient {
  background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-turquoise) 100%);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  display: inline-block;
  text-decoration: none;
}

.btn-gradient:hover {
  transform: translateY(-2px) rotate(2deg);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
  text-decoration: none;
}

.btn-gradient:active {
  transform: translateY(0);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-graphite-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.card-custom {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-lime) 0%, var(--color-turquoise) 100%);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-turquoise) 100%);
  box-shadow: var(--shadow-sm);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-graphite);
}

.card-text {
  color: var(--color-graphite-light);
  line-height: 1.7;
}

.wave-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(184, 216, 78, 0.1) 0%, rgba(93, 212, 191, 0.1) 100%);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: 3rem 0;
}

.offset-card {
  margin-top: 2rem;
}

.offset-card:nth-child(even) {
  margin-top: 4rem;
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.quote-block {
  background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-turquoise) 100%);
  padding: 3rem;
  border-radius: 20px;
  color: var(--color-white);
  position: relative;
  box-shadow: var(--shadow-lg);
  margin: 3rem 0;
}

.quote-block::before {
  content: '"';
  font-size: 6rem;
  position: absolute;
  top: -1rem;
  left: 1rem;
  opacity: 0.3;
  font-family: var(--font-secondary);
}

.quote-text {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.quote-author {
  font-weight: 600;
  font-size: 1.1rem;
  border-left: 3px solid var(--color-white);
  padding-left: 1rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-text {
  font-style: italic;
  color: var(--color-graphite-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-graphite);
}

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

.faq-item {
  background: var(--color-white);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-graphite);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  background: var(--color-white);
}

.faq-question:hover {
  background: rgba(184, 216, 78, 0.05);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-graphite-light);
  line-height: 1.7;
  display: none;
}

.faq-answer.active {
  display: block;
}

.faq-icon {
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--color-lime);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.footer {
  background: linear-gradient(135deg, var(--color-graphite) 0%, var(--color-graphite-light) 100%);
  color: var(--color-white);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: var(--color-white);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-turquoise) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--color-lime);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 61, 0.98);
  color: var(--color-white);
  padding: 1.5rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  backdrop-filter: blur(10px);
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

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

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-turquoise) 100%);
  color: var(--color-white);
}

.btn-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-cookie-settings {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-cookie-settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

.form-control {
  border-radius: 12px;
  border: 2px solid var(--color-sand);
  padding: 1rem;
  transition: var(--transition);
  background: var(--color-white);
}

.form-control:focus {
  border-color: var(--color-lime);
  box-shadow: 0 0 0 3px rgba(184, 216, 78, 0.1);
  outline: none;
}

.form-label {
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 0.5rem;
}

.contact-info {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-item {
  display: flex;
  align-items: start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-turquoise) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.policy-content {
  background: var(--color-white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  margin: 3rem 0;
}

.policy-content h2 {
  color: var(--color-graphite);
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: var(--color-graphite-light);
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  color: var(--color-graphite-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul {
  color: var(--color-graphite-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.thank-you-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-turquoise) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .offset-card:nth-child(even) {
    margin-top: 2rem;
  }

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

  .quote-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn-gradient {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}
