﻿:root {
  --green-700: #1d7363;
  --green-500: #92c730;
  --teal-700: #009752;
  --ink: #0f1f1b;
  --mist: #f4fbf6;
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 18px 40px rgba(15, 31, 27, 0.12);
  --radius-pill: 999px;
}

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

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page {
  width: min(1200px, 92vw);
  padding: 32px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cta-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand-logo {
  height: 78px;
  width: auto;
  display: block;
  object-fit: contain;
}

.cta-actions {
  display: flex;
  gap: 14px;
}

.cta-button {
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  font-weight: 500;
  letter-spacing: 0.2px;
  cursor: pointer;
  background: var(--green-700);
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}

.cta-button.secondary {
  background: var(--green-700);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(15, 31, 27, 0.16);
}

.nav-bar {
  width: 100%;
  background: var(--card);
  border-radius: 26px;
  padding: 14px 28px;
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  border: 1px solid rgba(15, 31, 27, 0.08);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 800;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(29, 115, 99, 0.3);
  background: #ffffff;
  color: var(--green-700);
  font-weight: 600;
  cursor: pointer;
}

.nav-toggle-icon {
  width: 22px;
  height: 2px;
  background: var(--green-700);
  position: relative;
  display: block;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--green-700);
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-menu {
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  gap: 18px;
  font-weight: 500;
}

.nav-menu a {
  text-decoration: none;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--green-500);
  transition: width 0.2s ease;
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
  margin-top: 12px;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 28px;
  object-fit: cover;
  display: block;
}

.hero-text {
  padding: 28px 30px;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 14px;
  color: var(--green-700);
}

.hero-text p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.6;
  margin-bottom: 14px;
  color: rgba(15, 31, 27, 0.82);
}

.hero-text p:last-child {
  margin-bottom: 0;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--green-700);
  margin-top: 2px;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.intro {
  max-width: 860px;
  margin: 70px auto 0;
  text-align: center;
}

.intro p {
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.8);
  margin-bottom: 14px;
}

.intro p:last-child {
  margin-bottom: 0;
}

.intro-late {
  margin-top: 170px;
}

.reveal,
.reveal-after-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-ready .reveal,
.js-ready .reveal-after-scroll {
  opacity: 0;
  transform: translateY(22px);
}

.js-ready .reveal.is-visible,
.js-ready .reveal-after-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature {
  margin-top: 170px;
  text-align: center;
}

.feature img {
  width: min(920px, 100%);
  height: auto;
  display: block;
  margin: 0 auto 26px;
  border-radius: 22px;
}

.feature h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--green-700);
  margin-bottom: 12px;
}

.feature p {
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
  max-width: 880px;
  margin: 0 auto;
}

.benefits {
  margin-top: 170px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.benefit-card {
  background: transparent;
  border: none;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 115, 99, 0.12);
  color: var(--green-700);
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.benefit-card h3 {
  font-size: 1.1rem;
  color: var(--green-700);
  margin-bottom: 10px;
}

.benefit-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

.split-section {
  margin-top: 170px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.split-text h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  color: var(--green-700);
  margin-bottom: 14px;
}

.split-text p {
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

.split-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
}

.contact-section {
  margin-top: 170px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--green-700);
}

.contact-section p {
  margin: 0;
  color: rgba(15, 31, 27, 0.82);
}

.contact-section p + .cta-button {
  margin-top: 10px;
}

.contact-section a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.contact-info span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 31, 27, 0.6);
}

.contact-info a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 1.1rem;
}

.contact-section .cta-button {
  min-width: 240px;
  color: #ffffff;
}

.testimonials {
  margin-top: 170px;
  text-align: center;
}

.testimonials h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  color: var(--green-700);
  margin-bottom: 10px;
}

.testimonials p {
  color: rgba(15, 31, 27, 0.82);
  line-height: 1.7;
}

.testimonial-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  text-align: left;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(29, 115, 99, 0.14);
  border-radius: 18px;
  padding: 24px;
}

.testimonial-quote {
  margin: 0 0 18px;
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(140deg, #1d7363, #92c730);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
}

.testimonial-meta h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--ink);
}

.testimonial-meta span {
  font-size: 0.95rem;
  color: rgba(15, 31, 27, 0.62);
}

.pricing {
  margin-top: 170px;
  text-align: center;
}

.pricing h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--green-700);
  margin-bottom: 12px;
}

.pricing-intro {
  max-width: 880px;
  margin: 0 auto 26px;
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

.pricing-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  text-align: left;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(29, 115, 99, 0.16);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-card.highlight {
  border: 2px solid rgba(29, 115, 99, 0.65);
  box-shadow: 0 18px 40px rgba(29, 115, 99, 0.16);
  transform: translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: -38px;
  background: #e53935;
  color: #ffffff;
  padding: 6px 96px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(45deg);
  box-shadow: 0 6px 16px rgba(229, 57, 53, 0.35);
}

.pricing-card.highlight .pricing-badge {
  padding: 6px 72px;
  right: -54px;
}

.pricing-badge--pro {
  background: #1d7363;
  box-shadow: 0 6px 16px rgba(29, 115, 99, 0.35);
}

.pricing-badge--starter {
  background: #92c730;
  box-shadow: 0 6px 16px rgba(146, 199, 48, 0.35);
}

.pricing-card h3 {
  font-size: 1.2rem;
  color: var(--green-700);
}

.pricing-price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
}

.pricing-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(15, 31, 27, 0.7);
}

.pricing-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(15, 31, 27, 0.8);
}

.pricing-card ul + .cta-button {
  margin-top: auto;
}

.pricing-card ul li {
  position: relative;
  padding-left: 18px;
}

.pricing-card ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--green-700);
}

.pricing-card .cta-button {
  align-self: flex-start;
}

.pricing-includes {
  margin-top: 36px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing-includes h3 {
  font-size: 1.2rem;
  color: var(--green-700);
  margin-bottom: 12px;
}

.pricing-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(15, 31, 27, 0.8);
}

.pricing-includes ul li::before {
  content: "\2022";
  color: var(--green-700);
  margin-right: 8px;
}

.page-title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: var(--green-700);
  margin-bottom: 12px;
}

.page-intro {
  max-width: 860px;
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

.landing-hero {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  text-align: left;
}

.landing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.landing-section {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  line-height: 1.8;
}

.landing-section p + p {
  margin-top: 12px;
}

.landing-section a {
  color: var(--green-700);
  font-weight: 500;
  text-decoration: none;
}

.landing-section .cta-button {
  color: #ffffff;
}

.highlight-link {
  margin: 0 0 12px;
}

.highlight-link a {
  font-weight: 700;
  color: var(--green-700);
}

.landing-section a:hover {
  text-decoration: underline;
}

.landing-section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: var(--green-700);
}

.landing-section h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--green-700);
}

.keyword-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.keyword-list li {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(29, 115, 99, 0.18);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.95rem;
}

.natura-page .info-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  color: rgba(15, 31, 27, 0.7);
}

.natura-page .hero-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  color: rgba(15, 31, 27, 0.82);
}

.natura-page .hero-list li {
  position: relative;
  padding-left: 22px;
}

.natura-page .hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-700);
  font-weight: 600;
}

.natura-page .stat-value {
  font-size: 2rem;
  margin-bottom: 8px;
}

.natura-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.natura-page .gallery-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.natura-page .contact-card {
  background: #ffffff;
  border: 1px solid rgba(29, 115, 99, 0.18);
  border-radius: 20px;
  padding: 24px;
  line-height: 1.7;
}

.natura-blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.natura-blog .blog-card {
  background: #ffffff;
  border: 1px solid rgba(29, 115, 99, 0.16);
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.natura-blog .blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.natura-blog .blog-card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--green-700);
}

.natura-blog .blog-card p {
  margin: 0;
  line-height: 1.6;
  color: rgba(15, 31, 27, 0.78);
}

.natura-blog .blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 31, 27, 0.12);
}

.natura-blog .blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.natura-blog .blog-breadcrumb {
  font-size: 0.9rem;
  color: rgba(15, 31, 27, 0.6);
}

.natura-blog .blog-breadcrumb a {
  color: var(--green-700);
  text-decoration: none;
}

.natura-blog .blog-breadcrumb a:hover {
  text-decoration: underline;
}

.blog-hero {
  max-width: 960px;
  margin: 0 auto 28px;
  display: grid;
  gap: 12px;
}

.blog-hero img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 31, 27, 0.12);
  display: block;
}

.blog-figure {
  margin: 0;
  display: grid;
  gap: 8px;
}

.blog-figure img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.blog-figure figcaption {
  font-size: 0.9rem;
  color: rgba(15, 31, 27, 0.6);
}

.blog-cta {
  border: 1px solid rgba(29, 115, 99, 0.16);
  border-radius: 20px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(29, 115, 99, 0.08), rgba(146, 199, 48, 0.12));
  display: grid;
  gap: 12px;
}

.blog-cta h3 {
  margin: 0;
  color: var(--green-700);
}

@media (max-width: 1024px) {
  .natura-blog .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .natura-page .info-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .natura-blog .blog-grid {
    grid-template-columns: 1fr;
  }

  .natura-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .natura-page .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.features {
  margin-top: 32px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(29, 115, 99, 0.14);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card.feature-card-wide {
  grid-column: span 2;
}

.feature-card h2 {
  font-size: 1.15rem;
  color: var(--green-700);
}

.feature-card p {
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
  margin: 0;
}

.feature-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: 16px;
  align-items: stretch;
}

.feature-media {
  width: 100%;
  height: auto;
  max-height: 360px;
  border-radius: 16px;
  display: block;
  object-fit: contain;
  justify-self: end;
  align-self: center;
}

.feature-card .cta-button {
  align-self: flex-start;
  margin-top: auto;
}

.site-footer {
  margin-top: 170px;
  padding: 48px 0 64px;
  border-top: 1px solid rgba(29, 115, 99, 0.14);
  width: 100%;
}

.form-section {
  margin-top: 48px;
  text-align: center;
}

.form-section h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--green-700);
  margin-bottom: 12px;
}

.form-section p {
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

.form-card {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(29, 115, 99, 0.14);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  gap: 18px;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto 24px;
  text-align: left;
}

.contact-info-logo {
  height: 100%;
  width: auto;
  max-height: 180px;
  display: block;
  object-fit: contain;
  align-self: stretch;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

/* Honeypot field: hidden from users, visible to simple bots. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.hp-field label {
  display: none;
}

.form-field label {
  font-size: 0.95rem;
  color: rgba(15, 31, 27, 0.75);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid rgba(29, 115, 99, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

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

.form-field--full {
  grid-column: 1 / -1;
}

.form-privacy {
  align-items: flex-start;
}

.form-turnstile {
  display: flex;
  justify-content: center;
}

.form-turnstile .cf-turnstile {
  margin: 4px 0;
}

.privacy-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(15, 31, 27, 0.8);
}

.privacy-label input {
  margin-top: 3px;
}

.privacy-label a {
  color: var(--green-700);
  text-decoration: none;
}

.form-actions {
  display: flex;
  justify-content: center;
}

.about-hero {
  margin-top: 24px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(29, 115, 99, 0.12), rgba(146, 199, 48, 0.12));
  display: grid;
  gap: 18px;
}

.about-hero h1 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: var(--green-700);
}

.about-hero p {
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
  max-width: 860px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.faq-section {
  margin-top: 48px;
  display: grid;
  gap: 18px;
}

.faq-section h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--green-700);
}

.faq-intro {
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
  max-width: 880px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(29, 115, 99, 0.14);
  border-radius: 18px;
  padding: 22px 24px;
}

.faq-item h3 {
  font-size: 1.05rem;
  color: var(--green-700);
  margin-bottom: 10px;
}

.faq-item p {
  margin: 0;
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

.legal-section {
  margin-top: 48px;
  display: grid;
  gap: 18px;
}

.legal-section h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--green-700);
}

.legal-card {
  background: #ffffff;
  border: 1px solid rgba(29, 115, 99, 0.14);
  border-radius: 18px;
  padding: 24px;
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

.legal-card h2 {
  font-size: 1.1rem;
  color: var(--green-700);
  margin: 18px 0 8px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.about-section {
  margin-top: 48px;
  display: grid;
  gap: 18px;
}

.about-section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--green-700);
}

.about-card {
  background: #ffffff;
  border: 1px solid rgba(29, 115, 99, 0.14);
  border-radius: 20px;
  padding: 24px;
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.team-card {
  background: #ffffff;
  border: 1px solid rgba(29, 115, 99, 0.14);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.team-photo {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.1rem;
  color: var(--green-700);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.95rem;
  color: rgba(15, 31, 27, 0.65);
  margin-bottom: 12px;
}

.team-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.principle-card {
  background: #ffffff;
  border: 1px solid rgba(29, 115, 99, 0.14);
  border-radius: 20px;
  padding: 22px;
}

.principle-card h3 {
  font-size: 1.05rem;
  color: var(--green-700);
  margin-bottom: 8px;
}

.principle-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

.toast-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 27, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.toast-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.toast-panel {
  width: min(860px, 92vw);
  max-height: 90vh;
  overflow: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  position: relative;
  box-shadow: 0 24px 60px rgba(15, 31, 27, 0.2);
}

.toast-panel h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--green-700);
  margin-bottom: 10px;
  text-align: center;
}

.toast-panel p {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

.toast-panel .toast-subtitle,
.toast-panel .toast-section-title {
  text-align: left;
  margin-bottom: 14px;
}

.toast-panel .toast-section-title {
  font-weight: 600;
  color: var(--green-700);
}

.toast-panel .form-card {
  margin: 0;
  max-width: none;
}

.toast-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(15, 31, 27, 0.7);
}

.toast-success {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(29, 115, 99, 0.12);
  color: var(--green-700);
  text-align: center;
  font-weight: 500;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: center;
  z-index: 900;
}

.cookie-banner-content {
  width: min(960px, 100%);
  background: #ffffff;
  border: 1px solid rgba(29, 115, 99, 0.2);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: rgba(15, 31, 27, 0.8);
  box-shadow: 0 16px 40px rgba(15, 31, 27, 0.18);
}

.cookie-banner-text {
  max-width: 520px;
}

.cookie-banner-text h3 {
  font-size: 1.05rem;
  color: var(--green-700);
  margin-bottom: 6px;
}

.cookie-banner-text p {
  margin: 0;
  line-height: 1.5;
}

.cookie-banner-content strong {
  color: var(--green-700);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}

.cookie-btn.primary {
  background: var(--green-700);
  color: #ffffff;
}

.cookie-btn.secondary {
  background: #ffffff;
  color: var(--green-700);
  border: 1px solid rgba(29, 115, 99, 0.3);
}

.cookie-btn.ghost {
  background: transparent;
  color: var(--green-700);
  border: 1px dashed rgba(29, 115, 99, 0.35);
}

.cookie-settings {
  width: min(960px, 100%);
  background: #ffffff;
  border: 1px solid rgba(29, 115, 99, 0.2);
  border-radius: 16px;
  padding: 18px;
  margin-top: 12px;
  box-shadow: 0 14px 32px rgba(15, 31, 27, 0.18);
}

.cookie-settings h4 {
  margin-bottom: 14px;
  color: var(--green-700);
  font-size: 1rem;
}

.cookie-option {
  border-top: 1px solid rgba(15, 31, 27, 0.08);
  padding-top: 14px;
  margin-top: 14px;
}

.cookie-option:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--ink);
}

.cookie-option p {
  margin-top: 6px;
  line-height: 1.5;
  color: rgba(15, 31, 27, 0.75);
}

.cookie-switch {
  position: relative;
  width: 46px;
  height: 24px;
  display: inline-flex;
  align-items: center;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  background: rgba(29, 115, 99, 0.2);
  border-radius: 999px;
  transition: background 0.2s ease;
}

.cookie-switch span::after {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(15, 31, 27, 0.2);
}

.cookie-switch input:checked + span {
  background: rgba(29, 115, 99, 0.7);
}

.cookie-switch input:checked + span::after {
  transform: translateX(22px);
}

.cookie-settings-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-privacy {
  margin-top: 14px;
  font-size: 0.9rem;
}

.cookie-privacy a {
  color: var(--green-700);
  text-decoration: none;
}

.cookie-accept {
  border: none;
  border-radius: 999px;
  background: var(--green-700);
  color: #ffffff;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-700);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(15, 31, 27, 0.2);
  z-index: 880;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(29, 115, 99, 0.4);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .form-grid {
    justify-items: center;
  }

  .form-field {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .cookie-banner-content,
  .cookie-settings {
    padding: 16px;
  }

  .cookie-banner-actions,
  .cookie-settings-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-btn {
    width: 100%;
  }

  .back-to-top {
    right: 16px;
    bottom: 88px;
    width: 46px;
    height: 46px;
  }
}

.toast-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.toast-open {
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 110px;
  height: auto;
  display: block;
}

.footer-logo.secondary {
  width: 130px;
}

.footer-address {
  font-style: normal;
  line-height: 1.7;
  color: rgba(15, 31, 27, 0.82);
}

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

.footer-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.footer-title {
  font-size: 1rem;
  color: var(--green-700);
  margin-bottom: 12px;
}

.footer-meta {
  color: rgba(15, 31, 27, 0.72);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .nav-bar {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .nav-menu {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    flex-direction: column;
    align-items: center;
    padding-bottom: 6px;
    text-align: center;
    width: 100%;
  }

  .nav-bar.is-open .nav-menu {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-self: center;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.highlight {
    transform: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-media-layout {
    grid-template-columns: 1fr;
  }

  .feature-media {
    max-height: 300px;
  }

  .feature-card.feature-card-wide {
    grid-column: auto;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-info-logo {
    width: min(200px, 60vw);
    height: auto;
    max-height: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cta-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    width: 100%;
  }

  .page {
    padding-top: 24px;
  }

  .nav-bar {
    padding: 18px 20px;
  }
}


