:root {
  /* Colors */
  --bg: #0b0d12;
  --surface: #11141b;
  --muted: #fff;
  --text: #e9eef2;
  --brand1: #00e08a;
  --brand2: #00b3ff;
  --border: rgba(255, 255, 255, .10);

  /* Spacing scale */
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 22px;
  --space-6: 26px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 64px;
  /* mobile section padding */
  --space-10: 96px;
  /* desktop section padding */

  /* Radii & shadows */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 18px;
  --shadow-md: 0 6px 18px rgba(0, 0, 0, .35);

  /* Rings */
  --ring: 0 0 0 3px color-mix(in oklab, var(--brand2) 40%, transparent);

  /* Type scale */
  --fs-hero: clamp(28px, 4vw, 48px);
  --fs-h2: clamp(22px, 2.4vw, 30px);
  --fs-h3: clamp(18px, 2vw, 22px);
  --fs-base: 16px;
  --fs-small: 12px;

  /* Container */
  --container: 1100px;
}


:root {
  --bg: #0b0d12;
  --surface: #11141b;
  --text: #e9eef2;
  --brand1: #00e08a;
  --brand2: #00b3ff;
  --ring: 0 0 0 3px color-mix(in oklab, var(--brand2) 40%, transparent);
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% -20%, #0f1424 0%, transparent 60%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-inline: 20px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(140%) blur(10px);
  background: color-mix(in oklab, var(--bg) 80%, black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: column;
}

.brand img {
  height: 32px
}

.brand-name {
  font-weight: 800;
  letter-spacing: .2px
}

nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0
}

nav a {
  text-decoration: none;
  color: var(--text);
  opacity: .85;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 14px;
}

nav a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.06)
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  color: #0b0d12;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  font-weight: 800;
  letter-spacing: .2px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
}

.btn:focus {
  outline: none;
  box-shadow: var(--ring)
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .14)
}

.hero {
  margin-inline: auto;
  padding-block: var(--section-gap-desktop);
}

.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin: 14px 0 10px;
  max-width: 1160px;
}

.hero p {
  max-width: 720px;
  color: var(--muted);
  margin: 0 0 22px
}

.hero .cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px
}

.badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--muted)
}

.section {
  max-width: 1160px;
  margin-inline: auto;
  padding-block: var(--section-gap-desktop);
}

.card {
  grid-column: span 12;
  background: linear-gradient(180deg, #131722, #0d1017);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.card-header {
  padding: 18px 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 20px
}

.card p {
  color: var(--muted);
  margin: 10px 18px 18px
}

.card-actions {
  margin: 0 18px 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.preview {
  aspect-ratio: 16/9;
  background:
    linear-gradient(120deg, rgba(0, 224, 138, .15), transparent 35%),
    linear-gradient(300deg, rgba(0, 179, 255, .18), transparent 40%),
    radial-gradient(400px 200px at 70% -20%, rgba(255, 255, 255, .08), transparent 60%),
    #0b0f18;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.contact-all{
  display:grid;
  gap:20px;
}
@media (min-width:700px) {
  .card {
    grid-column: span 6;
  }
  .first-section{
    padding-top:76px!important;
  }
  .contact-form{
    grid-column: 1!important;
  }
  .contact-place{
    grid-column: 2!important;
  }
  .contact-fix{
    padding-top:96px!important;
  }
  .contactp{
    padding-bottom: 96px!important;
  }
  .clientsFix{
    padding-bottom: 96px;
  }
}

@media (min-width:1024px) {
  .card {
    grid-column: span 4;
  }
}

.features {
  display: grid;
  gap: 16px;
  margin-top: 8px;
  grid-template-columns: repeat(12, 1fr);
}

.feature {
  grid-column: span 12;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 16px
}

.feature h4 {
  margin: 0 0 6px
}

.feature p {
  margin: 0;
  color: var(--muted)
}

@media (min-width:900px) {
  .feature {
    grid-column: span 4;
  }
}

footer {
  padding: 30px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: var(--muted);
  text-align: center;
}

.small {
  font-size: 12px;
  color: var(--muted)
}

.preview {
  position: relative;
  overflow: hidden
}

.preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.preview .label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #e9eef2;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px
}

.footer-grid {
  display: grid;
  gap: 16px;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr;
  text-align: center;
}

.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .03);
  text-decoration: none;
  color: var(--text);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .24)
}

.footer-contact {
  color: var(--muted);
  font-size: 14px
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, .25)
}

.footer-contact a:hover {
  opacity: .9
}

.section h1,
.section h2 {
  margin: 0 0 26px;
}

.section .grid,
.section .features {
  margin-top: 26px;
}

@media (max-width: 700px) {
  .section {
    max-width: 1160px;
    margin-inline: auto;
    padding-block: var(--section-gap-desktop);
  }

  #email {
    grid-row: 2;
  }

  .nosotros-split img {
    padding-top: 22px;
  }
  .contact-fix{
    padding-top:64px!important;
  }
  .contactp{
    padding-bottom: 64px!important;
  }
  .clientsFix{
    padding-bottom:62px;
  }
}

.hero {
  padding: 96px 0 64px;
}

.btn {
  border-radius: var(--radius-md);
}

.btn:focus {
  outline: none;
  box-shadow: var(--ring);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

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

.btn:active {
  transform: translateY(0);
}


/* Active nav highlighting */
body[data-page="nosotros"] a[data-page="nosotros"],
body[data-page="templates"] a[data-page="templates"],
body[data-page="clientes"] a[data-page="clientes"],
body[data-page="contacto"] a[data-page="contacto"] {
  opacity: 1;
  background: rgba(255, 255, 255, 0.06);
}

/* Improve link contrast in nav */
nav a {
  opacity: .9
}

nav a:hover {
  opacity: 1
}

/* Templates grid 3 columns on desktop */
#templates .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width:768px) {
  #templates .grid {
    grid-template-columns: 1fr;
  }
}

/* Ensure 3 columns on the Templates page as well */
body[data-page="templates"] .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  body[data-page="templates"] .grid {
    grid-template-columns: 1fr;
  }
}

/* --- Strong overrides to ensure 3-column grid on templates --- */
body[data-page="templates"] #templates .grid,
body[data-page="templates"] .grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

@media (max-width: 768px) {

  body[data-page="templates"] #templates .grid,
  body[data-page="templates"] .grid {
    grid-template-columns: 1fr !important;
  }
}

/* Ensure home (index) reduced templates also 3 columns on desktop */
body[data-page="home"] #templates .grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

@media (max-width: 768px) {
  body[data-page="home"] #templates .grid {
    grid-template-columns: 1fr !important;
  }
}

/* Override: in Templates section, allow cards to auto-fit in the 3-col grid */
#templates .card {
  grid-column: auto !important;
}

/* Override: in Templates section (full page and home) allow cards to auto-fit */
#templates .card,
body[data-page="home"] #templates .card {
  grid-column: auto !important;
}

/* Card content layout */
.card {
  display: flex;
  flex-direction: column;
}

.card-content {
  padding: 14px 14px 0;
}

.card-content h3 {
  margin: 0 0 6px;
  font-size: var(--fs-h3, 18px);
}

.card-actions {
  padding: 14px;
  margin-top: auto;
  /* empuja el botón al final para alturas parejas */
  display: flex;
  gap: 10px;
}

/* Micro-interacciones en cards */
.card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
  border-color: rgba(255, 255, 255, .12);
}


/* ===== Plenia Aesthetic Polish ===== */

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 0px;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-size: clamp(32px, 6vw, 44px);
}

h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 10px;
}

.lead {
  font-size: clamp(16px, 2.2vw, 18px);
  color: var(--muted);
}

.section {
  max-width: 1160px;
  margin-inline: auto;
  padding-block: var(--section-gap-desktop);
}

@media (max-width: 720px) {
  .section {
    padding-block: var(--section-gap-mobile);
  }
}

.card {
  background: linear-gradient(180deg, #11141b);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.btn {
  background: var(--brand);
  color: #0b1220;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, .18);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .18s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: var(--brand-600);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

input,
textarea {
  background: #0d1117;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
}




/* Full-bleed background heroes (left-aligned, compact) */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 32vh;
  padding: 48px 20px;
  color: #fff;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .38));
}

.hero .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: left;
}

@media (max-width: 780px) {
  .hero {
    min-height: 24vh;
    padding: 36px 18px;
    background-position: center top;
  }

  .hero .hero-copy {
    max-width: 95%;
  }
}




/* Subpages: constrain only hero textual block; background stays full-bleed */
body:not([data-page="home"]) .hero .hero-copy {
  max-width: 1160px;
  margin-inline: auto;
}

@media (max-width: 720px) {
  .section {
    padding-block: var(--section-gap-mobile);
  }
}

.nosotros-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.nosotros-copy {
  align-self: center;
  margin-right:40px;
}

@media (max-width: 720px) {
  .section {
    padding-block: var(--section-gap-mobile);
  }

}

@media (min-width: 900px) {
  .cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 899.98px) {
  .cols-2 {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Design tokens for vertical rhythm and dividers */
:root {
  --section-gap-desktop: 48px;
  --section-gap-mobile: 32px;
  --section-divider: rgba(0, 0, 0, 0.08);
  --section-alt-bg: rgba(0, 0, 0, 0.02);
}

/* Subtle separation between sections */
.section+.section {
  border-top: 1px solid var(--section-divider);
}





header .logo img {
  height: 32px;
  width: auto;
}

footer .logo img {
  height: 40px;
  width: auto;
}

/* ===== UI Tokens: CTAs & Social ===== */
:root {
  --brand-primary: #19c37d;
  --brand-primary-hover: #159b64;
  --brand-contrast: #ffffff;
  --btn-radius: 10px;
  --btn-padding-y: 12px;
  --btn-padding-x: 18px;
  --btn-gap: 10px;
  --btn-shadow: 0 6px 16px rgba(0, 0, 0, .08);
  --btn-shadow-hover: 0 8px 20px rgba(0, 0, 0, .12);
  --transition-fast: 180ms ease;
}


/* ===== Unified Buttons ===== */
a.btn,
.btn,
button,
input[type="submit"],
input[type="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border-radius: var(--btn-radius);
  border: 1px solid var(--brand-primary);
  background: var(--brand-primary);
  color: var(--brand-contrast);
  text-decoration: none;
  line-height: 1;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), filter var(--transition-fast);
  box-shadow: var(--btn-shadow);
  cursor: pointer;
}

a.btn:hover,
.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--btn-shadow-hover);
  filter: saturate(1.02);
}

a.btn:active,
.btn:active,
button:active,
input[type="submit"]:active,
input[type="button"]:active {
  transform: translateY(0);
  box-shadow: var(--btn-shadow);
}

.btn.outline,
a.btn.outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: none;
}

.btn.outline:hover,
a.btn.outline:hover {
  background: var(--brand-primary);
  color: var(--brand-contrast);
  box-shadow: var(--btn-shadow-hover);
}


/* ===== Unified Social Icons ===== */
.social a,
.social-icons a,
nav .social a,
footer .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  color: var(--brand-contrast);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  box-shadow: var(--btn-shadow);
}

.social a:hover,
.social-icons a:hover,
nav .social a:hover,
footer .social a:hover {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--btn-shadow-hover);
}

.social a svg,
.social-icons a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
  transition: color var(--transition-fast), fill var(--transition-fast), stroke var(--transition-fast);
}

header a:hover,
footer a:hover {
  color: var(--brand-primary);
}


/* Footer: 2 columns (Brand+Social | Contact) */
footer .footer-wrap {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 20px;
}

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

footer .footer-col h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

footer .brand .logo img {
  height: 44px;
  width: auto;
}

footer .under-logo {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

footer .under-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-primary, #19c37d);
  box-shadow: 0 6px 12px rgba(0, 0, 0, .08);
  transition: all .2s ease;
}

footer .under-logo a:hover {
  background: var(--brand-primary-hover, #159b64);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .12);
}

footer .under-logo img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

footer a {
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
}

footer a:hover {
  color: var(--brand-primary, #19c37d);
}

footer .small {
  margin-top: 18px;
  font-size: .9rem;
  opacity: .85;
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding-top: 16px;
}

@media (max-width:900px) {
  footer .footer-grid.footer-2col {
    grid-template-columns: 1fr;
  }

  footer .brand .logo img {
    height: 38px;
  }
}


/* Single centered testimonial */
.testimonial-single {
  display: flex;
  justify-content: center;
}

.testimonial-single .testimonial-card {
  width: 100%;
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

.testimonial-single .quote {
  font-size: 1.05rem;
  margin: 0 0 12px;
}

/* Utilities */
.grid.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width:900px) {
  .grid.cards-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  overflow: hidden;
}

.card-body {
  padding: 16px;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #063726;
  font-size: 24px;
  z-index: 120
}

.wa-float-img {
  width: 30px;
  height: 30px;
}


/* === Mobile nav (hamburger) === */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: transform .2s ease, opacity .2s ease;
}

header .nav-links {
  display: flex;
  gap: 20px;
}

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

  header nav {
    position: relative;
  }

  header .nav-links {
    position: absolute;
    right: 0;
    top: 100%;
    background: #11141b;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
    border-radius: 12px;
    padding: 10px 14px;
    display: none;
    flex-direction: column;
    min-width: 220px;
    z-index: 1000;
  }

  header .nav-links.open {
    display: flex;
  }

  header .nav-links.open ul {
    flex-direction: column;
  }

  header .nav-links a,
  header .nav-links li a {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
  }

  .nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}



  /* Dynamic clients grid */
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 32px;
  }
  .client-card {
    grid-column: span 6;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 20px;
  }
  .client-card h3 { margin: 0 0 8px 0; }
  .client-card__media {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.04);
    display: block;
  }
  .client-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .client-card p { margin: 0 0 16px 0; }
  .btn.btn-brand {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--brand1, #00e08a);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  @media (max-width: 768px) {
    .client-card { grid-column: span 12; }
  }
