/* ==========================================================================
   SuivX - Page Tarifs (pricing.html) Stylesheet
   Design System, Mobile-First Architecture, Touch Targets >= 44px, CWV
   ========================================================================== */

:root {
  --green: #1A4731;
  --accent: #2D7A4F;
  --mint: #F2F8F5;
  --light: #E8F5EE;
  --border: #C8E6D4;
  --text: #0D1A12;
  --muted: #6B7C72;
  --white: #FFFFFF;
  --red: #C0392B;
  
  --suivx-forest-deep: #133E2B;
  --suivx-emerald: #10B981;
  --suivx-emerald-light: #DCFCE7;
  --suivx-emerald-dark: #15803D;

  --shadow-sm: 0 2px 8px rgba(26, 71, 49, 0.04);
  --shadow-md: 0 8px 24px rgba(26, 71, 49, 0.08);
  --shadow-lg: 0 16px 44px rgba(26, 71, 49, 0.12);

  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --radius-full: 9999px;
  
  --font-heading: 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Règle Google Mobile : Anti-zoom automatique forcé iOS Safari */
input, select, textarea, input[type="range"] {
  font-size: 16px !important;
}

/* ==========================================================================
   BUTTONS & COMMON COMPONENTS
   ========================================================================== */
.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.2s;
  touch-action: manipulation;
  box-sizing: border-box;
}

.btn-ghost:hover {
  background: rgba(45, 122, 79, 0.08);
}

.btn-primary {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  box-sizing: border-box;
}

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

/* ==========================================================================
   HERO & BILLING SWITCHER
   ========================================================================== */
.hero {
  background: var(--mint);
  padding: clamp(48px, 8vw, 80px) 20px clamp(32px, 5vw, 40px);
  text-align: center;
  border-bottom: 1px solid var(--border);
  width: 100%;
  box-sizing: border-box;
}

.pricing-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(26px, 5.5vw, 42px);
  font-weight: 800;
  color: var(--green);
  line-height: 1.18;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.hero p {
  font-size: clamp(14.5px, 2.5vw, 17px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.billing-pill-switcher {
  display: inline-flex;
  align-items: center;
  background: #D9EADB;
  padding: 4px;
  border-radius: 30px;
  margin-bottom: 24px;
  max-width: 100%;
  box-sizing: border-box;
}

.billing-pill-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 22px;
  border-radius: 24px;
  border: none;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  touch-action: manipulation;
  box-sizing: border-box;
}

.billing-pill-btn.active {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(26, 71, 49, 0.18);
}

.billing-pill-btn .discount-tag {
  font-size: 11px;
  font-weight: 800;
  background: rgba(45, 122, 79, 0.2);
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 12px;
}

.billing-pill-btn.active .discount-tag {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

/* ==========================================================================
   PLANS GRID & CARDS
   ========================================================================== */
.plans-section {
  padding: clamp(40px, 6vw, 60px) 20px clamp(48px, 8vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 1025px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1180px;
    gap: 28px;
  }
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 32px) 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(26, 71, 49, 0.03);
  box-sizing: border-box;
  width: 100%;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 71, 49, 0.08);
}

.plan-card.popular {
  border: 2px solid var(--green);
  box-shadow: 0 8px 30px rgba(26, 71, 49, 0.1);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.plan-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}

.plan-card-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  min-height: 42px;
  margin-bottom: 20px;
}

.plan-card-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.plan-card-price {
  font-size: clamp(36px, 6vw, 44px);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: -1.5px;
}

.plan-card-price.custom-text {
  font-size: clamp(26px, 5vw, 32px);
  letter-spacing: -0.5px;
}

.plan-card-period {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
}

.plan-card-sublabel {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.plan-card.popular .plan-card-sublabel {
  color: var(--accent);
  font-weight: 700;
}

.plan-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.plan-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text);
}

.plan-card-features li .feat-check {
  color: var(--accent);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1.3;
}

.plan-card-features li .feat-cross {
  color: #A0AEC0;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1.3;
}

.plan-card-features li.disabled {
  color: #94A3B8;
}

.plan-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  min-width: 44px;
  text-align: center;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
  touch-action: manipulation;
}

.plan-card-btn-outline {
  background: var(--white);
  color: var(--green);
  border: 1.5px solid var(--border);
}

.plan-card-btn-outline:hover {
  border-color: var(--green);
  background: var(--light);
}

.plan-card-btn-primary {
  background: var(--green);
  color: var(--white);
  border: 1.5px solid var(--green);
}

.plan-card-btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.plan-card-guarantee {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
}

.pricing-footer-link {
  margin-top: 48px;
  text-align: center;
}

.pricing-footer-link a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
}

.pricing-footer-link a:hover {
  color: var(--accent);
}

/* ==========================================================================
   SIMULATEUR DE TARIF SUR MESURE
   ========================================================================== */
.simulator-section {
  padding: clamp(32px, 5vw, 40px) 20px clamp(48px, 8vw, 90px);
  max-width: 1140px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.sim-header {
  text-align: center;
  margin-bottom: 36px;
}

.sim-header h2 {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.sim-header p {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.simulator-card {
  max-width: 1060px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1.5px solid #D5E5DC;
  border-radius: 24px;
  padding: clamp(20px, 4vw, 36px) clamp(16px, 4vw, 40px);
  box-shadow: 0 16px 44px rgba(26, 71, 49, 0.07);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 961px) {
  .simulator-card {
    grid-template-columns: 1.35fr 1fr;
    gap: 36px;
  }
}

.sim-controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  box-sizing: border-box;
}

.sim-card {
  background: #F8FAF9;
  border: 1.5px solid #E3ECE7;
  border-radius: 18px;
  padding: 20px 22px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(26, 71, 49, 0.02);
  box-sizing: border-box;
  width: 100%;
}

.sim-card:hover, .sim-card:focus-within {
  border-color: var(--accent);
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(45, 154, 96, 0.08);
  transform: translateY(-1px);
}

.sim-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  gap: 8px;
  flex-wrap: wrap;
}

.sim-card-title {
  font-weight: 800;
  color: var(--green);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sim-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #EAF5EE;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sim-badge-val {
  background: var(--green);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 13.5px;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 6px rgba(26, 71, 49, 0.2);
}

.sim-card-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  padding-left: 0;
}

@media (min-width: 480px) {
  .sim-card-sub {
    padding-left: 42px;
  }
}

.sim-range {
  width: 100%;
  height: 10px;
  border-radius: 6px;
  background: #D8E6DE;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  accent-color: var(--accent);
  cursor: pointer;
  margin: 10px 0 14px;
  transition: all 0.2s;
  box-sizing: border-box;
  font-size: 16px !important;
}

.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(26, 71, 49, 0.35);
  cursor: pointer;
  transition: transform 0.15s;
}

.sim-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.sim-range::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(26, 71, 49, 0.35);
  cursor: pointer;
}

.sim-presets {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.sim-preset-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  margin-right: 4px;
}

.sim-preset-btn {
  background: #FFFFFF;
  border: 1px solid #D5E2DB;
  border-radius: 8px;
  padding: 8px 14px;
  min-height: 44px;
  min-width: 44px;
  font-size: 12px;
  font-weight: 700;
  color: #2D4A3E;
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  box-sizing: border-box;
}

.sim-preset-btn:hover {
  background: #EAF5EE;
  border-color: var(--accent);
  color: var(--green);
  transform: translateY(-1px);
}

.sim-inclusions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 12px;
  background: #F1F7F4;
  border: 1px dashed #C3DEC0;
  border-radius: 14px;
  padding: 12px 16px;
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 480px) {
  .sim-inclusions {
    grid-template-columns: 1fr 1fr;
  }
}

.sim-inc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #244B38;
}

.sim-inc-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.sim-result-box {
  background: linear-gradient(155deg, #133E2B 0%, #1A4D36 55%, #0F2D20 100%);
  color: #FFFFFF;
  border-radius: 22px;
  padding: clamp(24px, 4vw, 32px) clamp(20px, 4vw, 28px);
  text-align: center;
  box-shadow: 0 16px 40px rgba(19, 62, 43, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.sim-tag-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #A7F3D0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: center;
}

.sim-result-top span.sim-res-title {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.85;
  margin-top: 4px;
}

.sim-result-price {
  font-size: clamp(36px, 6vw, 46px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  color: #FFFFFF;
  margin: 10px 0 4px;
}

.sim-result-price span {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0;
}

.sim-result-sub {
  font-size: 12.5px;
  color: #A7F3D0;
  font-weight: 600;
}

.sim-breakdown {
  font-size: 12.5px;
  opacity: 0.95;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 0;
  text-align: left;
}

.sim-breakdown-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.sim-breakdown-row:last-child {
  margin-bottom: 0;
}

.sim-btn {
  background: #FFFFFF;
  color: #133E2B;
  font-weight: 800;
  font-size: 14.5px;
  min-height: 48px;
  min-width: 44px;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
  touch-action: manipulation;
}

.sim-btn:hover {
  background: #F0FAF4;
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.sim-trust-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: -4px;
  font-weight: 500;
}

/* ==========================================================================
   COMPARISON TABLE & MOBILE CARDS
   ========================================================================== */
.compare-section {
  background: var(--mint);
  padding: clamp(48px, 8vw, 70px) 20px;
  border-top: 1px solid var(--border);
  box-sizing: border-box;
  width: 100%;
}

.compare-title {
  font-size: clamp(24px, 5vw, 30px);
  font-weight: 800;
  color: var(--green);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}

.freedom-card {
  background: #EAF8EE;
  border: 1px solid #C4E6D2;
  border-radius: 16px;
  padding: clamp(16px, 4vw, 22px) clamp(16px, 4vw, 28px);
  margin-bottom: 40px;
  box-sizing: border-box;
  width: 100%;
}

.freedom-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.freedom-icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}

.freedom-title {
  font-size: 15px;
  font-weight: 800;
  color: #0D1A12;
  margin-bottom: 4px;
}

.freedom-text {
  font-size: 13.5px;
  color: #4A6054;
  line-height: 1.55;
}

.freedom-badge {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #C4E6D2;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #1A4731;
  margin-left: 0;
}

@media (min-width: 480px) {
  .freedom-badge {
    margin-left: 42px;
  }
}

.compare-cards-mobile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.compare-card-desktop {
  display: none;
}

@media (min-width: 769px) {
  .compare-cards-mobile {
    display: none !important;
  }
  .compare-card-desktop {
    display: block !important;
  }
}

.comp-mob-cat-title {
  background: #EBF4EE;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 10px 16px;
  border-radius: 10px;
  margin-top: 14px;
  margin-bottom: 4px;
  border-left: 4px solid var(--accent);
}

.comp-mob-item {
  background: #FFFFFF;
  border: 1px solid #D5E5DC;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 2px 10px rgba(26, 71, 49, 0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
}

.comp-mob-head {
  border-bottom: 1px solid #EEF4F0;
  padding-bottom: 10px;
}

.comp-mob-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
  line-height: 1.35;
}

.comp-mob-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.comp-mob-plans {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comp-mob-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: #F8FAF9;
  font-size: 12.5px;
  gap: 8px;
}

.comp-mob-plan.highlight {
  background: #EAF5EE;
  border: 1.5px solid rgba(16, 185, 129, 0.4);
}

.comp-mob-plan .plan-name {
  color: var(--text);
  font-weight: 600;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.comp-mob-plan.highlight .plan-name {
  color: var(--green);
  font-weight: 800;
}

.comp-mob-plan .plan-val {
  text-align: right;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.comp-mob-plan .plan-val.check {
  color: #10B981;
  font-weight: 700;
}

.comp-mob-plan .plan-val.cross {
  color: #DC2626;
  font-weight: 600;
}

.comp-mob-plan .plan-val.text {
  color: var(--text);
  font-weight: 600;
}

.compare-card {
  max-width: 1040px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #D5E5DC;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(26, 71, 49, 0.04);
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  text-align: left;
  font-size: 13.5px;
  color: #1A382B;
}

.compare-table th {
  padding: 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green);
  background: #FFFFFF;
  border-bottom: 1px solid #D5E5DC;
  text-align: left;
  vertical-align: top;
}

.compare-table th.col-pro {
  background: #EAF5EE;
  border-top: 3.5px solid var(--green);
}

.th-price {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #6B7C72;
  margin-top: 4px;
}

.col-pro .th-price {
  color: #1A4731;
  font-weight: 600;
}

.compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid #EEF4F0;
  vertical-align: middle;
  font-size: 13.5px;
}

.compare-table td.col-pro {
  background: #F0F8F4;
}

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

.cat-header-row td {
  background: #EBF4EE !important;
  color: var(--green);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 11px 18px;
  border-top: 1px solid #D5E5DC;
  border-bottom: 1px solid #D5E5DC;
}

.feat-name {
  color: var(--text);
  line-height: 1.35;
}

.feat-name strong {
  font-weight: 700;
  color: #0D1A12;
}

.feat-desc {
  font-size: 11.5px;
  color: #6B7C72;
  margin-top: 3px;
  line-height: 1.35;
}

.val-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1A4731;
  font-weight: 600;
}

.val-check svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.val-cross {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #DC2626;
  font-weight: 600;
}

.val-cross svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.val-text {
  color: #1A382B;
  font-weight: 500;
}

.table-footer-row td {
  padding: 18px;
  background: #FFFFFF;
  border-top: 1px solid #D5E5DC;
}

.table-footer-row td.col-pro {
  background: #F0F8F4;
}

.footer-cta-title {
  font-size: 14px;
  font-weight: 800;
  color: #0D1A12;
}

.footer-cta-sub {
  font-size: 11.5px;
  color: #6B7C72;
  margin-top: 2px;
}

.tbl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
  touch-action: manipulation;
}

.tbl-btn-outline {
  background: #FFFFFF;
  color: #0D1A12;
  border: 1px solid #D0DFD6;
}

.tbl-btn-outline:hover {
  background: #F2F8F5;
  border-color: #1A4731;
  color: #1A4731;
}

.tbl-btn-primary {
  background: #1A4731;
  color: #FFFFFF;
  border: 1px solid #1A4731;
  box-shadow: 0 2px 6px rgba(26, 71, 49, 0.15);
}

.tbl-btn-primary:hover {
  background: #2D7A4F;
  border-color: #2D7A4F;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: clamp(48px, 8vw, 80px) 20px;
  max-width: 760px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.faq-section h2 {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  color: var(--green);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
  width: 100%;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-size: clamp(14.5px, 2.5vw, 16px);
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  transition: color 0.2s;
  min-height: 44px;
  box-sizing: border-box;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q svg {
  font-size: 20px;
  transition: transform 0.2s;
  color: var(--muted);
  flex-shrink: 0;
}

.faq-q.open svg {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  display: none;
  padding-bottom: 20px;
}

.faq-a.open {
  display: block;
}

/* ==========================================================================
   CTA FINALE
   ========================================================================== */
.cta-section {
  background: var(--green);
  padding: clamp(48px, 8vw, 80px) 20px;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.cta-section h2 {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: clamp(14.5px, 2.5vw, 17px);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta-white {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  background: var(--white);
  min-height: 48px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.2s;
  box-sizing: border-box;
  touch-action: manipulation;
}

.btn-cta-white:hover {
  background: var(--light);
}

.btn-cta-outline {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: none;
  min-height: 48px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: 0.2s;
  box-sizing: border-box;
  touch-action: manipulation;
}

.btn-cta-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--mint);
  border-top: 1px solid var(--border);
  padding: clamp(40px, 6vw, 60px) 20px 40px;
  box-sizing: border-box;
  width: 100%;
}

.f-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 48px;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .f-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

.f-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-logo .f-logo-text {
  display: inline;
  white-space: nowrap;
  color: var(--green);
}

.f-logo .f-logo-text span,
.f-logo span {
  color: var(--accent);
}

.f-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
}

.f-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
}

.f-col a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2px;
  padding: 4px 6px;
  transition: color 0.2s;
  box-sizing: border-box;
}

.f-col a:hover {
  color: var(--green);
}

.f-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

@media (min-width: 768px) {
  .f-bottom {
    flex-direction: row;
    text-align: left;
  }
}

.f-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 4px 10px;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
}
