:root {
  --navy-950: #020b15;
  --navy-900: #061524;
  --navy-850: #0a1c2f;
  --navy-800: #10283e;
  --navy-700: #183d5c;
  --gold-500: #d8a84e;
  --gold-400: #e8bf70;
  --gold-300: #f2d493;
  --cream: #f8f4eb;
  --sand: #eee6d8;
  --ink: #0b1c2d;
  --muted: #617182;
  --white: #ffffff;
  --border: rgba(11, 28, 45, 0.12);
  --shadow: 0 24px 70px rgba(5, 20, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-geist-sans), "Avenir Next", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-geist-sans), "Avenir Next", "Segoe UI", sans-serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container-xxl {
  max-width: 1320px;
}

.topbar {
  height: 38px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

.topbar .container-xxl {
  height: 100%;
}

.topbar a,
.topbar span {
  color: inherit;
  transition: color 0.25s ease;
}

.topbar a:hover {
  color: var(--gold-400);
}

.topbar-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-500);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  min-height: 82px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(5, 20, 35, 0.07);
  box-shadow: 0 8px 30px rgba(5, 20, 35, 0.04);
  backdrop-filter: blur(16px);
}

.site-header .navbar {
  min-height: 82px;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(216, 168, 78, 0.4);
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: 0.14em;
}

.brand small {
  margin-top: 0.34rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar-nav {
  gap: 0.15rem;
}

.site-header .nav-link {
  position: relative;
  padding: 0.8rem 0.85rem !important;
  color: #26384a;
  font-size: 0.89rem;
  font-weight: 600;
}

.site-header .nav-link::after {
  position: absolute;
  right: 0.85rem;
  bottom: 0.45rem;
  left: 0.85rem;
  height: 1px;
  background: var(--gold-500);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: 0.25s ease;
}

.site-header .nav-link:hover {
  color: var(--navy-900);
}

.site-header .nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.navbar-toggler {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--navy-900);
  box-shadow: none !important;
  font-size: 1.45rem;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0.78rem 1.3rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-lg {
  min-height: 56px;
  padding: 0.95rem 1.55rem;
  font-size: 0.94rem;
}

.btn-gold {
  border: 1px solid var(--gold-500);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 10px 28px rgba(216, 168, 78, 0.2);
}

.btn-gold:hover,
.btn-gold:focus {
  border-color: var(--gold-400);
  background: linear-gradient(135deg, #f5dfa9, var(--gold-400));
  color: var(--navy-950);
  box-shadow: 0 14px 34px rgba(216, 168, 78, 0.3);
}

.btn-navy {
  border: 1px solid var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.btn-navy:hover,
.btn-navy:focus {
  border-color: var(--navy-800);
  background: var(--navy-800);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(6, 21, 36, 0.2);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

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

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(2, 11, 21, 0.98) 0%, rgba(3, 14, 26, 0.91) 37%, rgba(3, 14, 26, 0.2) 74%),
    url("../images/gmk-hero.webp") center right / cover no-repeat,
    var(--navy-950);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 65%);
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(2, 11, 21, 0.52));
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: -160px;
  left: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(216, 168, 78, 0.13);
  border-radius: 50%;
}

.hero-glow::before,
.hero-glow::after {
  position: absolute;
  border: 1px solid rgba(216, 168, 78, 0.09);
  border-radius: 50%;
  content: "";
}

.hero-glow::before {
  inset: 70px;
}

.hero-glow::after {
  inset: 140px;
}

.min-vh-hero {
  min-height: 720px;
  padding: 6rem 0 7.5rem;
}

.hero-kicker,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
  color: var(--gold-500);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 36px;
  height: 1px;
  background: var(--gold-500);
}

.hero h1 {
  max-width: 800px;
  margin: 0 0 1.5rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.3vw, 5.4rem);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.hero h1 em {
  display: block;
  color: var(--gold-400);
  font-weight: 400;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.73);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-trust {
  display: grid;
  max-width: 790px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.2rem;
}

.hero-trust > div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-trust i {
  color: var(--gold-400);
  font-size: 1.45rem;
}

.hero-trust span {
  display: flex;
  flex-direction: column;
}

.hero-trust strong {
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 20px;
  background: var(--gold-400);
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0%,
  100% {
    opacity: 0.35;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 9px);
  }
}

.intro-strip {
  position: relative;
  z-index: 2;
  background: var(--cream);
  border-bottom: 1px solid rgba(216, 168, 78, 0.2);
}

.intro-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 1.15rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(11, 28, 45, 0.1);
}

.intro-item:last-child {
  border-right: 0;
}

.intro-number {
  color: rgba(216, 168, 78, 0.46);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
}

.intro-item div {
  display: flex;
  flex-direction: column;
}

.intro-item small {
  margin-bottom: 0.22rem;
  color: var(--gold-500);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.intro-item strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  font-weight: 500;
}

.section {
  padding: 7.5rem 0;
}

.section-kicker::before {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-kicker-light {
  color: var(--gold-400);
}

.section-title {
  max-width: 780px;
  margin: 0 0 1.35rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-copy {
  color: var(--muted);
  line-height: 1.85;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.68) !important;
}

.g-xl-6 {
  --bs-gutter-x: 5.5rem;
}

.about-visual {
  position: relative;
  max-width: 610px;
  padding: 1.5rem 3rem 3rem 0;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3.3;
  background: var(--navy-800);
  box-shadow: var(--shadow);
}

.about-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(2, 11, 21, 0.24));
  content: "";
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-seal {
  position: absolute;
  top: -1.8rem;
  right: 0;
  width: 118px;
  height: 118px;
  padding: 0.3rem;
  border-radius: 50%;
  background: var(--navy-950);
  box-shadow: 0 18px 40px rgba(2, 11, 21, 0.2);
}

.about-seal img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.about-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(390px, 76%);
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: var(--navy-900);
  box-shadow: 0 20px 44px rgba(2, 11, 21, 0.24);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.5;
}

.about-card i {
  color: var(--gold-400);
  font-size: 2rem;
}

.about-card span {
  display: flex;
  flex-direction: column;
}

.about-card strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  font-weight: 500;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.value-grid > div {
  display: flex;
  gap: 0.8rem;
}

.value-grid i {
  color: var(--gold-500);
  font-size: 1.4rem;
}

.value-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.value-grid strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(216, 168, 78, 0.55);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.text-link:hover {
  color: var(--gold-500);
}

.section-services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 168, 78, 0.11), transparent 34%),
    var(--navy-900);
}

.section-services::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black);
  pointer-events: none;
}

.section-services .container-xxl {
  position: relative;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.service-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(216, 168, 78, 0.12);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  border-color: rgba(216, 168, 78, 0.42);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-6px);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.service-topline span {
  color: rgba(255, 255, 255, 0.28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
}

.service-topline i {
  color: var(--gold-400);
  font-size: 2rem;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.service-card p {
  min-height: 4.6rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.7;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 800;
}

.section-goals {
  background: var(--cream);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.section-heading .section-title,
.section-heading .section-lead {
  margin-right: auto;
  margin-left: auto;
}

.goal-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(11, 28, 45, 0.09);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(6, 21, 36, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.goal-card:hover {
  box-shadow: 0 24px 52px rgba(6, 21, 36, 0.11);
  transform: translateY(-7px);
}

.goal-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 2rem;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 1.45rem;
}

.goal-card small {
  color: var(--gold-500);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.goal-card h3 {
  margin: 0.55rem 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.goal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.goal-card > a {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--gold-500);
  color: var(--navy-950);
  transition: background 0.2s ease;
}

.goal-card > a:hover {
  background: var(--gold-300);
}

.section-process {
  position: relative;
  background:
    linear-gradient(115deg, var(--navy-950), var(--navy-800));
}

.section-process::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(216, 168, 78, 0.08);
  border-radius: 50% 0 0;
  content: "";
}

.section-process .container-xxl {
  position: relative;
  z-index: 1;
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-item > span {
  color: var(--gold-400);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.process-item h3 {
  margin: 0 0 0.4rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.process-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.87rem;
  line-height: 1.7;
}

.section-contact {
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 168, 78, 0.13), transparent 30%),
    var(--white);
}

.contact-shell {
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(5, 20, 35, 0.14);
}

.contact-info {
  padding: 4rem;
  background:
    linear-gradient(rgba(6, 21, 36, 0.94), rgba(6, 21, 36, 0.96)),
    url("../images/gmk-solucoes.webp") center / cover no-repeat;
}

.contact-info .section-title {
  font-size: clamp(2.2rem, 3.4vw, 3.45rem);
}

.contact-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.2rem;
}

.contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-list i {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid rgba(216, 168, 78, 0.3);
  color: var(--gold-400);
}

.contact-list span {
  display: flex;
  overflow-wrap: anywhere;
  flex-direction: column;
  font-size: 0.82rem;
  line-height: 1.6;
}

.contact-list small {
  margin-bottom: 0.08rem;
  color: var(--gold-400);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-list em {
  color: rgba(255, 255, 255, 0.48);
  font-style: normal;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2.4rem;
}

.contact-social > span {
  margin-right: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
}

.contact-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: 0.2s ease;
}

.contact-social a:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.contact-form-wrap {
  padding: 4rem;
  background: var(--cream);
}

.form-heading span {
  color: var(--gold-500);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 0.5rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 500;
}

.form-heading p {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-label {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
}

.form-control,
.form-select {
  min-height: 52px;
  border: 1px solid rgba(11, 28, 45, 0.13);
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-size: 0.88rem;
}

textarea.form-control {
  min-height: 116px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 0.2rem rgba(216, 168, 78, 0.12);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.69rem;
}

.site-footer {
  padding: 5rem 0 2rem;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.52);
}

.brand-footer {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.brand-footer:hover {
  color: var(--white);
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.48);
}

.site-footer .col-lg-5 > p {
  max-width: 470px;
  font-size: 0.84rem;
  line-height: 1.8;
}

.site-footer h3 {
  margin-bottom: 1.2rem;
  color: var(--gold-400);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer .col-6 a,
.site-footer .col-lg-3 a,
.site-footer .col-lg-3 span {
  display: block;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  max-width: 650px;
  margin: 0;
  font-size: 0.65rem;
  line-height: 1.55;
}

.footer-bottom p:last-child {
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 1030;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.55rem 0.55rem 1rem;
  border-radius: 40px;
  background: #25d366;
  box-shadow: 0 12px 34px rgba(14, 83, 41, 0.28);
  color: #05210f;
  font-size: 0.74rem;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 16px 40px rgba(14, 83, 41, 0.4);
  color: #05210f;
  transform: translateY(-3px);
}

.floating-whatsapp i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 1.25rem;
}

@media (max-width: 1199.98px) {
  .site-header .nav-link {
    padding-right: 0.62rem !important;
    padding-left: 0.62rem !important;
    font-size: 0.82rem;
  }

  .brand small {
    letter-spacing: 0.08em;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 3rem;
  }
}

@media (max-width: 991.98px) {
  .site-header,
  .site-header .navbar {
    min-height: 74px;
  }

  .brand img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand strong {
    font-size: 1.25rem;
  }

  .navbar-collapse {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    padding: 1rem 1.25rem 1.4rem;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 18px 35px rgba(5, 20, 35, 0.12);
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .site-header .nav-link {
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(11, 28, 45, 0.07);
  }

  .site-header .nav-link::after {
    display: none;
  }

  .navbar-collapse .btn {
    width: 100%;
    margin-top: 1rem;
  }

  .hero {
    min-height: 690px;
    background:
      linear-gradient(90deg, rgba(2, 11, 21, 0.98) 0%, rgba(3, 14, 26, 0.88) 54%, rgba(3, 14, 26, 0.44) 100%),
      url("../images/gmk-hero.webp") center / cover no-repeat,
      var(--navy-950);
  }

  .min-vh-hero {
    min-height: 690px;
    padding-top: 5rem;
  }

  .hero-trust {
    max-width: 690px;
  }

  .section {
    padding: 6rem 0;
  }

  .about-visual {
    margin: 0 auto 1rem;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero {
    min-height: 710px;
    background-position: 65% center;
  }

  .min-vh-hero {
    min-height: 710px;
    padding: 4.2rem 0 7rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13.5vw, 4rem);
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2.3rem;
  }

  .scroll-cue {
    display: none;
  }

  .intro-item {
    min-height: auto;
    padding: 1.2rem 0.5rem;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 28, 45, 0.1);
  }

  .intro-item:last-child {
    border-bottom: 0;
  }

  .about-visual {
    padding: 1rem 1.4rem 3rem 0;
  }

  .about-seal {
    top: -0.8rem;
    width: 88px;
    height: 88px;
  }

  .about-card {
    width: 88%;
    padding: 1rem;
  }

  .about-card i {
    font-size: 1.5rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card p {
    min-height: 0;
  }

  .process-item {
    grid-template-columns: 48px 1fr;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 2.3rem 1.25rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 1.18rem;
  }

  .hero-kicker,
  .section-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .hero .btn {
    width: 100%;
  }

  .section-title {
    font-size: 2.35rem;
  }

  .about-image-wrap {
    aspect-ratio: 4 / 4.1;
  }

  .about-card strong {
    font-size: 0.9rem;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    padding-left: 0.55rem;
  }

  .floating-whatsapp span {
    display: none;
  }

  .contact-list span {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* GMK Flask edition */
.hero-gmk {
  background:
    linear-gradient(90deg, rgba(2, 11, 21, 0.99) 0%, rgba(3, 14, 26, 0.94) 40%, rgba(3, 14, 26, 0.24) 78%),
    url("../images/gmk-hero-ai.webp") 66% center / cover no-repeat,
    var(--navy-950);
}

.hero h1 em {
  display: inline;
  color: var(--gold-400);
}

.intro-strip .col-md-3 .intro-item,
.intro-strip .col-md-3.intro-item {
  min-height: 118px;
}

.service-card > small {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--gold-400);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-image {
  width: 100%;
  height: 245px;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.78;
  object-fit: cover;
}

.simulation-section {
  background:
    linear-gradient(90deg, rgba(248, 244, 235, 0.98), rgba(248, 244, 235, 0.92)),
    url("../images/gmk-planning-ai.webp") center / cover;
}

.feature-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-checks li {
  color: var(--navy-850);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-checks i {
  margin-right: 0.35rem;
  color: var(--gold-600);
}

.dark-form {
  background: var(--navy-900);
  box-shadow: var(--shadow);
  color: var(--white);
  padding: 2.5rem;
}

.dark-form h3 {
  margin: 0 0 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.dark-form label,
.tool-card label {
  display: block;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 700;
}

.dark-form .form-control,
.dark-form .form-select {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.15);
  margin-top: 0.5rem;
  background-color: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.dark-form .form-select option {
  color: var(--ink);
}

.clients-section {
  background: var(--white);
}

.client-carousel {
  max-width: 760px;
  margin: 0 auto;
}

.client-slide {
  position: relative;
  height: 720px;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.client-slide::after {
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(2, 11, 21, 0.9));
  content: "";
}

.client-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 2rem 2.2rem;
  color: var(--white);
}

.client-caption small {
  color: var(--gold-400);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-caption strong {
  margin-top: 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.client-carousel .carousel-control-prev,
.client-carousel .carousel-control-next {
  top: 50%;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(5, 20, 35, 0.76);
  opacity: 1;
  transform: translateY(-50%);
}

.client-carousel .carousel-control-prev {
  left: 1.2rem;
}

.client-carousel .carousel-control-next {
  right: 1.2rem;
}

.partners-section {
  overflow: hidden;
  background: var(--navy-850);
}

.partner-image {
  width: 100%;
  min-height: 590px;
  border: 8px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.partner-list {
  margin: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.partner-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.15rem 0;
}

.partner-list strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.partner-list span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  text-align: right;
}

.partner-note {
  border-left: 2px solid var(--gold-500);
  color: rgba(255, 255, 255, 0.52);
  padding-left: 1rem;
  font-size: 0.69rem;
  line-height: 1.65;
}

.blog-section {
  background: var(--cream);
}

.blog-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(5, 20, 35, 0.08);
  transition: 0.25s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.blog-card > a {
  display: block;
  height: 230px;
  overflow: hidden;
}

.blog-card > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover > a img {
  transform: scale(1.03);
}

.blog-card > div {
  padding: 1.6rem;
}

.blog-card small {
  color: var(--gold-600);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0.85rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.7;
}

.blog-card > div > a {
  color: var(--navy-900);
  font-size: 0.73rem;
  font-weight: 800;
}

.tools-section {
  background: var(--white);
}

.tool-card {
  height: 100%;
  box-shadow: var(--shadow);
  padding: 3rem;
}

.tool-card h2 {
  margin: 1rem 0 1.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 500;
}

.tool-card .form-control,
.tool-card .form-select {
  min-height: 52px;
  margin-top: 0.5rem;
}

.appointment-card {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
}

.document-card {
  background: var(--navy-900);
  color: var(--white);
}

.document-card > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.7;
}

.document-card > label:not(.drop-zone) {
  margin-top: 1rem;
}

.drop-zone {
  display: flex !important;
  min-height: 170px;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.32);
  margin: 1.2rem 0;
  flex-direction: column;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
}

.drop-zone.dragging {
  border-color: var(--gold-400);
  background: rgba(255, 255, 255, 0.06);
}

.drop-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.drop-zone i {
  margin-bottom: 0.65rem;
  color: var(--gold-400);
  font-size: 2rem;
}

.drop-zone strong {
  color: var(--white);
}

.drop-zone small,
.drop-zone span,
.security-note {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
}

.file-status {
  color: var(--gold-400) !important;
}

.faq-section {
  background: var(--white);
}

.faq-section .accordion-item {
  border-color: var(--border);
}

.faq-section .accordion-button {
  min-height: 82px;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--navy-900);
}

.faq-section .accordion-body {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.75;
}

.contact-map {
  width: 100%;
  height: 220px;
  border: 0;
  margin-top: 1.5rem;
  filter: grayscale(1);
}

.site-footer .col-lg-4 > p {
  max-width: 420px;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  line-height: 1.75;
}

.site-footer .col-lg-4 > a,
.site-footer .col-lg-2 > a {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.34) !important;
  font-size: 0.66rem !important;
}

.flash-stack {
  position: fixed;
  z-index: 2000;
  top: 105px;
  right: 1.5rem;
  width: min(420px, calc(100vw - 3rem));
}

.inner-hero {
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.inner-hero .container-xxl {
  padding-right: 0;
}

.inner-hero-copy {
  padding: 5.5rem 5rem 5.5rem 0;
}

.inner-hero-copy h1,
.article-hero h1,
.legal-page h1,
.not-found-page h1 {
  margin: 1.2rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.inner-hero-copy p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.75;
}

.inner-hero-image {
  min-height: 520px;
}

.inner-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.service-detail-section {
  background: var(--cream);
}

.detail-group {
  margin-top: 2.5rem;
}

.detail-group h3 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.detail-group ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-group li {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.detail-group li i {
  margin-right: 0.7rem;
  color: var(--gold-600);
}

.legal-note {
  border-left: 3px solid var(--gold-500);
  background: var(--white);
  margin-top: 2.5rem;
  padding: 1.4rem 1.5rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.7;
}

.request-steps {
  position: sticky;
  top: 112px;
  background: var(--navy-900);
  box-shadow: var(--shadow);
  color: var(--white);
  padding: 2.5rem;
}

.request-steps h2 {
  margin: 1rem 0 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.request-steps ol {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.request-steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.request-steps li span {
  color: var(--gold-400);
  font-family: Georgia, "Times New Roman", serif;
}

.related-section {
  background: var(--white);
}

.related-card {
  border: 1px solid var(--border);
  padding: 2rem;
}

.related-card > i {
  color: var(--gold-600);
  font-size: 1.8rem;
}

.related-card h3 {
  margin: 1.2rem 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
}

.related-card p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.7;
}

.related-card a {
  color: var(--navy-900);
  font-size: 0.74rem;
  font-weight: 800;
}

.article-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: 6rem 0 7rem;
}

.article-container {
  max-width: 900px;
}

.article-hero span {
  color: var(--gold-400);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-hero p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.75;
}

.article-cover {
  max-width: 1100px;
  height: 560px;
  margin-top: -3rem;
}

.article-cover img {
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.article-content {
  max-width: 760px;
  padding: 5rem 0 7rem;
}

.article-content > p {
  color: #405363;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.9;
}

.legal-page {
  background: var(--cream);
  padding: 7rem 0;
}

.legal-container {
  max-width: 860px;
}

.legal-page h2 {
  margin: 2.5rem 0 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
}

.legal-page p {
  color: var(--muted);
  line-height: 1.8;
}

.not-found-page {
  display: grid;
  min-height: 65vh;
  place-items: center;
  background: var(--navy-900);
  color: var(--white);
  padding: 5rem 0;
}

.not-found-page span {
  color: var(--gold-400);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
}

@media (max-width: 991.98px) {
  .hero-gmk {
    background:
      linear-gradient(90deg, rgba(2, 11, 21, 0.97), rgba(2, 11, 21, 0.74)),
      url("../images/gmk-hero-ai.webp") 64% center / cover no-repeat;
  }

  .client-slide {
    height: 620px;
  }

  .inner-hero .container-xxl {
    padding-right: var(--bs-gutter-x, 0.75rem);
  }

  .inner-hero-copy {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
  }

  .inner-hero-image {
    position: absolute;
    inset: 0;
    min-height: 100%;
    opacity: 0.28;
  }

  .inner-hero .row {
    position: relative;
    min-height: 580px;
  }

  .inner-hero-image img {
    min-height: 100%;
  }

  .request-steps {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .dark-form,
  .tool-card,
  .request-steps {
    padding: 1.5rem;
  }

  .client-slide {
    height: 520px;
  }

  .client-caption {
    padding: 1.4rem;
  }

  .client-caption strong {
    font-size: 1.15rem;
  }

  .partner-list > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-list span {
    text-align: left;
  }

  .partner-image {
    min-height: 420px;
  }

  .article-cover {
    height: 320px;
  }
}
