/* ============================================================
   KG Treinamentos — Landing page styles
   Light, teal-forward, premium. Built on KG App tokens.
   ============================================================ */

/* ---- Light-surface shadows (tokens ship dark; marketing needs light) ---- */
:root {
  --shadow-card:
    0 1px 2px rgba(15, 58, 63, 0.05), 0 10px 30px -14px rgba(15, 58, 63, 0.18);
  --shadow-card-hover:
    0 2px 6px rgba(15, 58, 63, 0.07), 0 22px 48px -18px rgba(15, 58, 63, 0.28);
  --shadow-float: 0 18px 44px -16px rgba(15, 58, 63, 0.4);
  --teal-glow: 0 24px 80px -30px rgba(32, 162, 154, 0.65);
  --header-h: 76px;
  /* octagon clip used across image frames + accents */
  --octagon: polygon(
    29% 0,
    71% 0,
    100% 29%,
    100% 71%,
    71% 100%,
    29% 100%,
    0 71%,
    0 29%
  );
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  font-family: var(--font-sans);
  color: var(--slate-700);
  background: var(--slate-0);
  font-size: var(--base-font, 17px);
  line-height: var(--leading-relaxed);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--kg-teal-200);
  color: var(--kg-teal-900);
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 32px;
}

/* ---- Typography helpers ---- */
.eyebrow {
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--kg-teal-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow.on-teal {
  color: var(--kg-teal-200);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  display: inline-block;
  opacity: 0.7;
}
.eyebrow.center-line::before {
  display: none;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--slate-900);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}
.display {
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: var(--weight-black);
}
.h-sec {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: var(--weight-black);
}
.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--slate-500);
  line-height: var(--leading-relaxed);
}
.section-head {
  max-width: 680px;
}
.section-head .h-sec {
  margin-top: 18px;
}
.section-head p {
  margin-top: 16px;
}

/* ---- Sections ---- */
section {
  position: relative;
}
section[id] {
  scroll-margin-top: var(--header-h);
}
.pad {
  padding-block: clamp(72px, 9vw, 128px);
}
.bg-app {
  background: var(--slate-0);
}
.bg-soft {
  background: var(--slate-25);
}
.bg-teal {
  background: var(--kg-teal-900);
  color: var(--slate-100);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: var(--weight-bold);
  padding: 15px 26px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform var(--dur-fast, 140ms) var(--ease-out),
    background var(--dur-fast, 140ms) var(--ease-out),
    box-shadow var(--dur-fast, 140ms) var(--ease-out),
    color var(--dur-fast, 140ms) var(--ease-out),
    border-color var(--dur-fast, 140ms) var(--ease-out);
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--kg-teal-500);
  color: #fff;
  box-shadow: var(--teal-glow);
}
.btn-primary:hover {
  background: var(--kg-teal-600);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-ghost {
  background: transparent;
  color: var(--slate-900);
  border-color: var(--slate-200);
}
.btn-ghost:hover {
  border-color: var(--kg-teal-400);
  color: var(--kg-teal-700);
  transform: translateY(-2px);
}
.btn-ghost.on-teal {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-ghost.on-teal:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-lg {
  padding: 18px 32px;
  font-size: 17px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition:
    background var(--dur-base, 220ms) var(--ease-out),
    box-shadow var(--dur-base, 220ms) var(--ease-out),
    height var(--dur-base, 220ms) var(--ease-out);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow:
    0 1px 0 var(--slate-100),
    var(--shadow-card);
}
.brand {
  display: flex;
  align-items: center;
  height: 48px;
}
.brand img {
  height: 46px;
  width: auto;
  transition: opacity var(--dur-base, 220ms);
}
.brand .logo-dark {
  display: none;
}
.header.scrolled .brand .logo-light {
  display: none;
}
.header.scrolled .brand .logo-dark {
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  font-size: 15px;
  font-weight: var(--weight-semi);
  color: rgba(255, 255, 255, 0.85);
  padding: 9px 14px;
  border-radius: var(--radius-md);
  position: relative;
  transition:
    color var(--dur-fast, 140ms),
    background var(--dur-fast, 140ms);
}
.nav a:hover {
  color: #fff;
}
.nav a.active {
  color: #fff;
}
.nav a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--kg-teal-300);
  border-radius: 2px;
}
.header.scrolled .nav a {
  color: var(--slate-600);
}
.header.scrolled .nav a:hover {
  color: var(--slate-900);
}
.header.scrolled .nav a.active {
  color: var(--kg-teal-700);
}
.header.scrolled .nav a.active::after {
  background: var(--kg-teal-500);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header .btn {
  padding: 11px 20px;
  font-size: 15px;
  box-shadow: none;
}
.header .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}
.header .btn-ghost:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.header .btn-primary {
  box-shadow: 0 8px 24px -12px rgba(32, 162, 154, 0.8);
}
.header.scrolled .btn-ghost {
  color: var(--kg-teal-700);
  border-color: var(--kg-teal-600);
}
.header.scrolled .btn-ghost:hover {
  color: var(--kg-teal-900);
  border-color: var(--kg-teal-700);
  background: var(--kg-teal-50);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
}
.header.scrolled .menu-toggle {
  color: var(--slate-800);
}
.menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--hero-bg, var(--kg-teal-950));
  color: #fff;
  padding-top: calc(var(--header-h) + clamp(48px, 7vw, 96px));
  padding-bottom: clamp(64px, 8vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 70% at 78% 32%,
    rgba(32, 162, 154, 0.34),
    transparent 60%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -12%;
  width: 560px;
  height: 560px;
  background: var(--kg-teal-800);
  clip-path: var(--octagon);
  opacity: 0.34;
  filter: blur(2px);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow {
  color: var(--kg-teal-200);
}
.hero h1 {
  color: #fff;
  margin: 22px 0 0;
}
.hero h1 .accent {
  color: var(--kg-teal-300);
}
.hero-copy .lead {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 22px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.hero-trust .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--kg-teal-300);
}

/* hero portrait — octagon frame echoing the logo */
.hero-figure {
  position: relative;
  justify-self: center;
  width: min(440px, 100%);
  aspect-ratio: 1;
}
.hero-figure .ring {
  position: absolute;
  inset: 0;
  clip-path: var(--octagon);
  background: linear-gradient(150deg, var(--kg-teal-400), var(--kg-teal-700));
  padding: 14px;
}
.hero-figure .ring::after {
  content: "";
  position: absolute;
  inset: 14px;
  clip-path: var(--octagon);
  background: var(--kg-teal-950);
}
.hero-figure .photo {
  position: absolute;
  inset: 22px;
  clip-path: var(--octagon);
  background: var(--kg-teal-900) center/cover no-repeat;
  z-index: 2;
}
.hero-figure img {
  position: absolute;
  inset: 22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
  object-fit: cover;
  clip-path: var(--octagon);
  z-index: 2;
}
.float-chip {
  position: absolute;
  z-index: 3;
  background: #fff;
  color: var(--slate-800);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 12px;
}
.float-chip .ico {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: var(--kg-teal-50);
  color: var(--kg-teal-600);
  flex: none;
}
.float-chip .ico svg {
  width: 22px;
  height: 22px;
}
.float-chip .num {
  font-family: var(--font-numeric);
  font-size: 22px;
  font-weight: var(--weight-bold);
  color: var(--slate-900);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
}
.float-chip .lbl {
  font-size: 12.5px;
  color: var(--slate-500);
  line-height: 1.25;
  margin-top: 3px;
}
.float-chip.tl {
  top: 6%;
  left: -6%;
}
.float-chip.br {
  bottom: 8%;
  right: -7%;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  background: var(--slate-0);
  margin-top: -1px;
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-block: clamp(40px, 5vw, 64px);
}
.stat {
  text-align: left;
  padding: 26px 24px;
  border-radius: var(--radius-xl);
  background: var(--slate-25);
  border: 1px solid var(--slate-100);
  transition:
    transform var(--dur-fast, 140ms) var(--ease-out),
    box-shadow var(--dur-fast, 140ms) var(--ease-out),
    border-color var(--dur-fast, 140ms);
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--kg-teal-200);
}
.stat .num {
  font-family: var(--font-numeric);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: var(--weight-bold);
  color: var(--kg-teal-600);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.stat .num .pre {
  font-size: 0.7em;
  margin-right: 2px;
}
.stat .lbl {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--slate-500);
}

/* ============================================================
   QUEM SOMOS
   ============================================================ */
.about .wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}
.about-figure {
  position: relative;
  justify-self: center;
  width: min(420px, 100%);
}
.about-figure .frame {
  position: relative;
  clip-path: var(--octagon);
  aspect-ratio: 0.86;
  background: var(--slate-100);
}
.about-figure .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-figure .badge {
  position: absolute;
  left: -22px;
  top: 36px;
  z-index: 3;
  background: var(--kg-teal-600);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-float);
  text-align: center;
}
.about-figure .badge .big {
  font-family: var(--font-numeric);
  font-size: 34px;
  font-weight: var(--weight-bold);
  line-height: 1;
}
.about-figure .badge .sm {
  font-size: 12.5px;
  margin-top: 6px;
  opacity: 0.9;
  letter-spacing: 0.02em;
}
.about-figure .deco {
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 130px;
  height: 130px;
  clip-path: var(--octagon);
  background: var(--kg-teal-100);
  z-index: -1;
}
.about-body h2 {
  margin-top: 18px;
}
.about-body .kicker {
  font-size: clamp(19px, 1.6vw, 22px);
  color: var(--slate-700);
  font-weight: var(--weight-semi);
  margin-top: 20px;
  line-height: var(--leading-snug);
}
.about-body p {
  margin-top: 16px;
  color: var(--slate-500);
}
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kg-teal-50);
  color: var(--kg-teal-700);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: var(--weight-semi);
}
.value-chip svg {
  width: 16px;
  height: 16px;
}
.signature {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.signature .name {
  font-weight: var(--weight-bold);
  color: var(--slate-900);
  font-size: 16px;
}
.signature .role {
  font-size: 13.5px;
  color: var(--slate-500);
}

/* ============================================================
   SOLUÇÕES
   ============================================================ */
.sol .section-head {
  margin-inline: auto;
  text-align: center;
}
.sol .section-head .eyebrow {
  justify-content: center;
}
.sol .section-head .eyebrow::before {
  display: none;
}
.feature-carousel {
  margin-top: 56px;
}
.feature-viewport {
  overflow: hidden;
}
.feature-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease-emph);
}
.feature {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  flex: 0 0 calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--dur-fast, 140ms) var(--ease-out),
    box-shadow var(--dur-fast, 140ms),
    border-color var(--dur-fast, 140ms);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--kg-teal-200);
}
.feature .media {
  aspect-ratio: 16/11;
  overflow: hidden;
  position: relative;
}
.feature .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.feature:hover .media img {
  transform: scale(1.06);
}
.feature .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 36, 39, 0.35), transparent 45%);
}
.feature .body {
  padding: 26px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.feature .body h3 {
  font-size: 21px;
  font-weight: var(--weight-bold);
}
.feature .body p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--slate-500);
  line-height: var(--leading-normal);
  flex: 1;
}
.feature .more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--kg-teal-600);
  font-weight: var(--weight-bold);
  font-size: 14.5px;
}
.feature .more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast, 140ms);
}
.feature:hover .more svg {
  transform: translateX(4px);
}
.feature-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.feature-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--slate-200);
  background: #fff;
  color: var(--kg-teal-700);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background var(--dur-fast, 140ms),
    border-color var(--dur-fast, 140ms),
    color var(--dur-fast, 140ms);
}
.feature-btn:hover {
  background: var(--kg-teal-50);
  border-color: var(--kg-teal-400);
  color: var(--kg-teal-900);
}
.feature-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}
.feature-btn svg {
  width: 20px;
  height: 20px;
}
.feature-dots {
  display: flex;
  gap: 8px;
  margin-left: 8px;
}
.feature-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--slate-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background var(--dur-fast, 140ms),
    width var(--dur-fast, 140ms);
}
.feature-dot.active {
  width: 26px;
  border-radius: 5px;
  background: var(--kg-teal-500);
}

/* ============================================================
   CLIENTS marquee
   ============================================================ */
.clients {
  background: var(--slate-0);
  padding-block: clamp(48px, 6vw, 80px);
}
.clients .head {
  text-align: center;
  margin-bottom: 40px;
}
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 56s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.logo-card {
  flex: none;
  width: 220px;
  height: 128px;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  padding: 18px;
}
.logo-card img {
  max-height: 88px;
  max-width: 184px;
  object-fit: contain;
  transition: transform var(--dur-base, 220ms);
}
.logo-card:hover img {
  transform: scale(1.04);
}
@keyframes marquee {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testi {
  background: var(--kg-teal-900);
  color: #fff;
  overflow: hidden;
}
.testi::before {
  content: "";
  position: absolute;
  left: -6%;
  bottom: -18%;
  width: 420px;
  height: 420px;
  clip-path: var(--octagon);
  background: var(--kg-teal-800);
  opacity: 0.4;
}
.testi .wrap {
  position: relative;
  z-index: 2;
}
.testi .section-head .h-sec {
  color: #fff;
}
.testi .section-head .lead {
  color: rgba(255, 255, 255, 0.72);
}
.testi-stage {
  margin-top: 48px;
  position: relative;
}
.testi-viewport {
  overflow: hidden;
}
.testi-track {
  display: flex;
  transition: transform 0.5s var(--ease-emph);
}
.testi-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
}
.testi-photo {
  clip-path: var(--octagon);
  aspect-ratio: 1;
  background: var(--kg-teal-800);
}
.testi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-content .quote-mark {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.6;
  color: var(--kg-teal-300);
  height: 34px;
  display: block;
}
.testi-content blockquote {
  font-size: clamp(19px, 2vw, 25px);
  line-height: var(--leading-snug);
  font-weight: var(--weight-semi);
  color: #fff;
  margin-top: 8px;
}
.testi-author {
  margin-top: 26px;
}
.testi-author .name {
  font-weight: var(--weight-bold);
  font-size: 16px;
  color: #fff;
}
.testi-author .meta {
  font-size: 14px;
  color: var(--kg-teal-200);
  margin-top: 4px;
}
.testi-author .co {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.testi-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}
.testi-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background var(--dur-fast, 140ms),
    border-color var(--dur-fast, 140ms);
}
.testi-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.testi-btn svg {
  width: 20px;
  height: 20px;
}
.testi-dots {
  display: flex;
  gap: 8px;
  margin-left: 8px;
}
.testi-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background var(--dur-fast, 140ms),
    width var(--dur-fast, 140ms);
}
.testi-dot.active {
  background: var(--kg-teal-300);
  width: 26px;
  border-radius: 5px;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contact .grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--slate-100);
}
.contact .section-head {
  margin-bottom: 44px;
  max-width: 760px;
}
.contact-info {
  background: var(--kg-teal-900);
  color: #fff;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.contact-info::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  clip-path: var(--octagon);
  background: var(--kg-teal-800);
  opacity: 0.5;
}
.contact-info > * {
  position: relative;
  z-index: 2;
}
.contact-info h3 {
  color: #fff;
  font-size: 26px;
  font-weight: var(--weight-bold);
}
.contact-info .sub {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 14px;
  font-size: 15.5px;
}
.contact-list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-row .ico {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--kg-teal-200);
  display: grid;
  place-items: center;
}
.contact-row .ico svg {
  width: 20px;
  height: 20px;
}
.contact-row .k {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--kg-teal-200);
}
.contact-row .v {
  font-size: 15.5px;
  color: #fff;
  margin-top: 3px;
  line-height: 1.4;
}
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}
.contact-socials a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: #fff;
  transition:
    background var(--dur-fast, 140ms),
    transform var(--dur-fast, 140ms);
}
.contact-socials a:hover {
  background: var(--kg-teal-500);
  transform: translateY(-2px);
}
.contact-socials svg {
  width: 19px;
  height: 19px;
}

.contact-action {
  background: #fff;
  padding: 58px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.contact-action h3 {
  margin-top: 18px;
  max-width: 560px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: var(--weight-black);
}
.contact-action p {
  margin-top: 18px;
  max-width: 560px;
  color: var(--slate-500);
  font-size: 17px;
  line-height: var(--leading-relaxed);
}
.contact-action .btn {
  margin-top: 30px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--kg-teal-950);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 72px;
}
.footer .cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer .brand-col img {
  height: 54px;
}
.footer .brand-col p {
  margin-top: 20px;
  font-size: 14.5px;
  line-height: var(--leading-normal);
  max-width: 300px;
}
.footer h5 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  font-weight: var(--weight-bold);
  margin-bottom: 18px;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer ul a {
  font-size: 14.5px;
  transition: color var(--dur-fast, 140ms);
}
.footer ul a:hover {
  color: var(--kg-teal-300);
}
.footer .addr {
  font-size: 14px;
  line-height: var(--leading-relaxed);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-bottom .socials {
  display: flex;
  gap: 10px;
}
.footer-bottom .socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background var(--dur-fast, 140ms);
}
.footer-bottom .socials a:hover {
  background: var(--kg-teal-500);
}
.footer-bottom .socials svg {
  width: 17px;
  height: 17px;
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform var(--dur-fast, 140ms);
}
.wa-fab:hover {
  transform: scale(1.08);
}
.wa-fab svg {
  width: 30px;
  height: 30px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* Content is VISIBLE by default. Hidden pre-animation state only applies
   once JS has confirmed it can run (html.js-ready), so any JS/observer
   failure leaves the page fully readable. */
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
html.js-ready .reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  html.js-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track,
  html {
    animation: none;
    scroll-behavior: auto;
  }
}

/* ============================================================
   MOBILE
   ============================================================ */
.mobile-menu {
  display: none;
}
@media (max-width: 1024px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-figure {
    order: -1;
    width: min(380px, 82%);
  }
  .about .wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-figure {
    width: min(360px, 80%);
  }
  .feature {
    flex-basis: calc((100% - 24px) / 2);
  }
  .stats .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .testi-photo {
    width: min(240px, 70%);
    margin-inline: auto;
  }
  .contact .grid {
    grid-template-columns: 1fr;
  }
  .footer .cols {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 760px) {
  .wrap {
    padding-inline: 22px;
  }
  body {
    font-size: 16px;
  }
  .nav,
  .header-cta .btn-ghost {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .feature {
    flex-basis: 100%;
  }
  .float-chip.tl {
    top: 0;
    left: -2%;
  }
  .float-chip.br {
    bottom: 2%;
    right: -2%;
  }
  .float-chip {
    padding: 11px 14px;
  }
  .footer .cols {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  /* slide-in mobile menu */
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 70;
    background: var(--kg-teal-950);
    color: #fff;
    flex-direction: column;
    padding: 80px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-emph);
  }
  .mobile-menu.open {
    transform: none;
  }
  .mobile-menu a {
    font-size: 22px;
    font-weight: var(--weight-bold);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-menu .btn {
    margin-top: 28px;
  }
  .mobile-menu .btn + .btn {
    margin-top: 12px;
  }
  .contact-info,
  .contact-action {
    padding: 38px 28px;
  }
  .mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }
  .mobile-close svg {
    width: 30px;
    height: 30px;
  }
}
