/* ============================================================
   LeadQualif — Shared Marketing Stylesheet
   ============================================================ */

:root {
  --blue:        #2E75B6;
  --blue-dark:   #1E3A5F;
  --blue-light:  #00B0F0;
  --green:       #1A7A4A;
  --bg:          #F8FAFF;
  --white:       #FFFFFF;
  --text:        #1E3A5F;
  --text2:       #4A6080;
  --text3:       #8FA3BC;
  --border:      #E2EAF4;
  --shadow:      0 4px 24px rgba(46,117,182,0.10);
  --shadow-lg:   0 12px 48px rgba(46,117,182,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; line-height: 1.3; }
p  { color: var(--text2); }

a { color: inherit; text-decoration: none; }

/* ---- Layout ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.75rem 1.75rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  border: none; transition: var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 16px rgba(46,117,182,0.32);
}
.btn-primary:hover { background: #2560a0; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(46,117,182,0.42); }
.btn-secondary {
  background: var(--white); color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-secondary:hover { background: var(--bg); transform: translateY(-1px); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; border-radius: 10px; }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ---- Badge ---- */
.badge {
  display: inline-block; padding: 0.2rem 0.65rem; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.badge-blue   { background: rgba(46,117,182,0.12); color: var(--blue); }
.badge-green  { background: rgba(26,122,74,0.12);  color: var(--green); }
.badge-light  { background: rgba(0,176,240,0.12);  color: #0086b8; }

/* ---- Navbar ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248,250,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(30,58,95,0.06);
  padding: 0 1.5rem; height: 68px;
}
.navbar-inner {
  max-width: 1100px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.15rem; color: var(--text);
}
.nav-logo-icon {
  width: 34px; height: 34px; background: var(--blue);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: white; font-weight: 900; font-size: 15px;
}
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  padding: 0.45rem 0.85rem; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--text2);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--blue); background: rgba(46,117,182,0.07); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.lang-toggle {
  background: none; border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 10px; font-size: 0.8rem;
  font-weight: 600; color: var(--text2); cursor: pointer; transition: var(--transition);
}
.lang-toggle:hover { border-color: var(--blue); color: var(--blue); }
.nav-signin { font-size: 0.9rem; font-weight: 500; color: var(--text2); padding: 0.4rem 0.8rem; }
.nav-signin:hover { color: var(--blue); }

/* Mobile hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; flex-direction: column; padding: 1rem 1.5rem; border-top: 1px solid var(--border); }
.mobile-menu a { padding: 0.65rem 0; font-weight: 500; color: var(--text2); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ---- Hero ---- */
.hero {
  padding-top: 120px; padding-bottom: 5rem;
  background: linear-gradient(160deg, var(--bg) 0%, #EBF3FF 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 30%, rgba(46,117,182,0.08) 0%, transparent 70%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; position: relative; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(46,117,182,0.1); color: var(--blue); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.2rem; }
.hero-tag span { width: 6px; height: 6px; background: var(--blue-light); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 span { color: var(--blue); }
.hero p { font-size: 1.1rem; margin-bottom: 2rem; max-width: 460px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-social-proof {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.75rem 1rem; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow); width: fit-content;
}
.hero-social-proof .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.hero-social-proof span { font-size: 0.83rem; font-weight: 500; color: var(--text2); }
.hero-social-proof strong { color: var(--text); }

/* Dashboard mockup */
.hero-visual { position: relative; }
.dashboard-mockup {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  overflow: hidden; animation: float 6s ease-in-out infinite;
}
.mockup-topbar {
  background: var(--blue-dark); padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
}
.mockup-topbar .dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-topbar .dot:nth-child(1) { background: #ff5f57; }
.mockup-topbar .dot:nth-child(2) { background: #febc2e; }
.mockup-topbar .dot:nth-child(3) { background: #28c840; }
.mockup-topbar span { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-family: monospace; margin-left: 6px; }
.mockup-body { padding: 1.25rem; }
.mockup-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1rem; }
.mockup-stat {
  background: var(--bg); padding: 0.75rem; border-radius: 8px;
  border: 1px solid var(--border);
}
.mockup-stat .label { font-size: 0.7rem; color: var(--text3); font-weight: 500; margin-bottom: 2px; }
.mockup-stat .value { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.mockup-stat .change { font-size: 0.65rem; color: var(--green); font-weight: 600; }
.mockup-leads { }
.mockup-leads-title { font-size: 0.75rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.06em; }
.lead-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border); gap: 0.5rem;
}
.lead-row:last-child { border-bottom: none; }
.lead-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; }
.lead-name { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.lead-company { font-size: 0.68rem; color: var(--text3); }
.lead-score { padding: 2px 8px; border-radius: 12px; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; }
.score-hot   { background: rgba(26,122,74,0.12);  color: var(--green); }
.score-warm  { background: rgba(255,165,0,0.12);  color: #b96a00; }
.score-cold  { background: rgba(100,116,139,0.1); color: #64748b; }
.float-badge {
  position: absolute; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); padding: 0.6rem 0.9rem;
  font-size: 0.78rem; font-weight: 600;
}
.badge-tl { top: -12px; left: -20px; color: var(--green); }
.badge-br { bottom: -12px; right: -20px; color: var(--blue); }

/* ---- Problem/Solution ---- */
.ps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.ps-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--border);
  box-shadow: var(--shadow); text-align: center;
  transition: var(--transition);
}
.ps-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ps-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; font-size: 1.6rem; }
.ps-icon-red    { background: rgba(239,68,68,0.10); }
.ps-icon-blue   { background: rgba(46,117,182,0.12); }
.ps-icon-green  { background: rgba(26,122,74,0.12); }
.ps-card h3 { margin-bottom: 0.6rem; }
.ps-card p { font-size: 0.9rem; }

/* ---- Features Grid ---- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: var(--transition);
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(46,117,182,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 1rem; }
.feat-card h3 { margin-bottom: 0.5rem; }
.feat-card p { font-size: 0.88rem; }

/* ---- Comparison Table ---- */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.compare-table th {
  padding: 1rem 1.5rem; text-align: left; font-size: 0.85rem;
  font-weight: 700; background: var(--blue-dark); color: var(--white);
}
.compare-table th:first-child { background: var(--blue-dark); }
.compare-table th.col-lq { background: var(--blue); }
.compare-table td {
  padding: 0.9rem 1.5rem; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; font-weight: 500;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg); }
.compare-table td.col-lq { background: rgba(46,117,182,0.04); font-weight: 700; color: var(--blue); }
.check   { color: var(--green); font-size: 1.1rem; }
.cross   { color: #ef4444; font-size: 1.1rem; }

/* ---- Social Proof ---- */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow);
  max-width: 640px; margin: 0 auto;
}
.testimonial-card blockquote { font-size: 1.1rem; color: var(--text); font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }
.stats-row { display: flex; justify-content: center; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item .stat-value { font-size: 2.2rem; font-weight: 800; color: var(--blue); display: block; }
.stat-item .stat-label { font-size: 0.82rem; color: var(--text2); font-weight: 500; }
.sector-tags { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.sector-tag { display: flex; align-items: center; gap: 8px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 8px 16px; font-size: 0.85rem; font-weight: 600; color: var(--text2); }

/* ---- CTA Band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white); text-align: center; padding: 5rem 1.5rem;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.cta-band .sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.75rem; }

/* ---- Footer ---- */
footer {
  background: var(--blue-dark); color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a { font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 0.85rem; }
.footer-logo-icon { width: 32px; height: 32px; background: var(--blue); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 900; font-size: 14px; }
.footer-logo span { color: var(--white); font-weight: 800; font-size: 1.05rem; }
.footer-tagline { font-size: 0.85rem; max-width: 220px; margin-bottom: 1.1rem; }
.footer-social { display: flex; gap: 0.6rem; }
.social-btn { width: 32px; height: 32px; border-radius: 6px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--transition); cursor: pointer; }
.social-btn:hover { background: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom .ai-mention { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ---- Cookie Banner ---- */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 1rem 1.5rem; transform: translateY(0);
  transition: transform 0.35s ease;
}
#cookie-banner.hidden { transform: translateY(100%); }
.cookie-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cookie-inner p { font-size: 0.85rem; color: var(--text2); }
.cookie-inner p a { color: var(--blue); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-btn { padding: 0.45rem 1rem; border-radius: 7px; font-size: 0.83rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); }
.cookie-accept { background: var(--blue); color: white; }
.cookie-accept:hover { background: #2560a0; }
.cookie-refuse { background: var(--bg); color: var(--text2); border: 1px solid var(--border); }
.cookie-refuse:hover { background: #e8eef8; }

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .pre-label { display: inline-block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 0.6rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 520px; margin: 0 auto; }

/* ---- Pricing Cards ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: start; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 2px solid var(--border); padding: 2rem;
  box-shadow: var(--shadow); position: relative; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--blue); box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card.premium { border-color: #7c3aed; }
.plan-badge-wrap { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.plan-badge { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; }
.plan-badge.popular { background: var(--blue); color: white; }
.plan-badge.solo { background: #64748b; color: white; }
.plan-badge.premium-b { background: #7c3aed; color: white; }
.plan-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin: 1rem 0; }
.plan-price .amount { font-size: 2.6rem; font-weight: 800; color: var(--text); }
.plan-price .per   { font-size: 0.85rem; color: var(--text2); }
.plan-price .annual-note { font-size: 0.72rem; color: var(--green); font-weight: 600; background: rgba(26,122,74,0.1); padding: 2px 7px; border-radius: 10px; }
.plan-desc { font-size: 0.87rem; color: var(--text2); margin-bottom: 1.5rem; }
.plan-features { list-style: none; margin-bottom: 1.75rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; padding: 0.35rem 0; border-bottom: 1px solid var(--border); color: var(--text); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li .check-icon { color: var(--green); font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.toggle-switch { position: relative; width: 48px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: #CBD5E1; border-radius: 26px; cursor: pointer; transition: 0.3s; }
.toggle-slider:before { content: ''; position: absolute; height: 20px; width: 20px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
input:checked + .toggle-slider { background: var(--blue); }
input:checked + .toggle-slider:before { transform: translateX(22px); }
.toggle-label { font-size: 0.9rem; font-weight: 600; color: var(--text2); }
.toggle-label.active { color: var(--blue); }
.save-badge { background: rgba(26,122,74,0.12); color: var(--green); font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 12px; margin-left: 4px; }

/* ---- FAQ Accordion ---- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; cursor: pointer; font-weight: 600;
  font-size: 0.95rem; color: var(--text); gap: 1rem;
}
.faq-q .icon { color: var(--blue); font-size: 1.1rem; transition: var(--transition); flex-shrink: 0; }
.faq-a { display: none; padding-bottom: 1.1rem; font-size: 0.9rem; color: var(--text2); }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }

/* ---- Feature Sections (features page) ---- */
.feature-section { padding: 4.5rem 0; }
.feature-section-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.feature-section-inner.reverse { direction: rtl; }
.feature-section-inner.reverse > * { direction: ltr; }
.feature-text { }
.feature-text .pre-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 0.6rem; display: block; }
.feature-text h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 0.9rem; }
.feature-text p { margin-bottom: 1.25rem; }
.feature-bullets { list-style: none; }
.feature-bullets li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; color: var(--text2); padding: 0.3rem 0; }
.feature-bullets li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.feature-mockup {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  padding: 1.5rem; min-height: 260px;
  display: flex; flex-direction: column; justify-content: center;
}
.feat-mockup-header { background: var(--bg); border-radius: 8px; padding: 0.75rem 1rem; margin-bottom: 1rem; font-size: 0.8rem; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.06em; }
.feat-mockup-row { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border); gap: 0.5rem; }
.feat-mockup-row:last-child { border-bottom: none; }
.feat-bar { height: 8px; border-radius: 4px; background: var(--blue); }
.feat-bar-container { flex: 1; height: 8px; background: var(--bg); border-radius: 4px; overflow: hidden; }

/* ---- Sector Pages ---- */
.sector-hero {
  padding-top: 120px; padding-bottom: 4rem;
  background: linear-gradient(160deg, var(--bg) 0%, #EBF3FF 100%);
}
.use-case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.use-case-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.75rem;
  box-shadow: var(--shadow); transition: var(--transition);
}
.use-case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.use-case-card .uc-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.use-case-card h3 { margin-bottom: 0.5rem; }
.use-case-card p { font-size: 0.88rem; }

/* ---- About Page ---- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 2rem; text-align: center;
  box-shadow: var(--shadow);
}
.value-card .v-icon { font-size: 2rem; margin-bottom: 1rem; }

/* ---- Utilities ---- */
.text-center  { text-align: center; }
.text-blue    { color: var(--blue); }
.text-green   { color: var(--green); }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }

/* ---- Animations ---- */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(0.8)} }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .ps-grid          { grid-template-columns: 1fr; }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid     { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .feature-section-inner { grid-template-columns: 1fr; gap: 2rem; }
  .feature-section-inner.reverse { direction: ltr; }
  .use-case-grid    { grid-template-columns: 1fr; }
  .value-grid       { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 0.7rem 1rem; font-size: 0.82rem; }
  .section          { padding: 3.5rem 0; }
  .stats-row        { gap: 2rem; }
}
@media (max-width: 640px) {
  .features-grid    { grid-template-columns: 1fr; }
  .nav-links        { display: none; }
  .nav-right        { display: none; }
  .hamburger        { display: block; }
  .footer-grid      { grid-template-columns: 1fr; }
  .stats-row        { gap: 1.25rem; }
  .hero-ctas        { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn   { width: 100%; justify-content: center; }
  .pricing-toggle   { flex-wrap: wrap; justify-content: center; }
  .cookie-inner     { flex-direction: column; align-items: flex-start; }
  .section          { padding: 2.75rem 0; }
  .container        { padding: 0 1rem; }
  .cta-band         { padding: 3.5rem 1rem; }
  .section-header   { margin-bottom: 2rem; }
  .hero             { padding-top: 90px; padding-bottom: 3rem; }
  h1                { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  h2                { font-size: clamp(1.4rem, 5vw, 2rem); }
  .testimonial-card { padding: 1.25rem; }
  .testimonial-card blockquote { font-size: 0.95rem; }
}

/* i18n hidden class */
[data-en], [data-fr] { }
body.lang-en [data-fr] { display: none !important; }
body.lang-en [data-en] { display: initial !important; }
body.lang-fr [data-en] { display: none !important; }
body.lang-fr [data-fr] { display: initial !important; }
