/* assets/style.css — SolerAds shared stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --color-bg: #ffffff;
  --color-dark: #1a1a2e;
  --color-blue: #4285F4;
  --color-blue-dark: #1a56db;
  --color-muted: #555555;
  --color-light: #f8f9ff;
  --color-border: #e8eeff;
  --font: 'Inter', sans-serif;
  --color-white: #ffffff;
  --color-border-light: #eeeeee;
  --color-border-secondary: #dddddd;
  --color-text-nav: #444444;
  --color-text-medium: #888888;
  --color-text-label: #aaaaaa;
  --color-overlay-50: rgba(255,255,255,0.5);
  --color-overlay-40: rgba(255,255,255,0.4);
  --color-overlay-30: rgba(255,255,255,0.3);
}

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 0 40px; height: 68px;
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border-bottom: 1px solid #eee; z-index: 1000;
}
.nav-left { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 38px; width: auto; }
.nav-badge img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: #444; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--color-blue); }
.nav-cta {
  background: var(--color-blue); color: #fff;
  padding: 9px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--color-blue-dark); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-dark); border-radius: 2px; transition: all 0.3s; }

/* MOBILE NAV OVERLAY */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: #fff; z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a { font-size: 22px; font-weight: 700; color: var(--color-dark); text-decoration: none; }
.nav-overlay .nav-cta { font-size: 18px; padding: 14px 32px; margin-top: 12px; }
.nav-overlay-close { position: absolute; top: 20px; right: 24px; font-size: 28px; cursor: pointer; background: none; border: none; }

/* PAGE WRAPPER */
.page-top { padding-top: 68px; }

/* SECTIONS */
.section { padding: 72px 40px; max-width: 1100px; margin: 0 auto; }
.section-full { padding: 72px 40px; }
.section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--color-blue); margin-bottom: 10px;
}
.section-title {
  font-size: 32px; font-weight: 800; color: var(--color-dark);
  margin-bottom: 10px; letter-spacing: -0.5px; line-height: 1.15;
}
.section-sub {
  font-size: 15px; color: var(--color-muted);
  margin-bottom: 40px; max-width: 560px; line-height: 1.7;
}

/* BUTTONS */
.btn-primary {
  display: inline-block; background: var(--color-blue); color: #fff;
  padding: 14px 28px; border-radius: 6px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: background 0.2s;
}
.btn-primary:hover { background: var(--color-blue-dark); }
.btn-secondary {
  display: inline-block; border: 1.5px solid #ddd; color: var(--color-dark);
  padding: 13px 28px; border-radius: 6px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--color-blue); color: var(--color-blue); }
.btn-white {
  display: inline-block; background: #fff; color: var(--color-blue);
  padding: 14px 32px; border-radius: 6px; font-size: 15px; font-weight: 800;
  text-decoration: none;
}
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* STATS BAR */
.stats-bar {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden;
  max-width: 860px; margin: 0 auto;
}
.stat-item { padding: 20px 16px; text-align: center; border-right: 1px solid var(--color-border); background: var(--color-light); }
.stat-item:last-child { border-right: none; }
.stat-value { font-size: 26px; font-weight: 900; color: var(--color-dark); line-height: 1; }
.stat-label { font-size: 10px; color: #888; margin-top: 5px; line-height: 1.4; }

/* GRID CARDS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; }

.card {
  border: 1.5px solid var(--color-border); border-radius: 10px;
  padding: 28px; transition: border-color 0.2s;
}
.card:hover { border-color: var(--color-blue); }
.card-icon { margin-bottom: 14px; }
.card-icon svg { display: block; }
.card-title { font-size: 17px; font-weight: 800; color: var(--color-dark); margin-bottom: 8px; }
.card-desc { font-size: 13px; color: var(--color-muted); line-height: 1.65; margin-bottom: 14px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 10px; font-weight: 600;
  background: #eef2ff; color: var(--color-blue);
  border: 1px solid var(--color-border);
  padding: 3px 10px; border-radius: 20px;
}
.card-proof { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--color-border); font-size: 11px; color: var(--color-blue); font-weight: 700; }

/* DARK SECTION */
.section-dark { background: var(--color-dark); padding: 72px 40px; text-align: center; }
.section-dark .section-label { color: var(--color-blue); }
.section-dark .section-title { color: #fff; }

/* RESULT CARDS */
.result-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 26px; text-align: left;
}
.result-client { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--color-blue); margin-bottom: 8px; text-transform: uppercase; }
.result-headline { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 14px; line-height: 1.45; }
.result-metric { font-size: 36px; font-weight: 900; color: #fff; line-height: 1; }
.result-metric span { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.5); display: block; margin-top: 4px; }
.result-note { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 8px; }

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.testimonial-card {
  background: var(--color-light); border: 1px solid var(--color-border);
  border-radius: 10px; padding: 28px;
}
.testimonial-stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--color-dark); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--color-dark); }
.testimonial-role { font-size: 11px; color: var(--color-muted); margin-top: 2px; }
.testimonial-source { font-size: 10px; color: var(--color-blue); margin-top: 6px; font-weight: 600; }

/* TRUST STRIP */
.trust-strip { background: var(--color-light); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 20px 40px; text-align: center; }
.trust-strip-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: #aaa; text-transform: uppercase; margin-bottom: 12px; }
.trust-logos { display: flex; justify-content: center; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-logos span { font-size: 13px; font-weight: 600; color: #555; }

/* WHY GRID */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; background: var(--color-light); border-radius: 10px; padding: 22px; }
.why-check { flex-shrink: 0; margin-top: 1px; }
.why-title { font-size: 15px; font-weight: 700; color: var(--color-dark); margin-bottom: 5px; }
.why-desc { font-size: 12px; color: var(--color-muted); line-height: 1.6; }

/* PROCESS STEPS */
.process-steps { display: flex; gap: 0; }
.process-step { flex: 1; text-align: center; padding: 0 12px; position: relative; }
.process-step::after { content: '→'; position: absolute; right: -8px; top: 16px; color: #ccc; font-size: 14px; }
.process-step:last-child::after { display: none; }
.step-num { width: 40px; height: 40px; background: var(--color-blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; margin: 0 auto 10px; }
.step-title { font-size: 13px; font-weight: 700; color: var(--color-dark); margin-bottom: 4px; }
.step-desc { font-size: 11px; color: var(--color-muted); line-height: 1.5; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; font-size: 15px; font-weight: 600; color: var(--color-dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font);
}
.faq-question::after { content: '+'; font-size: 20px; color: var(--color-blue); font-weight: 400; }
.faq-question.open::after { content: '−'; }
.faq-answer { font-size: 14px; color: var(--color-muted); line-height: 1.7; padding-bottom: 20px; display: none; }
.faq-answer.open { display: block; }

/* CTA SECTION */
.cta-section { background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%); padding: 72px 40px; text-align: center; }
.cta-section h2 { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 12px; letter-spacing: -0.5px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 28px; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 12px; }

/* AUDIT OFFER BLOCK */
.audit-offer { background: var(--color-light); border: 1px solid var(--color-border); border-radius: 12px; padding: 36px; max-width: 680px; margin: 0 auto; }
.audit-offer h3 { font-size: 20px; font-weight: 800; color: var(--color-dark); margin-bottom: 20px; }
.audit-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.audit-step { display: flex; align-items: flex-start; gap: 14px; }
.audit-step-num { width: 28px; height: 28px; background: var(--color-blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.audit-step-text { font-size: 14px; color: var(--color-dark); line-height: 1.5; padding-top: 4px; }

/* CONTACT FORM */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--color-dark); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #ddd; border-radius: 6px;
  font-family: var(--font); font-size: 14px; color: var(--color-dark);
  background: #fff; transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--color-blue); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-checkbox-group { display: flex; gap: 20px; flex-wrap: wrap; }
.form-checkbox { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.form-checkbox input { width: 16px; height: 16px; accent-color: var(--color-blue); }
.form-submit { background: var(--color-blue); color: #fff; border: none; padding: 15px 32px; border-radius: 6px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--font); width: 100%; transition: background 0.2s; }
.form-submit:hover { background: var(--color-blue-dark); }
.form-input::placeholder, .form-textarea::placeholder { color: #aaa; opacity: 1; }

/* ABOUT PAGE */
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center; border-radius: 10px; display: block; }
.about-badge { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); }
.about-badge img { height: 48px; width: auto; }
.about-name { font-size: 38px; font-weight: 900; color: var(--color-dark); letter-spacing: -1px; line-height: 1.05; margin-bottom: 6px; }
.about-title { font-size: 15px; font-weight: 600; color: var(--color-blue); margin-bottom: 24px; }
.about-bio p { font-size: 14px; color: var(--color-muted); line-height: 1.75; margin-bottom: 14px; }
.credentials { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.credential-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--color-dark); font-weight: 500; }

/* RESULTS PAGE */
.result-snapshot { border: 1.5px solid var(--color-border); border-radius: 10px; padding: 28px; margin-bottom: 20px; }
.rs-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.rs-client { font-size: 13px; font-weight: 700; color: var(--color-blue); text-transform: uppercase; letter-spacing: 1px; }
.rs-period { font-size: 11px; color: #aaa; }
.rs-metrics { margin-bottom: 16px; }
.rs-val { font-size: 28px; font-weight: 900; color: var(--color-dark); }
.rs-lbl { font-size: 11px; color: #888; margin-top: 3px; }
.rs-desc { font-size: 13px; color: var(--color-muted); line-height: 1.65; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.pricing-card { border: 1.5px solid var(--color-border); border-radius: 12px; padding: 32px; position: relative; transition: border-color 0.2s; }
.pricing-card.featured { border-color: var(--color-blue); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--color-blue); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.pricing-tier { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--color-blue); margin-bottom: 8px; }
.pricing-price { font-size: 36px; font-weight: 900; color: var(--color-dark); line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 14px; font-weight: 400; color: var(--color-muted); }
.pricing-desc { font-size: 13px; color: var(--color-muted); margin-bottom: 24px; line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { font-size: 13px; color: var(--color-dark); display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: ''; display: block; width: 16px; height: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234285F4' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; margin-top: 1px; }

/* EX-GOOGLE BLOCK */
.ex-google-block, .callout-block { background: var(--color-light); border-left: 4px solid var(--color-blue); border-radius: 0 10px 10px 0; padding: 32px 36px; max-width: 760px; margin: 0 auto; }
.ex-google-block .eyebrow, .callout-block .eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--color-blue); margin-bottom: 10px; }
.ex-google-block h3, .callout-block h3 { font-size: 22px; font-weight: 800; color: var(--color-dark); margin-bottom: 12px; }
.ex-google-block p, .callout-block p { font-size: 14px; color: var(--color-muted); line-height: 1.7; margin-bottom: 16px; }

/* FOOTER */
.footer { background: var(--color-dark); padding: 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-left .footer-logo { font-weight: 900; font-size: 18px; color: #fff; letter-spacing: -0.5px; }
.footer-left .footer-tagline { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.footer-left .footer-badge { margin-top: 12px; }
.footer-left .footer-badge img { height: 42px; width: auto; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-right { font-size: 11px; color: rgba(255,255,255,0.3); text-align: right; }

/* DIVIDER */
.divider { height: 1px; background: #eee; margin: 0 40px; }

/* HERO 2-COLUMN */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-dashboard { position: relative; }
.hero-dashboard img { width: 100%; border-radius: 12px; box-shadow: 0 12px 48px rgba(66,133,244,0.15); border: 1px solid var(--color-border); display: block; }
.hero-dashboard .hero-badge { position: absolute; bottom: -16px; right: -16px; background: var(--color-blue); color: #fff; padding: 12px 18px; border-radius: 8px; font-size: 12px; font-weight: 700; box-shadow: 0 4px 16px rgba(66,133,244,0.4); }
.hero-stats { max-width: 100%; grid-template-columns: repeat(2,1fr); }

/* DASHBOARD CARD (image + caption) */
.dash-card { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.08); border: 1px solid var(--color-border); }
.dash-card img { width: 100%; display: block; }
.dash-card .dash-caption { padding: 16px 20px; background: var(--color-light); }
.dash-card .dash-caption strong { display: block; font-size: 12px; font-weight: 700; color: var(--color-dark); margin-bottom: 4px; }
.dash-card .dash-caption span { font-size: 11px; color: #888; }

/* ABOUT STATS ROW (4-col) */
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); background: var(--color-light); text-align: center; }
.about-stats > div { padding: 24px 16px; border-right: 1px solid var(--color-border); }
.about-stats > div:last-child { border-right: none; }

/* CONTACT 2-COLUMN */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ==================== MOBILE ==================== */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .section { padding: 48px 20px; }
  .section-full { padding: 48px 20px; }
  .section-dark { padding: 48px 20px; }
  .cta-section { padding: 48px 20px; }

  .section-title { font-size: 24px; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--color-border); }
  .stat-item:last-child { border-bottom: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-dashboard { display: none; }
  .hero-grid h1 { font-size: 30px !important; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 1/1; max-height: 320px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stats > div:nth-child(2) { border-right: none; }
  .about-stats > div:nth-child(1), .about-stats > div:nth-child(2) { border-bottom: 1px solid var(--color-border); }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  .process-steps { flex-direction: column; gap: 20px; }
  .process-step::after { display: none; }

  .footer { flex-direction: column; text-align: center; padding: 32px 20px; }
  .footer-right { text-align: center; }
  .footer-links { align-items: center; }

  .divider { margin: 0 20px; }
  .cta-group { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}

/* LANGUAGE SWITCH */
.lang-switch { display: flex; align-items: center; gap: 6px; }
.lang-switch a {
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; color: #888;
  text-decoration: none; padding: 5px 8px; border: 1px solid #e5e5e5;
  border-radius: 5px; line-height: 1; transition: all 0.2s;
}
.lang-switch a:hover { color: var(--color-blue); border-color: var(--color-blue); }
.lang-switch a.active { color: #fff; background: var(--color-blue); border-color: var(--color-blue); }
.nav-overlay .lang-switch { margin-top: 8px; }
.nav-overlay .lang-switch a { font-size: 14px; padding: 8px 14px; }
@media (max-width: 768px) {
  .nav .lang-switch { margin-left: auto; margin-right: 12px; }
}

/* PERSON / OPERATOR */
.operator-block { display: flex; gap: 28px; align-items: flex-start; }
.operator-photo {
  width: 128px; height: 128px; flex-shrink: 0;
  border-radius: 50%; object-fit: cover; object-position: center 20%;
  border: 3px solid #fff; box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.person-strip {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: var(--color-light);
  border: 1px solid var(--color-border); border-radius: 10px;
}
.person-strip img {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 50%; object-fit: cover; object-position: center 20%;
}
.person-strip-name { font-size: 14px; font-weight: 800; color: var(--color-dark); }
.person-strip-role { font-size: 12px; color: var(--color-muted); margin-top: 2px; line-height: 1.5; }
.person-signature { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.person-signature img {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; object-position: center 20%; flex-shrink: 0;
}
.person-signature div { font-size: 12.5px; color: var(--color-muted); line-height: 1.55; }
.person-signature strong { display: block; color: var(--color-dark); font-size: 13.5px; }
@media (max-width: 768px) {
  .operator-block { flex-direction: column; gap: 18px; }
  .operator-photo { width: 104px; height: 104px; }
}

/* PRICING WITHOUT A PRICE SLOT */
.pricing-quote {
  font-size: 16px; font-weight: 800; color: var(--color-dark); line-height: 1.35;
  margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--color-border);
}
.pricing-quote span {
  display: block; font-size: 12px; font-weight: 700; color: var(--color-blue);
  margin-top: 5px; letter-spacing: 0.2px;
}

/* HERO PHOTO (fondu) */
.hero-photo { position: relative; isolation: isolate; overflow: hidden; }
.hero-photo::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; z-index: -2;
  height: min(100%, 760px);
  background: var(--hero-img) center top / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.62) 50%, rgba(255,255,255,0.45) 100%);
}
@media (max-width: 900px) {
  .hero-photo::before { background-position: 35% top; }
  .hero-photo::after { background: rgba(255,255,255,0.72); }
}
.hero-photo-left::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.80) 38%, rgba(255,255,255,0.25) 62%, rgba(255,255,255,0.05) 100%);
}

/* PRICING COMPARE */
.compare-wrap { overflow-x: auto; margin-top: 28px; text-align: left; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; min-width: 640px; }
.compare-table th, .compare-table td { padding: 14px 16px; border-bottom: 1px solid #eef0f5; color: #555; vertical-align: top; line-height: 1.5; }
.compare-table thead th { font-size: 13px; font-weight: 800; color: #1a1a2e; text-transform: uppercase; letter-spacing: 0.6px; }
.compare-table tbody th { font-weight: 700; color: #1a1a2e; width: 24%; }
.compare-table .compare-us { background: #f3f7ff; color: #1a1a2e; font-weight: 600; }
.compare-table thead .compare-us { color: #4285F4; border-radius: 10px 10px 0 0; }
.stats-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) { .stats-4 { grid-template-columns: 1fr 1fr; } }

/* OPERATOR + DASHBOARD */
.operator-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1200px; margin: 0 auto; }
.operator-proof .callout-block { margin: 0; }
.operator-proof .hero-dashboard { display: block; }
@media (max-width: 900px) {
  .operator-proof { grid-template-columns: 1fr; gap: 36px; }
  .operator-proof .hero-dashboard .hero-badge { right: 8px; }
}

/* PEOPLE STRIP */
.people-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.people-tile { margin: 0; border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid var(--color-border); box-shadow: 0 6px 24px rgba(26,26,46,0.06); }
.people-tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 30%; display: block; }
.people-tile figcaption { padding: 14px 18px 16px; font-size: 13px; color: #666; line-height: 1.5; }
.people-tile figcaption strong { display: block; font-size: 14px; color: #1a1a2e; margin-bottom: 2px; }
@media (max-width: 900px) { .people-strip { grid-template-columns: 1fr; } }
.hero-photo { min-height: 640px; }
.hero-photo::before { background-position: center 25%; }
.hero-photo-strong::after { background: linear-gradient(90deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.86) 45%, rgba(255,255,255,0.86) 100%); }
@media (max-width: 900px) { .hero-photo { min-height: 0; } }
/* NAV LOGO */
.nav-logo { height: 56px; width: auto; display: block; }
@media (max-width: 768px) { .nav-logo { height: 48px; } }

/* HERO SPLIT : texte à gauche sur blanc, photo nette à droite */
.hero-split::before {
  left: 42%;
  height: min(100%, 820px);
  background-position: center 30%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 32%), linear-gradient(to bottom, #000 72%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, #000 32%), linear-gradient(to bottom, #000 72%, transparent 100%);
  mask-composite: intersect;
}
.hero-split::after { background: rgba(255,255,255,0.06); }
.hero-split:not(.hero-split-grid) { text-align: left !important; }
.hero-split:not(.hero-split-grid) > div {
  max-width: 1160px !important; margin: 0 auto !important;
}
.hero-split:not(.hero-split-grid) > div > .section-label,
.hero-split:not(.hero-split-grid) > div > h1,
.hero-split:not(.hero-split-grid) > div > p,
.hero-split:not(.hero-split-grid) > div > .cta-group { max-width: 540px !important; margin-left: 0 !important; margin-right: 0 !important; }
.hero-split:not(.hero-split-grid) .cta-group { justify-content: flex-start !important; }
.hero-split:not(.hero-split-grid) h1 br { display: none; }
.hero-split:not(.hero-split-grid) h1 span { display: block; }
.hero-split .stats-bar { max-width: 1080px; margin-left: 0; background: #fff; box-shadow: 0 8px 30px rgba(26,26,46,0.08); }
@media (max-width: 900px) {
  .hero-split::before { left: 0; -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%); mask-image: linear-gradient(to bottom, #000 55%, transparent 100%); }
  .hero-split::after { background: rgba(255,255,255,0.86); }
  .hero-split:not(.hero-split-grid) > div > * { max-width: none !important; }
}
.hero-split:not(.hero-split-grid) > div > h1 { max-width: 660px !important; }

.contact-photo { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center 35%; border-radius: 12px; display: block; margin-bottom: 16px; box-shadow: 0 10px 32px rgba(26,26,46,0.10); }
.nav-links a.nav-cta, .nav-links a.nav-cta.active, .nav-overlay a.nav-cta { color: #fff; }

/* COMING SOON */
.soon-section { padding-top: 8px; padding-bottom: 48px; }
.soon-card { display: flex; align-items: center; gap: 24px; padding: 24px 28px; border-radius: 14px;
  background: linear-gradient(135deg, #1a1a2e 0%, #26325a 100%); color: #fff; }
.soon-badge { flex-shrink: 0; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  background: #4285F4; color: #fff; padding: 6px 12px; border-radius: 999px; }
.soon-body { flex: 1; }
.soon-title { font-size: 20px; font-weight: 800; letter-spacing: -0.3px; }
.soon-desc { font-size: 14px; color: rgba(255,255,255,0.75); margin: 4px 0 0; line-height: 1.6; }
.soon-card .btn-secondary { background: #fff; color: #1a1a2e; flex-shrink: 0; }
@media (max-width: 768px) { .soon-card { flex-direction: column; align-items: flex-start; } }
/* STICKY MOBILE CTA */
.sticky-cta { display: none; }
@media (max-width: 768px) {
  .sticky-cta { display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 900;
    background: #4285F4; color: #fff; text-align: center; font-weight: 700; font-size: 15px;
    padding: 14px 16px; border-radius: 10px; box-shadow: 0 8px 24px rgba(66,133,244,0.45); text-decoration: none; }
  body { padding-bottom: 76px; }
}
h1.about-name { margin: 0; }

/* ==================================================================
   2026-09-17 — REFONTE : accueil épuré, couleurs, logos clients
   ================================================================== */
:root {
  --c-ink: #12203A;
  --c-teal: #0E9F8E;
  --c-amber: #E9932B;
  --c-coral: #E8536F;
  --c-violet: #6C5CE7;
  --c-sand: #FBF8F4;
  --c-mist: #F4F7FB;
}

/* NAV : logo + wordmark à gauche, badge Google Partner à droite */
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-wordmark {
  font-size: 19px; font-weight: 900; letter-spacing: -0.4px;
  color: var(--c-ink); text-transform: none; line-height: 1;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-partner img { height: 40px; width: auto; display: block; }
@media (max-width: 1080px) { .nav-partner { display: none; } }

/* HERO ÉPURÉ */
.hero-clean { padding: 108px 40px 56px; background: #fff; }
.hero-clean-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-clean h1 {
  font-size: 58px; font-weight: 900; letter-spacing: -2px; line-height: 1.02;
  color: var(--c-ink); margin-bottom: 18px;
}
.hero-clean h1 em { font-style: normal; color: var(--color-blue); }
.hero-clean p.hero-sub { font-size: 17px; color: #4c5769; line-height: 1.6; margin-bottom: 30px; max-width: 480px; }
.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 28%;
  border-radius: 16px; display: block; box-shadow: 0 24px 60px rgba(18,32,58,0.18);
}
.hero-figure figcaption {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: rgba(255,255,255,0.94); border-radius: 10px; padding: 12px 16px;
  font-size: 12.5px; color: #4c5769; line-height: 1.45;
}
.hero-figure figcaption strong { display: block; color: var(--c-ink); font-size: 13.5px; }
@media (max-width: 900px) {
  .hero-clean { padding: 92px 20px 40px; }
  .hero-clean-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-clean h1 { font-size: 34px; letter-spacing: -1px; }
  .hero-clean p.hero-sub { font-size: 15.5px; }
}

/* BANDEAU STATS pleine largeur */
.stats-band { background: var(--c-ink); padding: 26px 40px; }
.stats-band-inner {
  max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.stats-band .sb-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.12); padding: 4px 10px; }
.stats-band .sb-item:last-child { border-right: none; }
.stats-band .sb-value { font-size: 30px; font-weight: 900; color: #fff; line-height: 1.05; }
.stats-band .sb-value.teal { color: #4ED6C1; }
.stats-band .sb-value.amber { color: #F8B95C; }
.stats-band .sb-value.coral { color: #FF8CA0; }
.stats-band .sb-label { font-size: 10.5px; color: rgba(255,255,255,0.6); margin-top: 6px; letter-spacing: 0.6px; text-transform: uppercase; }
.stats-band .sb-note { max-width: 1180px; margin: 16px auto 0; text-align: center; font-size: 10.5px; color: rgba(255,255,255,0.35); }
@media (max-width: 768px) {
  .stats-band { padding: 22px 20px; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .stats-band .sb-item:nth-child(2) { border-right: none; }
  .stats-band .sb-value { font-size: 24px; }
}

/* CERTIFICATIONS */
.cert-section { background: var(--c-sand); padding: 44px 40px; }
.cert-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: center; }
.cert-badge img { height: 62px; width: auto; display: block; }
.cert-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cert-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #ece5da; border-radius: 999px;
  padding: 9px 16px; font-size: 12.5px; font-weight: 600; color: var(--c-ink);
}
.cert-chip svg { flex-shrink: 0; }
@media (max-width: 768px) { .cert-section { padding: 32px 20px; } .cert-chip { font-size: 11.5px; padding: 8px 13px; } }

/* PARTENAIRES : bandeau de logos défilants */
.logo-band { padding: 46px 0 52px; background: #fff; overflow: hidden; }
.logo-band-head { text-align: center; margin-bottom: 26px; padding: 0 20px; }
.logo-band-head .section-label { color: var(--c-teal); }
.logo-band-head .band-title { font-size: 22px; font-weight: 800; color: var(--c-ink); letter-spacing: -0.4px; }
.logo-marquee { position: relative; }
.logo-marquee::before, .logo-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.logo-marquee::before { left: 0; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%); }
.logo-marquee::after { right: 0; background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%); }
.logo-track { display: flex; gap: 18px; width: max-content; animation: logo-scroll 42s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-tile {
  flex: 0 0 auto; width: 210px; height: 118px;
  background: #fff; border: 1px solid #e9edf4; border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(18,32,58,0.05);
}
.logo-tile img { max-width: 140px; max-height: 46px; width: auto; height: auto; object-fit: contain; display: block; }
.logo-tile span { font-size: 10.5px; font-weight: 600; color: #8a93a4; letter-spacing: 0.3px; text-align: center; }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }
@media (max-width: 768px) {
  .logo-tile { width: 164px; height: 104px; }
  .logo-tile img { max-width: 112px; max-height: 38px; }
}

/* SERVICES : deux cartes, une ligne */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.offer-card {
  border: 1px solid #e6ebf3; border-radius: 14px; padding: 30px;
  background: #fff; transition: box-shadow 0.2s, transform 0.2s;
}
.offer-card:hover { box-shadow: 0 16px 40px rgba(18,32,58,0.10); transform: translateY(-2px); }
.icon-tile {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.icon-tile.blue { background: #e8f0fe; }
.icon-tile.violet { background: #eeecfe; }
.icon-tile.teal { background: #e4f6f3; }
.icon-tile.amber { background: #fdf1e2; }
.icon-tile.coral { background: #fdeaee; }
.offer-title { font-size: 20px; font-weight: 800; color: var(--c-ink); margin-bottom: 6px; }
.offer-line { font-size: 14px; color: #5b6577; margin-bottom: 18px; }
.offer-link { font-size: 13px; font-weight: 700; color: var(--color-blue); text-decoration: none; }
.offer-link:hover { text-decoration: underline; }
@media (max-width: 768px) { .offer-grid { grid-template-columns: 1fr; } }

/* SECTIONS TEINTÉES */
.section-sand { background: var(--c-sand); }
.section-mist { background: var(--c-mist); }
.section-wrap { padding: 66px 40px; }
.section-wrap > .section-inner { max-width: 1180px; margin: 0 auto; }
@media (max-width: 768px) { .section-wrap { padding: 44px 20px; } }

/* ÉTAPES COLORÉES */
.step-num.teal { background: var(--c-teal); }
.step-num.amber { background: var(--c-amber); }
.step-num.coral { background: var(--c-coral); }

/* CORRECTIFS MOBILE REFONTE */
html { overflow-x: hidden; }
.cert-badge img { height: 78px; }
@media (max-width: 768px) {
  .nav-right .nav-cta { display: none; }
  .nav-right { gap: 10px; }
  .cert-badge img { height: 62px; }
  .hero-clean-grid, .stats-band-inner, .section-inner { max-width: 100%; }
  .cta-group { width: 100%; }
}
@media (max-width: 420px) {
  .nav-right .lang-switch a { padding: 4px 6px; font-size: 10px; }
}

/* accroche : le bénéfice en gras reste lisible */
.hero-clean p.hero-sub strong { color: var(--c-ink); font-weight: 800; }
