@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800&family=Libre+Baskerville:wght@400;700&display=swap");

:root {
  --gak-ink: #151719;
  --gak-ink-soft: #4c5359;
  --gak-muted: #737a80;
  --gak-paper: #f7f4ee;
  --gak-paper-2: #eeebe3;
  --gak-white: #ffffff;
  --gak-charcoal: #191919;
  --gak-forest: #173f39;
  --gak-teal: #0f766e;
  --gak-gold: #caa05c;
  --gak-red: #b9473e;
  --gak-line: rgba(21, 23, 25, 0.14);
  --gak-line-light: rgba(255, 255, 255, 0.22);
  --gak-shadow: 0 18px 50px rgba(21, 23, 25, 0.12);
  --gak-container: 1180px;
}

.gac-home .project-carousel-2 .gac-project-lightbox {
  display: block;
  cursor: zoom-in;
}

.gac-home .project-carousel-2 .gac-project-lightbox:focus-visible {
  outline: 3px solid var(--tl-color-theme-primary);
  outline-offset: 4px;
}

.gac-home .project-carousel-2 .project-content {
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
}

body.gak-site {
  margin: 0;
  background: var(--gak-paper);
  color: var(--gak-ink);
  font-family: "Golos Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

.gak-site *,
.gak-site *::before,
.gak-site *::after {
  box-sizing: border-box;
}

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

.gak-site a {
  color: inherit;
  text-decoration: none;
}

.gak-site button,
.gak-site input,
.gak-site select,
.gak-site textarea {
  font: inherit;
}

.gak-site .container {
  width: min(var(--gak-container), calc(100% - 40px));
  max-width: var(--gak-container);
  margin-inline: auto;
}

.gak-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(25, 25, 25, 0.88);
  color: var(--gak-white);
  backdrop-filter: blur(18px);
}

.gak-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.gak-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gak-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.gak-logo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--gak-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  flex: 0 0 auto;
}

.gak-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.gak-brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.gak-brand-name {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gak-brand-sub {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  white-space: nowrap;
}

.gak-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
}

.gak-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gak-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gak-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.gak-nav a:hover,
.gak-nav a:focus-visible {
  color: var(--gak-white);
}

.gak-nav a:hover::after,
.gak-nav a:focus-visible::after {
  transform: scaleX(1);
}

.gak-nav a.active {
  color: var(--gak-white);
}

.gak-nav a.active::after {
  transform: scaleX(1);
}

.gak-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gak-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.gak-lang button {
  min-width: 38px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.gak-lang button.active {
  background: var(--gak-gold);
  color: var(--gak-charcoal);
}

.gak-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gak-white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gak-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.gak-button-primary {
  background: var(--gak-gold);
  color: var(--gak-charcoal);
}

.gak-button-dark {
  background: var(--gak-charcoal);
  color: var(--gak-white);
}

.gak-button-light {
  color: var(--gak-white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.gak-button-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.gak-hero {
  --hero-image: url("../img/global/global-aktion-1.jpeg");
  position: relative;
  min-height: min(620px, calc(100vh - 118px));
  display: flex;
  align-items: center;
  isolation: isolate;
  color: var(--gak-white);
  background-image: linear-gradient(90deg, rgba(15, 16, 17, 0.9) 0%, rgba(15, 16, 17, 0.76) 42%, rgba(15, 16, 17, 0.28) 72%, rgba(15, 16, 17, 0.04) 100%), var(--hero-image);
  background-size: cover;
  background-position: center 58%;
}

.gak-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gak-gold), var(--gak-teal), var(--gak-red));
  z-index: -1;
}

.gak-hero-content {
  max-width: 820px;
  padding: clamp(38px, 5vw, 62px) 0 clamp(28px, 4vw, 48px);
}

.gak-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gak-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gak-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.gak-hero h1 {
  max-width: 780px;
  margin: 18px 0 18px;
  color: var(--gak-white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.1rem, 3.85vw, 4.1rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.gak-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.23rem);
  line-height: 1.7;
}

.gak-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.gak-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.gak-metric {
  min-height: 80px;
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 4px;
  background: rgba(25, 25, 25, 0.26);
}

.gak-metric strong {
  color: var(--gak-white);
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  line-height: 1;
}

.gak-metric span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  line-height: 1.35;
}

.gak-proof {
  background: var(--gak-charcoal);
  color: var(--gak-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.gak-proof-item {
  min-height: 92px;
  padding: 18px 20px;
  display: grid;
  gap: 3px;
  align-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.gak-proof-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.gak-proof-item span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gak-proof-item strong {
  color: var(--gak-white);
  font-size: 0.98rem;
  line-height: 1.3;
}

.gak-section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.gak-page-hero {
  position: relative;
  min-height: clamp(360px, 46vw, 520px);
  display: flex;
  align-items: flex-end;
  color: var(--gak-white);
  background-image: linear-gradient(90deg, rgba(15, 16, 17, 0.9), rgba(15, 16, 17, 0.44)), var(--page-image);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.gak-page-hero.hero-about {
  --page-image: url("../img/global/global-aktion-2.jpeg");
}

.gak-page-hero.hero-services {
  --page-image: url("../img/global/global-aktion-3.jpeg");
}

.gak-page-hero.hero-mandates {
  --page-image: url("../img/global/global-aktion-5.jpeg");
}

.gak-page-hero.hero-faq {
  --page-image: url("../img/global/global-aktion-6.jpeg");
}

.gak-page-hero.hero-contact {
  --page-image: url("../img/global/global-aktion-1.jpeg");
}

.gak-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gak-gold), var(--gak-teal), var(--gak-red));
}

.gak-page-hero-content {
  width: min(920px, 100%);
  padding: clamp(72px, 9vw, 118px) 0 clamp(54px, 7vw, 84px);
}

.gak-page-hero h1 {
  margin: 14px 0 16px;
  color: var(--gak-white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.45rem, 5.2vw, 5.3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.gak-page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.gak-section-tight {
  padding: clamp(58px, 7vw, 96px) 0;
}

.gak-section-muted {
  background: var(--gak-paper-2);
}

.gak-section-dark {
  background: var(--gak-charcoal);
  color: var(--gak-white);
}

.gak-heading {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-bottom: 42px;
}

.gak-heading.center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.gak-kicker {
  color: var(--gak-teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gak-section-dark .gak-kicker {
  color: var(--gak-gold);
}

.gak-title {
  margin: 0;
  color: var(--gak-ink);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.gak-section-dark .gak-title {
  color: var(--gak-white);
}

.gak-lead {
  margin: 0;
  color: var(--gak-ink-soft);
  max-width: 78ch;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.gak-section-dark .gak-lead {
  color: rgba(255, 255, 255, 0.76);
}

.gak-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.gak-split-media {
  position: relative;
}

.gak-split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--gak-shadow);
}

.gak-photo-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100% - 44px));
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--gak-white);
  background: rgba(25, 25, 25, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
}

.gak-copy {
  display: grid;
  gap: 18px;
}

.gak-copy p {
  margin: 0;
  color: var(--gak-ink-soft);
}

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

.gak-page-card {
  min-height: 240px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--gak-line);
  background: var(--gak-white);
  display: grid;
  align-content: start;
  gap: 14px;
}

.gak-page-card i {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gak-white);
  background: var(--gak-forest);
}

.gak-page-card h3 {
  margin: 0;
  color: var(--gak-ink);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.25;
}

.gak-page-card p {
  margin: 0;
  color: var(--gak-ink-soft);
}

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

.gak-bullet-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--gak-ink-soft);
}

.gak-bullet-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--gak-gold);
}

.gak-page-cta {
  padding: clamp(44px, 6vw, 70px);
  border-radius: 8px;
  background: var(--gak-charcoal);
  color: var(--gak-white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.gak-page-cta h2 {
  margin: 0;
  color: var(--gak-white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.gak-page-cta p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.gak-principles {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.gak-principle {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--gak-line);
  border-radius: 8px;
  background: var(--gak-white);
}

.gak-principle i {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gak-white);
  background: var(--gak-forest);
}

.gak-principle strong {
  display: block;
  color: var(--gak-ink);
  line-height: 1.3;
}

.gak-principle span {
  display: block;
  margin-top: 4px;
  color: var(--gak-muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

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

.gak-pole {
  min-height: 420px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
}

.gak-pole-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gak-charcoal);
  background: var(--gak-gold);
  font-size: 1.15rem;
}

.gak-pole h3 {
  min-height: 96px;
  margin: 20px 0 12px;
  color: var(--gak-white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.24rem, 1.6vw, 1.72rem);
  line-height: 1.18;
}

.gak-pole p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.gak-pole ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gak-pole li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.gak-pole li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gak-teal);
}

.gak-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--gak-line);
  background: var(--gak-white);
}

.gak-step {
  min-height: 270px;
  padding: 26px;
  border-right: 1px solid var(--gak-line);
  display: grid;
  align-content: start;
  gap: 18px;
}

.gak-step:last-child {
  border-right: 0;
}

.gak-step-num {
  color: var(--gak-gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gak-step h3 {
  margin: 0;
  color: var(--gak-ink);
  font-size: 1.24rem;
  line-height: 1.22;
}

.gak-step p {
  margin: 0;
  color: var(--gak-ink-soft);
}

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

.gak-capability {
  min-height: 285px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--gak-line);
  background: var(--gak-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.gak-capability i {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gak-white);
  background: var(--gak-teal);
}

.gak-capability h3 {
  margin: 0;
  color: var(--gak-ink);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.22;
}

.gak-capability p {
  margin: 0;
  color: var(--gak-ink-soft);
}

.gak-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 12px;
}

.gak-gallery figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--gak-charcoal);
}

.gak-gallery figure:nth-child(2) {
  min-height: 410px;
}

.gak-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gak-gallery figure:hover img {
  transform: scale(1.04);
}

.gak-gallery figcaption {
  position: absolute;
  inset: auto 16px 16px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--gak-white);
  background: rgba(25, 25, 25, 0.78);
  font-weight: 700;
  line-height: 1.35;
}

.gak-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gak-faq-item {
  border: 1px solid var(--gak-line);
  border-radius: 8px;
  background: var(--gak-white);
  overflow: hidden;
}

.gak-faq-button {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--gak-ink);
  text-align: left;
  cursor: pointer;
}

.gak-faq-button span:first-child {
  font-weight: 800;
  line-height: 1.35;
}

.gak-faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gak-charcoal);
  background: var(--gak-paper-2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.gak-faq-item.open .gak-faq-icon {
  transform: rotate(45deg);
  background: var(--gak-gold);
}

.gak-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.gak-faq-item.open .gak-faq-panel {
  max-height: 320px;
}

.gak-faq-content {
  padding: 0 22px 22px;
  color: var(--gak-ink-soft);
}

.gak-contact {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
  align-items: stretch;
}

.gak-contact-info,
.gak-form {
  border-radius: 8px;
  border: 1px solid var(--gak-line);
  background: var(--gak-white);
  padding: clamp(24px, 4vw, 42px);
}

.gak-contact-info {
  background: var(--gak-forest);
  color: var(--gak-white);
  border-color: rgba(255, 255, 255, 0.12);
}

.gak-contact-info h3,
.gak-form h3 {
  margin: 0 0 14px;
  color: inherit;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.55rem);
  line-height: 1.1;
}

.gak-contact-info p,
.gak-form p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
}

.gak-form p {
  color: var(--gak-ink-soft);
}

.gak-contact-list {
  display: grid;
  gap: 16px;
}

.gak-contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.gak-contact-row i {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gak-gold);
}

.gak-contact-row strong {
  display: block;
  color: var(--gak-white);
  margin-bottom: 3px;
}

.gak-contact-row span,
.gak-contact-row a {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.gak-contact-row a:hover {
  color: var(--gak-gold);
}

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

.gak-field {
  display: grid;
  gap: 7px;
}

.gak-field.full {
  grid-column: 1 / -1;
}

.gak-field label {
  color: var(--gak-ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.gak-field input,
.gak-field select,
.gak-field textarea {
  width: 100%;
  border: 1px solid var(--gak-line);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--gak-ink);
  padding: 13px 14px;
  outline: none;
}

.gak-field textarea {
  min-height: 132px;
  resize: vertical;
}

.gak-field input:focus,
.gak-field select:focus,
.gak-field textarea:focus {
  border-color: var(--gak-teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.gak-form-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.gak-form-note,
.gak-form-success {
  margin: 0;
  color: var(--gak-muted);
  font-size: 0.88rem;
}

.gak-form-success {
  display: none;
  color: var(--gak-teal);
  font-weight: 800;
}

.gak-form-success.show {
  display: block;
}

.gak-footer {
  padding: 58px 0 32px;
  background: var(--gak-charcoal);
  color: var(--gak-white);
}

.gak-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.gak-footer-brand {
  display: grid;
  gap: 16px;
  max-width: 370px;
}

.gak-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.gak-footer h4 {
  margin: 0 0 14px;
  color: var(--gak-white);
  font-size: 1rem;
}

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

.gak-footer-links a,
.gak-footer-links span {
  color: rgba(255, 255, 255, 0.68);
}

.gak-footer-links a:hover {
  color: var(--gak-gold);
}

.gak-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.gak-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 1180px) {
  .gak-poles,
  .gak-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gak-step:nth-child(2) {
    border-right: 0;
  }

  .gak-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--gak-line);
  }
}

@media (max-width: 1020px) {
  .gak-header-inner {
    min-height: 70px;
  }

  .gak-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    background: rgba(25, 25, 25, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--gak-shadow);
  }

  .gak-nav.open {
    display: flex;
  }

  .gak-nav a {
    padding: 12px 10px;
  }

  .gak-nav a::after {
    display: none;
  }

  .gak-menu-toggle {
    display: inline-flex;
  }

  .gak-header-actions .gak-button {
    display: none;
  }

  .gak-split,
  .gak-contact {
    grid-template-columns: 1fr;
  }

  .gak-capabilities,
  .gak-faq,
  .gak-gallery,
  .gak-page-grid,
  .gak-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gak-gallery figure:nth-child(2) {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  body.gak-site {
    font-size: 15px;
  }

  .gak-site .container {
    width: min(100% - 28px, var(--gak-container));
  }

  .gak-brand-sub {
    display: none;
  }

  .gak-logo {
    width: 46px;
    height: 46px;
  }

  .gak-hero {
    min-height: auto;
    background-position: center;
  }

  .gak-hero-content {
    padding: 76px 0 54px;
  }

  .gak-hero-metrics,
  .gak-proof-inner,
  .gak-poles,
  .gak-method-grid,
  .gak-capabilities,
  .gak-faq,
  .gak-gallery,
  .gak-page-grid,
  .gak-footer-grid,
  .gak-form-grid {
    grid-template-columns: 1fr;
  }

  .gak-page-hero {
    min-height: 350px;
  }

  .gak-page-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .gak-page-cta {
    grid-template-columns: 1fr;
  }

  .gak-metric {
    min-height: 88px;
  }

  .gak-proof-item,
  .gak-proof-item:last-child {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .gak-pole,
  .gak-step,
  .gak-capability {
    min-height: auto;
  }

  .gak-pole h3 {
    min-height: auto;
  }

  .gak-step,
  .gak-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--gak-line);
  }

  .gak-step:last-child {
    border-bottom: 0;
  }

  .gak-gallery figure,
  .gak-gallery figure:nth-child(2) {
    min-height: 260px;
  }

  .gak-footer-bottom {
    display: grid;
  }
}

/* Template-preserving Global Aktion layer */
.header-logo img.gac-template-logo,
.site-logo img.gac-template-logo,
.footer-logo img.gac-template-logo,
.side-menu-logo img.gac-template-logo,
.header-logo img[src*="logo-global"],
.site-logo img[src*="logo-global"],
.footer-logo img[src*="logo-global"],
.side-menu-logo img[src*="logo-global"] {
  max-height: 58px;
  width: auto;
  border-radius: 0;
  background: transparent;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.gac-lang-template {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(159, 159, 164, 0.28);
  border-radius: 100px;
  margin-left: 10px;
}

.gac-lang-template .lang-btn {
  min-width: 38px;
  height: 32px;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.gac-lang-template .lang-btn:hover {
  color: var(--tl-color-common-white);
}

.gac-lang-template .lang-btn.active {
  background: var(--tl-color-theme-primary);
  color: var(--tl-color-common-white);
}

.gac-client-auth-template {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 14px;
  color: rgba(255, 255, 255, 0.48);
  white-space: nowrap;
}

.gac-client-auth-template a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.gac-client-auth-template a:hover {
  color: var(--tl-color-theme-primary);
}

.section-heading .section-title,
.section-heading .section-title.title-2,
.section-heading .section-title.gac-title-reduced,
.section-heading .section-title.title-2.gac-title-reduced {
  font-size: 42px !important;
  line-height: 1.14;
}

.slider-3 .section-heading .section-title.gac-title-reduced {
  font-size: clamp(38px, 4.6vw, 64px) !important;
  line-height: 1.06;
}

.slider-3 .slider-desc p {
  font-size: 17px;
  line-height: 1.55;
}

.page-header-content .title.gac-title-reduced {
  font-size: clamp(34px, 3.6vw, 48px) !important;
  line-height: 1.08;
}

.skill-text,
.counter-text span,
.footer-text span {
  letter-spacing: 0;
}

.footer-section {
  padding-bottom: 0 !important;
}

.footer-section .footer-address .number,
.footer-section .footer-address .mail {
  font-size: clamp(16px, 1.08vw, 20px);
  line-height: 1.45;
  letter-spacing: 0;
}

.footer-section .footer-address .mail {
  max-width: 100%;
}

.footer-section .gac-footer-legal {
  max-width: 980px;
  margin: 12px auto 0;
  color: #d0d0d0;
  font-family: var(--tl-ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.footer-text {
  display: none !important;
}

.gac-map iframe {
  filter: saturate(0.9);
}

.gac-contact-status {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.gac-contact-status.is-success {
  border: 1px solid rgba(22, 163, 74, 0.24);
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
}

.gac-contact-status.is-error {
  border: 1px solid rgba(220, 38, 38, 0.24);
  background: rgba(220, 38, 38, 0.1);
  color: #991b1b;
}

.gac-contact-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.request-form-wrap .text-danger {
  display: block;
  margin-top: 7px;
  color: #b42318 !important;
  font-size: 13px;
  font-weight: 700;
}

.service-details-cta .icon img.gac-cta-logo {
  width: 98px;
  height: 98px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

body .faq-content-2 .faq-accordion .accordion .accordion-item .accordion-button {
  padding-right: 64px !important;
  white-space: normal;
}

body .faq-content-2 .faq-accordion .accordion .accordion-item .accordion-button::after {
  flex: 0 0 auto;
  margin-left: auto;
}

body .feature-item-list.feature-item-list-1 .feature-item .title {
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 128px);
  padding-right: 16px;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

body .feature-item-list.feature-item-list-1 .feature-item .title a {
  display: block;
  font-size: clamp(18px, 1.35vw, 25px) !important;
  line-height: 1.16;
}

body.gac-home .testimonial-section-3,
body.gac-home .blog-section,
body.gac-home .newsletter-section {
  display: none;
}

body.gac-about .video-area-wrap,
body.gac-about .history-section,
body.gac-about .award-section,
body.gac-about .gallary-section-2,
body.gac-about .testimonial-section,
body.gac-about .sponsor-section {
  display: none;
}

body.gac-home .counter-section {
  position: relative;
  isolation: isolate;
}

body.gac-home .counter-section .container {
  position: relative;
  z-index: 3;
}

body.gac-home .counter-element {
  z-index: 1 !important;
  pointer-events: none;
  opacity: 0.22;
}

body.gac-home .counter-element img,
body.gac-home .counter-element .scroll-img {
  filter: saturate(0.95) contrast(0.95);
}

body.gac-home .counter-item {
  position: relative;
  z-index: 4;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(246, 246, 246, 0.86);
  backdrop-filter: blur(6px);
}

body.gac-home .counter-item .title,
body.gac-home .counter-item .sub-title,
body.gac-home .counter-item p {
  position: relative;
  z-index: 5;
}

body.gac-home .gac-market-gallery .gallary-carousel-wrap {
  padding-left: 10px;
}

body.gac-home .gac-market-gallery .gallary-carousel {
  overflow: hidden;
}

body.gac-home .gac-market-gallery .gallary-inner-item img {
  aspect-ratio: 1.72 / 1;
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  body.gac-home .gac-market-gallery .gallary-carousel-wrap {
    padding-left: 0;
  }

  .gac-client-auth-template {
    margin-left: 0;
  }

  .gac-lang-template {
    margin-left: 0;
  }

  .section-heading .section-title.gac-title-reduced,
  .section-heading .section-title.title-2.gac-title-reduced {
    font-size: 34px !important;
  }
}

@media only screen and (max-width: 767px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.gac-home .pt-130 {
    padding-top: 58px !important;
  }

  body.gac-home .pb-130 {
    padding-bottom: 58px !important;
  }

  .gac-client-auth-template {
    gap: 8px;
    font-size: 13px;
  }

  .gac-lang-template {
    padding: 3px;
    gap: 3px;
  }

  .gac-lang-template .lang-btn {
    min-width: 34px;
    height: 28px;
    font-size: 11px;
  }

  .slider-section,
  .slider-2,
  .slider-3,
  .slider-item {
    min-height: 560px !important;
    overflow: hidden;
  }

  .slider-3 .bg-img {
    background-position: center top !important;
  }

  .slider-3 .slider-content-wrap {
    min-height: 560px !important;
    padding: 130px 0 70px !important;
  }

  .slider-3 .section-heading .sub-heading,
  .section-heading .sub-heading {
    font-size: 12px !important;
    line-height: 1.3 !important;
    letter-spacing: 0.04em;
  }

  .slider-3 .section-heading .section-title.gac-title-reduced,
  .section-heading .section-title,
  .section-heading .section-title.title-2,
  .section-heading .section-title.gac-title-reduced,
  .section-heading .section-title.title-2.gac-title-reduced {
    font-size: 29px !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
  }

  .slider-3 .slider-desc p,
  .section-heading p,
  .skill-desc p,
  .service-left-content-3 .desc p {
    font-size: 14px !important;
    line-height: 1.48 !important;
  }

  .about-section-3 .row,
  .skill-section .row,
  .faq-section .row {
    row-gap: 28px;
  }

  .about-img-wrap-3 {
    display: grid !important;
    gap: 12px;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .about-img-wrap-3 .about-img-1,
  .about-img-wrap-3 .about-img-2 {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    transform: none !important;
  }

  .about-img-wrap-3 .about-img-1 img,
  .about-img-wrap-3 .about-img-2 img,
  .skill-img img,
  .faq-img img,
  .service-thumb img,
  .project-img img,
  .banner-process-img img {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-height: 360px;
    object-fit: contain !important;
    object-position: center !important;
  }

  .about-img-wrap-3 .about-img-1,
  .about-img-wrap-3 .about-img-2,
  .skill-img,
  .faq-img {
    border-radius: 18px;
    background: #f4f1eb;
    overflow: hidden;
  }

  .about-img-wrap-3 .about-counter {
    position: static !important;
    width: 100% !important;
    max-width: 240px;
    min-height: 86px;
    margin: -4px auto 0 !important;
    transform: none !important;
    border-radius: 18px !important;
    text-align: center;
  }

  .about-img-wrap-3 .about-counter .title,
  .about-img-wrap-3 .about-counter h3 {
    font-size: 34px !important;
    line-height: 1 !important;
  }

  .about-img-wrap-3 .about-counter p {
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  .service-carousel-wrap-3,
  .service-carousel-3,
  .service-item-3,
  .service-thumb {
    overflow: hidden !important;
  }

  .service-item-3 {
    border-radius: 18px;
  }

  .service-content .title a,
  .service-content p {
    overflow-wrap: anywhere;
  }

  .skill-text,
  .counter-text,
  .counter-element,
  .shape,
  .shape-1,
  .shape-2 {
    display: none !important;
  }

  .skill-img {
    margin-top: 6px;
  }

  .counter-section {
    padding: 58px 0 !important;
    overflow: hidden !important;
  }

  .counter-section .row {
    row-gap: 18px !important;
  }

  .counter-item {
    padding: 0 14px 18px !important;
    border-bottom: 1px solid rgba(23, 23, 23, 0.12);
  }

  .counter-item .title {
    display: flex !important;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 10px !important;
    font-size: 34px !important;
    line-height: 1 !important;
    white-space: nowrap;
  }

  .counter-item .title .icon {
    font-size: 20px !important;
    line-height: 1 !important;
  }

  .counter-item .sub-title {
    font-size: 17px !important;
    line-height: 1.24 !important;
  }

  .counter-item p {
    font-size: 14px !important;
    line-height: 1.42 !important;
  }

  .cta-section-3 {
    overflow: hidden !important;
  }

  .cta-wrap-3 {
    min-height: 360px !important;
    padding: 58px 18px !important;
  }

  .cta-wrap-3 .section-title.gac-title-reduced {
    font-size: 31px !important;
    line-height: 1.12 !important;
  }

  .cta-btn-wrap,
  .cta-btn {
    position: static !important;
    transform: none !important;
  }

  .cta-btn {
    width: auto !important;
    min-width: 132px;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    line-height: 44px !important;
    white-space: nowrap;
  }

  .banner-process-area,
  .project-section,
  .faq-section,
  .skill-section,
  .about-section-3 {
    overflow: hidden !important;
  }

  .banner-process-image-list {
    display: grid !important;
    gap: 12px;
  }

  .banner-process-img {
    position: static !important;
    width: 100% !important;
    transform: none !important;
  }
}
