/* BROKR — Landing page styles */

/* ── Navbar ──────────────────────────────────────────────────────────────── */

.home-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  height: 72px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.home-navbar.at-top {
  background: transparent;
}

.home-navbar.scrolled {
  background: var(--color-blanco);
  box-shadow: 0 1px 0 rgba(2, 11, 45, 0.08);
}

.navbar-logo img {
  height: 34px;
  display: block;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.home-navbar.at-top .navbar-links a {
  color: rgba(255, 255, 255, 0.8);
}

.home-navbar.at-top .navbar-links a:hover {
  color: var(--color-celeste);
}

.home-navbar.scrolled .navbar-links a {
  color: var(--color-azul-oscuro);
}

.home-navbar.scrolled .navbar-links a:hover {
  color: var(--color-azul);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.navbar-area {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.home-navbar.at-top .navbar-area {
  color: rgba(255, 255, 255, 0.75);
}

.home-navbar.at-top .navbar-area:hover {
  color: var(--color-celeste);
}

.home-navbar.scrolled .navbar-area {
  color: var(--color-azul-oscuro);
}

.home-navbar.scrolled .navbar-area:hover {
  color: var(--color-azul);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0.65rem 1.4rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--color-azul);
  color: var(--color-blanco);
}

.btn--primary:hover {
  background: #1a2dc7;
  color: var(--color-blanco);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-blanco);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline-white:hover {
  border-color: var(--color-blanco);
  background: rgba(255, 255, 255, 0.08);
}

.btn--celeste {
  background: var(--color-celeste);
  color: var(--color-azul-oscuro);
}

.btn--celeste:hover {
  background: #02b38a;
  color: var(--color-azul-oscuro);
}

.btn-arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  background: var(--color-azul-oscuro);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 72px 2rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 65% 30%, rgba(33, 56, 239, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(3, 204, 158, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-ring--1 { width: 750px; height: 750px; }
.hero-ring--2 { width: 530px; height: 530px; border-color: rgba(255,255,255,0.04); }
.hero-ring--3 { width: 320px; height: 320px; border-color: rgba(255,255,255,0.03); }

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 760px;
}

.hero-logo {
  width: 210px;
  margin-bottom: 0.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 700;
  color: var(--color-blanco);
  line-height: 1.18;
  margin: 0;
}

.hero-title em {
  font-style: normal;
  color: var(--color-celeste);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* ── Intro ───────────────────────────────────────────────────────────────── */

.intro {
  padding: 6rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intro__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--color-azul);
  line-height: 1.25;
}

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

.intro__body p {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--color-azul-oscuro);
  line-height: 1.75;
}

.intro__body p strong {
  color: var(--color-azul);
}

.intro__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
}

.intro__body ul li {
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--color-azul-oscuro);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.intro__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-celeste);
}

.intro__cta {
  margin-top: 0.75rem;
}

/* ── Section base ────────────────────────────────────────────────────────── */

.section-divider {
  text-align: center;
  padding: 1.5rem 0 0;
}

.section-divider-cta {
  display: flex;
  justify-content: center;
  padding: 3.5rem 0;
}

/* ── Feature split sections ──────────────────────────────────────────────── */

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.feature-split--reverse .feature-split__visual {
  order: 2;
}

.feature-split--reverse .feature-split__content {
  order: 1;
}

.feature-split__visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.feature-split__visual--dark {
  background: linear-gradient(135deg, var(--color-azul-oscuro) 0%, #0d1f6e 100%);
}

.feature-split__visual--blue {
  background: linear-gradient(135deg, var(--color-azul) 0%, #1228bf 100%);
}

.feature-split__visual--teal {
  background: linear-gradient(135deg, #01a67f 0%, var(--color-celeste) 100%);
}

.feature-split__visual--light {
  background: #f0f4ff;
}

.feature-split__content {
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.feature-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-celeste);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--color-azul);
  line-height: 1.25;
  margin: 0;
}

.feature-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #3a4260;
  line-height: 1.75;
  margin: 0;
}

.feature-body strong {
  color: var(--color-azul-oscuro);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}

.feature-list li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #3a4260;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.55;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-celeste);
}

.feature-list--single {
  grid-template-columns: 1fr;
}

.feature-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-azul);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.feature-link:hover {
  color: var(--color-celeste);
}

/* ── Mockups CSS ─────────────────────────────────────────────────────────── */

/* Shared mockup frame */
.mockup {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  width: 80%;
  max-width: 360px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.mockup--light {
  background: var(--color-blanco);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 80px rgba(33, 56, 239, 0.15);
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup--light .mockup-titlebar {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.mockup-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup--light .mockup-dot {
  background: #dde2f0;
}

.mockup-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 0.25rem;
}

.mockup--light .mockup-title {
  color: #8a93b2;
}

/* Policy card mockup */
.mock-poliza {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mock-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
}

.mock-card-icon--blue  { background: var(--color-azul); opacity: 0.8; }
.mock-card-icon--teal  { background: var(--color-celeste); opacity: 0.8; }
.mock-card-icon--light { background: rgba(255,255,255,0.25); }

.mock-card-lines {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.mock-line {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.mock-line--w100 { width: 100%; }
.mock-line--w70  { width: 70%; }
.mock-line--w50  { width: 50%; }
.mock-line--w40  { width: 40%; }
.mock-line--w85  { width: 85%; }
.mock-line--teal { background: rgba(3, 204, 158, 0.5); }
.mock-line--blue { background: rgba(33, 56, 239, 0.5); }

.mock-badge {
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 99px;
  flex-shrink: 0;
}

.mock-badge--green  { background: rgba(3, 204, 158, 0.25); color: #03cc9e; }
.mock-badge--yellow { background: rgba(255, 200, 50, 0.2); color: #ffc832; }
.mock-badge--blue   { background: rgba(33, 56, 239, 0.3); color: #a8b6ff; }

/* Flow/automation mockup */
.mock-flow {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mock-flow-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mock-flow-node {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  flex: 1;
}

.mock-flow-node-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-flow-node-dot--teal  { background: var(--color-celeste); }
.mock-flow-node-dot--blue  { background: var(--color-azul); opacity: 0.9; }
.mock-flow-node-dot--white { background: rgba(255,255,255,0.4); }

.mock-flow-arrow {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.mock-flow-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-celeste);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--color-azul-oscuro);
  font-weight: 700;
}

/* Dashboard/BI mockup */
.mock-dashboard {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mock-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

.mock-stat {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 0.6rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mock-stat-value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.mock-stat-label {
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
  width: 80%;
}

.mock-chart {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 80px;
}

.mock-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  opacity: 0.85;
}

.mock-bar--blue  { background: var(--color-azul); }
.mock-bar--teal  { background: var(--color-celeste); }
.mock-bar--faded { background: rgba(255,255,255,0.15); }

/* CRM/client mockup */
.mock-client {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-client-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-azul), var(--color-celeste));
  flex-shrink: 0;
}

.mock-client-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.mock-client-info .mock-line {
  background: rgba(0,0,0,0.1);
}

.mock-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mock-field {
  background: #f4f6fd;
  border-radius: 5px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mock-field-label {
  height: 5px;
  border-radius: 3px;
  background: rgba(33, 56, 239, 0.15);
  width: 60%;
}

.mock-field-value {
  height: 7px;
  border-radius: 3px;
  background: rgba(0,0,0,0.12);
  width: 85%;
}

/* API/integration mockup */
.mock-api {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.mock-api-hub {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-azul);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(33, 56, 239, 0.2), 0 0 0 16px rgba(33, 56, 239, 0.08);
}

.mock-api-hub-inner {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
}

.mock-api-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
}

.mock-api-node {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  flex: 1;
}

.mock-api-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-celeste);
}

.mock-api-connector {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* ── Benefits grid ───────────────────────────────────────────────────────── */

.benefits {
  background: #f5f7ff;
  padding: 5.5rem 3.5rem;
}

.benefits__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.benefits__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-celeste);
  display: block;
  margin-bottom: 0.75rem;
}

.benefits__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-azul-oscuro);
  margin: 0 0 1rem;
}

.benefits__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #5a6480;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4rem;
  max-width: 960px;
  margin: 0 auto;
}

.benefit-card {
  background: transparent;
  border-radius: 0;
  padding: 1.75rem 0;
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: flex-start;
  border: none;
  border-bottom: 1px solid rgba(33, 56, 239, 0.08);
  transition: none;
}

.benefit-card:hover {
  box-shadow: none;
  transform: none;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-blanco);
  border: 1px solid rgba(33, 56, 239, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(33, 56, 239, 0.07);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  padding-top: 0.1rem;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--color-azul-oscuro);
  margin: 0;
}

.benefit-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #5a6480;
  line-height: 1.65;
  margin: 0;
}

/* ── Contact CTA ─────────────────────────────────────────────────────────── */

.contact-cta {
  padding: 5rem 3.5rem;
  display: flex;
  justify-content: center;
}

.contact-cta__box {
  background: var(--color-blanco);
  border: 1px solid rgba(33, 56, 239, 0.1);
  border-radius: 16px;
  padding: 4rem;
  max-width: 860px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 16px 64px rgba(33, 56, 239, 0.08);
}

.contact-cta__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-celeste);
  display: block;
  margin-bottom: 0.75rem;
}

.contact-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--color-azul-oscuro);
  line-height: 1.25;
  margin: 0 0 1rem;
}

.contact-cta__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-azul);
  margin-top: 0.1rem;
}

.contact-info-item a,
.contact-info-item span {
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--color-azul-oscuro);
  text-decoration: none;
  line-height: 1.5;
}

.contact-info-item a:hover {
  color: var(--color-azul);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.home-footer {
  background: var(--color-azul-oscuro);
  padding: 4rem 3.5rem 2.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo img {
  height: 30px;
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: var(--color-celeste);
  color: var(--color-celeste);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-col ul li a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-col ul li a:hover {
  color: var(--color-celeste);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .benefits__grid {
    gap: 0 2.5rem;
  }

  .home-navbar {
    padding: 0 2rem;
  }

  .intro {
    padding: 4rem 2rem;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .home-navbar {
    padding: 0 1.25rem;
  }

  .navbar-links {
    display: none;
  }

  .hero-logo {
    width: 160px;
  }

  .intro {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .feature-split {
    grid-template-columns: 1fr;
  }

  .feature-split--reverse .feature-split__visual {
    order: 0;
  }

  .feature-split--reverse .feature-split__content {
    order: 0;
  }

  .feature-split__visual {
    min-height: 280px;
  }

  .feature-split__content {
    padding: 2.5rem 1.5rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .benefits {
    padding: 3.5rem 1.5rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-cta {
    padding: 3rem 1.5rem;
  }

  .contact-cta__box {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .home-footer {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
