/* ==========================================================================
   gulefew.com — Soft Minimal / Sage-Green Whitepage
   Palette:
     #5B8266  sage
     #3E5C49  forest (dark bg)
     #A9C5A0  light sage (dark text only)
     #F7F9F4  off-white bg  (dark text only)
     #FFFFFF  card bg
     #233027  text-on-light
     #F2F7EE  text-on-dark
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: #F7F9F4;
  color: #233027;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #3E5C49;
  text-decoration: none;
}

a:hover {
  color: #5B8266;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: #233027;
}

/* --------------------------------------------------------------------------
   2. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: #233027;
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #5B8266;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* --------------------------------------------------------------------------
   3. BUTTONS
   -------------------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  background-color: #3E5C49;
  color: #F2F7EE;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid #3E5C49;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #4a6e58;
  border-color: #5B8266;
  color: #F2F7EE;
  transform: translateY(-1px);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  background-color: transparent;
  color: #233027;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid #5B8266;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: rgba(91, 130, 102, 0.08);
  border-color: #3E5C49;
  color: #233027;
  transform: translateY(-1px);
}

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

/* --------------------------------------------------------------------------
   4. COOKIE BANNER
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #233027;
  color: #F2F7EE;
  z-index: 9999;
  padding: 20px 0;
  box-shadow: 0 -4px 24px rgba(35, 48, 39, 0.18);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #F2F7EE;
  min-width: 200px;
}

.cookie-text a {
  color: #A9C5A0;
  text-decoration: underline;
}

.cookie-text a:hover {
  color: #F2F7EE;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-accept {
  display: inline-flex;
  align-items: center;
  padding: 10px 26px;
  background-color: #5B8266;
  color: #F2F7EE;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  border: 2px solid #5B8266;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-accept:hover {
  background-color: #4a6e58;
  border-color: #4a6e58;
}

.btn-decline {
  display: inline-flex;
  align-items: center;
  padding: 10px 26px;
  background-color: transparent;
  color: #F2F7EE;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  border: 2px solid rgba(242, 247, 238, 0.4);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.btn-decline:hover {
  border-color: #F2F7EE;
  background-color: rgba(242, 247, 238, 0.08);
}

/* --------------------------------------------------------------------------
   5. SITE HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(91, 130, 102, 0.15);
  box-shadow: 0 2px 16px rgba(35, 48, 39, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.nav-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #3E5C49;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-brand:hover {
  color: #5B8266;
}

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

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #233027;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background-color 0.18s ease, color 0.18s ease;
  text-decoration: none;
}

.nav-links a:hover {
  background-color: rgba(91, 130, 102, 0.1);
  color: #3E5C49;
}

.nav-links a.nav-cta {
  background-color: #3E5C49;
  color: #F2F7EE;
  padding: 8px 20px;
}

.nav-links a.nav-cta:hover {
  background-color: #4a6e58;
  color: #F2F7EE;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background-color: rgba(91, 130, 102, 0.1);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #233027;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #F7F9F4 0%, #A9C5A0 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(35, 48, 39, 0.72) 0%,
    rgba(35, 48, 39, 0.42) 60%,
    rgba(35, 48, 39, 0.15) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 620px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #F2F7EE;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(242, 247, 238, 0.88);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   7. INTRO SECTION
   -------------------------------------------------------------------------- */
.intro-section {
  background-color: #FFFFFF;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.intro-text h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #233027;
  margin-bottom: 16px;
}

.intro-text p {
  color: #233027;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.intro-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(35, 48, 39, 0.1);
}

/* --------------------------------------------------------------------------
   8. BENEFITS
   -------------------------------------------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.benefit-card {
  background-color: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(35, 48, 39, 0.07);
  border-top: 3px solid #5B8266;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.benefit-card:hover {
  box-shadow: 0 8px 36px rgba(35, 48, 39, 0.13);
  transform: translateY(-4px);
}

.benefit-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.benefit-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 4px;
}

.benefit-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #233027;
}

.benefit-desc {
  font-size: 0.93rem;
  color: #4a5e4f;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   9. STEPS SECTION
   -------------------------------------------------------------------------- */
.steps-section {
  background-color: #F7F9F4;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
}

.step-item {
  text-align: center;
  padding: 32px 20px;
  background-color: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(35, 48, 39, 0.06);
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #3E5C49;
  color: #F2F7EE;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 auto 16px;
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #233027;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: #4a5e4f;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. STATS SECTION
   -------------------------------------------------------------------------- */
.stats-section {
  background-color: #3E5C49;
  padding: 64px 0;
}

.stats-section .section-title {
  color: #F2F7EE;
}

.stats-section .section-subtitle {
  color: rgba(242, 247, 238, 0.75);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #A9C5A0;
  line-height: 1;
}

.stat-label {
  font-size: 0.92rem;
  color: rgba(242, 247, 238, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   11. POSTER / VIDEO SECTION
   -------------------------------------------------------------------------- */
.poster-section {
  background-color: #233027;
  padding: 80px 0;
}

.poster-section .section-title {
  color: #F2F7EE;
  margin-bottom: 36px;
}

.poster-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.poster-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 48, 39, 0.38);
  border-radius: 18px;
  pointer-events: none;
}

.poster-play::after {
  content: '';
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(242, 247, 238, 0.92);
  clip-path: polygon(30% 20%, 80% 50%, 30% 80%);
  display: block;
}

/* --------------------------------------------------------------------------
   12. TIPS SECTION
   -------------------------------------------------------------------------- */
.tips-section {
  background-color: #F7F9F4;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.tip-card {
  background-color: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(35, 48, 39, 0.07);
  border-top: 3px solid #5B8266;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.tip-card:hover {
  box-shadow: 0 8px 36px rgba(35, 48, 39, 0.13);
  transform: translateY(-4px);
}

.tip-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.tip-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tip-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #233027;
}

.tip-text {
  font-size: 0.91rem;
  color: #4a5e4f;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background-color: #F7F9F4;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(35, 48, 39, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 3px solid #A9C5A0;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #5B8266;
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #233027;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #3E5C49;
}

/* --------------------------------------------------------------------------
   14. COMPARISON SECTION
   -------------------------------------------------------------------------- */
.comparison-section {
  background-color: #F7F9F4;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.comp-tier {
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(35, 48, 39, 0.07);
  border-top: 3px solid #5B8266;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comp-tier.featured {
  background-color: #3E5C49;
  border-top-color: #A9C5A0;
}

.comp-tier.featured .comp-tier-title {
  color: #F2F7EE;
}

.comp-tier.featured .comp-feature-item {
  color: rgba(242, 247, 238, 0.88);
}

.comp-tier-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #233027;
  text-align: center;
}

.comp-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comp-feature-item {
  font-size: 0.9rem;
  color: #4a5e4f;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.comp-feature-item::before {
  content: '✓';
  color: #5B8266;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.comp-tier.featured .comp-feature-item::before {
  color: #A9C5A0;
}

/* --------------------------------------------------------------------------
   15. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: #FFFFFF;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #F7F9F4;
  border-radius: 14px;
  border: 1px solid rgba(91, 130, 102, 0.15);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(35, 48, 39, 0.07);
}

.faq-item.active {
  box-shadow: 0 4px 18px rgba(35, 48, 39, 0.1);
  border-color: rgba(91, 130, 102, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: #233027;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #3E5C49;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: #5B8266;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: #4a5e4f;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   16. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: #F7F9F4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: flex-start;
}

.contact-info h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #233027;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 0.95rem;
  color: #4a5e4f;
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-form {
  background-color: #FFFFFF;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(35, 48, 39, 0.08);
  border-top: 3px solid #5B8266;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: #3E5C49;
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: #F7F9F4;
  border: 1.5px solid rgba(91, 130, 102, 0.25);
  border-radius: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: #233027;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #8aa593;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #5B8266;
  box-shadow: 0 0 0 3px rgba(91, 130, 102, 0.12);
}

.form-group.error .form-input,
.form-group.error .form-textarea {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-error {
  font-size: 0.8rem;
  color: #c0392b;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

.form-success {
  display: none;
  background-color: rgba(91, 130, 102, 0.12);
  border: 1px solid #5B8266;
  border-radius: 10px;
  padding: 14px 18px;
  color: #3E5C49;
  font-size: 0.93rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.form-success.visible {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 13px 24px;
  background-color: #3E5C49;
  color: #F2F7EE;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.97rem;
  border: 2px solid #3E5C49;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.form-submit:hover {
  background-color: #4a6e58;
  border-color: #5B8266;
}

.map-wrap {
  margin-top: 32px;
  height: 350px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(35, 48, 39, 0.08);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* --------------------------------------------------------------------------
   17. SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #233027;
  color: #F2F7EE;
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

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

.footer-brand a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #F2F7EE;
  text-decoration: none;
}

.footer-brand a:hover {
  color: #A9C5A0;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(242, 247, 238, 0.65);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #A9C5A0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(242, 247, 238, 0.72);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: #A9C5A0;
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(242, 247, 238, 0.72);
  line-height: 1.65;
  margin-bottom: 6px;
}

.footer-contact a {
  color: rgba(242, 247, 238, 0.72);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #A9C5A0;
}

.footer-copy {
  border-top: 1px solid rgba(242, 247, 238, 0.12);
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(242, 247, 238, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy a {
  color: rgba(242, 247, 238, 0.55);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-copy a:hover {
  color: #A9C5A0;
}

/* --------------------------------------------------------------------------
   18. LEGAL PAGES
   -------------------------------------------------------------------------- */
.legal-hero {
  background-color: #3E5C49;
  padding: 64px 0 56px;
}

.legal-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: #F2F7EE;
  text-align: center;
}

.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #3E5C49;
  padding-bottom: 8px;
  border-bottom: 2px solid #A9C5A0;
}

.legal-section-text {
  font-size: 0.95rem;
  color: #233027;
  line-height: 1.8;
}

.legal-section-text a {
  color: #5B8266;
  text-decoration: underline;
}

.legal-section-text a:hover {
  color: #3E5C49;
}

.legal-section-text ul {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.legal-section-text li {
  font-size: 0.93rem;
  color: #233027;
}

/* --------------------------------------------------------------------------
   19. COOKIE TABLE
   -------------------------------------------------------------------------- */
.cookie-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(91, 130, 102, 0.2);
  margin-top: 8px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cookie-table thead {
  background-color: #3E5C49;
  color: #F2F7EE;
}

.cookie-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cookie-table td {
  padding: 11px 16px;
  color: #233027;
  border-bottom: 1px solid rgba(91, 130, 102, 0.12);
  vertical-align: top;
  line-height: 1.5;
}

.cookie-table tbody tr:last-child td {
  border-bottom: none;
}

.cookie-table tbody tr:nth-child(even) {
  background-color: rgba(247, 249, 244, 0.7);
}

.cookie-table tbody tr:hover {
  background-color: rgba(169, 197, 160, 0.15);
}

/* --------------------------------------------------------------------------
   20. REVEAL ANIMATION
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   21. RESPONSIVE — TABLET (max 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* --------------------------------------------------------------------------
   22. RESPONSIVE — MOBILE (max 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid rgba(91, 130, 102, 0.15);
    box-shadow: 0 8px 24px rgba(35, 48, 39, 0.1);
    padding: 12px 0;
    z-index: 999;
  }

  .site-header.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 24px;
    border-radius: 0;
    border-bottom: 1px solid rgba(91, 130, 102, 0.07);
    font-size: 0.95rem;
  }

  .nav-links a.nav-cta {
    margin: 12px 16px 4px;
    border-radius: 999px;
    text-align: center;
    border-bottom: none;
  }

  /* Hero */
  .hero {
    min-height: 480px;
  }

  .hero-cta {
    flex-direction: column;
    width: fit-content;
  }

  /* Grids */
  .steps-grid,
  .benefits-grid,
  .tips-grid,
  .testimonials-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

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

  /* Contact form */
  .contact-form {
    padding: 24px 20px;
  }

  /* Legal */
  .legal-wrap {
    padding: 40px 16px 60px;
  }

  /* Cookie banner */
  .cookie-banner .container {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   23. RESPONSIVE — SMALL MOBILE (max 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .cookie-table th,
  .cookie-table td {
    padding: 9px 10px;
    font-size: 0.8rem;
  }
}

/* --------------------------------------------------------------------------
   24. SUPPLEMENTARY / MISSING CLASSES
   -------------------------------------------------------------------------- */

/* Hamburger lines */
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #233027;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header.nav-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Brand name text */
.nav-brand-name,
.footer-brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #233027;
  letter-spacing: -0.02em;
}
.footer-brand-name {
  color: #F2F7EE;
}

/* Section label (overline) */
.section-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5B8266;
  margin-bottom: 10px;
}
.section-label.centered {
  text-align: center;
}

/* Section text paragraph */
.section-text {
  color: #233027;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Centered utility */
.centered {
  text-align: center;
}

/* Disclaimer bar */
.disclaimer-bar {
  background-color: #A9C5A0;
  color: #233027;
  padding: 14px 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
.disclaimer-bar .container {
  max-width: 900px;
}
.disclaimer-bar strong {
  font-weight: 600;
}

/* Intro image wrapper */
.intro-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

/* Benefits section wrapper */
.benefits-section {
  background-color: #F7F9F4;
}

/* Poster caption */
.poster-caption {
  text-align: center;
  color: #5B8266;
  font-size: 0.95rem;
  margin-top: 20px;
  font-style: italic;
}

/* Tip note (disclaimer text under tips) */
.tip-note {
  font-size: 0.8rem;
  color: #5B8266;
  margin-top: 10px;
}

/* Comparison tier: featured/highlighted */
.comp-tier-featured {
  background-color: #3E5C49;
  color: #F2F7EE;
  border: none;
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(62, 92, 73, 0.25);
}
.comp-tier-featured .comp-tier-title,
.comp-tier-featured .comp-tier-desc {
  color: #F2F7EE;
}
.comp-tier-featured .comp-feature-item {
  color: #F2F7EE;
  border-color: rgba(242, 247, 238, 0.2);
}
.comp-tier-featured .comp-feature-item::before {
  color: #A9C5A0;
}

/* Comparison tier header */
.comp-tier-header {
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(91, 130, 102, 0.2);
}
.comp-tier-featured .comp-tier-header {
  border-color: rgba(242, 247, 238, 0.2);
}

/* Comparison tier description */
.comp-tier-desc {
  font-size: 0.88rem;
  color: #5B8266;
  margin-top: 4px;
}

/* Absent/inactive feature */
.comp-feature-absent {
  opacity: 0.4;
}
.comp-feature-absent::before {
  content: '–  ';
  color: #9aada2;
}

/* FAQ icon */
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: #5B8266;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
  line-height: 1;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Contact info title */
.contact-info-title,
.contact-form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #233027;
  margin-bottom: 20px;
}

/* Contact details list */
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Contact detail item */
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Contact icon */
.contact-detail-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contact address */
.contact-address {
  font-style: normal;
  color: #233027;
  line-height: 1.5;
}

/* Contact link */
.contact-link {
  color: #3E5C49;
  font-weight: 500;
  word-break: break-all;
}
.contact-link:hover {
  color: #5B8266;
  text-decoration: underline;
}

/* Contact form wrapper */
.contact-form-wrap {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(35, 48, 39, 0.07);
}

/* Form consent text */
.form-consent {
  font-size: 0.85rem;
  color: #5B8266;
  line-height: 1.5;
}
.form-consent a {
  color: #3E5C49;
  text-decoration: underline;
}

/* Legal subtitle */
.legal-subtitle {
  font-size: 0.95rem;
  color: #5B8266;
  margin-top: 8px;
  font-style: italic;
}

/* Legal disclaimer box */
.legal-disclaimer-box {
  background-color: #A9C5A0;
  color: #233027;
  border-left: 4px solid #3E5C49;
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 36px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, #3E5C49 0%, #5B8266 100%);
  padding: 80px 0;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #F2F7EE;
  margin-bottom: 16px;
}

.cta-text {
  color: #F2F7EE;
  font-size: 1.05rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* Large button variant */
.btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
}
.cta-section .btn-primary {
  background-color: #F2F7EE;
  color: #233027;
  border-color: #F2F7EE;
}
.cta-section .btn-primary:hover {
  background-color: #F7F9F4;
  border-color: #A9C5A0;
}
