/* ═══════════════════════════════════════
   TERRYS — Sections
═══════════════════════════════════════ */

/* ─── TRUSTED BAR ─── */
.trusted {
  padding: 44px 48px;
  background: var(--white);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}

.trusted__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trusted__label {
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
}

.trusted__logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trusted__logo {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
  cursor: default;
}

.trusted__logo:hover { opacity: 1; color: var(--forest); }

/* ─── SPLIT LAYOUT ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

/* ─── FEATURE LIST ─── */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}

.feat-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border2);
  cursor: default;
  transition: padding-left 0.2s;
}

.feat-item:first-child { border-top: 1px solid var(--border2); }
.feat-item:hover { padding-left: 8px; }

.feat-item__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--cream2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s;
}

.feat-item:hover .feat-item__icon { background: var(--forest); }

.feat-item__content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}

.feat-item__content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── PURCHASE CARD (feature panel) ─── */
.feature-panel {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-panel__head {
  background: var(--forest);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feature-panel__head-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.feature-panel__head-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.feature-panel__tag {
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.feature-panel__body { padding: 24px; }

.panel-mini-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.panel-kpi {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  padding: 14px;
}

.panel-kpi__val {
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
}

.panel-kpi__lbl {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}

.panel-kpi__delta {
  font-size: 11px;
  color: var(--green-ok);
  margin-top: 4px;
}

.panel-table {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 14px;
}

.panel-table__head {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border2);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
}

.panel-table__row {
  padding: 10px 14px;
  font-size: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  align-items: center;
}
.panel-table__row:last-child { border-bottom: none; }

.panel-ai-tip {
  background: var(--forest);
  border-radius: var(--r-md);
  padding: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.panel-ai-tip strong { color: var(--lime); font-weight: 600; }

/* ─── COMPTA CARD ─── */
.compta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.compta-card__head {
  background: var(--forest);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.compta-card__head-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.compta-card__head-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.compta-card__chip {
  background: var(--orange);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.compta-card__body { padding: 24px; }

.compta-card__section-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.sync-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.sync-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 10px;
  text-align: center;
  cursor: default;
  transition: var(--tr-base);
}

.sync-item:hover {
  border-color: var(--forest);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.sync-item__icon { font-size: 22px; }

.sync-item__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  margin-top: 6px;
}

.sync-status {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-bg);
  border: 1px solid var(--green-br);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: 13px;
  color: #15803d;
}

.sync-status__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-ok);
  flex-shrink: 0;
  animation: syncPulse 2s infinite;
}

@keyframes syncPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.compta-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.compta-metric {
  background: var(--cream);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  padding: 14px;
}

.compta-metric__val {
  font-size: 18px;
  font-weight: 600;
  color: var(--forest);
  display: block;
}

.compta-metric__lbl {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── HOW IT WORKS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 60px;
}

.step {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
}

.step:hover { background: var(--cream); }

.step__num {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: var(--border);
  position: absolute;
  top: 20px; right: 24px;
  font-style: italic;
  transition: color 0.3s;
}

.step:hover .step__num { color: var(--lime2); }

.step__icon {
  width: 52px; height: 52px;
  background: var(--forest);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.step__title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 10px;
}

.step__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── INTEGRATIONS ─── */
.int-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.int-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  cursor: default;
  transition: var(--tr-base);
}

.int-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(232,78,27,0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.int-card__icon {
  font-size: 26px;
  margin-bottom: 8px;
  display: block;
}

.int-card__name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
}

.int-card__cat {
  font-size: 10px;
  color: rgba(255,255,255,0.32);
  margin-top: 2px;
}

/* ─── STATS ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.stat-card {
  background: var(--white);
  padding: 44px 36px;
  transition: background 0.2s;
}

.stat-card:hover { background: var(--cream); }

.stat-card__num {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: var(--forest);
  letter-spacing: -2px;
  display: block;
  margin-bottom: 6px;
}

.stat-card__num em {
  color: var(--lime2);
  font-style: normal;
}

.stat-card__lbl {
  font-size: 14px;
  color: var(--muted);
}

/* ─── TESTIMONIAL ─── */
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 60px;
  text-align: center;
  max-width: 800px;
  margin: 48px auto 0;
}

.testimonial-card__quote-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 0.5;
  color: var(--forest);
  opacity: 0.12;
  margin-bottom: 24px;
  display: block;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.8vw, 26px);
  line-height: 1.5;
  color: var(--forest);
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--forest3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-weight: 600;
  font-size: 15px;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--muted);
}

/* ─── ABOUT BELLON ─── */
.bellon-logo {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
  padding: 10px;
}

.bellon-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.bellon-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.bellon-fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  transition: var(--tr-base);
}

.bellon-fact:hover {
  border-color: var(--forest);
  background: var(--white);
}

.bellon-fact__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--forest);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.bellon-fact__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
}

.bellon-fact__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Why Terrys cards */
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-card {
  background: var(--cream);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 20px;
  transition: var(--tr-base);
}

.why-card:hover {
  border-color: var(--forest);
  background: var(--white);
}

.why-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.why-card__header h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
}

.why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── CTA ─── */
.cta-section {
  background: var(--forest);
  padding: var(--sp-3xl) 48px;
  text-align: center;
}

.cta-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta-section__note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 20px;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--forest2);
  color: rgba(255,255,255,0.6);
  padding: 64px 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 220px;
  margin-top: 12px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__brand-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer__brand-product {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  font-style: italic;
}

.footer__col h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--white); }

.footer__legal-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__socials a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--tr-base);
}

.footer__socials a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .section { padding: 60px 24px; }
  .trusted { padding: 36px 24px; }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .steps, .stats-grid { grid-template-columns: 1fr; gap: 2px; }
  .int-grid { grid-template-columns: repeat(3,1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 60px 24px; }
  .footer { padding: 48px 24px 32px; }
  .testimonial-card { padding: 36px 24px; }
}

/* ─── SEO FAQ ─── */
.seo-subtitle {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.seo-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.seo-faq__item {
  background: var(--cream);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.seo-faq__item[open] {
  border-color: var(--orange);
}

.seo-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  list-style: none;
  gap: 12px;
}
.seo-faq__q::-webkit-details-marker { display: none; }
.seo-faq__q::after {
  content: '+';
  font-size: 18px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.seo-faq__item[open] .seo-faq__q::after {
  transform: rotate(45deg);
}

.seo-faq__a {
  padding: 0 20px 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border2);
  padding-top: 12px;
}

@media (max-width: 760px) {
  .seo-faq__grid { grid-template-columns: 1fr; }
}

/* ─── FAQ SECTION — Premium split layout ─── */
.faq-section {
  background: var(--forest);
  padding: var(--sp-3xl) 48px;
}

.faq-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

/* Colonne gauche sticky */
.faq-left {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.faq-title {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.faq-title em { color: var(--orange); font-style: italic; }

.faq-sub {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 100%;
}

.faq-cta {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.faq-cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,78,27,0.4);
}

/* Colonne droite : items */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.faq-q:hover { color: var(--white); }
.faq-item.open .faq-q { color: var(--white); }

/* Icône + / × */
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  position: relative;
  transition: all 0.25s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  transition: all 0.25s ease;
}
/* Barre horizontale */
.faq-icon::before {
  width: 10px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
/* Barre verticale */
.faq-icon::after {
  width: 1.5px; height: 10px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon {
  border-color: var(--orange);
  background: var(--orange);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: var(--white);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Réponse animée */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a p {
  padding: 0 40px 22px 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

/* Responsive */
@media (max-width: 960px) {
  .faq-section { padding: 60px 24px; }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-left { position: static; }
  .faq-title { font-size: 32px; }
}
