/* ─── SITE VITRINE SHARED — DESIGN SYSTEM V7 (TERRACOTTA) ───────────────────── */
:root {
  --vt: #E0734B;
  --vt2: #D97757;
  --vt-light: var(--accent-12);
  --vt-border: var(--shadow-accent);
  --dp: #181818;
  --dp2: #2D2D2D;
  --cream: #FAF8F5;
  --ink: #181818;
  --ink2: #374151;
  --muted: #6b7280;
  --border: rgba(18, 18, 18, 0.1);
  --white: #ffffff;
}
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; background: var(--cream); color: var(--ink); }

.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-inner--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--vt-light); border: 1px solid var(--vt-border); color: var(--vt);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 20px;
}
.section-h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 900; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 16px; }
.section-intro { font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }

.btn-primary, .btn-secondary, .btn-outline, .btn-outline-w {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 28px; border-radius: 999px; font-weight: 800; font-size: 15px;
  text-decoration: none; transition: background 0.2s, transform 0.2s; border: none; cursor: pointer;
}
.btn-primary { background: var(--vt); color: #fff; }
.btn-primary:hover { background: var(--vt2); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--ink2); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--vt-light); color: var(--vt); }
.btn-outline { background: transparent; color: var(--vt); border: 1px solid var(--vt); }
.btn-outline:hover { background: var(--vt-light); }
.btn-outline-w { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn-outline-w:hover { background: var(--vt-light); color: var(--vt); }
.btn-block { width: 100%; }

/* BREADCRUMB */
.breadcrumb-bar { margin-bottom: 24px; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(24, 24, 24, 0.5); }
.breadcrumb-inner a { color: var(--ink2); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--vt); }
.bc-sep { opacity: 0.3; }
.breadcrumb-inner span[aria-current] { color: var(--ink); font-weight: 600; }

/* HERO */
.hero-section2 { background: linear-gradient(135deg, var(--cream) 0%, #FDF7F0 100%); padding: 120px 24px 100px; position: relative; overflow: hidden; }
.hero-glow-1 { position: absolute; top: -100px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, #e0734b59 0%, transparent 60%); pointer-events: none; }
.hero-glow-2 { position: absolute; bottom: -80px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, #e0734b59 0%, transparent 60%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-label { display: inline-flex; align-items: center; gap: 8px; background: var(--vt-light); border: 1px solid var(--vt-border); padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--vt); margin-bottom: 20px; }
.hero-label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--vt); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }
.hero-h1 { font-size: clamp(36px,4.5vw,60px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 20px; }
.hero-sub { font-size: 17px; line-height: 1.65; color: var(--ink2); margin-bottom: 36px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-form-wrapper { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 32px; box-shadow: 0 4px 12px rgba(24, 24, 24, 0.05); }
.hero-form-wrapper h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.hero-form-wrapper > p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.hero-form { display: flex; flex-direction: column; gap: 12px; }
.hero-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-form input, .hero-form select { width: 100%; padding: 12px 16px; border-radius: 10px; background: #f5f5f5; border: 1px solid #e5e5e5; color: var(--ink); font-family: 'Outfit', sans-serif; font-size: 14px; outline: none; transition: 0.2s; }
.hero-form input::placeholder { color: #999; }
.hero-form select { color: var(--ink2); }
.hero-form select option { background: var(--white); color: var(--ink); }
.hero-form input:focus, .hero-form select:focus { border-color: var(--vt); background: #fff; }
.hero-form .btn-primary { margin-top: 8px; padding: 16px; font-size: 16px; }

/* METRICS */
.section-metrics { background: var(--cream); padding: 80px 24px; text-align: center; }
.metrics-inner { max-width: 1200px; margin: 0 auto; }
.section-metrics h2 { font-size: 32px; font-weight: 900; margin-bottom: 8px; }
.section-metrics p { color: var(--muted); margin-bottom: 32px; font-size: 16px; }
.certif-logos { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.logo-pill { background: var(--white); border: 1px solid var(--border); padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--ink); }
.metrics-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.metric-card-horiz { background: var(--white); border-radius: 16px; padding: 24px; border: 1px solid var(--border); text-align: center; }
.metric-card-horiz .val { font-size: 36px; font-weight: 900; color: var(--ink); line-height: 1; margin-bottom: 6px; }
.metric-card-horiz .lbl { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* OFFERS HUB */
.section-offers { background: var(--white); padding: 100px 0; }
.section-offers .section-h2 { color: var(--ink); }
.section-offers .section-intro { color: var(--muted); }
.offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.offer-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 36px 28px; text-align: left; display: flex; flex-direction: column; gap: 0; transition: transform 0.2s, background 0.2s, box-shadow 0.2s; }
.offer-card:hover { transform: translateY(-4px); background: #fafafa; box-shadow: 0 8px 24px rgba(24, 24, 24, 0.08); }
.offer-card--featured { background: var(--vt); border-color: transparent; box-shadow: 0 20px 50px var(--shadow-accent); }
.offer-card--featured:hover { background: var(--vt2); }
.offer-card--featured h3,
.offer-card--featured p,
.offer-card--featured li { color: #fff; }
.offer-card--local { background: rgba(224, 115, 75, 0.05); border-color: rgba(224, 115, 75, 0.2); }
.offer-card--local:hover { background: rgba(224, 115, 75, 0.08); }
.offer-icon { font-size: 32px; margin-bottom: 16px; }
.offer-badge-pill { display: inline-flex; background: var(--vt-light); color: var(--vt); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 12px; border-radius: 999px; margin-bottom: 16px; border: 1px solid var(--vt-border); }
.offer-badge-pill--white { background: #f5f5f5; color: var(--ink); border: 1px solid var(--border); }
.offer-badge-pill--emerald { background: rgba(224, 115, 75, 0.1); color: var(--vt); border: 1px solid var(--vt-border); }
.offer-card h3 { font-size: 22px; font-weight: 900; color: var(--ink); margin-bottom: 12px; }
.offer-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.offer-list { list-style: none; padding: 0; margin: 0 0 28px; }
.offer-list li { font-size: 14px; color: var(--ink2); padding: 6px 0 6px 20px; position: relative; border-bottom: 1px solid var(--border); }
.offer-list li::before { content: "✓"; color: var(--vt); position: absolute; left: 0; font-weight: 900; }
.offer-card--local .offer-list li::before { color: var(--vt); }
.btn-offer { display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; border-radius: 999px; font-weight: 800; font-size: 14px; text-decoration: none; background: var(--vt-light); color: var(--vt); border: 1px solid var(--vt-border); transition: background 0.2s; }
.btn-offer:hover { background: var(--vt); color: #fff; }
.btn-offer--white { background: var(--vt); color: #fff; border: none; }
.btn-offer--white:hover { background: var(--vt2); }
.btn-offer--emerald { background: var(--vt); color: #fff; border: none; }
.btn-offer--emerald:hover { background: var(--vt2); }

/* WHY */
.section-why { background: var(--cream); padding: 100px 0; }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-cards { display: flex; flex-direction: column; gap: 20px; }
.why-card-horiz { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; gap: 20px; align-items: flex-start; transition: transform 0.2s; }
.why-card-horiz:hover { transform: translateY(-3px); }
.wh-icon { width: 48px; height: 48px; background: var(--vt-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.why-card-horiz h3 { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.why-card-horiz p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.why-text p { font-size: 16px; color: var(--ink2); line-height: 1.65; }

/* FEATURES */
.section-features { background: var(--white); padding: 100px 0; }
.section-features .section-h2 { color: var(--ink); margin-bottom: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ft-card { background: #fafafa; border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: background 0.2s; }
.ft-card:hover { background: #f5f5f5; }
.ft-icon { width: 44px; height: 44px; background: var(--vt-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; color: var(--vt); }
.ft-card h4 { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.ft-card p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }

/* PROCESS */
.section-process-hz { background: var(--cream); padding: 100px 0; }
.process-sub { font-size: 17px; color: var(--muted); margin-bottom: 48px; }
.process-hz-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.pr-hz-step { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 32px 24px; text-align: center; }
.pr-icon { width: 60px; height: 60px; background: var(--vt); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; margin: 0 auto 20px; box-shadow: 0 8px 20px var(--shadow-accent); }
.pr-hz-step h4 { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.pr-hz-step p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

/* FAQ */
.section-faq { background: var(--cream); padding: 100px 0; }
.faq-list { display: flex; flex-direction: column; margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn { width: 100%; background: none; border: none; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 17px; font-weight: 700; color: var(--ink); text-align: left; cursor: pointer; font-family: 'Outfit', sans-serif; transition: color 0.2s; }
.faq-btn:hover { color: var(--vt); }
.faq-icon-wrap { width: 30px; height: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--vt); flex-shrink: 0; transition: transform 0.3s, background 0.2s; }
.faq-item.open .faq-icon-wrap { transform: rotate(45deg); background: var(--vt); color: #fff; border-color: var(--vt); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-body { max-height: 400px; }
.faq-body-inner { padding: 0 0 20px; font-size: 16px; color: var(--muted); line-height: 1.7; text-align: left; }

/* CTA BOTTOM */
.section-cta-bottom { background: linear-gradient(135deg, var(--cream) 0%, #FDF7F0 100%); padding: 100px 24px; text-align: center; color: var(--ink); }
.cta-bottom-inner { max-width: 620px; margin: 0 auto; }
.section-cta-bottom h2 { font-size: clamp(28px,4vw,44px); font-weight: 900; line-height: 1.1; margin-bottom: 16px; color: var(--ink); }
.section-cta-bottom p { font-size: 18px; color: var(--ink2); margin-bottom: 40px; }
.cta-b-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 1024px) { .hero-inner { grid-template-columns: 1fr 340px; } .features-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 900px) {
  .hero-inner, .why-layout, .offers-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-wrapper { max-width: 500px; margin: 0 auto; }
  .metrics-row { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .process-hz-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .hero-section2 { padding: 90px 16px 60px; }
  .metrics-row, .features-grid, .process-hz-grid { grid-template-columns: 1fr; }
  .hero-form .form-row { grid-template-columns: 1fr; }
  .cta-b-btns { flex-direction: column; align-items: center; }
}
