@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── Variables ──────────────────────────────────────────────────────────── */
:root {
  --color-bg:        #111827;   /* Azul Pizarra — noche clara */
  --color-surface:   #1E3A5F;   /* Superficie elevada — azul océano */
  --color-cyan:      #00E5FF;
  --color-amber:     #F59E0B;
  --color-white:     #F8FAFC;
  --color-muted:     #94A3B8;
  --color-success:   #10B981;
  --color-danger:    #EF4444;
  --color-footer-bg: #080E1A;

  --font-display: 'Montserrat', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius: 4px;
  --transition: 0.3s ease;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utility ────────────────────────────────────────────────────────────── */
.mono  { font-family: var(--font-mono); }
.cyan  { color: var(--color-cyan); }
.muted { color: var(--color-muted); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 3rem;
}

/* ─── Section background image ───────────────────────────────────────────── */
.section-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.section-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.section-bg-overlay {
  position: absolute;
  inset: 0;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-cyan);
  color: var(--color-bg);
  border-color: var(--color-cyan);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.45s ease;
}
.btn-primary:hover::after { left: 100%; }
.btn-primary:hover { background: #33EAFF; border-color: #33EAFF; }

.btn-outline {
  background: transparent;
  color: var(--color-cyan);
  border-color: var(--color-cyan);
}
.btn-outline:hover { background: rgba(0, 229, 255, 0.1); }

.btn:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 3px;
}

/* ─── Nav ────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(17, 24, 39, 0.88);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  transition: box-shadow var(--transition);
}
#nav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 0.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: background var(--transition);
}
.nav-logo:hover { background: rgba(0, 229, 255, 0.06); }
.nav-logo img { height: 48px; width: 48px; flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--font-display);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.brand-red      { font-weight: 800; font-size: 1.2rem; color: var(--color-white); letter-spacing: 0.04em; }
.brand-trujillo { font-weight: 300; font-size: 0.88rem; color: var(--color-cyan); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--color-muted);
  font-weight: 400;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--color-white); }
.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--color-surface);
  border-top: 1px solid rgba(0, 229, 255, 0.12);
  padding: 1.25rem;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--color-muted);
  font-weight: 400;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--color-white); }
.nav-mobile .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 3rem 1.25rem;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 2px;
  background: rgba(0, 229, 255, 0.06);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-title .highlight {
  color: var(--color-cyan);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(248, 250, 252, 0.85);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.8);
}
.trust-item .check { color: var(--color-success); font-weight: 700; }

/* ─── Section spacing ────────────────────────────────────────────────────── */
section { padding: 5rem 0; }

/* ─── Nosotros ───────────────────────────────────────────────────────────── */
#nosotros {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.nosotros-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.nosotros-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.nosotros-logo-glow {
  display: inline-flex;
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3)) drop-shadow(0 0 20px rgba(0, 229, 255, 0.15)); }
  50%       { filter: drop-shadow(0 0 22px rgba(0, 229, 255, 0.7)) drop-shadow(0 0 44px rgba(0, 229, 255, 0.35)); }
}
.nosotros-logo { height: 128px; width: 128px; }

.nosotros-brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
}
.nosotros-brand-red      { font-weight: 800; font-size: 2rem; color: var(--color-white); letter-spacing: 0.06em; }
.nosotros-brand-trujillo { font-weight: 300; font-size: 1.25rem; color: var(--color-cyan); letter-spacing: 0.2em; text-transform: uppercase; }

.nosotros-tagline {
  font-size: 0.95rem;
  color: var(--color-muted);
  font-style: italic;
}

.nosotros-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nosotros-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--transition), background var(--transition);
}
.nosotros-block:hover {
  background: rgba(0, 229, 255, 0.09);
  border-color: rgba(0, 229, 255, 0.32);
}

.nosotros-block-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: rgba(0, 229, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
}

.nosotros-block h3 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-cyan);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nosotros-block p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ─── Planes ─────────────────────────────────────────────────────────────── */
#planes {
  background: linear-gradient(180deg, var(--color-bg) 0%, #0d1929 100%);
}

.planes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.plan-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 229, 255, 0.14);
}
.plan-card.popular {
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.1);
}

.plan-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--color-amber);
  color: var(--color-bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.65rem;
  border-radius: 0 0 4px 4px;
  text-transform: uppercase;
}

.plan-name     { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--color-white); }
.plan-speed    { font-family: var(--font-mono); font-size: 2.2rem; font-weight: 500; color: var(--color-cyan); line-height: 1; }
.plan-symmetric { font-size: 0.82rem; color: var(--color-muted); margin-top: -0.25rem; }
.plan-price    { font-family: var(--font-mono); font-size: 2rem; font-weight: 500; color: var(--color-white); line-height: 1; }
.plan-period   { font-size: 0.8rem; color: var(--color-muted); margin-top: -0.25rem; }
.plan-divider  { height: 1px; background: rgba(0, 229, 255, 0.12); margin: 0.25rem 0; }

.plan-features { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.plan-features li {
  font-size: 0.87rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.plan-features li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-card .btn { margin-top: 0.5rem; width: 100%; justify-content: center; }

/* Plan perks */
.planes-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: var(--color-surface);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 8px;
  padding: 2rem 1.75rem;
}
.perk { display: flex; align-items: flex-start; gap: 1rem; }
.perk-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 229, 255, 0.12);
  border-radius: 8px;
  color: var(--color-cyan);
}
.perk-text strong { display: block; font-weight: 700; margin-bottom: 0.2rem; }
.perk-text span   { font-size: 0.875rem; color: var(--color-muted); }

/* ─── Empresas ───────────────────────────────────────────────────────────── */
#empresas {
  position: relative;
  overflow: hidden;
}
/* Dot grid overlay on top of photo */
#empresas::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 229, 255, 0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}
#empresas > .container { position: relative; z-index: 2; }

.empresas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.empresa-card {
  background: rgba(17, 24, 39, 0.65);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 8px;
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition), border-color var(--transition);
}
.empresa-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.35);
}
.empresa-icon {
  width: 48px; height: 48px;
  background: rgba(0, 229, 255, 0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-cyan);
}
.empresa-card h3 { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.empresa-card p  { font-size: 0.875rem; color: var(--color-muted); line-height: 1.65; }

.sla-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.stat-value {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--color-cyan);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.82rem; color: var(--color-muted); }

/* ─── Diferenciadores ────────────────────────────────────────────────────── */
#diferenciadores {
  position: relative;
  overflow: hidden;
}
#diferenciadores > .container { position: relative; z-index: 2; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.diff-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition), border-color var(--transition);
}
.diff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.32);
}
.diff-icon {
  width: 56px; height: 56px;
  background: rgba(0, 229, 255, 0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-cyan);
}
.diff-card h3  { font-weight: 700; margin-bottom: 0.6rem; }
.diff-card p   { font-size: 0.875rem; color: var(--color-muted); line-height: 1.65; }

/* ─── Soporte ────────────────────────────────────────────────────────────── */
#soporte {
  background: linear-gradient(180deg, #0d1929 0%, var(--color-bg) 100%);
}

.accordion {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.accordion-item {
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-surface);
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.accordion-trigger:hover { background: rgba(0, 229, 255, 0.06); }
.accordion-trigger:focus-visible { outline: 2px solid var(--color-cyan); outline-offset: -2px; }

.accordion-num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--color-cyan);
  font-weight: 500;
  min-width: 2rem;
}
.accordion-chevron {
  margin-left: auto;
  color: var(--color-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-body p {
  padding: 0 1.25rem 1.25rem 4rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.soporte-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-surface);
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: var(--radius);
  padding: 0.9rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-white);
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-phone:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.08);
  color: #25D366;
}
.btn-phone:focus-visible { outline: 2px solid var(--color-cyan); outline-offset: 3px; }
.btn-phone .wa-icon { color: #25D366; flex-shrink: 0; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--color-footer-bg);
  border-top: 1px solid rgba(0, 229, 255, 0.08);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.footer-logo img { height: 36px; width: 36px; }
.footer-tagline {
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: 260px;
  line-height: 1.65;
}
.footer-address {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-legal { font-size: 0.75rem; color: var(--color-muted); line-height: 1.5; }

/* ─── Responsive — Tablet (768px) ───────────────────────────────────────── */
@media (min-width: 768px) {
  .nav-links  { display: flex; }
  .nav-hamburger { display: none; }
  .nav-mobile { display: none !important; }

  .nosotros-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }

  .planes-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }

  .empresas-grid { grid-template-columns: repeat(2, 1fr); }
  .sla-stats     { grid-template-columns: repeat(3, 1fr); }
  .diff-grid     { grid-template-columns: repeat(3, 1fr); }
  .planes-perks  { grid-template-columns: repeat(3, 1fr); }
  .footer-top    { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ─── Responsive — Desktop (1200px) ─────────────────────────────────────── */
@media (min-width: 1200px) {
  .planes-grid { grid-template-columns: repeat(3, 1fr); }
  .plan-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
  .plan-card:nth-child(4) { grid-column: 1; }
  .plan-card:nth-child(5) { grid-column: 2; }
}
