/* ============ LOCAL FONTS ============ */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dm-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/dm-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/dm-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/dm-sans-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/playfair-display-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/playfair-display-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfair-display-700.woff2') format('woff2');
}

:root {
  --green-900: #0B3D2E;
  --green-800: #134E3A;
  --green-700: #1A6B4F;
  --green-600: #22855F;
  --green-500: #2BA572;
  --green-400: #4DC98E;
  --green-300: #7EDCAB;
  --green-200: #B5ECD0;
  --green-100: #D4F5E2;
  --green-50: #E0F7EC;
  --sand-100: #FAF8F5;
  --sand-200: #F0ECE6;
  --sand-300: #E0D9CF;
  --charcoal: #1A1A1A;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-muted: #8A8A8A;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/*
 * ============ DARK MODE ============
 * Strategy: GREEN accent scale stays UNCHANGED.
 * Only surface, background, text and border colors are overridden.
 * Every element gets explicit color — nothing relies on variable inversion.
 *
 * Palette:
 *   Surfaces:  #0C0C0C (deepest) → #111 → #161616 → #1C1C1C → #222
 *   Text:      #F0F0F0 (heading) → #E0E0E0 (primary) → #B0B0B0 (secondary) → #808080 (muted)
 *   Accent:    #4DC98E (primary green) · #7EDCAB (light green text) · #0F2119 (green tint bg)
 */

/* --- GLOBAL --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }
img { max-width: 100%; height: auto; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s ease, color 0.4s ease;
}

[data-theme="dark"] body { background: #0C0C0C; color: #E0E0E0; }

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

.section-label {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green-600); margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600; line-height: 1.2; color: var(--text-primary); margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem; line-height: 1.7; color: var(--text-secondary); max-width: 600px;
}

/* GLOBAL section overrides for dark */
[data-theme="dark"] .section-label { color: var(--green-400); }
[data-theme="dark"] .section-title { color: #F0F0F0; }
[data-theme="dark"] .section-subtitle { color: #B0B0B0; }

/* --- NAV --- */
[data-theme="dark"] .nav { background: rgba(12,12,12,0.94); border-bottom-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .nav-logo-img,
[data-theme="dark"] .footer-logo-img { filter: brightness(1.1); }
[data-theme="dark"] .nav-links a { color: #B0B0B0; }
[data-theme="dark"] .nav-links a:hover { color: var(--green-400); }
[data-theme="dark"] .nav-links .nav-cta { background: var(--green-400); color: var(--green-900); box-shadow: 0 2px 8px rgba(77,201,142,0.25); }
[data-theme="dark"] .nav-links .nav-cta:hover { background: #3AB87A; }
[data-theme="dark"] .nav-mobile-toggle span { background: #E0E0E0; }

/* --- HERO --- */
[data-theme="dark"] .hero { background: linear-gradient(165deg, #0D1912 0%, #0C0C0C 50%, #111 100%); }
[data-theme="dark"] .hero::before { background: radial-gradient(circle, rgba(43,165,114,0.1) 0%, transparent 70%); }
[data-theme="dark"] .hero-badge { background: #0F2119; border-color: #1A3A2E; color: var(--green-300); }
[data-theme="dark"] .hero-title { color: #F5F5F5; }
[data-theme="dark"] .hero-title em { color: var(--green-400); }
[data-theme="dark"] .hero-title em::after { background: rgba(43,165,114,0.18); }
[data-theme="dark"] .hero-text { color: #B0B0B0; }
[data-theme="dark"] .btn-primary { background: var(--green-400); color: var(--green-900); box-shadow: 0 4px 16px rgba(77,201,142,0.25); }
[data-theme="dark"] .btn-primary:hover { background: #3AB87A; color: var(--green-900); }
[data-theme="dark"] .btn-secondary { background: #1C1C1C; color: var(--green-300); border-color: #2A3D33; }
[data-theme="dark"] .btn-secondary:hover { background: #0F2119; border-color: var(--green-400); color: var(--green-400); }
[data-theme="dark"] .hero-trust-item { color: #909090; }
[data-theme="dark"] .hero-trust-check { background: #0F2119; color: var(--green-400); }
[data-theme="dark"] .hero-image-wrapper { background: linear-gradient(135deg, #0F2119, #1A3A2E); box-shadow: 0 16px 48px rgba(0,0,0,0.6); }
[data-theme="dark"] .hero-image-placeholder { background: linear-gradient(135deg, #0F2119, #1A3A2E); color: var(--green-300); }
[data-theme="dark"] .hero-floating-card { background: #1C1C1C; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
[data-theme="dark"] .hero-card-rating .stars { color: #F59E0B; }
[data-theme="dark"] .hero-card-rating .rating-text { color: #F0F0F0; }
[data-theme="dark"] .hero-card-rating .rating-sub { color: #808080; }
[data-theme="dark"] .hero-card-objects .number { color: var(--green-400); }
[data-theme="dark"] .hero-card-objects .label { color: #808080; }

/* --- TRUST BAR --- */
[data-theme="dark"] .trust-bar { background: #0C0C0C; border-bottom-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .trust-item:hover { background: #14231B; }
[data-theme="dark"] .trust-item-icon { background: #0F2119; }
[data-theme="dark"] .trust-item-number { color: var(--green-400); }
[data-theme="dark"] .trust-item-label { color: #909090; }

/* --- SERVICES --- */
[data-theme="dark"] .services { background: #111; }
[data-theme="dark"] .service-card { background: #1C1C1C; border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .service-card::after { background: var(--green-400); }
[data-theme="dark"] .service-icon { background: #0F2119; }
[data-theme="dark"] .service-card:hover .service-icon { background: var(--green-400); color: var(--green-900); }
[data-theme="dark"] .service-card h3 { color: #F0F0F0; }
[data-theme="dark"] .service-card p { color: #A0A0A0; }
[data-theme="dark"] .service-tag { background: #0F2119; color: var(--green-300); border-color: #1A3A2E; }

/* --- CONFIGURATOR --- */
[data-theme="dark"] .configurator { background: linear-gradient(180deg, #111, #0C0C0C); }
[data-theme="dark"] .config-chip { background: #1C1C1C; border-color: #2A3D33; }
[data-theme="dark"] .config-chip:hover { background: #14231B; border-color: var(--green-400); }
[data-theme="dark"] .config-chip-icon { background: #0F2119; }
[data-theme="dark"] .config-chip-text { color: #E0E0E0; }
[data-theme="dark"] .config-chip-hint { color: #808080; }
[data-theme="dark"] .config-chip .drag-handle { color: #606060; }
[data-theme="dark"] .config-dropzone { background: #1C1C1C; border-color: #2A3D33; }
[data-theme="dark"] .config-dropzone.dragover { border-color: var(--green-400); background: #14231B; box-shadow: 0 0 0 6px rgba(43,165,114,0.12); }
[data-theme="dark"] .dropzone-header { border-bottom-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .dropzone-title { color: #F0F0F0; }
[data-theme="dark"] .dropzone-hint { color: #808080; }
[data-theme="dark"] .dropzone-empty { color: #606060; }
[data-theme="dark"] .dropzone-item { background: #0F2119; border-color: #1A3A2E; }
[data-theme="dark"] .dropzone-item-name { color: #E0E0E0; }
[data-theme="dark"] .dropzone-item-remove { background: rgba(248,113,113,0.12); color: #F87171; }
[data-theme="dark"] .dropzone-item-remove:hover { background: #DC2626; color: white; }
[data-theme="dark"] .dropzone-summary { border-top-color: #1A3A2E; }
[data-theme="dark"] .dropzone-count { color: var(--green-400); }
[data-theme="dark"] .dropzone-count-label { color: #808080; }
[data-theme="dark"] .dropzone-cta { background: var(--green-400); color: var(--green-900); box-shadow: 0 4px 16px rgba(77,201,142,0.2); }
[data-theme="dark"] .dropzone-cta:hover { background: #3AB87A; }

/* --- BEFORE/AFTER (already dark — subtle adjustments) --- */
[data-theme="dark"] .before-after { background: #0A1810; }
[data-theme="dark"] .before-after-header .section-label { color: var(--green-400); }
[data-theme="dark"] .before-after-header .section-title { color: #F5F5F5; }
[data-theme="dark"] .before-after-header .section-subtitle { color: rgba(255,255,255,0.5); }
[data-theme="dark"] .ba-drag-hint { color: rgba(255,255,255,0.4); }

/* --- PLANNER --- */
[data-theme="dark"] .planner { background: #0C0C0C; }
[data-theme="dark"] .planner-instruction { background: #0F2119; color: var(--green-300); }
[data-theme="dark"] .planner-chip { background: #1C1C1C; border-color: #2A3D33; color: #E0E0E0; }
[data-theme="dark"] .planner-chip:hover { background: #14231B; border-color: var(--green-400); }
[data-theme="dark"] .season-col { background: #161616; }
[data-theme="dark"] .season-col.dragover { background: #14231B; border-color: var(--green-400); box-shadow: 0 0 0 4px rgba(43,165,114,0.1); }
[data-theme="dark"] .season-header { border-bottom-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .season-name { color: #F0F0F0; }
[data-theme="dark"] .season-months { color: #808080; }
[data-theme="dark"] .season-item { background: #222; border-color: #2A3D33; color: #E0E0E0; }
[data-theme="dark"] .season-item-remove { background: rgba(248,113,113,0.12); color: #F87171; }
[data-theme="dark"] .season-item-remove:hover { background: #DC2626; color: white; }
[data-theme="dark"] .season-empty { border-color: rgba(255,255,255,0.06); color: #505050; }
[data-theme="dark"] .planner-result { background: #0F2119; border-color: #1A3A2E; }
[data-theme="dark"] .planner-result-text { color: var(--green-300); }

/* --- WHY US (already dark section — tint adjustments) --- */
[data-theme="dark"] .why-us { background: #0A1810; }
[data-theme="dark"] .why-us::before { background: radial-gradient(ellipse at 80% 50%, rgba(43,165,114,0.1) 0%, transparent 60%); }
[data-theme="dark"] .why-us .section-label { color: var(--green-400); }
[data-theme="dark"] .why-us .section-title { color: #F5F5F5; }
[data-theme="dark"] .usp-card { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .usp-card:hover { background: rgba(255,255,255,0.06); }
[data-theme="dark"] .usp-card h3 { color: #F0F0F0; }
[data-theme="dark"] .usp-card p { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .usp-icon { background: rgba(77,201,142,0.12); }

/* --- RANKER --- */
[data-theme="dark"] .ranker { background: #111; }
[data-theme="dark"] .ranker-instruction { background: #0F2119; color: var(--green-300); }
[data-theme="dark"] .ranker-item { background: #1C1C1C; border-color: #2A3D33; }
[data-theme="dark"] .ranker-item:hover { border-color: #3A5548; }
[data-theme="dark"] .ranker-item.dragging { box-shadow: 0 8px 32px rgba(0,0,0,0.6); }
[data-theme="dark"] .ranker-item.dragover-item { background: #14231B; border-color: var(--green-400); }
[data-theme="dark"] .ranker-label { color: #F0F0F0; }
[data-theme="dark"] .ranker-desc { color: #808080; }
[data-theme="dark"] .ranker-grip { color: #505050; }
[data-theme="dark"] .ranker-result { background: #0F2119; border-color: #1A3A2E; }
[data-theme="dark"] .ranker-result-title { color: var(--green-400); }
[data-theme="dark"] .ranker-result-text { color: #B0B0B0; }

/* --- PACKAGES --- */
[data-theme="dark"] .packages { background: #0C0C0C; }
[data-theme="dark"] .package-basic,
[data-theme="dark"] .package-individual { background: #1C1C1C; border-color: #2A2A2A; }
[data-theme="dark"] .package-basic:hover,
[data-theme="dark"] .package-individual:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
[data-theme="dark"] .package-premium { background: #0A1810; color: #F0F0F0; box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
[data-theme="dark"] .package-badge { background: var(--green-400); color: var(--green-900); }
[data-theme="dark"] .package-name { color: #F0F0F0; }
[data-theme="dark"] .package-desc { color: #808080; }
[data-theme="dark"] .package-premium .package-name { color: #F5F5F5; }
[data-theme="dark"] .package-premium .package-desc { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .package-features li { color: #C0C0C0; border-bottom-color: rgba(255,255,255,0.05); }
[data-theme="dark"] .package-premium .package-features li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .feature-check { color: var(--green-400); }
[data-theme="dark"] .package-basic .package-cta,
[data-theme="dark"] .package-individual .package-cta { background: #111; color: var(--green-300); border: 2px solid #2A3D33; }
[data-theme="dark"] .package-basic .package-cta:hover,
[data-theme="dark"] .package-individual .package-cta:hover { background: #14231B; border-color: var(--green-400); }
[data-theme="dark"] .package-premium .package-cta { background: var(--green-400); color: var(--green-900); }

/* --- TESTIMONIALS --- */
[data-theme="dark"] .testimonials { background: #111; }
[data-theme="dark"] .rating-large { color: var(--green-400); }
[data-theme="dark"] .rating-label { color: #808080; }
[data-theme="dark"] .testimonial-card { background: #1C1C1C; border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.5); background: #222; }
[data-theme="dark"] .testimonial-stars { color: #F59E0B; }
[data-theme="dark"] .testimonial-text { color: #C0C0C0; }
[data-theme="dark"] .testimonial-avatar { background: #0F2119; color: var(--green-400); }
[data-theme="dark"] .testimonial-name { color: #F0F0F0; }
[data-theme="dark"] .testimonial-source { color: #808080; }

/* --- PROCESS --- */
[data-theme="dark"] .process { background: #0C0C0C; }
[data-theme="dark"] .step-number { background: #1A6B4F; color: #F0F0F0; border-color: #0C0C0C; box-shadow: 0 4px 16px rgba(26,107,79,0.35); }
[data-theme="dark"] .process-steps::before { background: #1A3A2E; }
[data-theme="dark"] .process-step h3 { color: #F0F0F0; }
[data-theme="dark"] .process-step p { color: #808080; }

/* --- AREA --- */
[data-theme="dark"] .area { background: #0D1912; border-color: #1A3A2E; }
[data-theme="dark"] .area .section-title { color: #F0F0F0; }
[data-theme="dark"] .area .section-subtitle { color: #B0B0B0; }
[data-theme="dark"] .area-tag { background: #1C1C1C; border-color: #2A3D33; color: var(--green-300); }

/* --- CTA / CONTACT (already dark — harmonize) --- */
[data-theme="dark"] .cta-section { background: linear-gradient(165deg, #0A1810 0%, #0D1912 50%, #0C0C0C 100%); }
[data-theme="dark"] .cta-content .section-label { color: var(--green-400); }
[data-theme="dark"] .cta-content .section-title { color: #F5F5F5; }
[data-theme="dark"] .cta-content .section-subtitle { color: rgba(255,255,255,0.6); }
[data-theme="dark"] .contact-method { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: white; }
[data-theme="dark"] .contact-method:hover { background: rgba(255,255,255,0.08); }
[data-theme="dark"] .contact-method-label { color: rgba(255,255,255,0.45); }
[data-theme="dark"] .contact-method-value { color: #F0F0F0; }
[data-theme="dark"] .cta-form-wrapper { background: #1C1C1C; box-shadow: 0 16px 48px rgba(0,0,0,0.6); }
[data-theme="dark"] .cta-form-title { color: #F0F0F0; }
[data-theme="dark"] .cta-form-sub { color: #808080; }
[data-theme="dark"] .form-group label { color: #D0D0D0; }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
  background: #111; border-color: #2A2A2A; color: #E0E0E0;
}
[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder { color: #505050; }
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus,
[data-theme="dark"] .form-group select:focus {
  border-color: var(--green-400); background: #1C1C1C; box-shadow: 0 0 0 3px rgba(43,165,114,0.15);
}
[data-theme="dark"] .form-submit { background: var(--green-400); color: var(--green-900); box-shadow: 0 4px 16px rgba(77,201,142,0.2); }
[data-theme="dark"] .form-submit:hover { background: #3AB87A; }
[data-theme="dark"] .form-trust { color: #606060; }

/* --- FOOTER --- */
[data-theme="dark"] .footer { background: #080808; }
[data-theme="dark"] .footer-desc { color: rgba(255,255,255,0.4); }
[data-theme="dark"] .footer-col h4 { color: #D0D0D0; }
[data-theme="dark"] .footer-col ul a { color: rgba(255,255,255,0.4); }
[data-theme="dark"] .footer-col ul a:hover { color: var(--green-400); }
[data-theme="dark"] .footer-bottom { border-top-color: rgba(255,255,255,0.06); color: rgba(255,255,255,0.25); }

/* --- STICKY MOBILE CTA --- */
/* --- SMOOTH TRANSITIONS --- */
body, .nav, .hero, .trust-bar, .trust-item, .trust-item-icon,
.services, .service-card, .service-icon, .service-tag,
.configurator, .config-chip, .config-chip-icon, .config-dropzone,
.dropzone-item, .dropzone-summary, .dropzone-cta,
.planner, .planner-chip, .season-col, .season-item, .planner-result,
.before-after, .why-us, .usp-card, .usp-icon,
.ranker, .ranker-item, .ranker-result,
.packages, .package-card, .package-cta,
.testimonials, .testimonial-card, .testimonial-avatar,
.process, .step-number,
.area, .area-tag,
.cta-section, .cta-form-wrapper, .contact-method,
.form-group input, .form-group textarea, .form-group select,
.form-submit, .footer, .hero-floating-card, .hero-badge,
.btn-primary, .btn-secondary, .hero-image-wrapper {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* ============ THEME TOGGLE ============ */
.theme-toggle {
  position: relative;
  width: 56px;
  height: 30px;
  background: #E0E0E0;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.4s ease;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

[data-theme="dark"] .theme-toggle {
  background: #2A2A2A;
}

.theme-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

[data-theme="dark"] .theme-toggle-knob {
  left: 29px;
  background: #1A1A1A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.theme-toggle-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 8px;
  white-space: nowrap;
  display: none;
}

@media (min-width: 769px) {
  .theme-toggle-label { display: block; }
}

.theme-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06); transition: all 0.3s ease;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-secondary);
  font-size: 0.92rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-700); }
.nav-links .nav-cta {
  background: var(--green-700); color: white;
  padding: 10px 24px; border-radius: 50px; font-weight: 600;
  transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(26,107,79,0.3);
}
.nav-links .nav-cta:hover { background: var(--green-800); transform: translateY(-1px); }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; border-radius: 2px; transition: all 0.3s ease; }
.nav-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-links {
    display: flex; flex-direction: column; position: fixed;
    top: 0; right: -100%; width: 75%; max-width: 320px; height: 100vh;
    background: var(--white); padding: 100px 32px 40px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    gap: 0; transition: right 0.35s ease; z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .nav-links li { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-links a { display: block; padding: 16px 0; font-size: 1.05rem; }
  .nav-links .nav-cta { text-align: center; margin-top: 16px; padding: 14px 24px; }
  .nav-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); z-index: 999;
  }
  .nav-overlay.show { display: block; }
  [data-theme="dark"] .nav-links { background: #1C1C1C; }
  [data-theme="dark"] .nav-links li { border-bottom-color: rgba(255,255,255,0.08); }
}

/* ============ HERO ============ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--green-50) 0%, var(--white) 50%, var(--sand-100) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(43,165,114,0.08) 0%, transparent 70%); border-radius: 50%;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-content { animation: fadeInUp 0.8s ease-out; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-100); color: var(--green-800);
  padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px; border: 1px solid var(--green-200);
}
.hero-badge::before { content: '★'; font-size: 0.8rem; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700; line-height: 1.15; color: var(--green-900); margin-bottom: 20px;
}
.hero-title em {
  font-style: normal; color: var(--green-600); position: relative;
}
.hero-title em::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 8px; background: var(--green-200); z-index: -1; border-radius: 4px;
}
.hero-text {
  font-size: 1.15rem; line-height: 1.7; color: var(--text-secondary);
  margin-bottom: 32px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-700); color: white; padding: 16px 32px;
  border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(26,107,79,0.3); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--green-800); padding: 16px 32px;
  border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: all 0.3s ease; border: 2px solid var(--green-200); cursor: pointer;
}
.btn-secondary:hover { border-color: var(--green-400); background: var(--green-50); }
.hero-trust { display: flex; align-items: center; gap: 24px; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-muted); }
.hero-trust-check {
  width: 20px; height: 20px; background: var(--green-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700); font-size: 0.7rem; flex-shrink: 0;
}
.hero-visual { position: relative; animation: fadeInUp 0.8s ease-out 0.2s backwards; }
.hero-image-wrapper {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-200), var(--green-400));
}
.hero-image-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: var(--green-800); font-size: 1rem;
  padding: 24px; text-align: center;
  background: linear-gradient(135deg, var(--green-100) 0%, var(--green-200) 100%);
}
.hero-image-placeholder .icon { font-size: 3rem; }
.hero-floating-card {
  position: absolute; background: white; border-radius: var(--radius-md);
  padding: 16px 20px; box-shadow: var(--shadow-lg); animation: floatCard 3s ease-in-out infinite;
}
.hero-card-rating { bottom: 24px; left: -20px; display: flex; align-items: center; gap: 10px; }
.hero-card-rating .stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; }
.hero-card-rating .rating-text { font-weight: 600; font-size: 0.9rem; }
.hero-card-rating .rating-sub { font-size: 0.75rem; color: var(--text-muted); }
.hero-card-objects { top: 24px; right: -20px; text-align: center; }
.hero-card-objects .number { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--green-700); }
.hero-card-objects .label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ============ TRUST BAR ============ */
.trust-bar { padding: 48px 0; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.05); }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-item { text-align: center; padding: 24px 16px; border-radius: var(--radius-md); transition: all 0.3s ease; }
.trust-item:hover { background: var(--green-50); transform: translateY(-2px); }
.trust-item-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--green-100); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.trust-item-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--green-800); margin-bottom: 4px; }
.trust-item-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

/* ============ SERVICES ============ */
.services { padding: 100px 0; background: var(--sand-100); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.04);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.service-img {
  width: 100%; height: 180px; overflow: hidden; flex-shrink: 0;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green-500); transform: scaleX(0); transition: transform 0.4s ease; z-index: 1;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--green-100); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px; transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: var(--green-700); color: white; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; line-height: 1.6; color: var(--text-secondary); margin-bottom: 16px; flex: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.service-tag {
  background: var(--green-50); color: var(--green-800); padding: 4px 12px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 500; border: 1px solid var(--green-100);
}

/* ============ INTERACTIVE: SERVICE CONFIGURATOR ============ */
.configurator {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--sand-100) 0%, var(--white) 100%);
}
.configurator-header { text-align: center; margin-bottom: 48px; }
.configurator-header .section-subtitle { margin: 0 auto; }

.config-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start;
}

.config-services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}

.config-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 2px solid var(--green-100);
  border-radius: 14px; padding: 16px 14px; cursor: grab;
  transition: all 0.3s ease; user-select: none; position: relative;
}

.config-chip:active { cursor: grabbing; }
.config-chip.dragging { opacity: 0.4; transform: scale(0.95); }

.config-chip:hover {
  border-color: var(--green-400); background: var(--green-50);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}

.config-chip-icon {
  width: 40px; height: 40px; background: var(--green-100); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}

.config-chip-text { font-weight: 600; font-size: 0.85rem; line-height: 1.3; }
.config-chip-hint { font-size: 0.72rem; color: var(--text-muted); font-weight: 400; }

.config-chip .drag-handle {
  position: absolute; top: 6px; right: 8px;
  font-size: 0.7rem; color: var(--text-muted); opacity: 0.5;
}

.config-dropzone {
  background: var(--white); border: 3px dashed var(--green-200);
  border-radius: var(--radius-xl); padding: 32px 24px;
  min-height: 400px; transition: all 0.3s ease;
  display: flex; flex-direction: column; position: sticky; top: 90px;
}

.config-dropzone.dragover {
  border-color: var(--green-500); background: var(--green-50);
  box-shadow: 0 0 0 6px rgba(43,165,114,0.1);
  transform: scale(1.02);
}

.dropzone-header {
  text-align: center; padding-bottom: 20px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dropzone-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 4px; }
.dropzone-hint { font-size: 0.82rem; color: var(--text-muted); }

.dropzone-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-muted); text-align: center; gap: 12px; padding: 24px;
}

.dropzone-empty .de-icon { font-size: 2.5rem; opacity: 0.5; }
.dropzone-empty p { font-size: 0.9rem; line-height: 1.5; }

.dropzone-items { display: flex; flex-direction: column; gap: 8px; flex: 1; }

.dropzone-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--green-50); border: 1px solid var(--green-200);
  border-radius: 12px; padding: 12px 14px;
  animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dropzone-item-icon { font-size: 1.1rem; }
.dropzone-item-name { font-weight: 600; font-size: 0.88rem; flex: 1; }

.dropzone-item-remove {
  width: 24px; height: 24px; background: rgba(220,38,38,0.1);
  border: none; border-radius: 6px; cursor: pointer; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: #DC2626;
}
.dropzone-item-remove:hover { background: #DC2626; color: white; }

.dropzone-summary {
  margin-top: 20px; padding-top: 20px;
  border-top: 2px solid var(--green-200); text-align: center;
}

.dropzone-count {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--green-700);
}

.dropzone-count-label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }

.dropzone-cta {
  display: block; width: 100%; padding: 14px;
  background: var(--green-700); color: white; border: none;
  border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(26,107,79,0.3);
  font-family: 'DM Sans', sans-serif;
}
.dropzone-cta:hover { background: var(--green-800); transform: translateY(-2px); }

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8) translateY(-10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============ INTERACTIVE: BEFORE / AFTER SLIDER ============ */
.before-after {
  padding: 100px 0;
  background: var(--green-900); color: white;
}
.before-after-header { text-align: center; margin-bottom: 48px; }
.before-after-header .section-label { color: var(--green-400); }
.before-after-header .section-title { color: white; }
.before-after-header .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto; }

.ba-container {
  max-width: 800px; margin: 0 auto;
  border-radius: var(--radius-xl); overflow: hidden;
  position: relative; aspect-ratio: 16/9;
  cursor: ew-resize; user-select: none;
  box-shadow: var(--shadow-xl);
}

.ba-layer {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 600;
}

.ba-before {
  background: linear-gradient(135deg, #c0392b22, #e74c3c22), 
              linear-gradient(135deg, #8B7355, #A0896C);
  z-index: 1;
}

.ba-before-inner {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; padding: 40px;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(139,115,85,0.15) 20px, rgba(139,115,85,0.15) 40px);
}

.ba-after {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  z-index: 0;
}

.ba-after-inner {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; padding: 40px;
}

.ba-scene-icon { font-size: 4rem; }
.ba-scene-title { font-size: 1.4rem; font-weight: 700; color: white; text-align: center; }
.ba-scene-items {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 400px;
}
.ba-scene-tag {
  background: rgba(255,255,255,0.2); padding: 6px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 500; color: white; backdrop-filter: blur(4px);
}

.ba-slider {
  position: absolute; top: 0; bottom: 0; width: 4px;
  background: white; z-index: 10; left: 50%;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.ba-slider-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; background: white; border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--green-700);
  transition: transform 0.2s;
}

.ba-slider-handle:hover { transform: translate(-50%, -50%) scale(1.15); }

.ba-label {
  position: absolute; top: 16px; padding: 8px 18px;
  border-radius: 50px; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; z-index: 5;
}

.ba-label-before { left: 16px; background: rgba(139,115,85,0.8); color: white; }
.ba-label-after { right: 16px; background: rgba(43,165,114,0.8); color: white; }

.ba-drag-hint {
  text-align: center; margin-top: 20px;
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
}

.ba-drag-hint span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); padding: 8px 16px; border-radius: 50px;
}

/* ============ INTERACTIVE: SEASONAL PLANNER ============ */
.planner {
  padding: 100px 0; background: var(--white);
}
.planner-header { text-align: center; margin-bottom: 48px; }
.planner-header .section-subtitle { margin: 0 auto; }

.planner-instruction {
  text-align: center; margin-bottom: 32px;
  padding: 14px 24px; background: var(--green-50); border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 600; color: var(--green-800);
  margin-left: auto; margin-right: auto;
}

.planner-instruction-wrap { text-align: center; margin-bottom: 32px; }

.planner-chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px;
}

.planner-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 2px solid var(--green-200);
  border-radius: 50px; padding: 10px 18px; cursor: grab;
  font-size: 0.88rem; font-weight: 600; user-select: none;
  transition: all 0.3s ease;
}

.planner-chip:active { cursor: grabbing; }
.planner-chip.dragging { opacity: 0.4; transform: scale(0.9); }
.planner-chip:hover { border-color: var(--green-500); background: var(--green-50); transform: translateY(-2px); }

.seasons-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.season-col {
  background: var(--sand-100); border-radius: var(--radius-lg);
  padding: 24px 16px; min-height: 280px;
  border: 2px solid transparent; transition: all 0.3s ease;
  display: flex; flex-direction: column;
}

.season-col.dragover {
  border-color: var(--green-500); background: var(--green-50);
  box-shadow: 0 0 0 4px rgba(43,165,114,0.1); transform: scale(1.02);
}

.season-header {
  text-align: center; margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid rgba(0,0,0,0.06);
}

.season-icon { font-size: 2rem; margin-bottom: 4px; }
.season-name { font-weight: 700; font-size: 1rem; }
.season-months { font-size: 0.75rem; color: var(--text-muted); }

.season-items { flex: 1; display: flex; flex-direction: column; gap: 6px; min-height: 60px; }

.season-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--green-200);
  border-radius: 10px; padding: 10px 12px;
  font-size: 0.82rem; font-weight: 600;
  animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.season-item-remove {
  margin-left: auto; width: 20px; height: 20px;
  background: rgba(220,38,38,0.1); border: none; border-radius: 5px;
  cursor: pointer; font-size: 0.7rem; display: flex;
  align-items: center; justify-content: center; color: #DC2626; transition: all 0.2s;
}
.season-item-remove:hover { background: #DC2626; color: white; }

.season-empty {
  flex: 1; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.8rem; font-style: italic;
  border: 2px dashed rgba(0,0,0,0.08); border-radius: 10px; min-height: 80px;
  padding: 12px; text-align: center;
}

.planner-result {
  margin-top: 40px; text-align: center;
  padding: 32px; background: var(--green-50); border-radius: var(--radius-lg);
  border: 1px solid var(--green-100); display: none;
}

.planner-result.show { display: block; animation: popIn 0.4s ease; }

.planner-result-text { font-size: 1.05rem; color: var(--green-800); font-weight: 600; margin-bottom: 16px; }

/* ============ INTERACTIVE: PRIORITY RANKER ============ */
.ranker {
  padding: 100px 0; background: var(--sand-100);
}
.ranker-header { text-align: center; margin-bottom: 48px; }
.ranker-header .section-subtitle { margin: 0 auto; }

.ranker-instruction-wrap { text-align: center; margin-bottom: 32px; }
.ranker-instruction {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-50); padding: 14px 24px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; color: var(--green-800);
}

.ranker-list {
  max-width: 560px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}

.ranker-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 2px solid var(--green-100);
  border-radius: 16px; padding: 20px 24px; cursor: grab;
  user-select: none; transition: all 0.3s ease;
}

.ranker-item:active { cursor: grabbing; }
.ranker-item.dragging { opacity: 0.5; transform: scale(0.97); box-shadow: var(--shadow-lg); }
.ranker-item.dragover-item { border-color: var(--green-500); background: var(--green-50); }

.ranker-rank {
  width: 36px; height: 36px; background: var(--green-700); color: white;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}

.ranker-item:nth-child(1) .ranker-rank { background: #D4A017; }
.ranker-item:nth-child(2) .ranker-rank { background: #8B8B8B; }
.ranker-item:nth-child(3) .ranker-rank { background: #CD7F32; }

.ranker-content { flex: 1; }
.ranker-label { font-weight: 700; font-size: 1.05rem; margin-bottom: 2px; }
.ranker-desc { font-size: 0.82rem; color: var(--text-muted); }
.ranker-grip { font-size: 1.2rem; color: var(--text-muted); opacity: 0.4; }

.ranker-result {
  max-width: 560px; margin: 32px auto 0; text-align: center;
  padding: 28px; background: var(--green-50); border-radius: var(--radius-lg);
  border: 1px solid var(--green-100);
}

.ranker-result-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: var(--green-800); margin-bottom: 8px; }
.ranker-result-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }

/* ============ WHY US ============ */
.why-us {
  padding: 100px 0; background: var(--green-900); color: var(--white);
  position: relative; overflow: hidden;
}
.why-us::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(43,165,114,0.15) 0%, transparent 60%);
}
.why-us .section-label { color: var(--green-400); }
.why-us .section-title { color: var(--white); }
.why-us-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.why-us-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  position: relative; z-index: 1;
}
.usp-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 36px; transition: all 0.3s ease;
}
.usp-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.usp-icon {
  width: 48px; height: 48px; background: rgba(77,201,142,0.15);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 20px;
}
.usp-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.usp-card p { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.7); }

/* ============ PACKAGES ============ */
.packages { padding: 100px 0; background: var(--white); }
.packages-header { text-align: center; margin-bottom: 60px; }
.packages-header .section-subtitle { margin: 0 auto; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card {
  border-radius: var(--radius-lg); padding: 40px 32px;
  position: relative; transition: all 0.3s ease; display: flex; flex-direction: column;
}
.package-basic, .package-individual { background: var(--sand-100); border: 1px solid var(--sand-200); }
.package-premium {
  background: var(--green-900); color: white;
  transform: scale(1.03); box-shadow: var(--shadow-xl);
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.package-premium:hover { transform: scale(1.03) translateY(-4px); }
.package-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green-500); color: white; padding: 6px 20px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}
.package-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 8px; }
.package-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
.package-premium .package-desc { color: rgba(255,255,255,0.7); }
.package-features { list-style: none; margin-bottom: 32px; flex: 1; }
.package-features li {
  padding: 8px 0; font-size: 0.92rem; display: flex;
  align-items: flex-start; gap: 10px; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.package-premium .package-features li { border-bottom-color: rgba(255,255,255,0.1); }
.package-features li:last-child { border-bottom: none; }
.feature-check { color: var(--green-500); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.package-cta {
  display: block; text-align: center; padding: 14px; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease;
}
.package-basic .package-cta, .package-individual .package-cta {
  background: var(--white); color: var(--green-800); border: 2px solid var(--green-200);
}
.package-premium .package-cta {
  background: var(--green-500); color: white; box-shadow: 0 4px 16px rgba(43,165,114,0.4);
}

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 100px 0; background: var(--sand-100); }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonial-highlight { text-align: center; margin-bottom: 48px; }
.stars-large { font-size: 2rem; color: #F59E0B; letter-spacing: 6px; margin-bottom: 8px; }
.rating-large { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--green-800); }
.rating-label { font-size: 1rem; color: var(--text-muted); margin-top: 4px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.04);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; background: var(--green-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--green-700); font-size: 0.9rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-source { font-size: 0.8rem; color: var(--text-muted); }

/* ============ PROCESS ============ */
.process { padding: 100px 0; background: var(--white); }
.process-header { text-align: center; margin-bottom: 60px; }
.process-header .section-subtitle { margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--green-200); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 72px; height: 72px; margin: 0 auto 20px;
  background: var(--green-700); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(26,107,79,0.25); border: 4px solid var(--white);
}
.process-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* ============ AREA ============ */
.area {
  padding: 80px 0; background: var(--green-50);
  border-top: 1px solid var(--green-100); border-bottom: 1px solid var(--green-100);
}
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.area-tag {
  background: var(--white); border: 1px solid var(--green-200); color: var(--green-800);
  padding: 8px 18px; border-radius: 50px; font-size: 0.88rem; font-weight: 500;
}

/* ============ CTA / CONTACT ============ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(165deg, var(--green-900) 0%, var(--green-800) 50%, var(--charcoal) 100%);
  color: white; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43,165,114,0.2) 0%, transparent 70%); border-radius: 50%;
}
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start; position: relative; z-index: 1;
}
.cta-content .section-label { color: var(--green-400); }
.cta-content .section-title { color: white; }
.cta-content .section-subtitle { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.cta-contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method {
  display: flex; align-items: center; gap: 16px; text-decoration: none; color: white;
  padding: 16px 20px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.contact-method:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
.contact-method-icon {
  width: 44px; height: 44px; background: rgba(77,201,142,0.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-method-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.contact-method-value { font-weight: 600; font-size: 1rem; }
.cta-form-wrapper {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 40px; box-shadow: var(--shadow-xl);
}
.cta-form-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.cta-form-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--sand-200);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s ease; background: var(--sand-100); color: var(--text-primary);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--green-500); background: var(--white);
  box-shadow: 0 0 0 3px rgba(43,165,114,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 16px; background: var(--green-700); color: white;
  border: none; border-radius: 50px; font-size: 1rem; font-weight: 700;
  font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(26,107,79,0.3); margin-top: 8px;
}
.form-submit:hover { background: var(--green-800); transform: translateY(-2px); }
.form-trust {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; font-size: 0.8rem; color: var(--text-muted);
}

/* ============ FOOTER ============ */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.footer-desc { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.5); max-width: 320px; margin-top: 12px; }
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--green-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .config-layout { grid-template-columns: 1fr; }
  .config-services { grid-template-columns: repeat(3, 1fr); }
  .config-dropzone { position: static; }
  .why-us-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .package-premium { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-mobile-toggle { display: block; }
  .nav-logo-img { height: 38px; }
  .hero { padding: 110px 0 60px; }
  .hero-floating-card { display: none; }
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-text { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; padding: 14px 24px; font-size: 0.95rem; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-image-wrapper { max-width: 100%; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .services-grid, .why-us-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .config-services { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .package-premium { transform: none; max-width: 100%; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .cta-section { padding: 60px 0; }
  .cta-form-wrapper { padding: 24px 20px; }
  .cta-form-title { font-size: 1.2rem; }
  .contact-method-value { font-size: 0.9rem; word-break: break-all; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .nav-logo-img,
  .footer-logo-img { height: 32px; }
  .container { padding: 0 16px; }
  .hero { padding: 100px 0 48px; }
  .hero-title { font-size: 1.6rem; }
  .hero-text { font-size: 0.92rem; margin-bottom: 24px; }
  .hero-badge { font-size: 0.75rem; padding: 6px 12px; }
  .hero-trust-item { font-size: 0.82rem; }
  .hero-image-wrapper { aspect-ratio: 16/10; }
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.9rem; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .config-services { grid-template-columns: 1fr; }
  .seasons-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 48px 0; }
  .cta-form-wrapper { padding: 20px 16px; }
  .contact-method { padding: 12px 14px; }
  .contact-method-icon { width: 36px; height: 36px; font-size: 1rem; }
  .contact-method-value { font-size: 0.85rem; }
  .form-submit { padding: 14px; font-size: 0.92rem; }
  .package-card { padding: 28px 20px; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-item { padding: 16px 8px; }
}

/* ============ COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--charcoal); color: rgba(255,255,255,0.85);
  padding: 20px 24px; box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.88rem; line-height: 1.6;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text a { color: var(--green-400); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 0.85rem;
  cursor: pointer; transition: all 0.3s ease; border: none; font-family: 'DM Sans', sans-serif;
}
.cookie-accept { background: var(--green-500); color: white; }
.cookie-accept:hover { background: var(--green-600); }
[data-theme="dark"] .cookie-banner { background: #1C1C1C; }

/* ============ SUBPAGE LAYOUT ============ */
.subpage-hero {
  padding: 140px 0 60px;
  background: linear-gradient(165deg, var(--green-50) 0%, var(--white) 50%, var(--sand-100) 100%);
  text-align: center;
}
[data-theme="dark"] .subpage-hero {
  background: linear-gradient(165deg, #0D1912 0%, #0C0C0C 50%, #111 100%);
}
.subpage-hero .section-title { max-width: 700px; margin: 0 auto 12px; }
.subpage-hero .section-subtitle { margin: 0 auto; }

.subpage-content {
  padding: 60px 0 100px; background: var(--white);
}
[data-theme="dark"] .subpage-content { background: #0C0C0C; }

.legal-content {
  max-width: 800px; margin: 0 auto; font-size: 0.95rem; line-height: 1.8; color: var(--text-secondary);
}
[data-theme="dark"] .legal-content { color: #B0B0B0; }

.legal-content h2 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600;
  color: var(--text-primary); margin: 48px 0 16px; padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
[data-theme="dark"] .legal-content h2 { color: #F0F0F0; border-top-color: rgba(255,255,255,0.06); }

.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.legal-content h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--text-primary);
  margin: 28px 0 10px;
}
[data-theme="dark"] .legal-content h3 { color: #E0E0E0; }

.legal-content p { margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 20px 24px; }
.legal-content ul li { margin-bottom: 8px; }
.legal-content a { color: var(--green-700); text-decoration: underline; }
[data-theme="dark"] .legal-content a { color: var(--green-400); }

.legal-content strong { color: var(--text-primary); font-weight: 600; }
[data-theme="dark"] .legal-content strong { color: #E0E0E0; }

.legal-content .info-box {
  background: var(--green-50); border: 1px solid var(--green-100);
  border-radius: var(--radius-md); padding: 24px; margin: 24px 0;
}
[data-theme="dark"] .legal-content .info-box { background: #0F2119; border-color: #1A3A2E; }

.legal-content .info-box p { margin-bottom: 6px; }
.legal-content .info-box p:last-child { margin-bottom: 0; }

/* Back link on subpages */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green-700); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; margin-bottom: 32px; transition: all 0.2s;
}
.back-link:hover { color: var(--green-800); gap: 12px; }
[data-theme="dark"] .back-link { color: var(--green-400); }
[data-theme="dark"] .back-link:hover { color: var(--green-300); }

/* ============ 404 PAGE ============ */
.error-page {
  padding: 180px 0 100px; text-align: center;
  background: linear-gradient(165deg, var(--green-50) 0%, var(--white) 50%, var(--sand-100) 100%);
  min-height: 80vh; display: flex; align-items: center;
}
[data-theme="dark"] .error-page {
  background: linear-gradient(165deg, #0D1912 0%, #0C0C0C 50%, #111 100%);
}
.error-code {
  font-family: 'Playfair Display', serif; font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700; color: var(--green-200); line-height: 1; margin-bottom: 16px;
}
[data-theme="dark"] .error-code { color: #1A3A2E; }
.error-title {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  font-weight: 600; color: var(--text-primary); margin-bottom: 12px;
}
[data-theme="dark"] .error-title { color: #F0F0F0; }
.error-text { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.6; }
[data-theme="dark"] .error-text { color: #B0B0B0; }

/* ============ FORM STATES ============ */
.form-status {
  padding: 16px 20px; border-radius: var(--radius-sm); margin-top: 12px;
  font-size: 0.9rem; font-weight: 600; display: none;
}
.form-status.show { display: block; animation: popIn 0.3s ease; }
.form-status.success { background: var(--green-50); color: var(--green-800); border: 1px solid var(--green-100); }
.form-status.error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
[data-theme="dark"] .form-status.success { background: #0F2119; color: var(--green-300); border-color: #1A3A2E; }
[data-theme="dark"] .form-status.error { background: #2D1515; color: #F87171; border-color: #5C2020; }

.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
.form-submit .spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: white;
  border-radius: 50%; animation: spin 0.6s linear infinite; margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }
