/* ========================================================================== 
   Foliocontrol Landing CSS
   ========================================================================== */

:root {
  --fc-bg: #f8fafc;
  --fc-white: #ffffff;
  --fc-text: #0f172a;
  --fc-muted: #64748b;
  --fc-border: #e2e8f0;
  --fc-primary: #1d4ed8;
  --fc-primary-dark: #1e40af;
  --fc-radius: 18px;
  --fc-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

/* BASE */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: var(--fc-text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER LANDING */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fc-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo-img {
  height: 30px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  display: inline-flex;
  align-items: center;

  padding: 10px 16px;

  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 12px;

  background: rgba(255,255,255,0.7);

  font-size: 14px;
  font-weight: 600;

  color: #0f172a;

  transition: all .2s ease;
}

.nav-link:hover {
  background: white;
  border-color: rgba(15,23,42,0.14);
}



.nav-link {
  font-size: 14px;
  color: var(--fc-muted);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-link:hover {
  color: var(--fc-text);
  background: var(--fc-bg);
}

.btn-link {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

/* SECTIONS */

.section {
  padding: 88px 0;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--fc-text);
  margin: 0 0 20px;
}

.section-intro,
.section p {
  color: var(--fc-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.eyebrow {
  color: var(--fc-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

/* HERO */

.hero {
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at top right, rgba(29, 78, 216, 0.12), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}



.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fc-text);
  margin: 0 0 24px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--fc-muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-mockup {
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.10);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--fc-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--fc-primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #ffffff;
  color: var(--fc-text);
  border: 1px solid var(--fc-border);
}

.btn-secondary:hover {
  border-color: var(--fc-primary);
  color: var(--fc-primary);
  transform: translateY(-1px);
}

/* CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.card {
  background: var(--fc-white);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.card h3 {
  color: var(--fc-text);
  font-size: 1.2rem;
  margin: 0 0 12px;
}

.card p {
  margin: 0;
}

/* GRID */

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* BACKGROUNDS */

.problem,
.how-it-works,
.benefits,
.faq {
  background: var(--fc-bg);
}

.solution,
.features,
.pricing {
  background: #ffffff;
}

/* STEPS */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.step {
  background: #ffffff;
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius);
  padding: 26px;
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: rgba(29, 78, 216, 0.1);
  color: var(--fc-primary);
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 18px;
}

.step h3 {
  margin: 0 0 10px;
  color: var(--fc-text);
}

.step p {
  margin: 0;
}

/* FEATURES */

.features .cards {
  grid-template-columns: repeat(3, 1fr);
}

/* BENEFITS */

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  color: var(--fc-text);
  font-weight: 600;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  background: rgba(29, 78, 216, 0.1);
  color: var(--fc-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* PRICING */

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--fc-border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.pricing-card.featured {
  border-color: var(--fc-primary);
  box-shadow: var(--fc-shadow);
  transform: translateY(-8px);
}

.plan-label {
  color: var(--fc-primary);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--fc-text);
  margin: 0 0 12px;
}

.price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--fc-text);
  margin: 0 0 22px;
}

.pricing-card ul {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.pricing-card li {
  color: var(--fc-muted);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--fc-primary);
  font-weight: 800;
}

.pricing-note {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.95rem;
}

/* FAQ */

.faq-list {
  max-width: 820px;
  margin-top: 34px;
}

.faq details {
  background: #ffffff;
  border: 1px solid var(--fc-border);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--fc-text);
}

.faq details p {
  margin: 14px 0 0;
}

/* FINAL CTA */

.final-cta {
  padding: 90px 0;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(29, 78, 216, 0.18), transparent 40%),
    #0f172a;
  color: #ffffff;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0 0 18px;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 32px;
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.7;
}


@media (max-width: 560px) {
  .hero {
    padding: 80px 0 64px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .card,
  .step,
  .pricing-card {
    padding: 24px;
  }
}


/* ========================================================================== 
   Legacy landing blocks still used by the current page
   ========================================================================== */

/* HERO layout with mockup image */
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-title {
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 14px 0;
  color: var(--fc-text);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.hero-note {
  font-size: 13px;
  color: var(--fc-muted);
  margin: 0;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-placeholder {
  width: 100%;
  min-height: 240px;
  border: 1px solid var(--fc-border);
  background: var(--fc-bg);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--fc-muted);
  font-size: 14px;
}

.hero-mockup {
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.hero--glow {
  position: relative;
  overflow: hidden;
}

.hero--glow::before {
  content: "";
  position: absolute;
  inset: -200px -200px auto -200px;
  height: 520px;
  background: radial-gradient(closest-side,
    rgba(29,78,216,.18),
    rgba(29,78,216,.06),
    rgba(255,255,255,0)
  );
  filter: blur(10px);
  pointer-events: none;
}

.hero--glow::after {
  content: "";
  position: absolute;
  right: -240px;
  top: -220px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle,
    rgba(29,78,216,.14),
    rgba(255,255,255,0) 60%
  );
  pointer-events: none;
}

.hero--glow > .container,
.hero--glow .hero-inner,
.hero--glow .hero-content,
.hero--glow .hero-visual {
  position: relative;
  z-index: 1;
}

/* Premium dark highlight section */
.highlight {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #0f172a, #1e293b);
  color: #ffffff;
  overflow: hidden;
}

.highlight::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29,78,216,0.25), transparent 70%);
  filter: blur(40px);
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.20), transparent 70%);
  filter: blur(40px);
}

.highlight-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.highlight-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #ffffff;
}

.highlight-text {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 40px;
  line-height: 1.7;
}

.highlight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.highlight-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(6px);
}

.highlight-card-title {
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.highlight-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .hero-title {
    font-size: 36px;
  }

  .highlight-cards {
    grid-template-columns: 1fr;
  }
}
/* ===== Highlight section upgrade ===== */

.highlight-inner {
  max-width: 920px; 
}

.highlight-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.highlight-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto 48px;
}

/* Cards */

.highlight-cards {
  margin-top: 10px;
  gap: 22px;
}

.highlight-card {
  padding: 24px;
  border-radius: 18px;
}

.highlight-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Micro interaction (important) */

.highlight-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
/* ===== SaaS Pricing ===== */

.pricing-saas {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(29, 78, 216, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.pricing-header {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.pricing-header p:not(.eyebrow) {
  margin: 0 auto;
  color: var(--fc-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.pricing-saas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-saas-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--fc-border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.pricing-saas-card.featured {
  border-color: rgba(29, 78, 216, 0.45);
  box-shadow: 0 26px 70px rgba(29, 78, 216, 0.16);
  transform: translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.10);
  color: var(--fc-primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.pricing-card-top {
  min-height: 128px;
}

.plan-label {
  margin: 0 0 10px;
  color: var(--fc-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-saas-card h3 {
  margin: 0 0 10px;
  color: var(--fc-text);
  font-size: 1.45rem;
}

.plan-desc {
  margin: 0;
  color: var(--fc-muted);
  line-height: 1.6;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 24px;
}

.plan-price span {
  color: var(--fc-text);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.plan-price small {
  color: var(--fc-muted);
  font-weight: 700;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.plan-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 13px;
  color: var(--fc-muted);
  line-height: 1.5;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--fc-primary);
  font-weight: 900;
}

.btn-full {
  width: 100%;
}

.pricing-disclaimer {
  max-width: 760px;
  margin: 30px auto 0;
  text-align: center;
  color: var(--fc-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pricing-saas-grid {
    grid-template-columns: 1fr;
  }

  .pricing-saas-card.featured {
    transform: none;
  }

  .pricing-card-top {
    min-height: auto;
  }
}

/* ===== SaaS FAQ ===== */

.faq-saas {
  background: #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 96px;
}

.faq-intro p:not(.eyebrow) {
  color: var(--fc-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: none;
  margin-top: 0;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid var(--fc-border);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 56px 22px 24px;
  color: var(--fc-text);
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fc-primary);
  font-size: 1.4rem;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--fc-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-intro {
    position: static;
  }
}
/* ==========================================================================
   Mobile fixes landing
   ========================================================================== */

@media (max-width: 760px) {
  /* HEADER */
  .site-header .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0;
  }

  .site-header .logo-img {
    height: 28px;
  }

  .site-header .nav {
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .site-header .nav-link {
    font-size: 13px;
    padding: 7px 8px;
  }

  /* SECTIONS */
  .section {
    padding: 58px 0;
  }

  .section h2 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .section-intro,
  .section p {
    font-size: 1rem;
    line-height: 1.65;
  }

  /* Problem cards */
  .problem .cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  /* Features cards */
  .features .cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .card {
    padding: 22px;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 420px) {
  .site-header .nav {
    gap: 4px;
  }

  .site-header .nav-link {
    font-size: 12px;
    padding: 6px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }
}


/* Tooltip */
.pricing-saas-card,
.plan-features {
  overflow: visible;
}

.feature-with-help {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.help-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.info-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
}

.tooltip-content {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  width: 260px;
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
  padding: 10px 12px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
  pointer-events: none;
}

.help-wrapper:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*Cas pratique*/

.use-cases-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.use-cases-section .section-heading {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 0.85rem;
  font-weight: 800;
}

.use-cases-section h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #0f172a;
  letter-spacing: -0.04em;
}

.use-cases-section .section-heading p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.use-case-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.09);
}

.use-case-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.use-case-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #1d4ed8;
  font-weight: 900;
  font-size: 0.95rem;
}

.use-case-profile {
  display: block;
  margin-bottom: 5px;
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 800;
}

.use-case-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.18rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.allocation-mini {
  display: flex;
  height: 9px;
  overflow: hidden;
  margin-bottom: 26px;
  border-radius: 999px;
  background: #e2e8f0;
}

.allocation-mini span {
  display: block;
  height: 100%;
}

.allocation-mini span:nth-child(1) {
  background: #1d4ed8;
}

.allocation-mini span:nth-child(2) {
  background: #3b82f6;
}

.allocation-mini span:nth-child(3) {
  background: #93c5fd;
}

.allocation-mini span:nth-child(4) {
  background: #dbeafe;
}

.use-case-quote {
  position: relative;
  margin-bottom: 24px;
  color: #334155;
  font-size: 1rem;
  line-height: 1.75;
}

.quote-mark {
  display: block;
  height: 36px;
  margin-bottom: 4px;
  color: rgba(37, 99, 235, 0.28);
  font-size: 4.4rem;
  font-family: Georgia, serif;
  font-weight: 700;
  line-height: 0.8;
}

.use-case-points {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.use-case-points span {
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 700;
}

.use-case-points span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 900;
}

@media (max-width: 1050px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .use-case-card {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .use-cases-section {
    padding: 72px 0;
  }

  .use-case-card {
    padding: 24px;
    border-radius: 24px;
  }

  .use-case-top {
    align-items: flex-start;
  }
}