/* ───────────────────────────────────────────
   GIAA CONSULTING — Tokens y componentes
   ─────────────────────────────────────────── */

:root {
  --navy:        rgb(11, 43, 71);
  --navy-text:   rgb(22, 59, 86);
  --navy-soft:   rgba(11, 43, 71, 0.7);
  --orange:      rgb(250, 132, 12);
  --orange-soft: rgba(250, 132, 12, 0.62);
  --yellow:      rgb(254, 182, 21);
  --yellow-soft: rgba(254, 182, 21, 0.62);
  --lightblue:   rgb(142, 201, 229);
  --lightblue-2: rgb(145, 203, 230);
  --offwhite:    rgb(255, 251, 251);
  --bg-gray:     rgb(240, 240, 240);
  --gray-bdr:    rgb(210, 211, 216);
  --gray-mid:    rgb(217, 217, 217);
  --gray-text:   rgb(128, 128, 128);
  --shadow-sm:   0 4px 4px rgba(0, 0, 0, 0.25);
  --shadow-md:   0 8px 24px rgba(11, 43, 71, 0.18);

  --font-display: "Gantari", system-ui, sans-serif;
  --font-body:    "Gantari", system-ui, sans-serif;

  --container: 1240px;
  --gutter:    clamp(16px, 3vw, 42px);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 36px;
}

@keyframes gi-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gi-soft-pop {
  0% { opacity: 0; transform: scale(.96) translateY(16px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes gi-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.gi-legal-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  min-height: 34px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px var(--gutter);
  text-align: center;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 500;
}
.gi-legal-bar a { color: #fff; }
.gi-legal-bar a:hover { color: var(--yellow); }

/* ─────────── NAVBAR ─────────── */
.gi-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: #fff;
  height: 96px;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 64px);
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: transform .24s ease;
}
.gi-navbar.is-hidden {
  transform: translateY(-100%);
}

.gi-navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
}

.gi-logo-mark {
  font-size: 36px;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #b8d6ec 0%, #eaf2fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  padding-right: 4px;
}
.gi-logo-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 20px;
  height: 2px;
  background: var(--orange);
  transform: translateX(-30%);
}
.gi-logo-sub {
  font-size: 10px;
  letter-spacing: 6px;
  font-weight: 500;
  color: #cfe1f0;
  display: block;
  margin-top: 4px;
}

.gi-nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gi-nav-links a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 6px 2px;
  position: relative;
  transition: color .15s;
}
.gi-nav-links a:hover { color: var(--yellow); }
.gi-nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: #fff;
}

.gi-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
}

@media (max-width: 880px) {
  .gi-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .gi-nav-links {
    position: absolute;
    top: 96px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--navy);
    padding: 16px 24px 24px;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: none;
  }
  .gi-nav-links.is-open { display: flex; }
}

/* ─────────── HERO ─────────── */
.gi-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(rgba(11,43,71,0.42), rgba(11,43,71,0.42)),
    linear-gradient(180deg, rgba(142,201,229,0.12) 0%, rgba(142,201,229,0.44) 100%),
    var(--hero-image, url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=2000&q=80")) center/cover no-repeat,
    var(--navy);
}
.gi-hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px var(--gutter);
}
.gi-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.2vw, 84px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -1px;
}
.gi-hero p.lead {
  font-size: clamp(18px, 1.6vw, 24px);
  max-width: 720px;
  line-height: 1.45;
  margin: 0;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
}
.gi-hero-band {
  height: 7px;
  width: min(900px, 80%);
  background: #fff;
  margin: 28px 0 14px;
}
.gi-hero-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  margin: 0;
}
.gi-hero-home {
  text-align: center;
  padding-top: clamp(78px, 11vw, 132px);
  padding-bottom: clamp(70px, 10vw, 118px);
}
.gi-hero-home h1 {
  max-width: 1050px;
  margin-inline: auto;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
  animation: gi-fade-up .7s ease both;
}
.gi-hero-home .gi-hero-section-title {
  font-size: clamp(20px, 2.2vw, 30px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.26);
  animation: gi-fade-up .7s ease .12s both;
}
.gi-hero-home .gi-hero-band {
  width: min(920px, 86%);
  height: 3px;
  margin: 14px auto 16px;
}
.gi-hero-services {
  width: min(900px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 32px;
  text-align: left;
  font-weight: 800;
  font-size: clamp(13px, 1.25vw, 16px);
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
  animation: gi-fade-up .7s ease .22s both;
}
.gi-hero-services span {
  position: relative;
  padding-left: 22px;
}
.gi-hero-services span::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  text-shadow: none;
}
.gi-hero-home .gi-btn-hero {
  margin-top: 24px;
  animation: gi-soft-pop .65s ease .34s both;
}

.gi-btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: #fff;
  color: var(--navy);
  padding: 9px 13px 9px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(11,43,71,0.22);
  transition: transform .15s, box-shadow .15s;
}
.gi-btn-hero:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 34px rgba(11,43,71,0.34);
}
.gi-btn-hero .arrow {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 720px) {
  .gi-hero-home {
    text-align: left;
  }
  .gi-hero-home h1,
  .gi-hero-home .gi-hero-section-title {
    margin-inline: 0;
  }
  .gi-hero-home .gi-hero-band {
    margin-inline: 0;
    width: 100%;
  }
  .gi-hero-services {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .gi-btn-hero {
    font-size: 14px;
    padding: 8px 11px 8px 14px;
  }
  .gi-btn-hero .arrow {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }
}

/* ─────────── BOTONES ─────────── */
.gi-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  border: 0;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  transition: transform .15s, background .15s, box-shadow .15s;
}
.gi-btn:hover {
  background: #0e3658;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11,43,71,0.25);
}
.gi-btn--orange { background: var(--orange); }
.gi-btn--orange:hover { background: #e57509; }
.gi-btn--white { background: var(--offwhite); color: var(--navy); }
.gi-btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.gi-arrow {
  display: inline-flex;
  width: 24px; height: 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ─────────── SECCIÓN GENERAL ─────────── */
.gi-section {
  padding: clamp(40px, 5.5vw, 76px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.gi-section--full { max-width: none; padding-inline: 0; }
.gi-section--gray { background: var(--bg-gray); }
.gi-section--navy { background: var(--navy); color: #fff; }

.gi-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.gi-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}
.gi-eyebrow .accent { color: var(--orange); }
.gi-section-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--navy-soft);
  max-width: 760px;
  margin: 16px auto 0;
  line-height: 1.45;
}

/* ─────────── VALOR CARDS (Innovación, Compromiso, Ética) ─────────── */
.gi-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.gi-value-card {
  aspect-ratio: 1 / 0.75;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 16px;
  text-align: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.12;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(11, 43, 71, 0.18);
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
  position: relative;
  overflow: hidden;
}
.gi-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
  pointer-events: none;
}
.gi-value-card:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow: 0 24px 46px rgba(11, 43, 71, 0.28);
  filter: saturate(1.05);
}
.gi-value-card .ico {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
}
.gi-value-card .ico svg { width: 52px; height: 52px; }
.gi-value-card.is-yellow { background: var(--yellow); color: #fff; }
.gi-value-card.is-orange { background: var(--orange); }
.gi-value-card.is-blue   { background: var(--lightblue); color: var(--navy); }
.gi-value-card.is-blue .ico {
  background: rgba(11, 43, 71, 0.1);
  border-color: rgba(11, 43, 71, 0.2);
}

@media (max-width: 720px) {
  .gi-values { grid-template-columns: 1fr; gap: 18px; }
  .gi-value-card {
    aspect-ratio: auto;
    min-height: 150px;
    border-radius: 18px;
    padding: 20px 14px;
    font-size: 18px;
  }
  .gi-value-card .ico {
    width: 64px;
    height: 64px;
  }
  .gi-value-card .ico svg { width: 36px; height: 36px; }
}

/* ─────────── STATS BAND ─────────── */
.gi-stats {
  background: var(--navy);
  color: #fff;
  padding: 60px var(--gutter);
}
.gi-stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gi-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gi-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 64px);
  color: var(--yellow);
  line-height: 1;
  animation: gi-float 3.8s ease-in-out infinite;
}
.gi-stat-label {
  font-size: 14px;
  font-weight: 400;
  max-width: 220px;
  line-height: 1.35;
  color: #fff;
}
@media (max-width: 880px) {
  .gi-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ─────────── SERVICIOS GRID ─────────── */
.gi-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gi-service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(11,43,71,0.08);
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}
.gi-service-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 22px 48px rgba(11,43,71,0.2);
}
.gi-service-img {
  aspect-ratio: 5 / 4;
  background-size: cover;
  background-position: center;
  transition: transform .45s ease, filter .45s ease;
}
.gi-service-card:hover .gi-service-img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}
.gi-service-body {
  padding: 20px 20px 24px;
  flex: 1;
}
.gi-service-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--orange);
}
.gi-service-title {
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  line-height: 1.2;
}
.gi-service-text {
  margin: 0;
  font-size: 13px;
  color: inherit;
  line-height: 1.48;
}
.gi-service-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  font-size: 13px;
  color: var(--navy-text);
  line-height: 1.5;
}
.gi-service-list li { margin-bottom: 4px; }
.gi-service-list li::marker { color: var(--orange); }
@media (max-width: 1000px) { .gi-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .gi-services { grid-template-columns: 1fr; } }

/* ─────────── CLIENT LOGOS ─────────── */
.gi-clients {
  display: flex;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.gi-clients-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: gi-clients-scroll 32s linear infinite;
}
.gi-clients:hover .gi-clients-track {
  animation-play-state: paused;
}
.gi-client {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #444;
  letter-spacing: 0.5px;
  height: 84px;
  flex: 0 0 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 1;
  transition: opacity .25s;
}
.gi-client img {
  max-width: 100%;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.gi-client:hover { opacity: 1; }
@keyframes gi-clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 880px) {
  .gi-clients-track { gap: 34px; animation-duration: 26s; }
  .gi-client { flex-basis: 126px; height: 76px; }
  .gi-client img { max-height: 68px; }
}
@media (prefers-reduced-motion: reduce) {
  .gi-clients {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .gi-clients-track { animation: none; }
}

/* ─────────── TESTIMONIOS ─────────── */
.gi-testis {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.gi-testis-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.gi-testi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
}
.gi-testi-title {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
}
.gi-testi-stars {
  color: var(--yellow);
  font-size: 24px;
  letter-spacing: 4px;
}
.gi-testi-text {
  font-size: 15px;
  color: var(--navy-text);
  line-height: 1.5;
  max-width: 320px;
}
.gi-testi-name { font-weight: 700; font-size: 15px; color: var(--navy); margin-top: 8px; }
.gi-testi-role { font-size: 13px; color: var(--gray-text); line-height: 1.3; }

.gi-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: var(--orange);
  font-size: 32px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gi-arrow-btn.prev { left: -48px; }
.gi-arrow-btn.next { right: -48px; }
@media (max-width: 1180px) {
  .gi-arrow-btn.prev { left: 0; }
  .gi-arrow-btn.next { right: 0; }
}
@media (max-width: 880px) {
  .gi-testis {
    max-width: 420px;
    padding: 0 42px;
  }
  .gi-testis-track {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .gi-testis-track .gi-testi {
    display: none;
  }
  .gi-testis-track .gi-testi:first-child {
    display: flex;
  }
  .gi-arrow-btn.prev { left: 0; }
  .gi-arrow-btn.next { right: 0; }
}

/* ─────────── BLOG CARDS ─────────── */
.gi-blogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1020px;
  margin: 0 auto;
}
.gi-blog {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  background: #fff;
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease;
}
.gi-blog:hover { transform: translateY(-9px) scale(1.012); box-shadow: 0 20px 46px rgba(11,43,71,0.22); }
.gi-blog-img {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-bottom-right-radius: 0;
  border-top-right-radius: 56px;
  position: relative;
}
.gi-blog-date {
  position: absolute;
  right: 16px;
  bottom: -32px;
  width: 64px; height: 88px;
  background: #fff;
  border-radius: 20px 20px 20px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.gi-blog-date span:first-child { font-size: 22px; }
.gi-blog-date span:last-child { font-size: 14px; margin-top: 4px; }
.gi-blog-body {
  padding: 30px 20px 22px;
  color: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.gi-blog-body.is-yellow { background: var(--yellow); color: var(--navy); }
.gi-blog-body.is-navy   { background: var(--navy); color: #fff; }
.gi-blog-body.is-blue   { background: var(--lightblue); color: var(--navy); }
.gi-blog-body.is-orange { background: var(--orange); color: #fff; }
.gi-blog-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 14px;
}
.gi-blog-author {
  font-size: 13px;
  margin: 0 0 10px;
  opacity: 0.9;
}
.gi-blog-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--offwhite);
  color: var(--navy);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}
.gi-blog-cta::before {
  content: "";
  width: 16px; height: 11px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 4.5C7 4.5 2.7 7.6 1 12c1.7 4.4 6 7.5 11 7.5s9.3-3.1 11-7.5C21.3 7.6 17 4.5 12 4.5zm0 12.5a5 5 0 1 1 0-10 5 5 0 0 1 0 10zm0-8a3 3 0 1 0 0 6 3 3 0 0 0 0-6z' fill='black'/></svg>") center/contain no-repeat;
}
@media (max-width: 980px) {
  .gi-blogs { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .gi-blog-title { font-size: 14px; }
  .gi-blog-body { padding: 24px 14px 18px; }
}

/* ─────────── PARTNER / Q10 ─────────── */
.gi-partner {
  text-align: center;
}
.gi-partner-divider {
  width: 60%;
  max-width: 720px;
  height: 4px;
  background: var(--navy);
  margin: 24px auto 36px;
}
.gi-partner img { display: inline-block; margin: 0 auto; max-width: 280px; }

/* ─────────── FOOTER ─────────── */
.gi-footer {
  background: #0b2b47;
  padding: 56px var(--gutter) 0;
  color: #f5f7fa;
}
.gi-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr .9fr 1.35fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.gi-footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 18px;
}
.gi-footer-logo img {
  max-width: 180px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.gi-footer-brand p {
  margin: 0 0 22px;
  max-width: 330px;
  color: rgba(255,255,255,0.74);
  font-size: 15px;
  line-height: 1.5;
}
.gi-footer-socials {
  display: flex;
  gap: 12px;
}
.gi-footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .15s;
}
.gi-footer-socials a:hover {
  background: var(--orange);
  transform: translateY(-1px);
}
.gi-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gi-footer-col h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}
.gi-footer-col a,
.gi-footer-col span {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.35;
}
.gi-footer-col a:hover {
  color: #fff;
}
.gi-footer-logo .mark {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 80px;
  letter-spacing: -2px;
  background: linear-gradient(180deg, #15406b 0%, #87b2d4 60%, #cfe1f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.gi-footer-logo .sub {
  letter-spacing: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
}
.gi-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 15px;
  color: rgba(255,255,255,0.86);
}
.gi-footer-contact .row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gi-footer-contact .ico {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.gi-footer-form h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 16px;
  color: #fff;
}
.gi-footer-form {
  display: grid;
  gap: 12px;
}
.gi-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.gi-input,
.gi-textarea {
  width: 100%;
  border: 0;
  background: rgba(255,255,255,0.1);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  resize: none;
}
.gi-textarea {
  border-radius: 28px;
  min-height: 110px;
  margin-bottom: 12px;
}
.gi-footer-form .gi-textarea {
  margin-bottom: 0;
}
.gi-input::placeholder, .gi-textarea::placeholder { color: rgba(255,255,255,0.62); }
.gi-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.gi-form-footer label { display: flex; gap: 8px; align-items: flex-start; cursor: pointer; max-width: 320px; line-height: 1.3; }
.gi-footer-submit {
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  padding: 12px 22px;
  transition: background .15s, transform .15s;
  white-space: nowrap;
}
.gi-footer-submit:hover {
  background: #df7f18;
  transform: translateY(-1px);
}
@media (max-width: 980px) {
  .gi-footer-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .gi-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .gi-footer-inner { grid-template-columns: 1fr; }
  .gi-form-footer { align-items: stretch; flex-direction: column; }
}

/* ─────────── COPYRIGHT BAR ─────────── */
.gi-footer-credit {
  grid-column: 1 / -1;
  margin-top: 32px;
  padding: 18px 0 26px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}
.gi-fixed-bar { display: none; }
.gi-fixed-bar .socials { display: flex; }
.gi-fixed-bar .socials a {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
body { padding-bottom: 42px; }
@media (max-width: 720px) { body { padding-bottom: 42px; } }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ─────────── WHATSAPP FAB ─────────── */
.gi-fab {
  position: fixed;
  bottom: 84px;
  right: 28px;
  width: 60px; height: 60px;
  border-radius: 999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.36);
  z-index: 40;
  transition: transform .2s;
}
.gi-fab:hover { transform: scale(1.08); }
.gi-fab svg { width: 32px; height: 32px; }

/* ─────────── UTILS ─────────── */
.gi-divider {
  width: 60%;
  height: 4px;
  background: var(--navy);
  margin: 0 auto 32px;
  max-width: 900px;
}
.text-center { text-align: center; }
.gi-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}
