:root {
      --blue: #006186;
      --orange: #E84E24;
      --emerald: #38B5AA;
      --fuchsia: #E5006A;
      --dark: #071C28;
      --text: #0f172a;
      --muted: #64748b;
      --light: #f8fafc;
      --border: #e2e8f0;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, Arial, sans-serif;
      color: var(--text);
      background: #fff;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }

    .nav {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand-mark {
      position: relative;
      width: 48px;
      height: 48px;
      border-radius: 18px;
      background: white;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      border: 1px solid var(--border);
    }

    .brand-mark span {
      position: absolute;
      display: block;
      border-radius: 999px;
    }

    .brand-mark .dot-orange {
      width: 15px;
      height: 15px;
      background: var(--orange);
      left: 27px;
      top: 8px;
    }

    .brand-mark .dot-emerald {
      width: 13px;
      height: 13px;
      background: var(--emerald);
      left: 12px;
      top: 27px;
    }

    .brand-mark .dot-fuchsia {
      width: 13px;
      height: 13px;
      background: var(--fuchsia);
      left: 28px;
      top: 29px;
    }

    .brand-title {
      font-weight: 950;
      line-height: 0.82;
      color: var(--blue);
      letter-spacing: -0.04em;
      font-size: 21px;
    }

    .brand-subtitle {
      margin-top: 8px;
      font-size: 9px;
      font-weight: 800;
      color: var(--muted);
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 32px;
      font-size: 14px;
      font-weight: 750;
      color: #334155;
      margin-left: auto;
    }

    .menu a:hover {
      color: var(--blue);
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-toggle {
      background: none;
      border: none;
      font-size: 14px;
      font-weight: 750;
      color: #334155;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0;
      font-family: inherit;
    }

    .nav-dropdown-toggle:hover {
      color: var(--blue);
    }

    .nav-dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
      padding: 8px;
      padding-top: 24px;
      min-width: 230px;
      z-index: 30;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      display: flex;
      flex-direction: column;
    }

    .nav-dropdown-menu a {
      padding: 10px 16px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 750;
      color: #334155;
      transition: background 0.15s ease, color 0.15s ease;
      white-space: nowrap;
    }

    .nav-dropdown-menu a:hover {
      background: var(--light);
      color: var(--blue);
    }

    .nav-actions {
      display: flex;
      gap: 12px;
    }

    .site-switcher {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .site-pill {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px 6px;
      transition: opacity 0.2s ease, transform 0.15s ease;
    }

    .site-pill img {
      height: 40px;
      width: auto;
      display: block;
    }

    .site-pill:hover {
      opacity: 0.7;
      transform: translateY(-1px);
    }
    .brand-logo {

  height: 72px;

  width: auto;

  object-fit: contain;

}

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 850;
      border: 1px solid transparent;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--blue);
      color: white;
      box-shadow: 0 16px 30px rgba(0, 97, 134, 0.2);
    }

    .btn-outline {
      background: white;
      color: var(--text);
      border-color: var(--border);
    }

    .mobile-menu {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: white;
      font-size: 22px;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      padding: 150px 0 80px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 112px;
      right: 0;
      width: 48vw;
      height: 720px;
      background: var(--light);
      border-bottom-left-radius: 140px;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: -120px;
      top: 280px;
      width: 280px;
      height: 280px;
      border-radius: 999px;
      background: rgba(56, 181, 170, 0.13);
      filter: blur(40px);
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 0.92fr;
      gap: 70px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: white;
      color: #475569;
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
      margin-bottom: 34px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--emerald);
    }

    .hero h1 {
      font-size: clamp(62px, 8vw, 128px);
      line-height: 0.88;
      letter-spacing: -0.08em;
      text-transform: uppercase;
      font-weight: 950;
    }

    .hero h1 .tennis { color: var(--orange); }
    .hero h1 .padel { color: var(--emerald); }
    .hero h1 .pickleball { color: var(--fuchsia); }

    .hero-location {
      margin-top: 30px;
      font-size: clamp(24px, 3vw, 42px);
      line-height: 1;
      color: var(--blue);
      text-transform: uppercase;
      font-weight: 950;
      letter-spacing: -0.04em;
    }

    .hero-text {
      max-width: 600px;
      margin-top: 30px;
      color: var(--muted);
      font-size: 19px;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 42px;
    }

    .hero-visual {
      position: relative;
      min-height: 620px;
    }

    .hero-arch {
      position: absolute;
      left: 80px;
      top: 0;
      width: 360px;
      height: 570px;
      border-radius: 220px 220px 28px 28px;
      background: white;
      border: 1px solid var(--border);
      box-shadow: 0 36px 80px rgba(15, 23, 42, 0.13);
    }

    .hero-player {
      position: absolute;
      left: 10px;
      top: 42px;
      width: 430px;
      height: 555px;
      object-fit: cover;
      object-position: center;
      border-radius: 220px 220px 32px 32px;
      /*filter: grayscale(1);*/
    }

    .stat-card {
      position: absolute;
      background: white;
      border: 1px solid var(--border);
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
      border-radius: 30px;
      padding: 22px;
    }

    .stat-card small {
      display: block;
      color: #94a3b8;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .stat-card strong {
      display: block;
      font-size: 42px;
      line-height: 1;
      font-weight: 950;
    }

    .stat-card.one {
      top: 110px;
      right: 0;
    }

    .stat-card.one strong { color: var(--blue); }

    .stat-card.two {
      right: 28px;
      bottom: 50px;
    }

    .stat-card.two strong { color: var(--emerald); }

    section {
      scroll-margin-top: 90px;
    }

    .section {
      padding: 110px 0;
    }

    .section-label {
      color: var(--blue);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      font-weight: 950;
      margin-bottom: 20px;
    }

    .section-title {
      max-width: 760px;
      font-size: clamp(42px, 5vw, 76px);
      line-height: 0.98;
      letter-spacing: -0.06em;
      font-weight: 950;
    }

    .sports-grid {
      margin-top: 72px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 44px;
    }

    .sport-card {
      border-top: 1px solid var(--border);
      padding-top: 34px;
    }

    .sport-icon {
      width: 60px;
      height: 60px;
      border-radius: 999px;
      border: 1px solid currentColor;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 34px;
      font-size: 25px;
    }

    .sport-card h3 {
      font-size: 38px;
      line-height: 1;
      font-weight: 950;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
    }

    .sport-card p {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
      max-width: 310px;
    }

    .arrow-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 32px;
      font-weight: 950;
    }

    .competitions, .services {
      position: relative;
      padding: 110px 0;
      background: var(--blue);
      color: white;
      overflow: hidden;
    }

    .services::before {
      content: "";
      position: absolute;
      right: -120px;
      top: -120px;
      width: 420px;
      height: 420px;
      background: rgba(56, 181, 170, 0.18);
      border-radius: 999px;
      filter: blur(50px);
    }

    .services-grid {
      position: relative;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 70px;
      align-items: center;
    }

    .services .section-label {
      color: rgba(255,255,255,0.5);
    }

    .services p {
      margin-top: 28px;
      color: rgba(255,255,255,0.66);
      font-size: 18px;
      line-height: 1.8;
      max-width: 560px;
    }

    .services-box {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 28px;
      padding: 38px;
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 48px;
    }

    .service-item {
      text-align: center;
    }

    .service-icon {
      width: 58px;
      height: 58px;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 18px;
      background: rgba(255,255,255,0.05);
      font-size: 24px;
    }

    .service-item span {
      display: block;
      color: rgba(255,255,255,0.78);
      font-size: 14px;
      line-height: 1.35;
      font-weight: 800;
    }

    .figures-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 34px;
    }

    .figure {
      border-top: 1px solid var(--border);
      padding-top: 32px;
    }

    .figure strong {
      display: block;
      color: #ffffff,
      font-size: 52px;
      line-height: 1;
      font-weight: 950;
      letter-spacing: -0.05em;
    }

    .figure span {
      display: block;
      margin-top: 14px;
      color: var(--muted);
      font-weight: 800;
    }

    .news {
      background: var(--light);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 30px;
      margin-bottom: 52px;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .news-card {
      overflow: hidden;
      border-radius: 34px;
      background: white;
      border: 1px solid var(--border);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
      transition: 0.25s ease;
    }

    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    }

    .news-image {
      height: 220px;
      background-size: cover;
      background-position: center;
      /*filter: grayscale(1);*/
      transition: 0.3s ease;
    }

    .news-card:hover .news-image {
      filter: grayscale(0);
      transform: scale(1.03);
    }

    .news-content {
      padding: 26px;
    }

    .tag {
      display: inline-block;
      padding: 6px 12px;
      border-radius: 999px;
      color: white;
      font-size: 11px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .news-card h3 {
      margin-top: 18px;
      font-size: 23px;
      line-height: 1.15;
      letter-spacing: -0.03em;
      font-weight: 950;
    }

    .news-card time {
      display: block;
      margin-top: 18px;
      color: #94a3b8;
      font-size: 14px;
      font-weight: 700;
    }

    .club-search {
      position: relative;
      padding: 120px 0;
      color: white;
      overflow: hidden;
      background: linear-gradient(rgba(7,28,40,0.72), rgba(7,28,40,0.72)), url("https://images.unsplash.com/photo-1622163642998-1ea32b0bbc67?auto=format&fit=crop&w=1800&q=80") center/cover;
    }

    .club-search .section-label {
      color: rgba(255,255,255,0.55);
    }

    .club-search p {
      margin-top: 24px;
      max-width: 560px;
      color: rgba(255,255,255,0.74);
      font-size: 18px;
      line-height: 1.8;
    }

    .search-box {
      margin-top: 38px;
      max-width: 480px;
      display: flex;
      align-items: center;
      gap: 10px;
      background: white;
      border-radius: 999px;
      padding: 8px;
    }

    .search-box input {
      flex: 1;
      border: 0;
      outline: 0;
      padding: 0 16px;
      font-size: 15px;
      color: var(--text);
    }

    .partners {
      padding: 52px 0;
      border-bottom: 1px solid var(--border);
    }

    .partners-row {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bottom-partners ul {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 40px 56px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .bottom-partners li {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bottom-partners img {
      max-height: 48px;
      max-width: 140px;
      width: auto;
      object-fit: contain;
      filter: grayscale(1);
      opacity: 0.65;
      transition: opacity 0.2s ease, filter 0.2s ease;
    }

    .bottom-partners a:hover img {
      filter: grayscale(0);
      opacity: 1;
    }

    .footer {
      padding: 70px 0 34px;
      background: white;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 48px;
    }

    .footer p {
      max-width: 360px;
      color: var(--muted);
      line-height: 1.8;
      margin-top: 24px;
    }

    .footer h4 {
      margin-bottom: 20px;
      color: var(--blue);
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .footer ul {
      list-style: none;
    }

    .footer li {
      margin-bottom: 12px;
      color: #475569;
      font-weight: 700;
    }

    .socials {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }

    .socials a {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      font-weight: 900;
    }

    .copyright {
      margin-top: 52px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: #94a3b8;
      font-size: 13px;
      font-weight: 700;
    }

    @media (max-width: 1024px) {
      .menu,
      .nav-actions {
        display: none;
      }

      .mobile-menu {
        display: block;
      }

      .header.menu-open .menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 24px 28px;
        gap: 20px;
        z-index: 19;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
      }

      .header.menu-open .nav-actions {
        display: flex;
        padding: 0 28px 24px;
        position: absolute;
        top: auto;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        z-index: 19;
      }

      .nav-dropdown .nav-dropdown-menu {
        display: none;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--light);
        border-radius: 12px;
        padding: 8px;
        margin-top: 4px;
        min-width: unset;
        width: 100%;
      }

      .nav-dropdown.dropdown-open .nav-dropdown-menu {
        display: flex;
        flex-direction: column;
      }

      .hero-grid,
      .services-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 560px;
      }

      .sports-grid,
      .news-grid {
        grid-template-columns: 1fr;
      }

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

     


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

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, 1180px);
      }

      .hero {
        padding-top: 120px;
      }

      .hero::before {
        display: none;
      }

      .eyebrow {
        align-items: flex-start;
        border-radius: 22px;
      }

      .hero-actions,
      .section-head,
      .copyright {
        align-items: flex-start;
        flex-direction: column;
      }

      .hero-visual {
        min-height: 460px;
      }

      .hero-arch {
        left: 38px;
        width: 270px;
        height: 410px;
      }

      .hero-player {
        width: 315px;
        height: 420px;
      }

      .stat-card {
        padding: 16px;
      }

      .stat-card strong {
        font-size: 30px;
      }

      .stat-card.one {
        right: 0;
        top: 80px;
      }

      .stat-card.two {
        right: 12px;
        bottom: 28px;
      }

      .services-box,
      .figures-grid,
      .partners-row,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .search-box {
        border-radius: 28px;
        flex-direction: column;
        align-items: stretch;
      }

      .search-box input {
        min-height: 48px;
      }
    }

    /*NDE*/
     .sport-logo-link {
        width:100%;
        margin:0 0 16px;
      }

      .sport-logo-link img {
        height:85px;
        margin:0 0 16px 0;
      }

    /* Pages internes — commun */

    .page-hero {
      padding: 155px 0 90px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    }

    .breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 34px;
    }

    .breadcrumbs a { color: var(--blue); }

    .page-title {
      max-width: 820px;
      font-size: clamp(52px, 7vw, 96px);
      line-height: 0.92;
      letter-spacing: -0.07em;
      font-weight: 950;
      margin-bottom: 24px;
    }

    .page-title span { color: var(--blue); }

    .page-intro {
      max-width: 620px;
      color: var(--muted);
      font-size: 19px;
      line-height: 1.8;
    }

    .cta-section {
      padding: 80px 0;
      background: var(--light);
    }

    .cta-box {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      padding: 52px;
      border-radius: 44px;
      background: white;
      border: 1px solid var(--border);
      box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    }

    .cta-box h2 {
      font-size: clamp(32px, 4vw, 58px);
      line-height: 0.98;
      letter-spacing: -0.05em;
      font-weight: 950;
      color: var(--blue);
    }

    .cta-box p {
      max-width: 560px;
      margin-top: 18px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
    }

    /* Page de contenu */

    .content-section {
      padding: 90px 0 110px;
    }

    .article {
      max-width: 780px;
      margin: 0 auto;
    }

    .article h2 {
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1;
      letter-spacing: -0.05em;
      font-weight: 950;
      margin-top: 64px;
      margin-bottom: 20px;
    }

    .article h2:first-child { margin-top: 0; }

    .article p {
      color: #475569;
      font-size: 18px;
      line-height: 1.85;
      margin-bottom: 22px;
    }

    .article ul {
      display: grid;
      gap: 12px;
      margin: 20px 0 30px;
      list-style: none;
    }

    .article li {
      position: relative;
      padding-left: 28px;
      color: #475569;
      font-size: 17px;
      line-height: 1.65;
      font-weight: 650;
    }

    .article li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--emerald);
    }

    .highlight-box {
      margin: 52px 0;
      padding: 38px;
      border-radius: 36px;
      background: var(--dark);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .highlight-box::after {
      content: "";
      position: absolute;
      right: -80px;
      top: -80px;
      width: 240px;
      height: 240px;
      border-radius: 999px;
      background: rgba(56, 181, 170, 0.22);
      filter: blur(36px);
    }

    .highlight-box strong {
      position: relative;
      z-index: 1;
      display: block;
      font-size: 28px;
      line-height: 1.2;
      letter-spacing: -0.04em;
      font-weight: 950;
      margin-bottom: 14px;
    }

    .highlight-box p {
      position: relative;
      z-index: 1;
      color: rgba(255,255,255,0.72);
      margin-bottom: 0;
    }

    .divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 56px 0;
    }

    /* Page partenaires */

    .partners-section {
      padding: 90px 0 110px;
    }

    .partners-category {
      margin-bottom: 72px;
    }

    .category-label {
      color: var(--blue);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      font-weight: 950;
      margin-bottom: 36px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .logo-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 36px 28px;
      border: 1px solid var(--border);
      border-radius: 28px;
      background: white;
      transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .logo-card:hover {
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
      transform: translateY(-3px);
    }

    .logo-card img {
      max-height: 52px;
      max-width: 140px;
      width: auto;
      object-fit: contain;
      filter: grayscale(1);
      opacity: 0.7;
      transition: filter 0.2s ease, opacity 0.2s ease;
    }

    .logo-card:hover img {
      filter: grayscale(0);
      opacity: 1;
    }

    .logo-card-name {
      margin-top: 16px;
      font-size: 13px;
      font-weight: 800;
      color: var(--muted);
      text-align: center;
    }

    @media (max-width: 1024px) {
      .cta-box { grid-template-columns: 1fr; }
      .logo-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 640px) {
      .cta-box { padding: 30px; }
      .logo-grid { grid-template-columns: repeat(2, 1fr); }
    }

      