/* ===========================================================
   AI FOR YOUR BUSINESS — landing-specific helpers
   Built strictly on the Kreitech Uruguay design system
   (Cairo · #100075 → #00DCDD · white surfaces).
   Only adds what styles.css doesn't already cover.
   =========================================================== */

/* ── Kreitech RED logo combo in navbar ── */
.navbar__logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.navbar__logo-sep {
  width: 1px;
  height: 22px;
  background: rgba(16, 0, 117, 0.18);
  flex-shrink: 0;
}
.logo-red-badge {
  font-family: 'Bungee', cursive;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
  color: #C8102E;
  user-select: none;
}
.logo-red-works {
  font-size: 13px;
  letter-spacing: 3px;
  color: #100075;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.logo-red-badge--footer .logo-red-works {
  color: rgba(255, 255, 255, 0.60);
}

/* ── CTA centered below the three cards ── */
.section__cta-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ── Navbar CTA: white bg, RED border ── */
.btn--outline-red {
  background: #fff;
  color: #C8102E;
  border: 2px solid #C8102E;
  box-shadow: none;
}
.btn--outline-red:hover {
  background: #C8102E;
  color: #fff;
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.30);
  opacity: 1;
}

/* ── Footer logo + RED badge ── */
.footer__logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__logo-sep {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.20);
  flex-shrink: 0;
}
.logo-red-badge--footer {
  color: #ff3a52;   /* brighter on dark background */
}

/* Three rich offer cards (Signals / Processes / Automations).
   Own grid so we control 3 columns independent of .solutions__grid (5-col). */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.offer-grid .card {
  padding: 36px 32px;
  gap: 18px;
}

/* In-card point list — gradient square bullets, matching .feature-item */
.offer-points {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 2px;
}

.offer-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: #424242;
}

.offer-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: linear-gradient(135deg, #100075 0%, #00DCDD 100%);
}

/* "For example" callout inside each card */
.offer-example {
  margin-top: auto;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(16, 0, 117, 0.03) 0%, rgba(0, 220, 221, 0.06) 100%);
  border: 1px solid rgba(0, 220, 221, 0.22);
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #424242;
}

.offer-example span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0D03B7;
  margin-bottom: 6px;
}

/* Simplified two-column footer for this standalone landing */
.footer__inner--simple {
  grid-template-columns: 2fr 1fr;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .offer-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

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