/* ─────────────────────────────────────
   Taste Skill v2 — Site vitrine GS Aimé Césaire TKB
   Design Read: plaquette école — violet/magenta
   Palette extraite du document officiel fourni par l'école
   Dials: VARIANCE 5 | MOTION 4 | DENSITY 3
   ───────────────────────────────────── */

@font-face {
  font-family: "Satoshi";
  src: url("https://fonts.cdnfonts.com/s/95513/Satoshi-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("https://fonts.cdnfonts.com/s/95513/Satoshi-VariableItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi Display";
  src: url("https://fonts.cdnfonts.com/s/95513/Satoshi-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("https://fonts.cdnfonts.com/s/76395/JetBrainsMono[wght].woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}

:root {
  /* Core palette — violet profond (plaquette école) */
  --ink: #2a1a33;
  --ink-soft: #3d2c4a;
  --muted: #7a6a85;
  --muted-light: #a99cb2;
  --line: #ddd6e3;
  --line-light: #eeeaf2;
  --paper: #f7f4f8;
  --white: #ffffff;

  /* Brand primary — violet (plaquette #5B2A83) */
  --purple: #5B2A83;
  --purple-dark: #3d1a5a;
  --purple-light: #efe6f7;
  --purple-glow: rgba(91, 42, 131, 0.08);

  /* Brand secondary — magenta vif (plaquette #E6007E) */
  --magenta: #E6007E;
  --magenta-dark: #b80066;
  --magenta-light: #fce6f2;

  /* Highlight montants — rose-magenta (plaquette #D6006C) */
  --rose: #D6006C;

  /* Soft backgrounds */
  --lavender: #F7EEF5;
  --pink-row: #FBEAF2;

  /* Feedback */
  --red: #c84b3a;

  /* Geometry */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(42, 26, 51, 0.06);
  --shadow: 0 4px 16px rgba(42, 26, 51, 0.08), 0 1px 3px rgba(42, 26, 51, 0.04);
  --shadow-lg: 0 12px 40px rgba(42, 26, 51, 0.10);

  /* Typography */
  --font-sans: "Satoshi", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Satoshi Display", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 2px;
}

/* ── Skip link ── */

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 248, 0.92);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-wrap,
.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 750;
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--ink);
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.8;
}

.brand img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  padding: 3px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.brand span {
  max-width: 240px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, background 0.2s;
}

.nav-toggle:hover {
  background: var(--purple-light);
  border-color: var(--purple);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  content: "";
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-2px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.site-nav a:hover {
  color: var(--purple-dark);
  background: var(--purple-light);
}

.site-nav a[aria-current="page"] {
  color: var(--purple-dark);
  background: var(--purple-light);
  font-weight: 700;
}

/* ── Buttons ── */

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 22px;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.3;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(91, 42, 131, 0.2);
}

.btn-primary:hover {
  background: var(--purple-dark);
  box-shadow: 0 2px 8px rgba(91, 42, 131, 0.25);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink-soft);
}

.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--purple-dark);
  background: var(--purple-light);
}

/* ── Hero ── */

.hero {
  min-height: clamp(480px, 68vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(145deg, rgba(42, 26, 51, 0.65) 0%, rgba(42, 26, 51, 0.15) 70%, rgba(42, 26, 51, 0) 100%),
    var(--hero-image) center / cover no-repeat;
  color: var(--white);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--paper));
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 20px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 800px;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-lead {
  max-width: 640px;
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.stat {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}

/* ── Sections ── */

.section {
  padding: 80px 0;
}

.section-white {
  background: var(--white);
}

.section-muted {
  background: var(--lavender);
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ── Grids ── */

.grid-3,
.grid-2 {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* ── Cards ── */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card-body {
  padding: 24px;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* ── Feature cards ── */

.feature {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}

.feature:hover {
  box-shadow: var(--shadow-sm);
}

.feature p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.feature h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── Galerie ── */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow);
}

.fee-amount {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 8px;
  color: var(--rose);
}

.fee-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-actions {
  margin-top: 16px;
}

.map-actions {
  margin-top: 16px;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  pointer-events: none;
}

/* ── Lightbox ── */

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
  animation: lb-fade-in 0.2s ease;
}

@keyframes lb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  cursor: default;
  animation: lb-zoom-in 0.25s ease;
}

@keyframes lb-zoom-in {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox .lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  background: none;
  border: none;
  padding: 8px;
}

.lightbox .lightbox-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Tables ── */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.fee-table th,
.fee-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.fee-table thead {
  background: var(--purple-dark);
  color: var(--white);
}

.fee-table thead th {
  font-weight: 650;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.fee-table tbody tr:last-child td {
  border-bottom: 0;
}

.fee-table tbody tr:nth-child(even) {
  background: var(--pink-row);
}

@media (max-width: 600px) {
  .fee-table {
    font-size: 0.82rem;
  }
  .fee-table th,
  .fee-table td {
    padding: 10px 12px;
  }
}

/* ── Utilities ── */

.flag-guinea {
  height: 1.1em;
  width: auto;
  vertical-align: -0.15em;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.icon-svg {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  display: inline-block;
}

/* ── Page hero ── */

.page-hero {
  background: var(--purple-dark);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--paper));
  pointer-events: none;
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ── Split ── */

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── List ── */

.list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.list li + li {
  margin-top: 10px;
}

/* ── Steps ── */

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step::before {
  content: counter(step);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
}

.notice {
  padding: 20px;
  background: var(--purple-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ── Banner CTA ── */

.banner {
  padding: 40px 44px;
  background: var(--purple-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.banner p {
  max-width: 700px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.banner .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Contact ── */

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-item h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-item p {
  margin: 0;
  line-height: 1.55;
}

.contact-item a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--purple-dark);
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: 0;
}

/* ── Partenaires ── */

.partners {
  padding: 48px 0 0;
}

.partners-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-dark);
  margin-bottom: 28px;
}

.partners-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--line);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  min-height: 92px;
  border-right: 1px solid var(--line-light);
}

.partner-card:last-child {
  border-right: 0;
}

.partner-card {
  padding: 20px 16px;
  min-height: 100px;
}

.partner-card img {
  max-width: 100%;
  height: auto;
  max-height: 68px;
  width: auto;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.2s;
}

.partner-card img:hover {
  opacity: 1;
}

/* Ajustements individuels — harmoniser la hauteur visuelle */
.partner-card:first-child img {
  max-height: 80px;
}

.partner-card:nth-child(2) img {
  max-height: 68px;
}

.partner-card:nth-child(3) img {
  max-height: 68px;
}

.partner-card:last-child img {
  max-height: 96px;
}

.partners-footer {
  margin-top: 20px;
  padding: 14px 20px;
  background: var(--purple-dark);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 500;
}

.partners-footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

/* ── Footer ── */

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--magenta);
}

/* ── Responsive ── */

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    padding: 12px 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 80px 16px 40px;
    width: 100%;
  }

  .hero-stats {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .hero-stats,
  .grid-3,
  .grid-2,
  .split,
  .contact-panel,
  .footer-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .partner-card:last-child {
    border-bottom: 0;
  }

  .partners-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .section {
    padding: 56px 0;
  }

  .banner {
    display: block;
    padding: 28px;
  }

  .banner .actions {
    margin-top: 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .map-frame iframe {
    height: min(80vw, 320px);
  }

  .split {
    gap: 24px;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 64px;
    height: 48px;
  }

  .brand span {
    max-width: 140px;
    font-size: 0.88rem;
  }

  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .stat strong {
    font-size: 1.6rem;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-card:nth-child(2) {
    border-right: 0;
  }

  .partner-card:nth-child(1),
  .partner-card:nth-child(2) {
    border-bottom: 1px solid var(--line-light);
  }

  .partner-card:nth-child(3),
  .partner-card:nth-child(4) {
    border-bottom: 0;
  }
}

