/*==========================
  COMPONENTS - Sections spécifiques
==========================*/

/*==========================
  HERO SECTION
==========================*/
.hero-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #fef3c7 100%);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding-block: 0;
  z-index: var(--z-base);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%232563eb" opacity="0.1"/></svg>');
  background-size: 30px 30px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  justify-items: center;
  padding-block: clamp(2.5rem, 4vw, 4rem);
}

.hero-text {
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  white-space: nowrap;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gradient-primary);
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tighter);
  margin-bottom: var(--space-3);
}

.hero-title .highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.12em;
  background: var(--gradient-primary);
  opacity: 0.3;
  z-index: -1;
}

.hero-subtitle {
  font-size: var(--fs-lg);
  line-height: var(--lh-normal);
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: var(--fw-semibold);
}

.hero-points {
  display: grid;
  gap: var(--space-2);
  margin: 0 0 var(--space-4);
  padding: 0;
  list-style: none;
  color: var(--text-secondary);
  font-size: var(--fs-sm);
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  justify-content: center;
}

.hero-points i {
  color: var(--color-success);
  margin-top: 0.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  justify-content: center;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.hero-proof-list span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.35rem 0.6rem;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
}

.hero-proof-rating i {
  color: #fbbf24;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.stat {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-3);
  text-align: center;
  transition: all var(--transition-base);
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-value {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-1);
  white-space: nowrap;
}

.stat--support .stat-value {
  font-size: var(--fs-2xl);
}


.stat-label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

.hero-media-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-xl);
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-media-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--color-primary), transparent);
  opacity: 0;
  animation: rotate 4s linear infinite;
  transition: opacity var(--transition-base);
}

.hero-media-card:hover::before {
  opacity: 0.05;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.hero-media-card > * {
  position: relative;
  z-index: 1;
}

.hero-logo {
  max-width: 220px;
  margin: 0 auto var(--space-3);
  filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.2));
}

.hero-media-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

.hero-services h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  text-align: left;
}

.hero-service-list {
  display: grid;
  gap: var(--space-2);
  padding: 0;
  margin: 0 0 var(--space-4);
  list-style: none;
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  text-align: left;
}

.hero-service-list li strong {
  color: var(--text-primary);
}

.hero-service-note {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
}

.hero-services .hero-stats {
  margin-top: var(--space-5);
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: var(--space-4);
}

.hero-services .hero-proof-list {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.hero-services .hero-proof-list span {
  justify-content: center;
  text-align: center;
}

.hero-services .stat {
  padding: var(--space-5);
  min-height: 132px;
}

.hero-services .stat-value {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
}

.hero-services .stat-label {
  font-size: var(--fs-base);
  line-height: var(--lh-snug);
}

.stat--support .stat-value {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  white-space: nowrap;
}

/* Trust bar sous hero */
.trust-bar {
  padding: var(--space-6) 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: var(--z-base);
  margin-top: var(--space-8);
}

.trust-bar-title {
  display: block;
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-4);
}

.trust-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.trust-track {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  width: max-content;
  animation: trust-marquee 40s linear infinite;
}

.trust-marquee::before,
.trust-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 1;
}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  white-space: nowrap;
}

.trust-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-secondary);
}

.trust-logo {
  height: 48px;
  width: auto;
  opacity: 1;
  filter: none;
  transition: transform var(--transition-base);
}

.trust-logo:hover {
  transform: translateY(-2px);
}

.trust-logo--wide {
  height: 36px;
}

.trust-logo--tall {
  height: 56px;
}

@keyframes trust-marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/*==========================
  MÉTHODE SECTION
==========================*/
.method-section {
  background: var(--bg-page);
  position: relative;
  z-index: var(--z-base);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.method-step {
  display: grid;
  gap: var(--space-4);
  position: relative;
}

.method-step::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  width: calc(100% + var(--space-6));
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  opacity: 0.2;
  pointer-events: none;
}

.method-step:nth-child(2n)::before {
  display: none;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  color: var(--text-inverse);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-primary);
  transition: all var(--transition-base);
}

.method-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: var(--shadow-primary-lg);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.step-quote {
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  padding-left: var(--space-3);
  border-left: 3px solid var(--color-primary);
}

.step-description {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-3);
}

.step-duration {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

/*==========================
  ÉTUDES DE CAS
==========================*/
.case-studies-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
  position: relative;
  z-index: var(--z-base);
}

.case-studies {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.case-study {
  display: grid;
  gap: var(--space-4);
  position: relative;
  overflow: hidden;
}

.case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  transition: height var(--transition-slow);
}

.case-study:hover::before {
  height: 100%;
}

.case-header {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.case-icon {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-xl);
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  display: grid;
  place-items: center;
  padding: var(--space-3);
  transition: all var(--transition-base);
}

.case-study:hover .case-icon {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.case-icon .icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.case-tag {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.case-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--text-primary);
  margin-bottom: 0;
}

.case-content {
  display: grid;
  gap: var(--space-4);
}

.case-intro {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

.case-results {
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.case-summary {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin: var(--space-4) 0;
}

.case-results li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

.case-results li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--color-success-bg);
  color: var(--color-success);
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--bg-page);
  border-radius: var(--radius-lg);
}

.case-metric {
  text-align: center;
}

.case-metric-value {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-1);
}

.case-metric-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.btn-en-savoir-plus {
  background: var(--color-primary);
  color: var(--text-inverse);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: var(--fw-semibold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--transition-base);
}

.btn-en-savoir-plus:hover {
  background: var(--color-primary-dark);
  transform: translateX(4px);
}

.btn-en-savoir-plus::after {
  content: '→';
  font-size: 1.25rem;
}

/*==========================
  OUTILS SECTION
==========================*/
.tools-section {
  background: var(--bg-page);
  position: relative;
  z-index: var(--z-base);
}

.tools-content {
  display: grid;
  gap: var(--space-6);
}

.tools-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.tools-track {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  width: max-content;
  animation: tools-marquee 35s linear infinite;
}

.tool-card {
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
  gap: var(--space-2);
  text-align: center;
  transition: transform var(--transition-base);
  min-width: 96px;
}

.tool-card:hover {
  transform: translateY(-4px);
}

.tool-card .icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base);
}

.tool-card:hover .icon {
  transform: scale(1.05);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.tool-card span {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xs);
  color: var(--text-primary);
}

@keyframes tools-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .tools-track {
    animation-duration: 45s;
  }
}

.tool-badge {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
  background: var(--color-warning-bg);
  color: var(--color-warning);
  border-radius: var(--radius-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.tools-description {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

/*==========================
  CTA FINAL
==========================*/
.conclusion-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #fef3c7 100%);
  position: relative;
  z-index: var(--z-base);
}

.cta-card {
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: clamp(3rem, 6vw, 4rem);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
  pointer-events: none;
}

.cta-card .section-title {
  text-align: left;
  margin-bottom: var(--space-3);
}

.cta-card .section-title::after {
  margin: var(--space-3) 0 0 0;
}

.conclusion-text {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

.cta-benefits {
  list-style: none;
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.cta-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-primary);
  font-weight: var(--fw-medium);
}

.cta-benefits li::before {
  content: '✓';
  width: 28px;
  height: 28px;
  background: var(--color-success-bg);
  color: var(--color-success);
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.cta-urgency {
  background: var(--color-warning-bg);
  color: var(--color-warning);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-align: center;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.cta-guarantee {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.cta-guarantee i {
  color: var(--color-success);
  font-size: 1.25rem;
}

/*==========================
  FOOTER
==========================*/
.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-300);
  border-top: 1px solid var(--border-subtle);
  padding-block: var(--space-12) var(--space-6);
  position: relative;
  z-index: var(--z-base);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-brand {
  display: grid;
  gap: var(--space-4);
  justify-items: center;
}

.logo-small {
  height: 96px;
  width: auto;
}

.footer-brand p {
  color: var(--color-gray-400);
  line-height: var(--lh-relaxed);
  max-width: 400px;
  margin-inline: auto;
  text-align: center;
}

.footer-links,
.footer-social {
  display: grid;
  gap: var(--space-3);
  align-content: start;
}

.footer-links h4,
.footer-social h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: var(--color-gray-400);
  font-size: var(--fs-sm);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-primary-light);
}

.footer-social {
  grid-auto-flow: row;
  gap: var(--space-3);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-gray-400);
  font-size: var(--fs-sm);
  transition: all var(--transition-base);
}

.social-icon {
  width: 32px;
  height: 32px;
  background: var(--color-gray-800);
  border: 1px solid var(--color-gray-700);
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  color: var(--color-gray-300);
  transition: inherit;
}

.social-icon-x svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-link:hover {
  color: var(--color-primary-light);
  transform: translateY(-2px);
}

.social-link:hover .social-icon {
  background: var(--color-primary);
  color: var(--text-inverse);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-gray-700);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
}

.footer-bottom a {
  color: var(--color-primary-light);
  font-weight: var(--fw-medium);
  transition: color var(--transition-base);
}

.footer-bottom a:hover {
  color: var(--color-secondary);
}

/*==========================
  RESPONSIVE
==========================*/
@media (max-width: 1024px) {
  .hero-grid,
  .cards-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero-eyebrow {
    white-space: normal;
  }

  .hero-proof-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .case-header {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .cards-grid {
    gap: var(--space-4);
  }

  .method-step::before {
    display: none;
  }

  .cta-card {
    padding: var(--space-6);
  }
}

/*==========================
  RESPONSIVE HARDENING
==========================*/
.case-icon {
  width: clamp(112px, 22vw, 200px);
  height: clamp(112px, 22vw, 200px);
}

.case-title {
  overflow-wrap: anywhere;
}

.hero-services .hero-proof-list {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.hero-services .hero-stats {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

@media (max-width: 992px) {
  .trust-track {
    gap: var(--space-8);
    animation-duration: 50s;
  }

  .cta-card::before {
    width: 420px;
    height: 420px;
    right: -30%;
  }
}

@media (max-width: 768px) {
  .hero-actions .btn,
  .cta-buttons .btn {
    width: 100%;
    max-width: none;
  }

  .hero-services .hero-proof-list {
    grid-template-columns: 1fr;
  }

  .hero-services .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-services .stat {
    min-height: auto;
    padding: var(--space-4);
  }

  .trust-track {
    gap: var(--space-6);
  }

  .trust-name {
    font-size: var(--fs-xs);
  }

  .tool-card {
    min-width: 86px;
  }

  .cta-card .section-title {
    text-align: center;
  }

  .cta-card .section-title::after {
    margin: var(--space-3) auto 0;
  }
}

@media (max-width: 480px) {
  .case-icon {
    width: 96px;
    height: 96px;
    padding: var(--space-2);
  }

  .trust-marquee::before,
  .trust-marquee::after {
    width: 32px;
  }

  .tools-track {
    gap: var(--space-4);
  }

  .tool-card .icon {
    width: 48px;
    height: 48px;
    padding: 8px;
  }

  .cta-guarantee {
    flex-direction: column;
    text-align: center;
  }
}
