:root {
  --gks-blue: #00408c;
  --gks-blue-soft: #0c71c3;
  --gks-coral: #e85234;
  --gks-coral-dark: #c63f24;
  --ink: #061723;
  --ink-2: #0b2234;
  --muted: #5b6b78;
  --line: rgba(6, 23, 35, .11);
  --paper: #ffffff;
  --mist: #f3f6f8;
  --ice: #eaf2f8;
  --shadow: 0 24px 60px rgba(5, 23, 35, .12);
  --shadow-soft: 0 16px 42px rgba(5, 23, 35, .08);
  --radius: 8px;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-heading: "Archivo", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  min-height: 100vh;
  min-height: 100svh;
  padding: 96px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.section > .container {
  width: min(1200px, calc(100% - 48px));
}

.section-white {
  background: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #79c8ff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--gks-blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(42px, 5.3vw, 74px);
  font-weight: 800;
  text-transform: none;
}

h2 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 800;
  text-transform: none;
}

h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

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

.btn-lg {
  min-height: 54px;
  padding: 16px 28px;
}

.btn-coral {
  background: var(--gks-coral);
  color: #fff;
}

.btn-coral:hover {
  background: var(--gks-coral-dark);
}

.btn-white {
  background: #fff;
  color: var(--ink);
}

.btn-white:hover {
  background: var(--ice);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.gks-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.gks-nav.scrolled {
  background: rgba(6, 23, 35, .82);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 14px 42px rgba(6, 23, 35, .28);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(1260px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.nav-logo {
  flex: 0 0 auto;
}

.nav-logo img {
  width: auto;
  height: 42px;
  filter: brightness(0) invert(1);
  transition: filter .25s ease;
}

.gks-nav.scrolled .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links > li > a,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 13px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.gks-nav.scrolled .nav-links > li > a,
.gks-nav.scrolled .nav-dropdown > a {
  color: rgba(255, 255, 255, .92);
}

.nav-links a:hover,
.nav-submenu a.active {
  color: var(--gks-coral);
}

.nav-dropdown {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 260px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.nav-submenu a:hover {
  background: var(--mist);
}

.nav-cta {
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: background-color .2s ease, transform .2s ease, opacity .2s ease;
}

.gks-nav.scrolled .nav-toggle span {
  background: #fff;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 116px 0 64px;
  color: #fff;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 23, 35, .98) 0%, rgba(6, 23, 35, .9) 38%, rgba(6, 23, 35, .55) 72%, rgba(6, 23, 35, .86) 100%),
    linear-gradient(180deg, rgba(0, 64, 140, .12), rgba(232, 82, 52, .13));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: center;
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1.35vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  padding: 28px;
  background: rgba(255, 255, 255, .96);
  border-top: 6px solid var(--gks-blue-soft);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.panel-topline {
  margin-bottom: 12px;
  color: var(--gks-coral);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.panel-number {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 70px;
  font-weight: 800;
  line-height: .9;
}

.hero-panel p {
  color: var(--muted);
  font-weight: 600;
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.panel-tags span {
  padding: 7px 10px;
  background: var(--ice);
  color: var(--gks-blue);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-strip {
  background: var(--mist);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: 58px;
  align-items: center;
}

.why-copy p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.why-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.why-points div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-weight: 700;
}

.why-points i,
.feature-item > i,
.benefit-card > i,
.step > i,
.edition-icon i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--ice);
  color: var(--gks-blue);
  border-radius: 4px;
  font-size: 20px;
}

.why-media {
  position: relative;
}

.why-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-stat {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 330px;
  padding: 20px;
  background: rgba(6, 23, 35, .9);
  color: #fff;
  border-top: 4px solid var(--gks-coral);
  backdrop-filter: blur(12px);
}

.why-stat strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 20px;
}

.why-stat span {
  color: rgba(255, 255, 255, .76);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 420px);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-heading.inverted h2,
.section-heading.inverted p {
  color: #fff;
}

.section-heading.inverted p {
  color: rgba(255, 255, 255, .72);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.solution-card,
.product-card,
.edition-card,
.resource-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.solution-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.card-body {
  padding: 28px;
}

.icon-box {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  background: var(--ice);
  color: var(--gks-blue);
}

.icon-box i {
  font-size: 24px;
}

.solution-card h3,
.product-card h3,
.edition-card h3,
.resource-card h3,
.benefit-card h3,
.step h3 {
  margin-bottom: 12px;
  line-height: 1.12;
}

.solution-card p,
.product-card p,
.edition-card p,
.benefit-card p,
.step p {
  color: var(--muted);
}

.solution-card a,
.product-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gks-blue);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.platform-band {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.platform-band::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 42vw;
  height: 60%;
  background: linear-gradient(135deg, rgba(0, 113, 206, .28), rgba(232, 82, 52, .18));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.platform-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.platform-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .35);
}

.platform-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
}

.feature-item > i {
  width: 56px;
  height: 56px;
  background: #fff;
  color: var(--gks-blue);
  font-size: 22px;
}

.feature-item h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.feature-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-wide {
  grid-column: span 3;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: none;
  align-items: stretch;
}

.product-card > img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.product-card > div {
  padding: 30px;
}

.product-card span,
.edition-card span,
.resource-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gks-coral);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(0, 64, 140, .76), rgba(6, 23, 35, .96)),
    var(--ink);
  color: #fff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  min-height: 310px;
  padding: 28px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
}

.benefit-card > i {
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  background: #fff;
  color: var(--gks-blue);
  font-size: 24px;
}

.benefit-card p {
  color: rgba(255, 255, 255, .7);
}

.editions-section {
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}

.edition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.edition-card {
  display: grid;
  align-content: start;
  padding: 26px;
  background: #fff;
}

.edition-card.featured {
  border-color: rgba(232, 82, 52, .45);
  box-shadow: 0 22px 56px rgba(232, 82, 52, .16);
}

.edition-card div {
  padding: 0;
}

.edition-card h3 {
  font-size: 30px;
}

.edition-icon {
  margin-bottom: 26px;
}

.edition-icon i {
  width: 62px;
  height: 62px;
  background: var(--ink);
  color: #fff;
  font-size: 24px;
}

.edition-card.featured .edition-icon i {
  background: var(--gks-coral);
}

.center-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.gks-section {
  background:
    linear-gradient(135deg, rgba(0, 64, 140, .08), rgba(232, 82, 52, .08)),
    #fff;
}

.gks-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: center;
}

.gks-copy {
  position: relative;
  padding: 34px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.gks-copy p {
  color: var(--muted);
  font-size: 17px;
}

.gks-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.step {
  display: grid;
  min-height: 250px;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gks-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.step span {
  color: var(--gks-coral);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.step > i {
  background: var(--ice);
}

.step h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.step p {
  margin-bottom: 0;
}

.resources-section {
  background: var(--ink);
  color: #fff;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.resource-card {
  background: #fff;
  color: var(--ink);
}

.resource-card img {
  width: 100%;
  aspect-ratio: 1.8;
  object-fit: cover;
}

.resource-card span,
.resource-card h3 {
  margin-left: 24px;
  margin-right: 24px;
}

.resource-card span {
  margin-top: 24px;
}

.resource-card h3 {
  margin-bottom: 26px;
  font-size: 24px;
}

.cases-section {
  background: #fff;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.case-card {
  display: grid;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.case-card span {
  margin: 24px 24px 10px;
  color: var(--gks-coral);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 0 24px 28px;
  font-size: 25px;
}

.contact-section {
  background: var(--mist);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 116px;
}

.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.contact-channels {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-channels a,
.contact-channels button {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .8px;
  text-align: left;
  text-transform: uppercase;
}

.contact-channels a:hover,
.contact-channels button:hover {
  border-color: var(--gks-coral);
  color: var(--gks-coral);
}

.contact-form {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group label,
.form-check label {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.form-group label span,
.form-check label span {
  color: var(--gks-coral);
}

.form-group label small {
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(6, 23, 35, .18);
  border-radius: 4px;
  background: var(--mist);
  color: var(--ink);
  padding: 13px 14px;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--gks-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 64, 140, .12);
}

.form-group textarea {
  min-height: 122px;
  resize: vertical;
}

.form-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  margin: 8px 0 22px;
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-check label {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.form-check a {
  color: var(--gks-blue);
  text-decoration: underline;
}

.form-message {
  display: none;
  margin-top: 18px;
  padding: 15px;
  border-radius: 4px;
  font-weight: 700;
}

.form-message.success {
  display: block;
  background: #e8f7ef;
  color: #007a3d;
}

.form-message.error {
  display: block;
  background: #ffece8;
  color: var(--gks-coral-dark);
}

.field-error {
  border-color: var(--gks-coral) !important;
  background: #fff7f5 !important;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(5, 23, 35, .22);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.cfia-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 23, 35, .78);
}

.cfia-popup.active {
  display: flex;
}

.cfia-box {
  width: min(520px, 100%);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cfia-head {
  position: relative;
  padding: 28px;
  background: var(--ink);
  color: #fff;
}

.cfia-head h3 {
  margin: 0;
  font-size: 28px;
}

.cfia-head p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .72);
}

.cfia-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 22px;
}

.cfia-body {
  padding: 28px;
}

.cfia-body p {
  color: var(--muted);
}

.cfia-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    transition: transform .5s ease, opacity .5s ease;
  }

  .reveal:not(.is-visible) {
    opacity: .96;
    transform: translateY(12px);
  }
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    height: calc(100dvh - 76px);
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    padding: 22px 24px 40px;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid var(--line);
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links > li > a,
  .nav-dropdown > a {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    color: var(--ink) !important;
  }

  .nav-submenu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--mist);
  }

  .hero-grid,
  .platform-layout,
  .gks-layout,
  .contact-layout,
  .why-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-panel {
    max-width: 440px;
  }

  .solution-grid,
  .product-grid,
  .edition-grid,
  .benefit-grid,
  .resource-grid,
  .case-grid,
  .gks-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .gks-copy,
  .contact-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .container,
  .nav-inner {
    width: min(100% - 32px, 1200px);
  }

  .section {
    min-height: auto;
    padding: 68px 0;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 108px 0 56px;
  }

  h1 {
    font-size: clamp(36px, 10vw, 52px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .hero-actions,
  .center-actions,
  .cfia-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .solution-grid,
  .product-grid,
  .edition-grid,
  .benefit-grid,
  .resource-grid,
  .case-grid,
  .gks-steps,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-wide {
    grid-column: auto;
  }

  .contact-form {
    padding: 24px;
  }

  .why-media img {
    min-height: 340px;
  }

  .why-stat {
    position: static;
    max-width: none;
  }

  .step {
    min-height: auto;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

/* Allplan page refinements */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 222px;
}

.nav-logo-mark {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain;
  filter: none !important;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav-logo-main {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .5px;
}

.nav-logo-sub {
  margin-top: 4px;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .16);
}

.video-section {
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}

.video-panel {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  gap: 54px;
  align-items: center;
}

.video-copy p {
  color: var(--muted);
  font-size: 17px;
}

.text-list,
.card-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.text-list li,
.card-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  color: var(--muted);
}

.text-list li::before,
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  background: var(--gks-coral);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(6, 23, 35, .12);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.product-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-card .card-list {
  margin-bottom: 12px;
}

.product-card a {
  margin-top: auto;
}

.edition-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.edition-card {
  padding: 0;
}

.edition-media {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  background: var(--gks-blue);
}

.edition-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 64, 140, .9), rgba(12, 113, 195, .7));
}

.edition-media img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
}

.edition-brand {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 20px;
}

.edition-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.edition-logo-card {
  min-height: 190px;
  aspect-ratio: 16 / 9;
  background: #0071ce;
}

.edition-logo-card::after {
  content: none;
}

.edition-logo-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  background: #0071ce;
  object-fit: cover;
  object-position: center;
}

.edition-title-mark {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  display: block;
  width: calc(100% - 48px);
  color: #fff;
  text-align: left;
}

.edition-title-mark strong {
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: none;
  text-shadow: none;
}

.edition-card .edition-body {
  padding: 28px 30px 30px;
}

.edition-card .edition-body > span {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--gks-coral);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 1;
  text-transform: uppercase;
}

.edition-card .edition-body h3 {
  margin: 0 0 14px;
  font-size: 27px;
}

.edition-card .edition-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.edition-card .edition-body .card-list {
  width: 100%;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(6, 23, 35, .08);
}

.edition-card .edition-body .card-list li {
  margin-bottom: 11px;
  padding-left: 22px;
  color: #4f6475;
  font-size: 14px;
  line-height: 1.45;
}

.edition-card .edition-body .card-list li:last-child {
  margin-bottom: 0;
}

.edition-card .edition-body .card-list li::before {
  top: .58em;
  width: 7px;
  height: 7px;
}

.edition-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.edition-video-card {
  overflow: hidden;
  border: 1px solid rgba(0, 64, 140, .16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.edition-video-frame {
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.edition-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.edition-video-card h3 {
  margin: 0;
  padding: 16px 18px 18px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
}

.gks-proof {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.gks-proof i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--gks-coral);
}

.resource-body,
.case-body {
  padding: 24px;
}

.resource-card span,
.resource-card h3,
.case-card span,
.case-card h3 {
  margin-left: 0;
  margin-right: 0;
}

.resource-body span,
.case-body span {
  margin: 0 0 10px;
}

.resource-body h3,
.case-body h3 {
  margin: 0 0 12px;
}

.resource-body p,
.case-body p {
  margin: 0;
  color: var(--muted);
}

.case-card {
  color: var(--ink);
}

.contact-channels a,
.contact-channels button {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.contact-channels i {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  background: var(--ice);
  color: var(--gks-blue);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gks-blue) 50%),
    linear-gradient(135deg, var(--gks-blue) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 76px 0 0;
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
}

.footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(12, 113, 195, .18), transparent 32%),
    linear-gradient(135deg, rgba(0, 64, 140, .16), rgba(232, 82, 52, .08));
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 44px;
  padding-bottom: 48px;
}

.footer-logo {
  width: 116px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  margin: 0 0 22px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
}

.footer-contact-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.footer-contact-list i {
  color: var(--gks-coral);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}

.footer-socials a:hover {
  background: var(--gks-coral);
  border-color: var(--gks-coral);
}

.footer-col-title {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .38);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.footer-links a:hover,
.footer-contact-list a:hover {
  color: #fff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

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

@media (max-width: 1060px) {
  .nav-cta {
    display: none;
  }

  .nav-logo {
    min-width: auto;
  }

  .nav-logo-text {
    display: none;
  }

  .video-panel {
    grid-template-columns: 1fr;
  }

  .edition-grid-six,
  .edition-video-grid,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .edition-grid-six,
  .edition-video-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .video-panel {
    gap: 28px;
  }

  .video-frame {
    min-height: 220px;
  }

  .edition-media,
  .edition-media img {
    min-height: 150px;
  }

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

/* Solibri-style shared header/footer */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 88px;
  background: transparent;
  box-shadow: none;
  transition: background .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

.navbar.scrolled {
  background: rgba(13, 27, 53, .94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

.navbar .nav-inner {
  width: min(1280px, calc(100% - 64px));
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 260px;
  min-width: 260px;
  text-align: center;
}

.nav-brand-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.nav-brand .nav-logo-sub {
  width: 100%;
  margin-top: 0;
  text-align: center;
}

.nav-logo-pair {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-logo-tile,
.nav-product-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo-tile {
  width: 42px;
  height: 42px;
  padding: 7px;
  border-radius: 10px;
  background: var(--gks-coral);
  box-shadow: 0 8px 20px rgba(232, 82, 52, .28);
}

.nav-product-tile {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
}

.nav-logo-tile img,
.nav-product-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.navbar .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
  list-style: none;
}

.navbar .nav-links a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color .18s ease, background .18s ease;
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active {
  color: #fff;
  background: rgba(232, 82, 52, .18);
}

.nav-item {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: .75;
  transform: rotate(45deg) translateY(-2px);
}

.software-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  min-width: 250px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #0d1b35;
  box-shadow: 0 16px 42px rgba(13, 27, 53, .32);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.software-submenu::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
}

.nav-dropdown:hover .software-submenu,
.nav-dropdown:focus-within .software-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar .software-submenu a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: rgba(255, 255, 255, .78);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.navbar .software-submenu a:hover,
.navbar .software-submenu a.active {
  color: #fff;
  background: rgba(42, 82, 152, .42);
}

.software-submenu a.is-live::after {
  content: "Ver";
  color: #ff8b73;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.navbar .software-submenu .submenu-all {
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.hamburger span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 82px 32px 32px;
  background: rgba(6, 23, 35, .98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .24s ease, transform .24s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-menu a {
  color: rgba(255, 255, 255, .78);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.05;
}

.mobile-menu .btn {
  width: fit-content;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 15px;
}

.mobile-submenu {
  display: grid;
  gap: 9px;
  padding: 2px 0 8px 18px;
  border-left: 2px solid rgba(255, 255, 255, .14);
}

.mobile-submenu a {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.mm-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 28px;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 74px 0 28px;
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 14% 12%, rgba(232, 82, 52, .16), transparent 62%),
    radial-gradient(ellipse 52% 52% at 88% 18%, rgba(0, 64, 140, .34), transparent 66%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.45fr .85fr .85fr .85fr;
  gap: 34px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  width: auto;
  height: auto;
  margin-bottom: 18px;
  filter: none;
}

.footer-logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.footer-logo-pair {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-mark,
.footer-sol-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-logo-mark {
  width: 44px;
  height: 44px;
  padding: 7px;
  border-radius: 10px;
  background: var(--gks-coral);
}

.footer-sol-mark {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.footer-logo-mark img,
.footer-sol-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.footer-logo-main {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
}

.footer-logo-sub {
  margin-top: 3px;
  color: rgba(255, 255, 255, .46);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-align: center;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.66;
}

.footer-tagline {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .48);
  font-size: 18px;
  font-style: italic;
}

.footer-contact {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact-icon {
  flex: 0 0 auto;
  display: flex;
  margin-top: 2px;
  color: var(--gks-coral);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .54);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
}

.social-btn-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: translate(-50%, -42%) scale(.72) rotate(-6deg);
  transition: opacity .25s ease, transform .25s ease;
}

.social-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-btn:hover {
  background: var(--gks-coral);
  border-color: var(--gks-coral);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 82, 52, .28);
}

.social-btn:hover .social-btn-label {
  opacity: 0;
}

.social-btn:hover .social-btn-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0);
}

.footer-col h4 {
  margin-bottom: 16px;
  color: var(--gks-coral);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 0;
  padding-top: 24px;
  border-top: 0;
  color: rgba(255, 255, 255, .38);
  font-size: 12px;
  line-height: 1.55;
}

.footer-bottom p {
  margin: 0 0 4px;
}

.footer-bottom > div:first-child {
  display: block;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  color: rgba(255, 255, 255, .55);
}

@media (max-width: 1060px) {
  .navbar .nav-links,
  .navbar .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .navbar .nav-inner {
    width: min(100% - 32px, 1200px);
  }

  .nav-brand {
    width: 220px;
    min-width: 220px;
  }

  .nav-brand .nav-logo-sub {
    display: block;
    font-size: 9px;
    letter-spacing: 1.4px;
  }

  .mobile-menu a {
    font-size: 28px;
  }

  .mobile-submenu a {
    font-size: 16px;
  }

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

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

/* Product section responsive hardening */
#productos .product-grid {
  align-items: stretch;
}

#productos .product-card {
  min-width: 0;
}

#productos .product-card > img {
  display: block;
}

#productos .product-card > div {
  min-width: 0;
}

@media (max-width: 1060px) {
  #productos .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  #productos .product-wide {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  #productos .product-card > img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}

@media (max-width: 760px) {
  #productos .product-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px;
  }

  #productos .product-wide {
    grid-column: 1 / -1 !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
  }

  #productos .product-card {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    overflow: hidden !important;
  }

  #productos .product-card > img {
    position: static !important;
    z-index: 0 !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: 260px !important;
    aspect-ratio: 4 / 3;
    object-fit: cover !important;
  }

  #productos .product-card > div {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    width: 100% !important;
    padding: 22px;
    background: #fff !important;
  }

  #productos .product-card h3 {
    font-size: 23px;
    line-height: 1.12;
  }

  #productos .product-card p,
  #productos .card-list li {
    font-size: 15px;
    line-height: 1.62;
  }

  #productos .product-card a {
    margin-top: 16px;
  }
}

@media (max-width: 430px) {
  #productos .product-card > img {
    aspect-ratio: 1.12;
    max-height: 230px !important;
  }

  #productos .product-card > div {
    padding: 20px;
  }
}
