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

  :root {
    --bg: #f5f4f0;
    --white: #ffffff;
    --black: #111111;
    --orange: #e85d25;
    --orange-light: #f97316;
    --gray-100: #f9f8f5;
    --gray-200: #eeece6;
    --gray-400: #999890;
    --gray-600: #555450;
    --border: #e0ddd5;
    --shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  }


  body {
    font-family: 'DM Sans', sans-serif;
    /* background: var(--bg); */
    background: white;
    min-height: 100vh;
    color: var(--black);
  }

  /* ---- TOP BANNER ---- */
  .banner {
    background: var(--orange);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0.01em;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
  }
  .banner strong { font-weight: 600; }
  .banner a { color: white; text-decoration: none; font-weight: 600; margin-left: 4px; }
  .banner a:hover { text-decoration: underline; }
  .banner a::after { content: ' →'; }



/* Compense la hauteur de la nav pour le contenu en dessous */
body {
  padding-top: 60px;
}


  /* ---- HERO ---- */
  .hero {
    max-width: 780px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
  }
  .hero h1 {
    font-size: clamp(30px, 4vw, 38px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    width: 100%;
  }
  .hero p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 32px;
  }
  .hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .hero-btns .btn-primary {
    background: var(--black); color: white;
    border: none; padding: 12px 28px;
    border-radius: 50px; font-size: 14px; font-weight: 600;
    cursor: pointer; font-family: inherit;
    transition: opacity 0.15s;
  }
  .hero-btns .btn-primary:hover { opacity: 0.85; }
  .hero-btns .btn-secondary {
    background: white; color: var(--black);
    border: 1.5px solid var(--border); padding: 12px 28px;
    border-radius: 50px; font-size: 14px; font-weight: 600;
    cursor: pointer; font-family: inherit;
    transition: border-color 0.15s;
  }
  .hero-btns .btn-secondary:hover { border-color: var(--black); }

  /* overlay */
  #overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 50;
    background: transparent;
  }
  #overlay.open { display: block; }

  /* App screenshot mockup */
  .app-mockup {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 40px;
  }
  .mockup-window {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    overflow: hidden;
  }
  .mockup-topbar {
    background: var(--gray-100);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-r { background: #ff5f57; }
  .dot-y { background: #febc2e; }
  .dot-g { background: #28c840; }

  .mockup-sidebar {
    width: 180px;
    background: var(--gray-100);
    border-right: 1px solid var(--border);
    padding: 16px;
    float: left;
    height: 280px;
    font-size: 12.5px;
  }
  .mockup-sidebar .brand {
    font-weight: 700;
    font-size: 13.5px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 6px;
  }
  .sidebar-section { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.07em; margin: 12px 0 6px; }
  .sidebar-item {
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 2px;
    color: var(--gray-600);
    font-size: 12px;
    display: flex; align-items: center; gap: 6px;
  }
  .sidebar-item.active { background: var(--gray-200); color: var(--black); font-weight: 500; }

  .mockup-content {
    margin-left: 180px;
    padding: 20px;
    height: 280px;
    overflow: hidden;
  }
  .metric-row {
    display: flex; gap: 12px; margin-bottom: 16px;
  }
  .metric-card {
    background: var(--gray-100);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    flex: 1;
  }
  .metric-label { font-size: 11px; color: var(--gray-400); margin-bottom: 4px; }
  .metric-value { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
  .metric-delta { font-size: 11px; color: #16a34a; margin-top: 2px; }

  .bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-top: 16px; }
  .bar { flex: 1; background: var(--orange); border-radius: 4px 4px 0 0; opacity: 0.85; transition: opacity 0.15s; }
  .bar:hover { opacity: 1; }

  footer {
    align-items: center;
    width: 100%;
    background: #111110;
    color: #ffffff;
    padding: 56px 80px 32px;
  }

  .footer-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
   }

  /* ---- TOP SECTION ---- */
  .footer-top {
    display: flex;
    gap: 80px;
    margin-bottom: 48px;
  }

  /* Brand column */
  .footer-brand {
    min-width: 220px;
    max-width: 260px;
  }

  .brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    margin-bottom: 18px;
  }

  .brand-logo svg {
    width: 22px; height: 22px;
  }

  .brand-address {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  /* Toggle Human / Machine */
  .toggle-pill {
    display: inline-flex;
    background: #1e1e1c;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 3px;
    gap: 2px;
  }

  .toggle-pill button {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    color: #666;
    background: transparent;
  }

  .toggle-pill button.active {
    background: #2a2a28;
    color: white;
  }

  /* Nav columns */
  .footer-nav {
    display: flex;
    gap: 60px;
    flex: 1;
  }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
  }

  .footer-col ul li a {
    font-size: 13px;
    color: #777;
    text-decoration: none;
    transition: color 0.15s;
    line-height: 1;
  }

  .footer-col ul li a:hover { color: white; }

  /* ---- DIVIDER ---- */
  .footer-divider {
    height: 1px;
    background: #222;
    margin-bottom: 28px;
  }

  /* ---- BOTTOM SECTION ---- */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-legal {
    max-width: 680px;
  }

  .footer-legal .copyright {
    font-size: 12.5px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
  }

  .footer-legal .disclaimer {
    font-size: 11px;
    color: #3a3a38;
    line-height: 1.6;
    margin-top: 10px;
  }

  /* Social icons */
  .footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }

  .social-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #1e1e1c;
    border: 1px solid #2a2a28;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    color: #666;
    text-decoration: none;
  }

  .social-icon:hover {
    background: #2a2a28;
    border-color: #444;
    color: white;
  }

  .social-icon svg {
    width: 14px; height: 14px;
    fill: currentColor;
  }

  /* ---- POLICY LINKS ---- */
  .footer-policy {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .footer-policy a {
    font-size: 12px;
    color: #444;
    text-decoration: none;
    transition: color 0.15s;
  }

  .footer-policy a:hover { color: #888; }

  /* --- FAQ SECTION --- */
  .faq-section {
  
  padding: 80px 20px 80px;
  max-width: 780px;
  margin: 0 auto;
}

.faq-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 52px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.faq-title span {
  color: #999;
  font-weight: 400;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid #e8e6e0;
}

.faq-item:last-child {
  border-bottom: 1px solid #e8e6e0;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.15s;
}

.faq-q:hover { color: #555; }

.faq-chevron {
  width: 18px;
  height: 18px;
  stroke: #999;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-a p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* --- CTA SECTION --- */
.cta-section {
  background: #f5f3ee;
  padding: 100px 20px;
  text-align: center;
}

.cta-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #111;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-title span {
  color: #e85d25;
}

.cta-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #888;
  margin-bottom: 36px;
  line-height: 1.6;
}

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

.btn-cta-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  background: none;
  border: 1.5px solid #c8956a;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}

.btn-cta-primary svg {
  width: 16px; height: 16px;
  transition: transform 0.2s;
}

.btn-cta-primary:hover {
  background: #111;
  color: white;
  border-color: #111;
}

.btn-cta-primary:hover svg { transform: translateX(3px); }

.btn-cta-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  background: white;
  border: 1.5px solid #e0ddd5;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.btn-cta-secondary:hover { border-color: #111; }


/* --- 1000 + --- */
/* --- BRANDS --- */
.brands-section {
  background: #ffffff;
  padding: 56px 40px 60px;
  text-align: center;
  border-bottom: 1px solid #eeece6;
}

.brands-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: #999;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.brands-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.brand-logo {
  font-family: 'DM Sans', sans-serif;
  color: #aaa;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: default;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-logo:hover { color: #555; }

.brand-heights {
  font-size: 15px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.brand-lottie {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
}

.brand-lottie .dot {
  color: #e85d25;
  font-size: 14px;
}

.brand-kit {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
}

.brand-revlon {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.brand-fi {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
  font-style: italic;
}

.brand-momentum {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  gap: 6px;
}

.brand-glenmuir {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  gap: 5px;
}

.brand-glenmuir em {
  font-style: normal;
  font-weight: 300;
  font-size: 11px;
  color: #bbb;
}

/* --- ANALYZER --- */
.analyzer-section {
  background: #f5f3ee;
  background-image: radial-gradient(circle, #ccc8be 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 100px 20px 110px;
  text-align: center;
}

.analyzer-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  color: #1a1a18;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Rotating word slot */
.rotating-wrapper {
  display: inline-block;
  position: relative;
  min-width: 205px;
  height: 1.2em;
  vertical-align: middle;
  overflow: hidden;
}

.rotating-word {
  position: absolute;
  left: 0; right: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  color: #e85d25;
  font-style: italic;
}

.rotating-word.active {
  opacity: 1;
  transform: translateY(0);
}

.rotating-word.exit {
  opacity: 0;
  transform: translateY(-20px);
}

/* Form */
.analyzer-form {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 1.5px solid #e0ddd5;
  border-radius: 50px;
  padding: 5px 5px 5px 20px;
  gap: 8px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.analyzer-form:focus-within {
  border-color: #e85d25;
  box-shadow: 0 2px 16px rgba(232, 93, 37, 0.12);
}

.analyzer-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #111;
  background: transparent;
  min-width: 0;
}

.analyzer-input::placeholder { color: #bbb; }

.analyzer-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: #c95c2a;
  border: none;
  padding: 11px 22px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.analyzer-btn:hover {
  background: #b04e22;
  transform: scale(1.02);
}

.analyzer-btn:active { transform: scale(0.98); }

.analyzer-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: #aaa;
  margin-top: 14px;
}


/* --- CASE STUDY How Momentum  --- */
.casestudy-section {
  padding: 0 0 0 0;
  background-image: radial-gradient(circle, #ccc8be 1px, transparent 1px);
  border-top: 1px solid #e8e5de;
  border-bottom: 1px solid #e8e5de;
}

.casestudy-card {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 52px 40px;
  gap: 40px;
}

.casestudy-content {
  flex: 1;
  max-width: 420px;
}

.casestudy-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  display: block;
  margin-bottom: 14px;
}

.casestudy-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.casestudy-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 28px;
}

.casestudy-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-case {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #c95c2a;
  border: 1.5px solid #c95c2a;
  background: transparent;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-case:hover {
  background: #c95c2a;
  color: white;
}

.case-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.case-dot {
  width: 20px;
  height: 6px;
  border-radius: 3px;
  background: #ddd;
  transition: background 0.2s;
  cursor: pointer;
}

.case-dot.active {
  background: #c95c2a;
  width: 24px;
}

/* Visual */
.casestudy-visual {
  flex-shrink: 0;
  width: 180px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.momentum-logo svg {
  width: 160px;
  height: 140px;
  filter: drop-shadow(0 12px 32px rgba(6,182,212,0.25));
}

/* --- INTEGRATIONS Connect Your Entire Stack --- */
.integrations-section {
  /* background: #f5f3ee; */
  /* background-image: radial-gradient(circle, #ccc8be 1px, transparent 1px); */
  background-size: 28px 28px;
  border-top: 1px solid #e8e5de;
}

.integrations-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.integ-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.05em;
}

.integ-tag-right {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.03em;
}

.integrations-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 40px 72px;
  text-align: center;
}

.integ-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(17px, 2.5vw, 22px);
  color: #888;
  line-height: 1.55;
  margin-bottom: 32px;
  font-weight: 400;
}

.integ-title strong {
  color: #111;
  font-weight: 700;
}

.btn-integ {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #c95c2a;
  border: 1.5px solid #c8956a;
  background: transparent;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 48px;
  transition: background 0.2s, color 0.2s;
}

.btn-integ:hover {
  background: #c95c2a;
  color: white;
  border-color: #c95c2a;
}

/* Integration icons row */
.integ-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.integ-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: white;
  border: 1px solid #e8e5de;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.integ-icon svg {
  width: 26px;
  height: 26px;
}

.integ-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-color: #d0cdc6;
}

/* --- OPTIMIZE SECTION See how your site  --- */
.optimize-section {
  background: #f5f3ee;
  background-image: radial-gradient(circle, #ccc8be 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid #e8e5de;
}

.optimize-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #d8d5ce;
  padding-bottom: 20px;
}

.opt-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.05em;
}

.opt-tag-right {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.03em;
}

/* Hero text */
.optimize-hero {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px 52px;
}

.optimize-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 18px;
}

.optimize-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #999;
  line-height: 1.65;
  margin-bottom: 32px;
}

.btn-grade {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #c95c2a;
  border: 1.5px solid #c8956a;
  background: transparent;
  padding: 11px 26px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn-grade:hover {
  background: #c95c2a;
  color: white;
  border-color: #c95c2a;
}

/* Table wrapper */
.optimize-table-wrap {
  max-width: 760px;
  margin: 0 auto 0;
  padding: 0 40px 60px;
  overflow-x: auto;
}

.optimize-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e5de;
  font-family: 'DM Sans', sans-serif;
}

.optimize-table thead tr {
  background: #faf9f6;
  border-bottom: 1px solid #e8e5de;
}

.optimize-table th {
  font-size: 11px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 14px;
  text-align: left;
  white-space: nowrap;
}

.col-check { width: 36px; }
.col-url { width: auto; }
.col-score { width: 80px; text-align: center; }
.col-action { width: 80px; text-align: center; }

.optimize-table tbody tr {
  border-bottom: 1px solid #f0ede6;
  transition: background 0.13s;
}

.optimize-table tbody tr:last-child { border-bottom: none; }
.optimize-table tbody tr:hover { background: #faf9f6; }

.optimize-table td {
  padding: 14px 14px;
  vertical-align: middle;
  font-size: 13px;
}

.optimize-table td:nth-child(3),
.optimize-table td:nth-child(4),
.optimize-table td:nth-child(5),
.optimize-table td:nth-child(6) {
  text-align: center;
}

.optimize-table td:last-child { text-align: center; }

/* Checkbox */
.optimize-table input[type="checkbox"] {
  width: 14px; height: 14px;
  accent-color: #c95c2a;
  cursor: pointer;
}

/* URL cell */
.url-cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.page-title {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-url {
  font-size: 11px;
  color: #bbb;
  font-family: 'DM Mono', monospace;
}

.tag-homepage {
  font-size: 10px;
  font-weight: 500;
  background: #f0ede6;
  color: #888;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

.badge-red {
  background: #fee2e2;
  color: #dc2626;
}

.badge-green-soft {
  background: #dcfce7;
  color: #16a34a;
}

.badge-yellow-soft {
  background: #fef9c3;
  color: #ca8a04;
}

.badge-outline-green {
  background: transparent;
  border: 1.5px solid #16a34a;
  color: #16a34a;
}

.badge-outline-orange {
  background: transparent;
  border: 1.5px solid #ea580c;
  color: #ea580c;
}

/* Run button */
.btn-run {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #888;
  background: #f0ede6;
  border: 1px solid #e0ddd5;
  padding: 6px 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn-run:hover {
  background: #c95c2a;
  color: white;
  border-color: #c95c2a;
}


/* --- CREATE SECTION Build your own prompts 2 --- */
.create-section {
  /* background: #f5f3ee;
  background-image: radial-gradient(circle, #ccc8be 1px, transparent 1px); */
  background-size: 28px 28px;
  border-top: 1px solid #e8e5de;
  overflow: hidden;
}

.create-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #d8d5ce;
}

.create-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.05em;
}

.create-tag-right {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.03em;
}

/* Hero */
.create-hero {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px 48px;
}

.create-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(20px, 3vw, 20px);
  font-weight: 400;
  color: #999;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.create-title strong {
  color: #111;
  font-weight: 700;
}

.btn-create {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #c95c2a;
  border: 1.5px solid #c8956a;
  background: transparent;
  padding: 11px 26px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn-create:hover {
  background: #c95c2a;
  color: white;
  border-color: #c95c2a;
}

/* Mockup layout */
.create-mockup {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px 70px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}

/* Left */
.mockup-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}

.mockup-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  background: white;
  border: 1px solid #e0ddd5;
  padding: 7px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.pill:hover { border-color: #c95c2a; color: #c95c2a; }
.pill-icon { font-size: 13px; }

/* Blob decorative */
.blob-area {
  height: 60px;
  overflow: hidden;
  opacity: 0.7;
  margin: 4px 0;
}

.blob { width: 100%; }

/* Prompt card */
.prompt-card {
  background: white;
  border: 1px solid #e0ddd5;
  border-radius: 14px;
  padding: 18px 16px 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.prompt-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 14px;
  min-height: 40px;
}

.prompt-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.prompt-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #888;
  background: #f5f3ee;
  border: 1px solid #e8e5de;
  padding: 6px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s;
}

.prompt-btn:hover { background: #ebe8e0; }

.prompt-submit {
  margin-left: auto;
  width: 30px; height: 30px;
  background: #e8e5de;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.prompt-submit:hover {
  background: #c95c2a;
  color: white;
}

/* Right: article card */
.mockup-right {
  width: 280px;
  flex-shrink: 0;
  background: white;
  border: 1px solid #e0ddd5;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  font-family: 'DM Sans', sans-serif;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s;
}

/* Fade bottom */
.mockup-right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, white);
  pointer-events: none;
}

.article-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.35;
}

.article-body {
  font-size: 11.5px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 14px;
}

.article-subtitle {
  font-size: 12px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.article-faded { color: #ccc; }

.article-list {
  list-style: none;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.article-list li {
  font-size: 11.5px;
  color: #666;
  padding-left: 12px;
  position: relative;
  line-height: 1.5;
}

.article-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #aaa;
}

.article-link {
  color: #c95c2a;
  text-decoration: underline;
  cursor: pointer;
}

/* --- MONITOR SECTION 1 See how your site performs  --- */
.monitor-section {
  background: #ffffff;
  border-top: 1px solid #e8e5de;
  overflow: hidden;
}

.monitor-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #d8d5ce;
}

.mon-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.05em;
}

.mon-tag-right {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.03em;
}

/* Hero */
.monitor-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 40px 40px;
}

.monitor-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(19px, 2.8vw, 18px);
  font-weight: 400;
  color: #aaa;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.monitor-title strong {
  color: #111;
  font-weight: 700;
}

/* Cards */
.monitor-cards {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mon-card {
  background: #faf9f6;
  border: 1px solid #e8e5de;
  border-radius: 14px;
  overflow: hidden;
}

.mon-card-wide { flex: 1; padding: 28px 24px 20px; }
.mon-card-narrow { width: 220px; flex-shrink: 0; padding: 16px 0; }

.mon-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.mon-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
}

/* Chart */
.chart-area { position: relative; }

.chart-legend {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}

.legend-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.leg-dot {
  width: 20px; height: 2px;
  border-radius: 1px;
  display: inline-block;
}

.chart-wrap {
  position: relative;
}

.line-chart {
  width: 100%;
  height: auto;
  display: block;
}

/* Tooltip */
.chart-tooltip {
  position: absolute;
  top: 30px;
  left: 54%;
  background: white;
  border: 1px solid #e8e5de;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  font-family: 'DM Sans', sans-serif;
  min-width: 190px;
  pointer-events: none;
}

.tooltip-date {
  font-size: 10px;
  color: #aaa;
  margin-bottom: 8px;
  font-weight: 500;
}

.tooltip-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tooltip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tooltip-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #111;
  flex: 1;
}

.tooltip-val {
  font-size: 12px;
  font-weight: 700;
  color: #111;
}

.tooltip-sub {
  font-size: 10px;
  color: #bbb;
  margin-left: 14px;
  margin-top: 2px;
}

.tooltip-footer {
  font-size: 9.5px;
  color: #ccc;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #f0ede6;
}

/* Link */
.mon-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: #c95c2a;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
  transition: opacity 0.15s;
}

.mon-link:hover { opacity: 0.7; }

/* Keywords list */
.keywords-list {
  display: flex;
  flex-direction: column;
}

.kw-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  border-bottom: 1px solid #f0ede6;
  gap: 8px;
  transition: background 0.13s;
  cursor: pointer;
}

.kw-row:last-child { border-bottom: none; }
.kw-row:hover { background: #f5f3ee; }

.kw-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}

.kw-loc {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  color: #999;
  white-space: nowrap;
}

.kw-faded .kw-text,
.kw-faded .kw-loc { color: #ccc; }

@media (max-width: 700px) {
  .monitor-cards { flex-direction: column; }
  .mon-card-narrow { width: 100%; }
  .chart-tooltip { display: none; }
}

/* --- TESTIMONIAL entre section 1 et 2 SECTION 1 What our customers say --- */

.testimonial-section {
  background: #f5f3ee;
  border-top: 1px solid #e8e5de;
  border-bottom: 1px solid #e8e5de;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

/* Portraits */
.portrait {
  flex-shrink: 0;
  width: 200px;
  opacity: 0.85;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.portrait svg {
  width: 100%;
  height: auto;
}

.portrait-left { align-self: flex-end; }
.portrait-right { align-self: flex-end; }

/* Content */
.testimonial-content {
  flex: 1;
  max-width: 520px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Brand pill */
.testimonial-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.switch-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #aaa;
  background: white;
  border: 1px solid #e8e5de;
  border-radius: 50px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.switch-from {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #888;
  font-weight: 500;
}

/* Quote */
.testimonial-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.65;
  font-style: normal;
  border: none;
  padding: 0;
  margin: 0;
}

/* Author */
.testimonial-author {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #666;
}

.testimonial-author strong {
  color: #111;
  font-weight: 700;
}

/* Features bar */
.testimonial-features {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #e8e5de;
  flex-wrap: wrap;
}

.feat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #bbb;
  white-space: nowrap;
}

.feat-divider {
  width: 1px;
  height: 14px;
  background: #e0ddd5;
}

.feat-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}

.feat-sep {
  color: #ddd;
  font-size: 12px;
}

/* First page  */

.dashboard-section {
  font-family: 'DM Sans', sans-serif;
  background: #f5f3ee;
  background-image: radial-gradient(circle, #ccc8be 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid #e8e5de;
}

/* Tabs */
.dash-tabs {
  display: flex;
  background: white;
  border-bottom: 1px solid #e8e5de;
  max-width: 760px;
  margin: 0 auto;
}
.dash-tab {
  flex: 1; text-align: center; padding: 14px 0;
  font-size: 13px; font-weight: 500; color: #aaa;
  cursor: pointer; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  user-select: none;
}
.dash-tab:hover { color: #555; }
.dash-tab.active { color: #111; border-bottom-color: #111; font-weight: 600; }

/* Body */
.dash-body {
  max-width: 760px; margin: 0 auto;
  display: flex; background: white;
  border: 1px solid #e8e5de; border-top: none;
  min-height: 520px; position: relative;
}

/* Sidebar */
.dash-sidebar {
  width: 160px; flex-shrink: 0;
  border-right: 1px solid #f0ede6;
  padding: 14px 0; background: #faf9f6;
}
.sidebar-brand {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px 14px;
  border-bottom: 1px solid #f0ede6; margin-bottom: 8px; cursor: pointer;
}
.brand-avatar { font-size: 14px; }
.brand-name { font-size: 12.5px; font-weight: 600; color: #111; flex: 1; }
.sidebar-label {
  font-size: 9.5px; font-weight: 700; color: #ccc;
  text-transform: uppercase; letter-spacing: .07em; padding: 10px 14px 4px;
}
.sidebar-group { margin-bottom: 2px; }
.sidebar-item {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 14px; font-size: 12px; color: #888;
  cursor: pointer; transition: background .12s, color .12s;
}
.sidebar-item:hover { background: #f0ede6; color: #333; }
.sidebar-item.active { background: #ebe8e0; color: #111; font-weight: 600; }
.si-icon { font-size: 12px; width: 16px; text-align: center; }

/* Tab panels */
.tab-panel { display: none; flex: 1; padding: 14px 16px; min-width: 0; flex-direction: column; }
.tab-panel.active { display: flex; }

/* Filters */
.dash-filters { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.filter-btn {
  font-family: 'DM Sans', sans-serif; font-size: 11.5px; font-weight: 500;
  color: #555; background: white; border: 1px solid #e0ddd5;
  padding: 6px 12px; border-radius: 50px; cursor: pointer; white-space: nowrap;
  transition: border-color .15s;
}
.filter-btn:hover { border-color: #aaa; }
.filter-right { margin-left: auto; }

/* Grid */
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash-card {
  background: white; border: 1px solid #e8e5de;
  border-radius: 10px; padding: 14px; overflow: hidden;
}
.card-title { font-size: 13px; font-weight: 700; color: #111; margin-bottom: 2px; }
.card-sub { font-size: 10.5px; color: #bbb; line-height: 1.4; }
.card-metric {
  font-size: 20px; font-weight: 700; color: #111;
  margin: 10px 0 10px; display: flex; align-items: baseline; gap: 8px; letter-spacing: -.02em;
}
.delta { font-size: 11px; font-weight: 500; }
.green { color: #16a34a; } .red { color: #dc2626; }
.mini-chart { width: 100%; height: auto; display: block; }

/* Rank table */
.rank-table { width: 100%; border-collapse: collapse; font-size: 11px; margin-top: 4px; }
.rank-table th {
  font-size: 9px; font-weight: 600; color: #ccc;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 5px 3px; text-align: left; border-bottom: 1px solid #f0ede6;
}
.rank-table td { padding: 7px 3px; color: #555; border-bottom: 1px solid #f9f8f5; vertical-align: middle; }
.rank-table tbody tr:last-child td { border-bottom: none; }
.rank-table tbody tr:hover { background: #faf9f6; }
.rank-highlight td { color: #111; font-weight: 500; }
.brand-cell { display: flex; align-items: center; gap: 5px; font-weight: 500; color: #111; }
.brand-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.you-badge { font-size: 8.5px; font-weight: 600; background: #f0f9ff; color: #0369a1; padding: 1px 4px; border-radius: 3px; border: 1px solid #bae6fd; }

/* Badges */
.badge { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; font-size: 11px; font-weight: 600; }
.badge-red { background: #fee2e2; color: #dc2626; }
.badge-green-soft { background: #dcfce7; color: #16a34a; }
.badge-yellow-soft { background: #fef9c3; color: #ca8a04; }
.badge-outline-green { background: transparent; border: 1.5px solid #16a34a; color: #16a34a; }
.badge-outline-orange { background: transparent; border: 1.5px solid #ea580c; color: #ea580c; }
.btn-run {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500;
  color: #888; background: #f0ede6; border: 1px solid #e0ddd5;
  padding: 5px 12px; border-radius: 50px; cursor: pointer; transition: background .15s, color .15s;
}
.btn-run:hover { background: #c95c2a; color: white; border-color: #c95c2a; }

/* ---- AGENT TAB ---- */
.agent-layout { display: flex; gap: 14px; flex: 1; }
.agent-chat { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.chat-bubble.user {
  align-self: flex-end; background: #f5f3ee; border: 1px solid #e8e5de;
  border-radius: 14px 14px 2px 14px; padding: 12px 16px;
  font-size: 12.5px; color: #333; max-width: 80%; line-height: 1.5;
}
.agent-steps { display: flex; flex-direction: column; gap: 4px; }
.agent-step { font-size: 11.5px; color: #16a34a; display: flex; align-items: center; gap: 6px; }
.agent-step.done::before { content: '✓'; font-weight: 700; }
.chat-response { font-size: 12.5px; color: #333; line-height: 1.65; display: flex; flex-direction: column; gap: 10px; }
.chat-response p { margin: 0; }
.chat-input-wrap { margin-top: auto; }
.chat-input-box {
  background: white; border: 1px solid #e0ddd5; border-radius: 12px;
  padding: 10px 12px; display: flex; flex-direction: column; gap: 8px;
}
.chat-input {
  border: none; outline: none; font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: #111; background: transparent; width: 100%;
}
.chat-input::placeholder { color: #ccc; }
.chat-input-actions { display: flex; gap: 6px; align-items: center; }
.chat-action-btn {
  font-size: 13px; background: #f5f3ee; border: 1px solid #e8e5de;
  border-radius: 50px; padding: 4px 10px; cursor: pointer; color: #888;
  transition: background .15s;
}
.chat-action-btn:hover { background: #ebe8e0; }
.chat-send {
  margin-left: auto; width: 28px; height: 28px; background: #e8e5de;
  border: none; border-radius: 50%; font-size: 13px; color: #888;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.chat-send:hover { background: #c95c2a; color: white; }

/* Analysis panel */
.agent-analysis {
  width: 200px; flex-shrink: 0; border-left: 1px solid #f0ede6;
  padding: 0 0 0 12px; display: flex; flex-direction: column; gap: 8px;
}
.analysis-title { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #ccc; margin-top: 2px; }
.analysis-tabs { display: flex; gap: 6px; }
.analysis-tab {
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 50px;
  cursor: pointer; color: #888; border: 1px solid transparent; transition: all .15s;
}
.analysis-tab.active { background: #c95c2a; color: white; }
.analysis-block { display: flex; flex-direction: column; gap: 6px; }
.analysis-block-header { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ab-title { font-size: 12px; font-weight: 700; color: #111; }
.ab-meta { font-size: 9.5px; color: #bbb; }
.ab-collapse { font-size: 10px; color: #888; background: white; border: 1px solid #e0ddd5; border-radius: 4px; padding: 2px 7px; cursor: pointer; margin-left: auto; }
.analysis-sub {
  font-size: 11.5px; font-weight: 600; color: #555; padding: 6px 0;
  border-bottom: 1px solid #f0ede6; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
}
.analysis-sub.open::after { content: '∧'; color: #bbb; font-size: 10px; }
.analysis-sub:not(.open)::after { content: '∨'; color: #bbb; font-size: 10px; }
.analysis-chart { width: 100%; height: auto; display: block; margin: 6px 0; }
.analysis-table { width: 100%; border-collapse: collapse; font-size: 10.5px; }
.analysis-table th { font-size: 9px; color: #bbb; text-transform: uppercase; letter-spacing: .04em; padding: 4px 2px; text-align: left; border-bottom: 1px solid #f0ede6; }
.analysis-table td { padding: 5px 2px; color: #555; border-bottom: 1px solid #faf9f6; }

/* ---- CONTENT TAB ---- */
.content-panel { flex: 1; padding: 40px 60px; display: flex; flex-direction: column; gap: 14px; }
.content-title { font-size: 20px; font-weight: 700; color: #111; }
.content-sub { font-size: 13px; color: #aaa; }
.content-section-title { font-size: 14px; font-weight: 700; color: #111; margin-top: 8px; }
.content-cards { display: flex; flex-direction: column; gap: 8px; }
.content-card {
  background: white; border: 1px solid #e0ddd5; border-radius: 10px;
  padding: 16px 18px; cursor: pointer; transition: border-color .15s, background .15s;
}
.content-card:hover { border-color: #10b981; }
.content-card.selected { background: #f0fdf4; border-color: #10b981; }
.cc-title { font-size: 13.5px; font-weight: 600; color: #111; margin-bottom: 4px; }
.content-card.selected .cc-title { color: #059669; }
.cc-sub { font-size: 12px; color: #aaa; }
.content-card.selected .cc-sub { color: #6ee7b7; }

/* ---- AUDIT TAB ---- */
.audit-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; gap: 10px;
}
.audit-brand-info { display: flex; align-items: center; gap: 8px; }
.audit-avatar { font-size: 16px; }
.audit-domain { font-size: 13px; font-weight: 600; color: #111; }
.audit-dr { font-size: 11px; color: #888; background: #f0ede6; border: 1px solid #e0ddd5; padding: 2px 8px; border-radius: 4px; }
.audit-layout { display: flex; gap: 16px; margin-bottom: 16px; }
.audit-chart-area { flex: 1; }
.audit-legend { display: flex; gap: 14px; margin: 6px 0 10px; }
.audit-leg { font-size: 10.5px; color: #888; display: flex; align-items: center; gap: 5px; }
.leg-sq { width: 8px; height: 8px; border-radius: 2px; }
.audit-chart { width: 100%; height: auto; display: block; }
.audit-scores { display: flex; flex-direction: column; gap: 14px; width: 130px; flex-shrink: 0; justify-content: center; }
.score-block { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.score-label { font-size: 11px; font-weight: 600; color: #555; display: flex; align-items: center; gap: 5px; }
.score-circle { position: relative; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
.score-circle svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.score-circle span { font-size: 13px; font-weight: 700; color: #111; position: relative; z-index: 1; }

/* Audit table bar */
.audit-table-area { flex: 1; }
.audit-table-bar { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; }
.audit-search-wrap {
  flex: 1; display: flex; align-items: center; gap: 6px;
  background: white; border: 1px solid #e0ddd5; border-radius: 8px; padding: 7px 12px;
}
.audit-search-icon { font-size: 12px; color: #bbb; }
.audit-search { border: none; outline: none; font-family: 'DM Sans', sans-serif; font-size: 12px; color: #333; background: transparent; flex: 1; }
.audit-search::placeholder { color: #ccc; }
.audit-search-clear { font-size: 11px; color: #ccc; cursor: pointer; }
.btn-sitemap {
  font-family: 'DM Sans', sans-serif; font-size: 11.5px; font-weight: 500;
  color: #555; background: white; border: 1px solid #e0ddd5;
  padding: 7px 14px; border-radius: 8px; cursor: pointer; white-space: nowrap;
  transition: border-color .15s;
}
.btn-sitemap:hover { border-color: #aaa; }
.btn-audit-run {
  font-family: 'DM Sans', sans-serif; font-size: 11.5px; font-weight: 600;
  color: white; background: #c95c2a; border: none;
  padding: 7px 14px; border-radius: 8px; cursor: pointer; white-space: nowrap;
  transition: background .15s;
}
.btn-audit-run:hover { background: #b04e22; }
.audit-table { border-collapse: collapse; font-size: 11.5px; background: white; border: 1px solid #e8e5de; border-radius: 5px;}
.audit-table thead tr { background: #faf9f6; border-bottom: 1px solid #e8e5de; }
.audit-table th { font-size: 10px; font-weight: 600; color: #aaa; text-transform: uppercase; letter-spacing: .05em; padding: 10px 10px; text-align: left; white-space: nowrap; }
.audit-table td { padding: 12px 10px; color: #555; border-bottom: 1px solid #f0ede6; vertical-align: middle; }
.audit-table tbody tr:last-child td { border-bottom: none; }
.audit-table tbody tr:hover { background: #faf9f6; }
.page-title { font-size: 12px; font-weight: 500; color: #111; display: flex; align-items: center; gap: 6px; }
.page-url { font-size: 10.5px; color: #bbb; }
.url-cell { display: flex; flex-direction: column; gap: 2px; }
.tag-homepage { font-size: 9.5px; font-weight: 500; background: #f0ede6; color: #888; padding: 1px 6px; border-radius: 4px; }

/*  Section price*/
.pricing-section {
  background: #f5f3ee;
  background-size: 28px 28px;
  padding: 40px 20px 60px;
  font-family: 'DM Sans', sans-serif;
}

/* Toggle */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.toggle-label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  cursor: pointer;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-track {
  position: absolute;
  inset: 0;
  background: #ddd;
  border-radius: 50px;
  transition: background 0.25s;
}

.toggle-track::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-track { background: #c95c2a; }
.toggle-switch input:checked + .toggle-track::before { transform: translateX(18px); }

/* Cards */
.pricing-cards {
  display: flex;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto 40px;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border: 1px solid #e8e5de;
  border-radius: 14px;
  padding: 34px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s;
  min-width: 0;
}

.pricing-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.pricing-card-featured {
  border: 1.5px solid #c95c2a;
  box-shadow: 0 4px 24px rgba(201,92,42,0.12);
}

.plan-name {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin-bottom: 12px;
}

.plan-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.plan-price {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}

.plan-price-custom {
  font-size: 32px;
}

.currency {
  font-size: 20px;
  font-weight: 600;
  margin-top: 6px;
  color: #111;
}

.amount {
  transition: all 0.3s ease;
}

.save-badge {
  font-size: 10.5px;
  font-weight: 700;
  background: #fee2e2;
  color: #dc2626;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.plan-billing {
  font-size: 11px;
  color: #bbb;
  margin-bottom: 14px;
  transition: all 0.2s;
}

.plan-icons {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.plan-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
}

.plan-icon svg { width: 100%; height: 100%; }

.plan-tagline {
  font-size: 12px;
  color: #999;
  margin-bottom: 16px;
  line-height: 1.4;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
}

.plan-features li {
  font-size: 12px;
  color: #555;
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-size: 11px;
  font-weight: 700;
}

.info-tip {
  color: #bbb;
  font-size: 11px;
  cursor: help;
}

/* Buttons */
.btn-plan {
  width: 100%;
  padding: 11px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: auto;
}

.btn-outline {
  background: white;
  color: #111;
  border: 1.5px solid #e0ddd5;
}
.btn-outline:hover { border-color: #111; }

.btn-featured {
  background: #c95c2a;
  color: white;
  border: none;
}
.btn-featured:hover { background: #b04e22; }

/* Comparison table */
.compare-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border: 1px solid #e8e5de;
  border-radius: 14px;
  overflow: hidden;
}

.compare-header {
  display: flex;
  border-bottom: 1px solid #f0ede6;
}

.compare-feature-col {
  width: 180px;
  flex-shrink: 0;
  padding: 20px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-right: 1px solid #f0ede6;
  display: flex;
  align-items: flex-end;
}

.compare-plan-col {
  flex: 1;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid #f0ede6;
}

.compare-plan-col:last-child { border-right: none; }
.compare-plan-featured { background: #fff9f7; }

.compare-plan-name {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
}

.popular-badge {
  font-size: 9.5px;
  font-weight: 700;
  background: #fef3c7;
  color: #92400e;
  padding: 2px 7px;
  border-radius: 20px;
}

.compare-plan-price {
  font-size: 13px;
  color: #888;
  transition: all 0.3s;
}

.btn-compare {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.btn-outline-sm { background: white; color: #111; border: 1.5px solid #e0ddd5; }
.btn-outline-sm:hover { border-color: #111; }
.btn-featured-sm { background: #c95c2a; color: white; border: none; }
.btn-featured-sm:hover { background: #b04e22; }

@media (max-width: 750px) {
  .pricing-cards { flex-direction: column; }
  .compare-header { flex-wrap: wrap; }
  .compare-feature-col { width: 100%; }
}

/* ---- Sections Contact  ---- */
.contact-section {
  background: #ffffff;
  border-top: 1px solid #e8e5de;
  font-family: 'DM Sans', sans-serif;
}

.contact-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #d8d5ce;
}

.contact-tag {
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.05em;
}

.contact-tag-right {
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.03em;
}

.contact-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 40px 60px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* Info */
.contact-info { flex: 1; }

.contact-title {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.contact-desc {
  font-size: 13px;
  color: #888;
  margin-bottom: 28px;
  line-height: 1.5;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ci-icon {
  width: 18px;
  height: 18px;
  color: #bbb;
  flex-shrink: 0;
  margin-top: 2px;
}

.ci-icon svg {
  width: 100%;
  height: 100%;
}

.ci-label {
  font-size: 12px;
  font-weight: 600;
  color: #111;
  margin-bottom: 3px;
}

.ci-value {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}

.ci-value a {
  color: #888;
  text-decoration: none;
  transition: color 0.15s;
}
.ci-value a:hover { color: #c95c2a; }

.contact-directions {
  font-size: 12.5px;
  font-weight: 500;
  color: #c95c2a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.15s;
}

.contact-directions svg { width: 13px; height: 13px; }
.contact-directions:hover { opacity: 0.7; }

/* Map */
.contact-map {
  width: 340px;
  flex-shrink: 0;
  border: 1px solid #e8e5de;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.map-tooltip {
  background: white;
  padding: 12px 14px 8px;
  border-bottom: 1px solid #f0ede6;
}

.map-tooltip-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.map-pin-icon { font-size: 16px; flex-shrink: 0; }

.map-tooltip-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #111;
}

.map-tooltip-sub {
  font-size: 10.5px;
  color: #888;
}

.map-directions-btn {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: #1a73e8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.map-directions-btn:hover { opacity: 0.7; }
.map-directions-btn svg { stroke: #1a73e8; }

.map-view-larger {
  font-size: 10.5px;
  color: #1a73e8;
  text-decoration: none;
  display: inline-block;
  margin-left: 24px;
  transition: opacity 0.15s;
}
.map-view-larger:hover { opacity: 0.7; }

.map-svg-wrap {
  background: #e8e0d0;
  cursor: pointer;
}

.map-svg-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.2s;
}

.map-svg-wrap:hover svg { filter: brightness(0.96); }

/* --- READY CTA --- */
.ready-section {
  background: #c95c2a;
  padding: 90px 20px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}

.ready-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.ready-sub {
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-ready-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: #111;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-ready-primary:hover { background: #333; }

.btn-ready-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  background: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-ready-secondary:hover { opacity: 0.85; }

@media (max-width: 700px) {
  .contact-body { flex-direction: column; }
  .contact-map { width: 100%; }
}


/* ---- Part message send  ---- */
.form-section {
  background: #f5f3ee;
  border-top: 1px solid #e8e5de;
  font-family: 'DM Sans', sans-serif;
}

.form-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #d8d5ce;
}

.form-tag {
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.05em;
}

.form-tag-right {
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.03em;
}

.form-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 40px 72px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Pitch */
.form-pitch { width: 240px; flex-shrink: 0; }

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.form-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 32px;
}

.form-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fc-icon {
  font-size: 18px;
  width: 36px; height: 36px;
  background: white;
  border: 1px solid #e8e5de;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-label {
  font-size: 12px;
  font-weight: 600;
  color: #111;
  margin-bottom: 2px;
}

.fc-val {
  font-size: 12px;
  color: #999;
}

/* Form card */
.form-card {
  flex: 1;
  background: white;
  border: 1px solid #e8e5de;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

/* Form elements */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  position: relative;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.01em;
}

.form-input,
.form-select,
.form-textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: #111;
  background: #faf9f6;
  border: 1.5px solid #e8e5de;
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder { color: #ccc; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #c95c2a;
  background: white;
  box-shadow: 0 0 0 3px rgba(201, 92, 42, 0.08);
}

.form-input:valid:not(:placeholder-shown) {
  border-color: #10b981;
}

/* Select */
.select-wrap { position: relative; }

.form-select {
  appearance: none;
  cursor: pointer;
  padding-right: 36px;
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: #bbb;
  pointer-events: none;
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

.char-count {
  font-size: 10.5px;
  color: #ccc;
  text-align: right;
  margin-top: 2px;
  display: block;
}

/* Footer */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-privacy {
  font-size: 11px;
  color: #bbb;
  line-height: 1.4;
}

.form-privacy a { color: #c95c2a; text-decoration: none; }
.form-privacy a:hover { text-decoration: underline; }

.btn-submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: #c95c2a;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit svg {
  width: 16px; height: 16px;
  transition: transform 0.2s;
}

.btn-submit:hover {
  background: #b04e22;
}

.btn-submit:hover svg { transform: translateX(3px); }
.btn-submit:active { transform: scale(0.98); }

/* Loading state */
.btn-submit.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  gap: 12px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-success.visible { display: flex; }

.success-icon {
  width: 56px; height: 56px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #16a34a;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-success h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.form-success p {
  font-size: 13.5px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

.btn-reset {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #c95c2a;
  background: none;
  border: 1.5px solid #c8956a;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}

.btn-reset:hover { background: #c95c2a; color: white; border-color: #c95c2a; }

@media (max-width: 700px) {
  .form-body { flex-direction: column; gap: 32px; }
  .form-pitch { width: 100%; }
  .form-row { flex-direction: column; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .btn-submit { width: 100%; justify-content: center; }
}


/* ---- Section About  ---- */

/* ===== SHARED ===== */
.about-hero, .about-story, .about-mission, .about-leadership {
  font-family: 'DM Sans', sans-serif;
}

.about-section-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #d8d5ce;
}

.as-tag {
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.05em;
}

.as-tag-right {
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.03em;
}

/* ===== HERO ===== */
.about-hero {
  background-size: 28px 28px;
  padding: 60px 40px 48px;
}

.about-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 52px;
}

.about-hero-left { flex: 1; }

.about-hero-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #111;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.about-hero-sub {
  color: #bbb;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.about-hero-desc {
  font-size: 13.5px;
  color: #888;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px;
}

.about-hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #c95c2a;
  border: 1.5px solid #c8956a;
  background: transparent;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, color 0.2s;
}

.btn-hero-primary svg { width: 15px; height: 15px; transition: transform 0.2s; }
.btn-hero-primary:hover { background: #c95c2a; color: white; border-color: #c95c2a; }
.btn-hero-primary:hover svg { transform: translateX(3px); }

.btn-hero-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #111;
  background: white;
  border: 1.5px solid #e0ddd5;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-hero-secondary:hover { border-color: #111; }

/* Hero visual */
.about-hero-visual {
  width: 220px;
  flex-shrink: 0;
  opacity: 0.85;
}
.about-hero-visual svg { width: 100%; height: auto; }

/* Rating + logos */
.about-hero-bottom {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid #e8e5de;
  flex-wrap: wrap;
}

.about-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.rating-score {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.rating-stars {
  font-size: 12px;
  color: #f59e0b;
  letter-spacing: 1px;
}

.about-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.abl {
  font-size: 14px;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: default;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.abl:hover { color: #666; }
.abl.lottie { font-size: 17px; font-weight: 400; text-transform: none; letter-spacing: -0.01em; }
.abl.kit { font-size: 19px; font-weight: 800; text-transform: none; letter-spacing: -0.02em; }
.abl.momentum { font-size: 12px; font-weight: 400; letter-spacing: 0.02em; text-transform: none; }
.abl.fi { font-size: 22px; font-weight: 700; font-style: italic; text-transform: none; }

/* ===== STORY ===== */
.about-story {
  background: #f5f3ee;
  background-image: radial-gradient(circle, #ccc8be 1px, transparent 1px);
  border-top: 1px solid #e8e5de;
}

.about-story-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 40px 60px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.story-left { flex: 1; }
.story-right { flex: 1; }

.story-question {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.story-right p {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 14px;
}
.story-right p:last-child { margin-bottom: 0; }

/* ===== MISSION ===== */
.about-mission {
  background-image: radial-gradient(circle, #ccc8be 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid #e8e5de;
}

.about-mission-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 40px 60px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.mission-left, .mission-right { flex: 1; }

.mission-title {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.mission-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13.5px;
  color: #555;
  line-height: 1.7;
  border-left: 3px solid #e8e5de;
  padding-left: 16px;
  margin: 0 0 18px 0;
}

.mission-text {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 14px;
}
.mission-text:last-child { margin-bottom: 0; }

/* ===== LEADERSHIP ===== */
.about-leadership {
  background: #f5f3ee;
  background-image: radial-gradient(circle, #ccc8be 1px, transparent 1px);
  border-top: 1px solid #e8e5de;
}

.leadership-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 40px 68px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.leader-left { width: 180px; flex-shrink: 0; }

.leader-name {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.leader-role {
  font-size: 12.5px;
  font-weight: 600;
  color: #c95c2a;
  margin-bottom: 14px;
}

.leader-linkedin {
  font-size: 12px;
  font-weight: 500;
  color: #888;
  text-decoration: none;
  transition: color 0.15s;
}
.leader-linkedin:hover { color: #c95c2a; }

.leader-right { flex: 1; }

.leader-bio {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.career-highlights {
  background: #faf9f6;
  border: 1px solid #e8e5de;
  border-radius: 12px;
  padding: 18px 20px;
}

.career-title {
  font-size: 12px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.career-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.career-list li {
  font-size: 12px;
  color: #666;
  line-height: 1.55;
  padding-left: 12px;
  position: relative;
}

.career-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #bbb;
}

.career-list li strong { color: #333; font-weight: 600; }

@media (max-width: 700px) {
  .about-hero-inner { flex-direction: column; }
  .about-hero-visual { width: 160px; align-self: center; }
  .about-story-body,
  .about-mission-body,
  .leadership-body { flex-direction: column; gap: 28px; }
  .leader-left { width: 100%; }
}

/* ---- Section Hearder contact   ---- */
.contact-hero {
  background-size: 28px 28px;
  padding: 64px 40px 48px;
  font-family: 'DM Sans', sans-serif;
  border-bottom: 1px solid #e8e5de;
}

.contact-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.ch-left { flex: 1; max-width: 500px; }

.ch-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #111;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 14px;
}

.ch-title span {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  color: #c95c2a;
}

.ch-desc {
  font-size: 13.5px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 420px;
}

.ch-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-ch-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #c95c2a;
  border: 1.5px solid #c8956a;
  background: transparent;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, color 0.2s;
}
.btn-ch-primary svg { width: 15px; height: 15px; transition: transform 0.2s; }
.btn-ch-primary:hover { background: #c95c2a; color: white; border-color: #c95c2a; }
.btn-ch-primary:hover svg { transform: translateX(3px); }

.btn-ch-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #111;
  background: white;
  border: 1.5px solid #e0ddd5;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-ch-secondary:hover { border-color: #111; }

/* Visual */
.ch-visual {
  width: 200px;
  flex-shrink: 0;
  opacity: 0.82;
}
.ch-visual svg { width: 100%; height: auto; }

/* Bottom bar */
.ch-bottom {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid #e8e5de;
  flex-wrap: wrap;
}

.ch-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.ch-score {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.ch-stars {
  font-size: 12px;
  color: #f59e0b;
  letter-spacing: 1px;
}

.ch-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.chl {
  font-size: 13px;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: default;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.chl:hover { color: #666; }
.chl.lottie { font-size: 17px; font-weight: 400; text-transform: none; letter-spacing: -0.01em; }
.chl.kit    { font-size: 20px; font-weight: 800; text-transform: none; letter-spacing: -0.02em; }
.chl.momentum { font-size: 12px; font-weight: 400; letter-spacing: 0.02em; text-transform: none; }
.chl.fi     { font-size: 22px; font-weight: 700; font-style: italic; text-transform: none; }

@media (max-width: 700px) {
  .contact-hero-inner { flex-direction: column; }
  .ch-visual { width: 140px; align-self: center; }
}


/* ---- Section Price hero  ---- */
.pricing-hero {
  background-size: 28px 28px;
  padding: 72px 40px 56px;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  border-bottom: 1px solid #e8e5de;
}

/* Title */
.ph-title-wrap {
  max-width: 700px;
  margin: 0 auto 52px;
}

.ph-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  color: #111;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.ph-highlight {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  color: #c8b8a8;
}

.ph-gray {
  color: #aaa;
  font-weight: 600;
}

/* Brands strip */
.ph-brands-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  border: 1px solid #e8e5de;
  border-radius: 16px;
  padding: 24px 36px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.ph-brands-intro {
  font-size: 12.5px;
  color: #bbb;
  margin-bottom: 22px;
  line-height: 1.5;
}

.ph-brands {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.ph-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
}

.ph-brand-item:hover .phb { color: #555; }

/* Brand logos */
.phb {
  font-size: 15px;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}

.phb.kit    { font-size: 22px; font-weight: 800; text-transform: none; letter-spacing: -0.02em; }
.phb.revlon { font-size: 15px; font-weight: 500; letter-spacing: 0.12em; }
.phb.fi     { font-size: 26px; font-weight: 700; font-style: italic; text-transform: none; letter-spacing: -0.03em; }
.phb.momentum { font-size: 13px; font-weight: 400; letter-spacing: 0.02em; text-transform: none; }
.phb.glenmuir {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  gap: 4px;
}
.phb.glenmuir em {
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  color: #ccc;
}
.phb.three03 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}
.phb.reflect {
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  gap: 5px;
}

/* Case study badge */
.case-study-badge {
  font-size: 10px;
  font-weight: 600;
  color: #c95c2a;
  background: #fff1ec;
  border: 1px solid #f4c4a8;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  animation: fadePulse 3s ease-in-out infinite;
}

@keyframes fadePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Faded last item */
.ph-brand-faded { opacity: 0.35; pointer-events: none; }

@media (max-width: 600px) {
  .ph-brands { gap: 20px; }
  .ph-brands-wrap { padding: 20px 20px 24px; }
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .dash-sidebar { display: none; }
  .dash-grid { grid-template-columns: 1fr; }
  .agent-analysis { display: none; }
  .audit-layout { flex-direction: column; }
  .audit-scores { flex-direction: row; width: 100%; }
}

@media (max-width: 700px) {
  .portrait { display: none; }
  .testimonial-content { padding: 32px 20px; }
}

/* Typing animation */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: #c95c2a;
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s infinite;
}

@media (max-width: 700px) {
  .create-mockup { flex-direction: column; }
  .mockup-right { width: 100%; }
}

@media (max-width: 900px) {
    footer { padding: 40px 24px 24px; }
    .footer-top { flex-direction: column; gap: 36px; }
    .footer-nav { flex-wrap: wrap; gap: 32px; }
    .footer-bottom { flex-direction: column; }
}

  @media (max-width: 700px) {
    nav { padding: 0 16px; }
    .dropdown { width: 94vw; left: -100px; flex-direction: column; }
    .dropdown-aside { width: 100%; }
  }


  :root {
  --border: #e0ddd5;
  --gray-200: #eeece6;
  --gray-400: #999890;
  --gray-600: #555450;
}

/* ---- NAV ---- */
nav {
  background: white;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.2s;
}

nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  display: block;
}
.nav-link:hover { background: var(--gray-200); color: #111; }

.nav-btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.15s, color 0.15s;
}
.nav-link.active { background: var(--gray-200); color: #111; }

.nav-btn-ghost:hover, .nav-btn-ghost.active { background: var(--gray-200); color: #111; }

.chevron {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
}
.nav-btn-ghost.active .chevron { transform: rotate(180deg); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-login {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: #111; background: none; border: none;
  padding: 8px 16px; border-radius: 8px; cursor: pointer;
  transition: background 0.15s;
}
.btn-login:hover { background: var(--gray-200); }

.btn-start {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: #111; background: none;
  border: 1.5px solid #111;
  padding: 8px 18px; border-radius: 50px; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-start:hover { background: #111; color: white; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.burger:hover { background: var(--gray-200); }
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- DROPDOWN (desktop) ---- */
.nav-links li { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -80px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  width: 700px;
  padding: 24px;
  display: none;
  gap: 20px;
  animation: dropIn 0.18s ease;
  z-index: 300;
}
.dropdown.open { display: flex; }

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-main { flex: 1; }
.dropdown-aside { width: 190px; flex-shrink: 0; }

.dropdown-section-title {
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #999; margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  margin-bottom: 18px;
}

.dd-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px; border-radius: 10px; cursor: pointer;
  transition: background 0.13s; text-decoration: none; color: #111;
}
.dd-item:hover { background: #f5f4f0; }
.dd-icon { width: 28px; height: 28px; background: #f0ede6; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; }
.dd-text strong { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 1px; font-family: 'DM Sans', sans-serif; }
.dd-text span { font-size: 11px; color: #999; line-height: 1.35; font-family: 'DM Sans', sans-serif; }
.dd-divider { height: 1px; background: var(--border); margin-bottom: 16px; }

.coming-soon-title { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #999; margin-bottom: 10px; font-family: 'DM Sans', sans-serif; }
.cs-card { background: #f9f8f5; border: 1px solid var(--border); border-radius: 10px; padding: 12px; margin-bottom: 8px; }
.cs-card-inner { display: flex; align-items: center; gap: 8px; }
.cs-thumb { width: 36px; height: 36px; border-radius: 8px; background: #e85d25; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.cs-card p { font-size: 11px; color: #888; line-height: 1.4; font-family: 'DM Sans', sans-serif; }
.ads-block .ads-title { font-size: 12.5px; font-weight: 600; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.ads-block p { font-size: 11px; color: #999; font-family: 'DM Sans', sans-serif; }
.badge-early { display: inline-block; background: #fef3c7; color: #92400e; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 1px 6px; border-radius: 20px; margin-left: 4px; }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 120px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  z-index: 190;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-section { margin-bottom: 8px; }

.mobile-section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #ccc; padding: 8px 4px 6px;
}

.mobile-link {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: #333; text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.13s, color 0.13s;
}
.mobile-link:hover { background: #f5f3ee; color: #111; }

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.btn-mobile-login {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: #111; background: none;
  border: 1.5px solid var(--border);
  padding: 12px; border-radius: 50px; cursor: pointer;
  transition: border-color 0.15s;
}
.btn-mobile-login:hover { border-color: #111; }

.btn-mobile-start {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  color: white; background: #111;
  border: none; padding: 12px; border-radius: 50px; cursor: pointer;
  transition: opacity 0.15s;
}
.btn-mobile-start:hover { opacity: 0.85; }

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 180;
  background: rgba(0,0,0,0.08);
  backdrop-filter: blur(1px);
}
.nav-overlay.open { display: block; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .burger { display: flex; }
  .casestudy-card { 
    flex-direction: column;
    gap: 24px;

  }
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}



/* ---- Section Product form  ---- */


  /*  SECTION 1 — LES DASHBOARDS SEO TRADITIONNELS Produit */
  .problems-section {
    max-width: 820px;
    margin: 0 auto;
    padding: 100px 40px 80px;
  }

  .problems-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.025em;
    line-height: 1.18;
    max-width: 750px;
    margin-bottom: 20px;
  }

  .problems-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 580px;
    margin-bottom: 56px;
  }

  .problems-list {
    border-top: 1px solid var(--border-light);
  }

  .problem-row {
    display: grid;
    grid-template-columns: 48px 1fr 1fr;
    gap: 0 32px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-light);
    transition: background .15s;
  }

  .problem-row:hover {
    background: #faf9f7;
    margin: 0 -40px;
    padding: 28px 40px;
  }

  .problem-num {
    font-size: 12px;
    font-weight: 500;
    color: #ccc;
    padding-top: 3px;
    font-variant-numeric: tabular-nums;
  }

  .problem-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
  }

  .problem-detail {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* SECTION 2 — QUI AI VISIBILITY TRACKER AIDE LE PLUS*/
  .audience-section {
    background-color: #f8f5f3;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 40px;
  }

  .audience-inner {
    max-width: 820px;
    margin: 0 auto;
  }

  .audience-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.025em;
    line-height: 1.2;
    margin-bottom: 12px;
    margin-left: 5%;
  }

  .audience-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 48px;
    margin-left: 4%;
  }

  .audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    margin-left: 4%;
  }

  /* Left: audience list */
  .audience-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: white;
  }

  .audience-item {
    padding: 22px 24px;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: background .15s;
  }

  .audience-item:last-child { border-bottom: none; }

  .audience-item:hover,
  .audience-item.active {
    background: #faf9f7;
  }

  .audience-item-title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
  }

  .audience-item-desc {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
  }

  /* Right: profile card */
  .audience-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    padding: 28px;
  }

  .profile-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }

  .profile-avatar-wrap {
    position: relative;
    flex-shrink: 0;
  }

  .profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8e4de;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .profile-avatar svg {
    width: 100%;
    height: 100%;
  }

  .profile-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 28px;
    height: 28px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
  }

  .profile-badge svg {
    width: 14px;
    height: 14px;
    fill: white;
  }

  .profile-info { flex: 1; }

  .profile-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
  }

  .profile-role {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px;
  }

  .btn-message {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: white;
    background: var(--orange);
    border: none;
    padding: 9px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background .2s;
  }

  .btn-message:hover { background: #b04e22; }

  .profile-actions {
    display: flex;
    gap: 10px;
    margin: 16px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
  }

  .profile-action-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .15s;
  }

  .profile-action-icon:hover { border-color: var(--text); }

  .profile-action-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .profile-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    font-size: 11px;
    color: var(--muted);
  }

  .profile-stat strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1px;
  }

  .profile-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .profile-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 50px;
  }

  .profile-company-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .profile-services-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .profile-services-label a {
    font-size: 11px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
  }

  .service-items { display: flex; flex-direction: column; gap: 10px; }

  .service-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .service-thumb {
    width: 44px;
    height: 36px;
    border-radius: 6px;
    background: var(--orange-light);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .service-thumb img,
  .service-thumb svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-text { flex: 1; }

  .service-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 2px;
  }

  .service-desc {
    font-size: 10.5px;
    color: var(--muted);
    line-height: 1.45;
  }

  /*  SECTION 3 — COMPARAISON */
  .compare-section {
    max-width: 820px;
    margin: 0 auto;
    padding: 100px 40px 80px;
  }

  .compare-title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.025em;
    margin-bottom: 48px;
  }

  .compare-table {
    width: 100%;
    border-collapse: collapse;
  }

  .compare-table thead tr th {
    padding: 0 16px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
  }

  .compare-table thead tr th:first-child {
    text-align: left;
    padding-left: 0;
    color: transparent;
  }

  .compare-table thead .th-highlight {
    color: var(--text);
    position: relative;
  }

  .compare-table thead .th-highlight::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
  }

  .compare-table tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: background .12s;
  }

  .compare-table tbody tr:hover { background: #faf9f7; }
  .compare-table tbody tr:last-child { border-bottom: none; }

  .compare-table tbody td {
    padding: 18px 16px;
    text-align: center;
    vertical-align: middle;
  }

  .compare-table tbody td:first-child {
    text-align: left;
    padding-left: 0;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
  }

  .check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .check-yes {
    background: var(--orange);
  }

  .check-yes svg {
    width: 13px;
    height: 13px;
    stroke: white;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .check-partial {
    background: #e8e5e0;
  }

  .check-partial svg {
    width: 13px;
    height: 13px;
    stroke: #aaa;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .check-no {
    font-size: 16px;
    color: #d0ccc5;
    font-weight: 300;
  }

  .badge-limited {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--muted);
    background: #f0ede8;
    border: 1px solid var(--border);
    padding: 3px 9px;
    border-radius: 50px;
    white-space: nowrap;
  }

  .compare-footnote {
    margin-top: 24px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
  }

  .tool-logo {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -.01em;
  }

  .tool-ahrefs { color: #1d4ed8; }
  .tool-semrush { color: #ff6b35; font-size: 12px; }
  .tool-profound { color: #7c3aed; font-size: 12px; }
  .tool-ours { color: var(--orange); }

  /* ── RESPONSIVE ─── */
  @media (max-width: 640px) {
    .problems-section,
    .compare-section { padding: 60px 20px; }
    .audience-section { padding: 60px 20px; }
    .problem-row { grid-template-columns: 36px 1fr; }
    .problem-detail { grid-column: 2; }
    .audience-grid { grid-template-columns: 1fr; }
  }
