:root {
  --gma-bg: #030406;
  --gma-bg-soft: #0a0d12;
  --gma-bg-card: rgba(255, 255, 255, 0.030);
  --gma-bg-card-strong: rgba(255, 255, 255, 0.09);
  --gma-text: #f5f7fb;
  --gma-muted: rgba(245, 247, 251, 0.68);
  --gma-muted-weak: rgba(245, 247, 251, 0.48);
  --gma-border: rgba(255, 255, 255, 0.16);
  --gma-border-strong: rgba(255, 255, 255, 0.26);
  --gma-accent: #8cff00;
  --gma-accent-2: #7c3cff;
  --gma-accent-3: #16e3ff;
  --gma-radius-lg: 28px;
  --gma-radius-xl: 44px;
  --gma-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--gma-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(140, 255, 0, 0.09), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(124, 60, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #000 0%, #04060a 50%, #000 100%);
  color: var(--gma-text);
  font-family: "Instrument Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 1px, transparent 1.5px),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px, 120px 120px, 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.22));
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.gma-site {
  min-height: 100vh;
  overflow: hidden;
}

.gma-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(18px);
}

.gma-header-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  width: min(100% - 40px, 1520px);
  min-height: 78px;
  margin: 0 auto;
}

.gma-logo,
.gma-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.gma-logo-mark {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  transform: rotate(45deg);
  background: var(--gma-accent);
  clip-path: polygon(50% 0%, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0% 50%, 38% 36%);
  box-shadow: 0 0 28px rgba(140, 255, 0, 0.55);
}

.gma-nav,
.gma-hero-actions,
.gma-service-actions,
.gma-tool-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.gma-nav {
  gap: 10px;
}

.gma-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--gma-text);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.gma-nav a:not(.gma-nav-cta):hover {
  border-color: rgba(140, 255, 0, 0.72);
  color: var(--gma-accent);
  box-shadow: 0 0 0 1px rgba(140, 255, 0, 0.14), 0 0 30px rgba(140, 255, 0, 0.12);
}

.gma-nav .gma-nav-cta {
  border-color: var(--gma-border-strong);
  color: var(--gma-text);
}

.gma-nav .gma-nav-cta:hover {
  border-color: var(--gma-accent);
  background: var(--gma-accent);
  color: var(--gma-bg);
  box-shadow: 0 0 0 1px rgba(140, 255, 0, 0.14), 0 0 30px rgba(140, 255, 0, 0.18);
}

.gma-language-menu {
  position: relative;
  justify-self: end;
}

.gma-language-menu summary {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--gma-text);
  list-style: none;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.gma-language-menu summary::-webkit-details-marker {
  display: none;
}

.gma-language-menu summary:hover,
.gma-language-menu[open] summary {
  border-color: rgba(140, 255, 0, 0.72);
  color: var(--gma-accent);
}

.gma-language-menu svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.gma-language-current {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  color: var(--gma-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.gma-language-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  min-width: 108px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(0,0,0,0.92);
  box-shadow: var(--gma-shadow);
}

.gma-language-dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--gma-text);
  font-size: 12px;
  font-weight: 900;
}

.gma-language-dropdown a:hover {
  border-color: rgba(140, 255, 0, 0.72);
  color: var(--gma-accent);
}

.gma-language-dropdown a.active {
  order: -1;
  border-color: var(--gma-accent);
  color: var(--gma-accent);
}

.gma-hero,
.gma-section,
.gma-page-hero,
.gma-detail-page {
  width: min(100% - 40px, 1520px);
  margin: 0 auto;
}

.gma-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: 0 0 30px;
}

.gma-eyebrow,
.gma-section-heading span,
.gma-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gma-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gma-eyebrow::before,
.gma-section-heading span::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.gma-hero h1,
.gma-page-hero h1,
.gma-section-heading h2,
.gma-detail-hero h1,
.gma-contact-band h2 {
  margin: 18px 0;
  color: var(--gma-text);
  font-weight: 900;
  letter-spacing: 0.0em;
  line-height: 0.92;
}

.gma-hero h1 {
  max-width: 980px;
  font-size: clamp(58px, 6vw, 142px);
  letter-spacing: 0.03em;
  line-height: 0.98;
}

.gma-hero p,
.gma-section-heading p,
.gma-detail-hero p,
.gma-contact-band p {
  max-width: 720px;
  margin: 0;
  color: var(--gma-muted);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;    margin-bottom: 20px;
}

.gma-hero-actions {
  gap: 14px;
  margin-top: 23px;
}

.gma-button-primary,
.gma-button-secondary,
.gma-service-actions button,
.gma-small-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.gma-button-primary {
  padding: 0 24px;
  border: 2px solid var(--gma-accent);
  background: var(--gma-accent);
  color: #061006;
  transition: all .2s;
}
.gma-button-primary:hover {
  background: #061006;
  color: var(--gma-accent);
}

.gma-button-secondary {
  padding: 0 24px;
  border: 2px solid var(--gma-border-strong);
  background: rgba(255,255,255,0.04);
  color: var(--gma-text);
  transition: all .2s;
}

.gma-button-secondary:hover {
  border: 2px solid var(--gma-accent);
  color: var(--gma-accent);
}

.gma-button-primary:hover,
.gma-button-secondary:hover,
.gma-service-actions button:hover,
.gma-small-link:hover {
  transform: translateY(-2px);
}

.gma-hero-microcopy {
  width: fit-content;
  margin-top: 38px;
  border-radius: 999px;
  color: var(--gma-muted);
  font-size: 13px;
  font-weight: 800;
}

.gma-hero-orb {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.gma-hero-orb.is-dragging {
  cursor: grabbing;
}

.gma-axis-cube-stage {
  position: relative;
  width: min(100%, 760px);
  min-height: 660px;
  display: grid;
  place-items: center;
  perspective: 1600px;
  perspective-origin: 50% 46%;
}

.gma-axis-cube-tilt {
  position: relative;
  width: 480px;
  height: 480px;
  transform-style: preserve-3d;
  transform: rotateZ(-4.5deg) rotateX(2deg);
}

.gma-axis-cube {
  --gma-cube-size: 430px;
  --gma-cube-half: calc(var(--gma-cube-size) / 2);
  --gma-cube-bar: 3px;
  --gma-cube-depth: 3px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--gma-cube-size);
  height: var(--gma-cube-size);
  margin-left: calc(var(--gma-cube-size) / -2);
  margin-top: calc(var(--gma-cube-size) / -2);
  transform-style: preserve-3d;
  animation: gmaAxisCubeSpin 24s linear infinite;
  will-change: transform;
}

.gma-axis-cube-edge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  transform-style: preserve-3d;
}

.gma-axis-cube-edge.axis-x {
  --edge-w: var(--gma-cube-size);
  --edge-h: var(--gma-cube-bar);
  --edge-d: var(--gma-cube-depth);
}

.gma-axis-cube-edge.axis-y {
  --edge-w: var(--gma-cube-bar);
  --edge-h: var(--gma-cube-size);
  --edge-d: var(--gma-cube-depth);
}

.gma-axis-cube-edge.axis-z {
  --edge-w: var(--gma-cube-bar);
  --edge-h: var(--gma-cube-bar);
  --edge-d: var(--gma-cube-size);
}

.gma-axis-cube-edge {
  width: var(--edge-w);
  height: var(--edge-h);
  margin-left: calc(var(--edge-w) / -2);
  margin-top: calc(var(--edge-h) / -2);
}

.gma-axis-cube-face {
  position: absolute;
  display: block;
  background: #bcc3cd;
}

.gma-axis-cube-face-front,
.gma-axis-cube-face-back {
  width: var(--edge-w);
  height: var(--edge-h);
  left: 0;
  top: 0;
}

.gma-axis-cube-face-front {
  transform: translateZ(calc(var(--edge-d) / 2));
}

.gma-axis-cube-face-back {
  transform: rotateY(180deg) translateZ(calc(var(--edge-d) / 2));
}

.gma-axis-cube-face-top,
.gma-axis-cube-face-bottom {
  width: var(--edge-w);
  height: var(--edge-d);
  left: 0;
  top: 50%;
  margin-top: calc(var(--edge-d) / -2);
}

.gma-axis-cube-face-top {
  transform: rotateX(90deg) translateZ(calc(var(--edge-h) / 2));
}

.gma-axis-cube-face-bottom {
  transform: rotateX(-90deg) translateZ(calc(var(--edge-h) / 2));
}

.gma-axis-cube-face-left,
.gma-axis-cube-face-right {
  width: var(--edge-d);
  height: var(--edge-h);
  top: 0;
  left: 50%;
  margin-left: calc(var(--edge-d) / -2);
}

.gma-axis-cube-face-left {
  transform: rotateY(-90deg) translateZ(calc(var(--edge-w) / 2));
}

.gma-axis-cube-face-right {
  transform: rotateY(90deg) translateZ(calc(var(--edge-w) / 2));
}

.gma-inner-globe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%) rotateZ(-4.5deg) rotateX(2deg);
  transform-style: preserve-3d;
  pointer-events: none;
}

.gma-inner-globe-spin {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: gmaInnerGlobeSpin 12s linear infinite;
}

.gma-globe-meridian {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
}

.gma-globe-meridians {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

@keyframes gmaInnerGlobeSpin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(-360deg);
  }
}

@keyframes gmaAxisCubeSpin {
  from {
    transform: rotateX(-12deg) rotateY(0deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(-12deg) rotateY(360deg) rotateZ(0deg);
  }
}

.gma-section,
.gma-page-hero,
.gma-detail-page {
  padding: 96px 0;
}

.gma-section-topline {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.gma-section.gma-contact-layout {
  padding: 0;
}

.gma-section-heading h2,
.gma-page-hero h1,
.gma-detail-hero h1,
.gma-contact-band h2 {
  font-size: clamp(42px, 5.2vw, 88px);
}

.gma-project-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 480px);
  gap: 24px;
  overflow-x: auto;
  padding: 10px 0 20px;
  scroll-snap-type: x mandatory;
}

.gma-services-grid {
}

.gma-project-grid,
.gma-services-grid,
.gma-review-grid,
.gma-post-grid,
.gma-category-preview-grid {
  display: grid;
  gap: 24px;
}

.gma-project-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gma-services-grid,
.gma-review-grid,
.gma-post-grid,
.gma-category-preview-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gma-project-card,
.gma-service-card,
.gma-review-card,
.gma-post-card,
.gma-category-preview-card,
.gma-empty-card,
.gma-contact-card-large,
.gma-contact-list a,
.gma-contact-list div,
.gma-order-selected,
.gma-order-form,
.gma-process-step {
  border-radius: var(--gma-radius-lg);
  background: var(--gma-bg-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.gma-project-card {
  overflow: hidden;
  scroll-snap-align: start;
}

.gma-project-cover {
  display: block;
  height: 310px;
  overflow: hidden;
  background: #111827;
}

.gma-project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gma-project-cover-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 22% 26%, rgba(140,255,0,0.22), transparent 20%),
    radial-gradient(circle at 78% 62%, rgba(124,60,255,0.28), transparent 28%),
    linear-gradient(135deg, #10131b, #030406);
}

.gma-project-cover-placeholder span {
  color: rgba(255,255,255,0.9);
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.1em;
}

.gma-project-card-body,
.gma-service-card,
.gma-review-card,
.gma-post-card,
.gma-category-preview-card,
.gma-empty-card,
.gma-contact-card-large,
.gma-order-selected,
.gma-order-form {
  padding: 28px;
}

.gma-project-card h3,
.gma-service-card h3,
.gma-post-card h3,
.gma-service-category-head h3 {
  margin: 10px 0 10px;
  color: var(--gma-text);
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.gma-project-card p,
.gma-service-card p,
.gma-review-card p,
.gma-post-card p,
.gma-category-preview-card p,
.gma-service-category-head p,
.gma-rich-text p,
.gma-contact-card-large p {
  color: var(--gma-muted);
  line-height: 1.55;
}

.gma-tool-pills {
  gap: 8px;
  margin: 18px 0;
}

.gma-tool-pills span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  color: var(--gma-muted);
  font-size: 12px;
  font-weight: 800;
}

.gma-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gma-accent);
  font-weight: 900;
  transition: all .2s;
}

.gma-arrow-link:hover {
  color: var(--gma-text);
}

.gma-service-card {
  display: grid;
  min-height: 300px;
  align-content: space-between;
  transform: translateY(0);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.gma-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(140, 255, 0, 0.38);
  background: rgba(255, 255, 255, 0.050);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), 0 0 34px rgba(140, 255, 0, 0.08);
}

.gma-service-card-bottom {
  display: grid;
  gap: 18px;
}

.gma-service-card-bottom strong,
.gma-detail-price {
  color: var(--gma-accent);
  font-size: 18px;
}

.gma-service-actions {
  gap: 10px;
}

.gma-service-actions button,
.gma-small-link {
  min-height: 42px;
  padding: 0 18px;
  border: 2px solid var(--gma-border-strong);
  background: rgba(255,255,255,0.02);
  color: var(--gma-text);
  transition: all .2s;
}

.gma-service-actions button:hover,
.gma-small-link:hover {
  border: 2px solid var(--gma-accent);
  background: rgba(255,255,255,0.03);
  color: var(--gma-accent);
}

.gma-service-actions button.is-added {
  border-color: var(--gma-accent);
  background: rgba(140,255,0,0.14);
}

.gma-service-category-grid {
  display: grid;
  gap: 36px;
}

.gma-service-category {
  display: grid;
  gap: 18px;
}

.gma-service-category-head {
  max-width: 760px;
}

.gma-process-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gma-process-step {
  min-height: 150px;
  padding: 22px;
}

.gma-process-step span {
  color: var(--gma-accent);
  font-weight: 900;
}

.gma-process-step strong {
  display: block;
  margin-top: 30px;
  font-size: 20px;
}

.gma-contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 58px;
  border: 1px solid rgba(140,255,0,0.28);
  border-radius: var(--gma-radius-xl);
  background:
    radial-gradient(circle at 20% 20%, rgba(140,255,0,0.14), transparent 34%),
    rgba(255,255,255,0.06);
}

.gma-page-hero {
  padding-bottom: 24px;
}

.gma-detail-hero {
  max-width: 980px;
}

.gma-detail-cover {
  width: 100%;
  max-height: 620px;
  margin-top: 42px;
  border-radius: var(--gma-radius-xl);
  object-fit: cover;
}

.gma-detail-grid,
.gma-contact-layout,
.gma-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  margin-top: 46px;
}

.gma-detail-grid section {
  padding: 34px;
}

.gma-detail-grid h2 {
  margin: 0 0 18px;
  font-size: 32px;
  letter-spacing: -0.05em;
}

.gma-contact-list {
  display: grid;
  gap: 12px;
}

.gma-contact-list a,
.gma-contact-list div {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
}

.gma-contact-list span {
  color: var(--gma-muted);
}

.gma-contact-list strong {
  color: var(--gma-accent);
}

.gma-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.gma-contact-form label {
  display: grid;
  gap: 8px;
  color: var(--gma-muted);
  font-size: 13px;
  font-weight: 800;
}

.gma-contact-form > button,
.gma-contact-form .gma-order-status {
  grid-column: 1 / -1;
}

.gma-contact-form input,
.gma-smart-input {
  min-height: 54px;
  width: 100%;
  border: 1px solid var(--gma-border);
  border-radius: 18px;
  background: rgba(0,0,0,0.34);
  color: var(--gma-text);
  outline: none;
}

.gma-contact-form input {
  padding: 14px 0 16px 14px;
}

.gma-contact-form input:focus,
.gma-smart-input:focus-within {
  border-color: rgba(140,255,0,0.76);
}

.gma-smart-input {
  position: relative;
  display: grid;
  grid-template-columns: minmax(78px, 1fr) minmax(0, 4fr);
  overflow: visible;
}

.gma-email-smart-input {
  grid-template-columns: minmax(0, 1fr) minmax(100px, auto);
}

.gma-social-smart-input {
  grid-template-columns: 68px minmax(0, 1fr);
}

.gma-smart-input > input {
  min-height: 52px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.gma-social-smart-input > input {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.gma-email-smart-input > input {
  order: 1;
}

.gma-email-smart-input .gma-smart-input-picker {
  order: 2;
}

.gma-smart-input-picker {
  position: relative;
  display: grid;
  min-height: 52px;
}

.gma-smart-input-picker summary {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  list-style: none;
  color: var(--gma-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  cursor: pointer;
  user-select: none;
}

.gma-smart-input-picker summary::-webkit-details-marker {
  display: none;
}

.gma-social-picker summary {
  padding: 0;
}

.gma-social-current-icon {
  position: relative;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}

.gma-social-input-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--gma-accent);
}

.gma-social-current-icon .gma-social-input-icon {
  display: none;
}

.gma-social-smart-input[data-network="Instagram"] .gma-social-current-icon .gma-social-input-icon-instagram,
.gma-social-smart-input[data-network="Telegram"] .gma-social-current-icon .gma-social-input-icon-telegram,
.gma-social-smart-input[data-network="Viber"] .gma-social-current-icon .gma-social-input-icon-viber,
.gma-social-smart-input[data-network="WhatsApp"] .gma-social-current-icon .gma-social-input-icon-whatsapp {
  display: block;
}

.gma-social-smart-input-menu button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.gma-social-smart-input-menu .gma-social-input-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.gma-smart-input-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 150px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(0,0,0,0.95);
  box-shadow: var(--gma-shadow);
}

.gma-email-smart-input .gma-smart-input-menu {
  right: 0;
  left: auto;
}

.gma-smart-input-menu button {
  min-height: 36px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--gma-text);
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  padding: 0 12px;
}

.gma-smart-input-menu button:hover {
  border-color: rgba(140,255,0,0.72);
  color: var(--gma-accent);
}

.gma-order-layout {
  align-items: start;
}

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

.gma-order-form label {
  display: grid;
  gap: 8px;
  color: var(--gma-muted);
  font-size: 13px;
  font-weight: 800;
}

.gma-order-form input,
.gma-order-form textarea {
  width: 100%;
  border: 1px solid var(--gma-border);
  border-radius: 18px;
  background: rgba(0,0,0,0.34);
  color: var(--gma-text);
  outline: none;
  padding: 14px 16px;
}

.gma-order-form input:focus,
.gma-order-form textarea:focus {
  border-color: rgba(140,255,0,0.76);
}

.gma-order-form-wide,
.gma-order-form button,
.gma-order-status {
  grid-column: 1 / -1;
}

.gma-selected-list {
  display: grid;
  gap: 10px;
}

.gma-selected-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid var(--gma-border);
  border-radius: 18px;
  background: rgba(0,0,0,0.28);
}

.gma-selected-item button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gma-border);
  border-radius: 50%;
  background: transparent;
  color: var(--gma-text);
}

.gma-order-status {
  min-height: 24px;
  margin: 0;
  color: var(--gma-accent);
  font-weight: 800;
}

.gma-footer {
  width: min(100% - 40px, 1520px);
  margin: 60px auto 0;
  padding: 48px 0 32px;
  border-top: 1px solid var(--gma-border);
}

.gma-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 30px;
}

.gma-footer p,
.gma-footer-bottom,
.gma-social-links span {
  color: var(--gma-muted);
  transition: all .2s;
}

.gma-social-links span:hover,
.gma-footer-links a:hover{
  color: var(--gma-accent);
}

.gma-footer-links,
.gma-social-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.gma-footer-links a,
.gma-social-links a {
  color: var(--gma-muted);
  font-weight: 800;
  transition: all .2s;
}

.gma-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .gma-header-inner {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .gma-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .gma-hero,
  .gma-detail-grid,
  .gma-contact-layout,
  .gma-order-layout,
  .gma-footer-grid {
    grid-template-columns: 1fr;
  }

  .gma-hero-orb {
    min-height: 500px;
  }

  .gma-axis-cube-stage {
    min-height: 480px;
  }

  .gma-axis-cube-tilt {
    width: 370px;
    height: 370px;
  }

  .gma-axis-cube {
    --gma-cube-size: 330px;
  }
  .gma-inner-globe {
    width: 290px;
    height: 290px;
  }

  .gma-process-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .gma-header-inner,
  .gma-hero,
  .gma-section,
  .gma-page-hero,
  .gma-detail-page,
  .gma-footer {
    width: min(100% - 28px, 1520px);
  }

  .gma-hero {
    min-height: auto;
    padding-top: 58px;
  }

  .gma-hero h1 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .gma-hero-orb {
    min-height: 330px;
  }

  .gma-axis-cube-stage {
    min-height: 300px;
  }

  .gma-axis-cube-tilt {
    width: 190px;
    height: 190px;
  }

  .gma-axis-cube {
    --gma-cube-size: 170px;
  }
  .gma-inner-globe {
    width: 180px;
    height: 180px;
  }

  .gma-section,
  .gma-page-hero,
  .gma-detail-page {
    padding: 58px 0;
  }

  .gma-section-topline,
  .gma-contact-band,
  .gma-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .gma-contact-band {
    padding: 30px;
  }

  .gma-project-rail {
    grid-auto-columns: minmax(280px, 88vw);
  }

  .gma-process-map {
    grid-template-columns: 1fr;
  }

  .gma-order-form,
  .gma-contact-form {
    grid-template-columns: 1fr;
  }

  .gma-smart-input,
  .gma-email-smart-input,
  .gma-social-smart-input {
    /* grid-template-columns: 1fr; */
  }

  .gma-social-smart-input > input {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .gma-smart-input-menu,
  .gma-email-smart-input .gma-smart-input-menu {
    right: 0;
    left: auto;
  }

  .gma-smart-input-menu.gma-social-smart-input-menu {
    right: auto;
    left: 0px;
  }
}

/* GMA request flow: compact lead cards + full contacts form */
.gma-contact-band {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.gma-contact-band .gma-contact-card-large {
  max-width: 1040px;
  margin: 0 auto;
}

.gma-contact-card-lead .gma-contact-form {
  align-items: end;
}

.gma-contact-card-lead .gma-contact-form > button {
  min-height: 54px;
}

.gma-contact-form textarea,
.gma-optional-fields textarea {
  width: 100%;
  border: 1px solid var(--gma-border);
  border-radius: 18px;
  background: rgba(0,0,0,0.34);
  color: var(--gma-text);
  outline: none;
  padding: 14px 16px;
  resize: vertical;
}

.gma-contact-form textarea:focus,
.gma-optional-fields textarea:focus {
  border-color: rgba(140,255,0,0.76);
}

.gma-phone-smart-input {
  grid-template-columns: minmax(112px, auto) minmax(0, 1fr);
}

.gma-phone-smart-input > input {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.gma-phone-smart-input-menu {
  min-width: 132px;
}

.gma-optional-toggle {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 44px;
  padding: 0 20px;
}

.gma-optional-toggle.is-open {
  border-color: rgba(140,255,0,0.72);
  color: var(--gma-accent);
}

.gma-optional-fields {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 4px;
}

.gma-optional-fields[hidden],
.gma-contact-selected-services[hidden] {
  display: none !important;
}

.gma-optional-fields-title {
  grid-column: 1 / -1;
  color: var(--gma-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gma-contact-selected-services {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--gma-border);
  border-radius: 20px;
  background: rgba(0,0,0,0.24);
}

.gma-contact-selected-services h3 {
  margin: 0 0 14px;
  color: var(--gma-text);
  font-size: 18px;
}

@media (max-width: 720px) {
  .gma-optional-fields {
    grid-template-columns: 1fr;
  }

  .gma-phone-smart-input {
    grid-template-columns: 1fr;
  }

  .gma-phone-smart-input > input {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
}

/* GMA portfolio refinements */
.gma-project-card {
  transform: translateY(0);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.gma-project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(140, 255, 0, 0.34);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), 0 0 34px rgba(140, 255, 0, 0.08);
}

.gma-project-card .gma-tool-pills {
  max-height: 32px;
  overflow: hidden;
}

.gma-tool-more {
  border-color: rgba(140, 255, 0, 0.36) !important;
  color: var(--gma-accent) !important;
}

.gma-detail-page .gma-detail-hero {
  max-width: none;
  width: 100%;
}

.gma-detail-tools-section {
  grid-column: 1 / -1;
}

.gma-tool-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gma-tool-detail-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
}

.gma-tool-detail-card img,
.gma-tool-detail-fallback {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.gma-tool-detail-fallback {
  display: grid;
  place-items: center;
  color: var(--gma-accent);
  font-size: 13px;
  font-weight: 900;
}

.gma-tool-detail-card h3 {
  margin: 0 0 6px;
  color: var(--gma-text);
  font-size: 18px;
  line-height: 1.1;
}

.gma-tool-detail-card p {
  margin: 0;
  color: var(--gma-muted);
  font-size: 14px;
  line-height: 1.45;
}

/* GMA portfolio case layout update */
.gma-project-cover {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 9;
}

.gma-project-service-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  display: none;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--gma-text);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.gma-project-card,
.gma-project-card:hover {
  transform: none;
}

.gma-project-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: var(--gma-bg-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.gma-case-page .gma-detail-hero {
  width: 100%;
  max-width: none;
}

.gma-case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 34px;
  align-items: start;
  margin-top: 52px;
}

.gma-case-main {
  display: grid;
  gap: 24px;
}

.gma-case-main section,
.gma-case-screenshot-panel,
.gma-case-gallery-section {
  border-radius: var(--gma-radius-lg);
  padding: 34px;
  margin-bottom: 40px;
}

.gma-case-main h2,
.gma-case-screenshot-panel h2,
.gma-case-gallery-section h2 {
  margin: 0 0 18px;
  color: var(--gma-text);
  font-size: 32px;
  letter-spacing: -0.05em;
}

.gma-case-screenshot-panel {
  position: sticky;
  top: 100px;
}

.gma-case-screenshot,
.gma-case-gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
}

.gma-case-screenshot img {
  width: 100%;
  min-height: 620px;
  max-height: 1120px;
  border-radius: 24px;
  object-fit: cover;
  object-position: top center;
  background: #111827;
}

.gma-case-gallery-section {
  margin-top: 34px;
}

.gma-case-gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.gma-case-gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  object-fit: cover;
  background: #111827;
}

.gma-case-gallery-item span {
  display: block;
  margin-top: 10px;
  color: var(--gma-muted);
  font-size: 14px;
  line-height: 1.35;
}

.gma-lightbox-lock {
  overflow: hidden;
}

.gma-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.gma-lightbox-modal.is-open {
  display: flex;
}

.gma-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
}

.gma-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: calc(100vh - 80px);
  display: grid;
  gap: 12px;
}

.gma-lightbox-close {
  position: absolute;
  right: -14px;
  top: -14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.023);
  border-radius: 999px;
  background: rgba(0,0,0,0.74);
  color: var(--gma-text);
  font-size: 28px;
  line-height: 1;
  transition: all .2s;
}

.gma-lightbox-close:hover {
  border: 2px solid var(--gma-accent);
  color: var(--gma-accent);
}

.gma-lightbox-image-wrap {
  max-height: calc(100vh - 140px);
  overflow: hidden;
  border-radius: 28px;
  cursor: zoom-in;
}

.gma-lightbox-image-wrap img {
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  transition: transform 0.18s ease;
}

.gma-lightbox-modal.is-zoomed .gma-lightbox-image-wrap img {
  transform: scale(1.75);
}

.gma-lightbox-caption {
  min-height: 20px;
  margin: 0;
  color: var(--gma-muted);
  text-align: center;
}

@media (max-width: 980px) {
  .gma-case-layout {
    grid-template-columns: 1fr;
  }

  .gma-case-screenshot-panel {
    position: static;
  }

  .gma-case-screenshot img {
    min-height: auto;
    max-height: none;
    aspect-ratio: 9 / 14;
  }
}

/* GMA project card hover restore */

.gma-project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.24);
  background: var(--gma-bg-card);
  box-shadow: 0 24px 70px rgba(0,0,0,0.26);
}

.gma-project-card:hover .gma-arrow-link {
  color: var(--gma-text);
}

/* GMA portfolio page card alignment hotfix */
.gma-project-grid {
  grid-template-columns: repeat(auto-fit, minmax(330px, 480px));
  justify-content: start;
  align-items: start;
}

.gma-project-grid .gma-project-card {
  width: 100%;
}

.gma-project-card {
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.gma-project-card:hover {
  transform: translateY(-8px);
}

@media (max-width: 720px) {
  .gma-project-grid {
    grid-template-columns: 1fr;
  }
}

/* GMA approach staircase v2 */
.gma-approach-section {
  position: relative;
}

.gma-approach-staircase {
  position: relative;
  display: grid;
  gap: 96px;
  margin-top: 48px;
  padding-bottom: 20px;
}

.gma-approach-node {
  position: relative;
  display: grid;
}

.gma-approach-node.is-left {
  justify-items: start;
}

.gma-approach-node.is-right {
  justify-items: end;
}

.gma-approach-card {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: start;
  gap: 26px;
  min-height: 174px;
  padding: 36px 42px;
  border: 0 !important;
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 18%, rgba(140,255,0,0.10), transparent 30%),
    linear-gradient(180deg, rgba(16, 18, 24, 0.92), rgba(9, 11, 16, 0.96));
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.34);
}

.gma-approach-index {
  display: block;
  padding-top: 2px;
  border: 0 !important;
  background: transparent !important;
  color: var(--gma-accent);
  font-size: 32px;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.gma-approach-card h3 {
  margin: 0 0 12px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.gma-approach-card p {
  max-width: 440px;
  margin: 0;
  color: var(--gma-muted);
  font-size: 17px;
  line-height: 1.35;
}

.gma-approach-curve {
  position: absolute;
  z-index: 0;
  width: min(36vw, 420px);
  height: 150px;
  overflow: visible;
  pointer-events: none;
  color: rgba(128, 92, 255, 0.82);
}

.gma-approach-card {
  position: relative;
  z-index: 1;
}

.gma-approach-curve.to-right {
  left: min(540px, 45vw);
  top: calc(100% - 20px);
}

.gma-approach-curve.to-left {
  right: min(540px, 45vw);
  top: calc(100% - 20px);
}

.gma-approach-curve path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.gma-approach-curve circle {
  fill: var(--gma-accent);
  stroke: rgba(140,255,0,0.42);
  stroke-width: 1.2;
}

@media (max-width: 1100px) {
  .gma-approach-staircase {
    gap: 70px;
  }

  .gma-approach-card {
    width: min(100%, 620px);
  }

  .gma-approach-curve.to-right {
    left: 48%;
  }

  .gma-approach-curve.to-left {
    right: 48%;
  }
}

@media (max-width: 760px) {

  .gma-approach-node,
  .gma-approach-node.is-left,
  .gma-approach-node.is-right {
    justify-items: stretch;
  }

  .gma-approach-card {
    width: 100%;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    min-height: auto;
    padding: 26px 24px;
  }

  .gma-approach-index {
    font-size: 26px;
  }

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

  .gma-approach-card p {
    font-size: 15px;
  }
}

/* GMA approach connector position hotfix */
.gma-approach-staircase {
  gap: 86px;
}

.gma-approach-node {
  min-height: 178px;
}

.gma-approach-node.is-left .gma-approach-card {
  margin-left: 0;
}

.gma-approach-node.is-right .gma-approach-card {
  margin-right: 0;
}

.gma-approach-card {
  width: min(100%, 640px);
  border: 0 !important;
}

.gma-approach-index {
  border: 0 !important;
  background: transparent !important;
}

.gma-approach-curve {
  width: clamp(220px, 30vw, 360px);
  height: 240px;
  color: rgba(128, 92, 255, 0.82);
}

.gma-approach-node:nth-child(1) .gma-approach-curve.to-right {
  left: min(610px, 48vw);
  top: 70px;
}

.gma-approach-node:nth-child(2) .gma-approach-curve.to-left {
  right: min(610px, 48vw);
  top: 84px;
}

.gma-approach-node:nth-child(3) .gma-approach-curve.to-right {
  left: min(610px, 48vw);
  top: 86px;
}

.gma-approach-curve path {
  stroke-width: 1.2;
}

.gma-approach-curve circle {
  r: 5;
}

@media (max-width: 1180px) {
  .gma-approach-node:nth-child(1) .gma-approach-curve.to-right,
  .gma-approach-node:nth-child(3) .gma-approach-curve.to-right {
    left: 54%;
  }

  .gma-approach-node:nth-child(2) .gma-approach-curve.to-left {
    right: 54%;
  }
}

@media (max-width: 760px) {
}

/* GMA approach connector manual controls
   Меняй только значения переменных ниже, если нужно двигать кривые вручную.
   --curve-left / --curve-right: горизонтальная позиция линии.
   --curve-top: вертикальная позиция линии.
   --curve-width / --curve-height: размер SVG-кривой.
   --curve-color: цвет линии.
*/
.gma-approach-staircase {
  --curve-width: clamp(300px, 34vw, 450px);
  --curve-height: 230px;
  --curve-color: rgba(128, 92, 255, 0.82);
  gap: 90px;
}

.gma-approach-node {
  min-height: 188px;
}

.gma-approach-curve {
  width: var(--curve-width);
  height: var(--curve-height);
  color: var(--curve-color);
  top: var(--curve-top, 70px) !important;
  left: var(--curve-left, auto) !important;
  right: var(--curve-right, auto) !important;
}

/* Линия 01 → 02 */
.gma-approach-node:nth-child(1) {
  --curve-left: 610px;
  --curve-right: auto;
  --curve-top: 62px;
  --curve-width: clamp(320px, 35vw, 470px);
  --curve-height: 230px;
}

/* Линия 02 → 03 */
.gma-approach-node:nth-child(2) {
  --curve-left: auto;
  --curve-right: 610px;
  --curve-top: 82px;
  --curve-width: clamp(320px, 35vw, 470px);
  --curve-height: 230px;
}

/* Линия 03 → 04 */
.gma-approach-node:nth-child(3) {
  --curve-left: 610px;
  --curve-right: auto;
  --curve-top: 78px;
  --curve-width: clamp(320px, 35vw, 470px);
  --curve-height: 230px;
}

.gma-approach-curve path {
  stroke-width: 1.1;
}

.gma-approach-curve circle {
  r: 4.5;
}

@media (max-width: 1180px) {
  .gma-approach-node:nth-child(1),
  .gma-approach-node:nth-child(3) {
    --curve-left: 54%;
  }

  .gma-approach-node:nth-child(2) {
    --curve-right: 54%;
  }
}

@media (max-width: 760px) {
  .gma-approach-staircase {
    gap: 34px;
  }

  .gma-approach-node {
    min-height: auto;
  }

  .gma-approach-curve {
    display: none;
  }
}

/* GMA approach fixed desktop connectors */
@media (min-width: 761px) {
  .gma-approach-staircase {
    gap: 66px !important;
  }

  .gma-approach-node {
    position: relative;
    min-height: 170px !important;
    overflow: visible;
  }

  .gma-approach-card {
    position: relative;
    z-index: 2;
    width: min(100%, 680px);
  }

  .gma-approach-curve {
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    top: calc(100% - 14px) !important;
    width: 100% !important;
    height: 176px !important;
    overflow: visible;
    pointer-events: none;
    color: rgba(128, 92, 255, 0.86) !important;
    z-index: 1;
  }

  .gma-approach-curve path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2px !important;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
  }

  .gma-approach-curve circle {
    fill: var(--gma-accent);
    stroke: rgba(128, 92, 255, 0.28);
    stroke-width: 1.5;
  }

  .gma-approach-node.connector-1 .gma-approach-curve,
  .gma-approach-node.connector-3 .gma-approach-curve {
    transform: translateX(0);
  }

  .gma-approach-node.connector-2 .gma-approach-curve {
    transform: translateX(0);
  }
}

@media (max-width: 760px) {
  .gma-approach-curve {
    display: none !important;
  }
}

/* GMA approach automatic connector lines */
.gma-approach-staircase {
  position: relative;
  overflow: visible;
  padding: 0 8vw;
}

.gma-approach-node {
  position: relative;
  z-index: 2;
}

.gma-approach-card {
  position: relative;
  z-index: 2;
}

.gma-approach-curve {
  display: none !important;
}

.gma-approach-auto-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  color: rgba(128, 92, 255, 0.86);
}

.gma-approach-auto-lines path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.gma-approach-auto-lines circle {
  fill: var(--gma-accent);
  stroke: rgba(128, 92, 255, 0.26);
  stroke-width: 1.5;
}

@media (max-width: 760px) {
  .gma-approach-auto-lines {
    display: none !important;
  }
}

/* GMA approach/contact hotfix: adaptive connector layer + social icons */
.gma-approach-auto-lines {
  z-index: 8 !important;
}

.gma-approach-auto-lines path,
.gma-approach-auto-lines circle {
  pointer-events: none;
}

.gma-contact-icon-inline,
.gma-social-icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gma-accent);
}

.gma-contact-icon-inline svg,
.gma-social-icon-inline svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.gma-contact-list a > .gma-contact-icon,
.gma-contact-list a > .gma-contact-icon-inline {
  margin-right: 6px;
}

@media (max-width: 1199px) and (min-width: 761px) {
  .gma-approach-staircase {
    padding-left: clamp(28px, 8vw, 96px);
    padding-right: clamp(28px, 8vw, 96px);
  }
}

/* GMA blog + social icon size refinements */
.gma-contact-icon,
.gma-contact-icon-inline,
.gma-social-icon,
.gma-social-icon-inline {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  flex: 0 0 28px !important;
  object-fit: contain !important;
  overflow: hidden;
}

.gma-contact-list a,
.gma-contact-list div {
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.gma-contact-list a > span:not(.gma-contact-icon):not(.gma-contact-icon-inline),
.gma-social-links a > span:not(.gma-social-icon):not(.gma-social-icon-inline) {
  min-width: 0;
}

.gma-post-grid,
.gma-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.gma-post-card {
  display: grid;
  gap: 18px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
}

.gma-post-card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 22% 24%, rgba(140,255,0,0.18), transparent 24%),
    radial-gradient(circle at 76% 70%, rgba(124,60,255,0.28), transparent 34%),
    linear-gradient(135deg, #10131b, #030406);
}

.gma-post-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gma-post-card:hover .gma-post-card-cover img {
  transform: scale(1.035);
}

.gma-post-card-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.86);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 950;
  letter-spacing: -0.1em;
}

.gma-post-card-body {
  display: grid;
  gap: 10px;
}

.gma-post-card-body strong {
  max-width: 720px;
  color: var(--gma-text);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.gma-blog-list-page {
  min-height: calc(100vh - 78px);
}

.gma-blog-detail-page {
  max-width: 1180px;
}

.gma-blog-detail-cover {
  width: 100%;
  max-height: 640px;
  margin-top: 40px;
  border-radius: var(--gma-radius-xl);
  object-fit: cover;
}

.gma-blog-content {
  max-width: 860px;
  margin-top: 46px;
  padding: 0;
}

.gma-blog-content .gma-rich-text {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.62;
}

@media (max-width: 760px) {
  .gma-post-grid,
  .gma-blog-grid {
    grid-template-columns: 1fr;
  }

  .gma-post-card-cover {
    border-radius: 22px;
  }
}

/* GMA header / posts / contacts / adaptive page gradients patch */
.gma-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.58) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.gma-site {
  position: relative;
  overflow: hidden;
}

.gma-page-gradients {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.gma-site > main,
.gma-site > .gma-header,
.gma-site > .gma-footer {
  position: relative;
  z-index: 1;
}

.gma-page-gradient {
  position: absolute;
  display: block;
  width: clamp(420px, 46vw, 960px);
  height: clamp(420px, 46vw, 960px);
  border-radius: 999px;
  filter: blur(74px);
  opacity: 0.5;
  transform: translate3d(0,0,0);
}

.gma-page-gradient-1 {
  top: 7%;
  left: -18%;
  background: radial-gradient(circle, rgba(140,255,0,0.22), rgba(140,255,0,0.05) 42%, transparent 70%);
}

.gma-page-gradient-2 {
  top: 16%;
  right: -18%;
  background: radial-gradient(circle, rgba(124,60,255,0.26), rgba(124,60,255,0.06) 44%, transparent 72%);
}

.gma-page-gradient-3 {
  top: 38%;
  left: -20%;
  background: radial-gradient(circle, rgba(22,227,255,0.17), rgba(22,227,255,0.045) 46%, transparent 72%);
}

.gma-page-gradient-4 {
  top: 58%;
  right: -22%;
  background: radial-gradient(circle, rgba(140,255,0,0.18), rgba(124,60,255,0.08) 44%, transparent 74%);
}

.gma-page-gradient-5 {
  top: 78%;
  left: 10%;
  width: clamp(520px, 52vw, 1080px);
  height: clamp(520px, 52vw, 1080px);
  background: radial-gradient(circle, rgba(124,60,255,0.20), rgba(22,227,255,0.06) 46%, transparent 74%);
}

.gma-site[data-gma-gradient-count="2"] .gma-page-gradient-3,
.gma-site[data-gma-gradient-count="2"] .gma-page-gradient-4,
.gma-site[data-gma-gradient-count="2"] .gma-page-gradient-5,
.gma-site[data-gma-gradient-count="3"] .gma-page-gradient-4,
.gma-site[data-gma-gradient-count="3"] .gma-page-gradient-5,
.gma-site[data-gma-gradient-count="4"] .gma-page-gradient-5 {
  display: none;
}

.gma-contact-list a,
.gma-contact-list div,
.gma-social-links a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  grid-template-columns: none !important;
  width: fit-content;
  max-width: 100%;
}

.gma-contact-list a strong,
.gma-contact-list div strong {
  display: none !important;
}

.gma-contact-icon,
.gma-contact-icon-inline,
.gma-social-icon,
.gma-social-icon-inline {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  flex: 0 0 28px !important;
  object-fit: contain !important;
  overflow: hidden !important;
}

.gma-contact-icon-inline svg,
.gma-social-icon-inline svg,
.gma-contact-icon svg,
.gma-social-icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.gma-social-links {
  justify-items: start;
}

.gma-post-grid,
.gma-blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
}

.gma-post-card {
  display: grid !important;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 0.62fr);
  align-items: stretch;
  gap: 0;
  min-height: 240px;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 32px !important;
  background:
    radial-gradient(circle at 10% 12%, rgba(140,255,0,0.10), transparent 34%),
    linear-gradient(180deg, rgba(16, 18, 24, 0.92), rgba(9, 11, 16, 0.96)) !important;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.32) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gma-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 38px 90px rgba(0,0,0,0.40), 0 0 36px rgba(140,255,0,0.08) !important;
}

.gma-post-card-cover {
  min-height: 100%;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 22% 24%, rgba(140,255,0,0.18), transparent 24%),
    radial-gradient(circle at 76% 70%, rgba(124,60,255,0.28), transparent 34%),
    linear-gradient(135deg, #10131b, #030406);
}

.gma-post-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gma-post-card-body {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
}

.gma-post-card-body strong {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

@media (max-width: 760px) {
  .gma-header-inner {
    min-height: 60px !important;
  }

  .gma-post-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gma-post-card-cover {
    aspect-ratio: 16 / 9 !important;
  }

  .gma-post-card-body {
    padding: 0px;
  }

  .gma-page-gradient {
    filter: blur(58px);
    opacity: 0.42;
  }
}

/* GMA contact/review/blog refinements */
.gma-contact-band {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: stretch;
}

.gma-review-write-card {
  min-height: 100%;
}

.gma-review-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.gma-review-form label {
  display: grid;
  gap: 8px;
}

.gma-review-form input,
.gma-review-form select,
.gma-review-form textarea {
  width: 100%;
  border: 1px solid var(--gma-border);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--gma-text);
  padding: 14px 16px;
  outline: none;
}

.gma-review-form textarea {
  resize: vertical;
}

.gma-review-consent {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  color: var(--gma-muted);
  font-size: 14px;
}

.gma-review-consent input {
  width: 18px;
  height: 18px;
  padding: 0;
  margin-top: 3px;
}

.gma-review-form-message {
  min-height: 20px;
  margin: 0;
  color: var(--gma-muted);
}

.gma-review-form-message.success,
.review-form-message.success {
  color: var(--gma-accent);
}

.gma-review-form-message.error,
.review-form-message.error {
  color: #ff8066;
}

.gma-contact-layout > .gma-contact-card-large,
.gma-contact-layout > .gma-review-write-card {
  min-width: 0;
}

.gma-contact-selected-services,
.gma-contact-social-row {
  grid-column: 1 / -1;
}

.gma-contact-social-row {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.gma-contact-social-row h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.05em;
}

.gma-social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.gma-social-strip a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  border: 2px solid #00000000;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--gma-text);
  font-weight: 800;
  transition: all .2s;
}

.gma-social-strip a:hover {
  border: 2px solid var(--gma-accent);
  color: var(--gma-accent);
}

.gma-social-strip .gma-social-icon,
.gma-social-strip .gma-social-icon-inline,
.gma-contact-list .gma-contact-icon,
.gma-contact-list .gma-contact-icon-inline {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  flex: 0 0 28px !important;
  object-fit: contain !important;
}

.gma-blog-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 44px;
  padding: 28px;
  border-radius: var(--gma-radius-xl);
  background:
    radial-gradient(circle at 12% 18%, rgba(140,255,0,0.10), transparent 28%),
    linear-gradient(180deg, rgba(16, 18, 24, 0.78), rgba(9, 11, 16, 0.92));
  box-shadow: 0 34px 90px rgba(0,0,0,0.28);
}

.gma-blog-feature-card.without-media {
  grid-template-columns: minmax(0, 1fr);
}

.gma-blog-feature-image {
  appearance: none;
  width: 100%;
  /* min-height: 360px; */
  max-height: 410px;
  padding: 0;
  border: 0;
  border-radius: 32px;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
}

.gma-blog-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gma-blog-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 360px;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
}

.gma-blog-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.gma-blog-feature-description {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 12px 8px;
}

.gma-blog-feature-description p {
  margin: 0;
  color: var(--gma-muted);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.gma-blog-content {
  max-width: 980px;
}

@media (max-width: 980px) {
  .gma-contact-band,
  .gma-contact-layout,
  .gma-blog-feature-card {
    grid-template-columns: 1fr;
  }

  .gma-blog-feature-image,
  .gma-blog-video-frame {
    min-height: 260px;
  }

  .gma-blog-feature-card {padding: 10px;}
}

/* GMA compact contact/review cards + review grid + transparent sticky header */
.gma-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 80 !important;
  background: rgba(0, 0, 0, 0.34) !important;
  backdrop-filter: blur(18px) saturate(1.18) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.18) !important;
  border: none !important;
}

.gma-contact-band {
  align-items: start !important;
}

.gma-contact-band .gma-contact-card-large,
.gma-contact-layout > .gma-contact-card-large,
.gma-contact-layout > .gma-review-write-card {
  min-height: auto !important;
  padding: clamp(20px, 2.1vw, 30px) !important;
}

.gma-contact-card-title {
  margin: 0 0 10px;
  color: var(--gma-text) !important;
  font-size: clamp(28px, 3.2vw, 54px) !important;
  font-weight: 950 !important;
  line-height: 1.5 !important;
  letter-spacing: -0.0em !important;
}

.gma-contact-card-text {
  margin: 0;
  max-width: 720px;
  color: var(--gma-muted);
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.42;
}

.gma-review-form {
  gap: 10px !important;
  margin-top: 16px !important;
}

.gma-review-form label {
  gap: 6px !important;
}

.gma-review-form input,
.gma-review-form textarea {
  padding: 11px 14px !important;
  border-radius: 15px  !important;
}

.gma-smart-input.gma-social-smart-input input {
  border-radius: 0 15px 15px 0  !important;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.gma-review-form textarea {
  min-height: 92px;
}

.gma-review-rating-field {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.gma-review-rating-field legend {
  padding: 0 0 5px 0;
  color: var(--gma-text);
  font-size: 14px;
  font-weight: 800;
}

.gma-review-rating-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gma-review-rating-option {
  display: inline-flex !important;
}

.gma-review-rating-option input {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.gma-review-rating-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  min-width: 58px;
  padding: 8px 12px;
  border: 1px solid var(--gma-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #ffd84d;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.gma-review-rating-option input:checked + span,
.gma-review-rating-option span:hover {
  border-color: rgba(255, 216, 77, 0.82);
  background: rgba(255, 216, 77, 0.12);
}

.gma-review-consent {
  font-size: 12px !important;
  line-height: 2.1;
  margin-left: 5px;
}

.gma-review-form-message,
.review-form-message {
  min-height: 0px !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

.gma-review-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 24px !important;
}

.gma-review-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 220px;
  padding: 28px !important;
  border: 1px solid var(--gma-border);
  border-radius: var(--gma-radius-lg);
  background: var(--gma-bg-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.gma-review-rating {
  color: #ffd84d !important;
  letter-spacing: 0.08em;
  font-size: 18px;
  line-height: 1;
}

.gma-review-card p {
  margin: 0;
  color: var(--gma-text) !important;
  line-height: 1.5;
}

.gma-review-card strong {
  color: var(--gma-accent) !important;
  font-weight: 900;
}

/* GMA fixed header + reviews + home blog promo final patch */
.gma-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: rgba(0, 0, 0, 0.34) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.18) !important;
  backdrop-filter: blur(18px) saturate(1.18) !important;
}

.gma-header-inner {
  min-height: 60px !important;
}

.gma-site > main {
  padding-top: 60px;
}

.gma-review-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin-top: 30px !important;
  align-items: stretch !important;
}

.gma-review-card {
  display: grid !important;
  align-content: start !important;
  gap: 14px !important;
  min-height: auto !important;
  padding: 28px !important;
  border: 0 !important;
  border-radius: var(--gma-radius-lg) !important;
  background: var(--gma-bg-card) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2) !important;
}

.gma-review-rating {
  color: #ffd84d !important;
  letter-spacing: 0.08em;
}

.gma-review-card p {
  margin: 0 !important;
  color: var(--gma-text) !important;
}

.gma-review-card strong {
  color: var(--gma-accent) !important;
}

.gma-home-post-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr) !important;
  gap: 28px !important;
  align-items: stretch !important;
  margin-top: 34px !important;
}

.gma-home-post-main {
  min-width: 0;
}

.gma-home-post-main .gma-post-card {
  height: 100%;
}

.gma-home-post-main .gma-post-card-body p {
  margin: 0;
  color: var(--gma-muted);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.45;
}

.gma-home-instagram-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 32px;
  border: 3px solid #00000000 !important;
  background:
  radial-gradient(circle at 20% 10%, rgba(140,255,0,0.16), transparent 30%),
  radial-gradient(circle at 80% 80%, rgba(124,60,255,0.22), transparent 34%),
  linear-gradient(180deg, rgba(16, 18, 24, 0.92), rgba(9, 11, 16, 0.96));
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.32);
  transition: all .2s ease;
}

.gma-home-instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .2s ease;
}

.gma-home-instagram-card:hover img {
  transform: scale(1.035) !important;
}

.gma-home-instagram-card:hover {
  /* border: 3px solid var(--gma-accent) !important; */
  box-shadow: 0 20px 60px #8cff00ab !important;
}

.gma-home-instagram-card span {
  color: var(--gma-accent);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 950;
  letter-spacing: -0.06em;
}

@media (max-width: 980px) {
  .gma-review-grid,
  .gma-home-post-grid {
    grid-template-columns: 1fr !important;
  }

  .gma-home-instagram-card {
    width: min(100%, 360px);
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .gma-site > main {
    padding-top: 60px;
  }
}

/* GMA blog showcase layout refinement */
.gma-thinking-section .gma-blog-showcase,
.gma-blog-list-page .gma-blog-showcase {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}

.gma-blog-showcase-main {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: clamp(22px, 2.5vw, 42px);
}

.gma-blog-showcase-main .gma-section-heading {
  margin: 0;
  max-width: 980px;
}

.gma-blog-showcase-main .gma-post-card {
  width: 100%;
}

.gma-blog-showcase .gma-home-instagram-card {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  align-self: start;
}

.gma-blog-page-showcase .gma-home-instagram-card {
  max-width: 460px;
}

.gma-blog-more-section {
  padding-top: 0;
}

.gma-blog-more-section .gma-blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

@media (max-width: 1199px) {
  .gma-thinking-section .gma-blog-showcase,
  .gma-blog-list-page .gma-blog-showcase {
    grid-template-columns: 1fr;
  }

  .gma-blog-showcase .gma-home-instagram-card {
    display: none;
  }

  .gma-blog-more-section .gma-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gma-blog-more-section .gma-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Admin blog Instagram block refinement */
.admin-blog-instagram-section > .image-section {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.admin-blog-instagram-header {
  align-items: flex-start;
  gap: 18px;
}

.admin-blog-instagram-header .primary-link-button {
  flex: 0 0 auto;
}

/* GMA blog showcase precision overrides — appended only */
.gma-thinking-section .gma-blog-showcase,
.gma-blog-list-page .gma-blog-showcase {
  grid-template-columns: minmax(0, 1fr) minmax(200px, 260px) !important;
  gap: clamp(18px, 2vw, 34px) !important;
}

.gma-blog-showcase-main {
  width: 100%;
  max-width: none;
  gap: clamp(18px, 1.8vw, 30px) !important;
}

.gma-blog-showcase-main .gma-post-card {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(320px, 400px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.gma-blog-showcase-main .gma-post-card-cover {
  width: 100%;
  aspect-ratio: 8 / 5;
  min-height: 0;
}

.gma-blog-showcase-main .gma-post-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gma-blog-showcase-main .gma-post-card-body {
  min-width: 0;
}

.gma-blog-showcase-main .gma-post-card-body strong {
  font-size: clamp(30px, 3.2vw, 54px);
}

.gma-blog-showcase .gma-home-instagram-card {
  width: clamp(200px, 14vw, 260px) !important;
  max-width: 260px !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 3 / 4;
  justify-self: end;
  align-self: start;
  overflow: hidden;
}

.gma-blog-page-showcase .gma-home-instagram-card {
  width: clamp(200px, 13vw, 240px) !important;
  max-width: 240px !important;
}

.gma-home-instagram-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center;
  background: rgba(255,255,255,0.045);
}

.gma-home-instagram-card:hover img {
  transform: none !important;
}

@media (max-width: 1199px) {
  .gma-thinking-section .gma-blog-showcase,
  .gma-blog-list-page .gma-blog-showcase {
    grid-template-columns: 1fr !important;
  }

  .gma-blog-showcase-main .gma-post-card {
    grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .gma-blog-showcase-main .gma-post-card {
    grid-template-columns: 1fr;
  }
}

/* GMA blog showcase compact equal-height fix */
@media (min-width: 1200px) {
  .gma-thinking-section .gma-blog-showcase,
  .gma-blog-list-page .gma-blog-showcase,
  .gma-blog-showcase.gma-blog-page-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(220px, 15vw, 300px) !important;
    gap: clamp(24px, 2.6vw, 48px) !important;
    align-items: stretch !important;
  }

  .gma-blog-showcase-main {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 26px;
  }

  .gma-blog-showcase-main .gma-section-heading {
    margin-bottom: 0 !important;
  }

  .gma-blog-showcase-main .gma-section-heading h2 {
    max-width: 980px;
  }

  .gma-blog-showcase-main .gma-section-heading p {
    max-width: 760px;
  }

  .gma-blog-showcase-main .gma-post-card {
    display: grid !important;
    grid-template-columns: minmax(300px, 0.48fr) minmax(0, 0.52fr) !important;
    align-items: center !important;
    gap: clamp(28px, 3.2vw, 56px) !important;
    min-height: 0 !important;
    padding: clamp(26px, 2.6vw, 42px) !important;
  }

  .gma-blog-showcase-main .gma-post-card-cover {
    width: 100% !important;
    aspect-ratio: 8 / 5 !important;
    min-height: 0 !important;
    max-height: 260px !important;
    border-radius: 0 !important;
  }

  .gma-blog-showcase-main .gma-post-card-cover img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .gma-blog-showcase-main .gma-post-card-body {
    gap: 14px !important;
  }

  .gma-blog-showcase-main .gma-post-card-body strong {
    font-size: clamp(34px, 3.4vw, 64px) !important;
    line-height: 0.94 !important;
    max-width: 720px;
  }

  .gma-blog-showcase-main .gma-post-card-body p {
    display: block !important;
    margin: 0;
    max-width: 720px;
    color: var(--gma-muted);
    font-size: clamp(16px, 1.25vw, 22px);
    line-height: 1.42;
  }

  .gma-blog-showcase .gma-home-instagram-card,
  .gma-blog-page-showcase .gma-home-instagram-card {
    align-self: stretch !important;
    justify-self: stretch !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 300px !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
  }

  .gma-blog-showcase .gma-home-instagram-card img,
  .gma-blog-page-showcase .gma-home-instagram-card img,
  .gma-home-instagram-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
  }

  .gma-home-instagram-card:hover img {
    transform: none !important;
  }
}

@media (max-width: 1199px) {
  .gma-thinking-section .gma-blog-showcase,
  .gma-blog-list-page .gma-blog-showcase,
  .gma-blog-showcase.gma-blog-page-showcase {
    grid-template-columns: 1fr !important;
  }

  .gma-blog-showcase .gma-home-instagram-card,
  .gma-blog-page-showcase .gma-home-instagram-card {
    display: none !important;
  }

  .gma-blog-showcase-main .gma-post-card {
    max-width: 100%;
  }
}

.gma-blog-showcase,
.gma-blog-page-showcase {
  display: grid !important;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr) !important;
  gap: clamp(22px, 2.4vw, 42px) !important;
  align-items: start !important;
}

.gma-blog-showcase-main {
  min-width: 0 !important;
  width: 100% !important;
  display: grid !important;
  gap: clamp(22px, 2vw, 34px) !important;
}

.gma-blog-showcase .gma-section-heading,
.gma-blog-page-showcase .gma-section-heading {
  margin: 0 !important;
  padding: 0 !important;
}

.gma-blog-showcase .gma-section-heading h2,
.gma-blog-page-showcase .gma-section-heading h2 {
  margin: 18px 0 18px !important;
  line-height: 0.88 !important;
}

.gma-blog-showcase .gma-section-heading p,
.gma-blog-page-showcase .gma-section-heading p {
  max-width: 760px !important;
  margin: 0 !important;
  line-height: 1.35 !important;
}

.gma-blog-showcase .gma-post-card,
.gma-blog-page-showcase .gma-post-card {
  min-height: auto !important;
  display: grid !important;
  grid-template-columns: minmax(220px, 36%) minmax(0, 1fr) !important;
  gap: clamp(20px, 2vw, 34px) !important;
  align-items: center !important;
  padding: clamp(18px, 2vw, 32px) !important;
  border-radius: 34px !important;
}

.gma-blog-showcase .gma-post-card-cover,
.gma-blog-page-showcase .gma-post-card-cover {
  width: 100% !important;
  max-width: 520px !important;
  aspect-ratio: 8 / 5 !important;
  border-radius: 20px !important;
}

.gma-blog-showcase .gma-post-card-cover img,
.gma-blog-page-showcase .gma-post-card-cover img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.gma-blog-showcase .gma-post-card-body,
.gma-blog-page-showcase .gma-post-card-body {
  gap: 10px !important;
  align-content: center !important;
}

.gma-blog-showcase .gma-post-card-body strong,
.gma-blog-page-showcase .gma-post-card-body strong {
  font-size: clamp(30px, 3vw, 58px) !important;
  line-height: 0.92 !important;
  letter-spacing: 0.01em !important;
}

.gma-blog-showcase .gma-post-card-body p,
.gma-blog-page-showcase .gma-post-card-body p,
.gma-blog-showcase .gma-post-card p,
.gma-blog-page-showcase .gma-post-card p {
  max-width: 720px !important;
  margin: 0 !important;
  color: var(--gma-muted) !important;
  font-size: clamp(15px, 1.15vw, 20px) !important;
  line-height: 1.45 !important;
}

.gma-home-instagram-card,
.gma-blog-showcase .gma-home-instagram-card,
.gma-blog-page-showcase .gma-home-instagram-card {
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
  align-self: start !important;
  aspect-ratio: 3 / 4 !important;
  overflow: hidden !important;
  border-radius: 34px !important;
}

.gma-home-instagram-card img,
.gma-blog-showcase .gma-home-instagram-card img,
.gma-blog-page-showcase .gma-home-instagram-card img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.gma-blog-more-section,
.gma-blog-posts-section {
  margin-top: clamp(42px, 5vw, 84px) !important;
}

.gma-blog-more-grid,
.gma-blog-posts-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;
}

.gma-blog-more-grid .gma-post-card,
.gma-blog-posts-grid .gma-post-card {
  min-height: auto !important;
  display: grid !important;
  grid-template-columns: minmax(180px, 42%) minmax(0, 1fr) !important;
  gap: 22px !important;
  align-items: center !important;
  padding: 22px !important;
}

.gma-blog-more-grid .gma-post-card-cover,
.gma-blog-posts-grid .gma-post-card-cover {
  aspect-ratio: 8 / 5 !important;
  border-radius: 18px !important;
}

.gma-blog-more-grid .gma-post-card-body strong,
.gma-blog-posts-grid .gma-post-card-body strong {
  font-size: clamp(24px, 2vw, 36px) !important;
  line-height: 0.96 !important;
}

@media (max-width: 1199px) {
  .gma-blog-showcase,
  .gma-blog-page-showcase {
    grid-template-columns: 1fr !important;
  }

  .gma-home-instagram-card,
  .gma-blog-showcase .gma-home-instagram-card,
  .gma-blog-page-showcase .gma-home-instagram-card {
    display: none !important;
  }

  .gma-blog-more-grid,
  .gma-blog-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .gma-blog-showcase .gma-post-card,
  .gma-blog-page-showcase .gma-post-card,
  .gma-blog-more-grid .gma-post-card,
  .gma-blog-posts-grid .gma-post-card {
    grid-template-columns: 1fr !important;
  }

  .gma-blog-more-grid,
  .gma-blog-posts-grid {
    grid-template-columns: 1fr !important;
  }
}

/* GMA blog showcase final proportion override */
@media (min-width: 1200px) {
  .gma-blog-showcase,
  .gma-blog-showcase.gma-blog-page-showcase,
  .gma-thinking-section .gma-blog-showcase,
  .gma-blog-list-page .gma-blog-showcase {
    display: grid !important;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) !important;
    gap: clamp(18px, 1.8vw, 32px) !important;
    align-items: start !important;
  }

  .gma-blog-showcase-main {
    grid-column: 1 / 2 !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: none !important;
  }

  .gma-blog-showcase .gma-home-instagram-card,
  .gma-blog-showcase.gma-blog-page-showcase .gma-home-instagram-card,
  .gma-blog-page-showcase .gma-home-instagram-card,
  .gma-thinking-section .gma-home-instagram-card,
  .gma-blog-list-page .gma-home-instagram-card {
    grid-column: 2 / 3 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    justify-self: stretch !important;
    align-self: start !important;
    aspect-ratio: 3 / 4 !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    overflow: hidden !important;
  }

  .gma-home-instagram-card img,
  .gma-blog-showcase .gma-home-instagram-card img,
  .gma-blog-page-showcase .gma-home-instagram-card img,
  .gma-thinking-section .gma-home-instagram-card img,
  .gma-blog-list-page .gma-home-instagram-card img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
  }

  .gma-blog-showcase .gma-post-card-body,
  .gma-blog-page-showcase .gma-post-card-body,
  .gma-thinking-section .gma-post-card-body,
  .gma-blog-list-page .gma-post-card-body {
    font-size: 90% !important;
  }

  .gma-blog-showcase .gma-post-card-body strong,
  .gma-blog-page-showcase .gma-post-card-body strong,
  .gma-thinking-section .gma-post-card-body strong,
  .gma-blog-list-page .gma-post-card-body strong {
    font-size: 38px !important;
    line-height: 1 !important;
  }

  .gma-blog-showcase .gma-post-card-body p,
  .gma-blog-page-showcase .gma-post-card-body p,
  .gma-thinking-section .gma-post-card-body p,
  .gma-blog-list-page .gma-post-card-body p {
    font-size: clamp(14px, 1.04vw, 18px) !important;
    line-height: 1.42 !important;
  }
}

@media (max-width: 1199px) {
  .gma-blog-showcase .gma-home-instagram-card,
  .gma-blog-page-showcase .gma-home-instagram-card,
  .gma-thinking-section .gma-home-instagram-card,
  .gma-blog-list-page .gma-home-instagram-card {
    display: none !important;
  }
}

/* GMA blog showcase exact 2/3 + 1/3 flex override */
@media (min-width: 1200px) {
  .gma-blog-showcase,
  .gma-blog-showcase.gma-blog-page-showcase,
  .gma-thinking-section .gma-blog-showcase,
  .gma-blog-list-page .gma-blog-showcase {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: clamp(18px, 1.8vw, 32px) !important;
  }

  .gma-blog-showcase-main,
  .gma-blog-showcase .gma-blog-showcase-main,
  .gma-blog-showcase.gma-blog-page-showcase .gma-blog-showcase-main,
  .gma-thinking-section .gma-blog-showcase-main,
  .gma-blog-list-page .gma-blog-showcase-main {
    flex: 0 1 calc((100% - clamp(18px, 1.8vw, 32px)) * 0.666666) !important;
    width: calc((100% - clamp(18px, 1.8vw, 32px)) * 0.666666) !important;
    max-width: calc((100% - clamp(18px, 1.8vw, 32px)) * 0.666666) !important;
    min-width: 0 !important;
  }

  .gma-blog-showcase .gma-home-instagram-card,
  .gma-blog-showcase.gma-blog-page-showcase .gma-home-instagram-card,
  .gma-blog-page-showcase .gma-home-instagram-card,
  .gma-thinking-section .gma-home-instagram-card,
  .gma-blog-list-page .gma-home-instagram-card {
    flex: 0 0 calc((100% - clamp(18px, 1.8vw, 32px)) * 0.25) !important;
    width: auto !important;
    height: 100% !important;
    align-self: stretch !important;
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    aspect-ratio: auto !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    border-radius: 34px !important;
    overflow: visible !important;
  }

  .gma-blog-showcase .gma-home-instagram-card img,
  .gma-blog-showcase.gma-blog-page-showcase .gma-home-instagram-card img,
  .gma-blog-page-showcase .gma-home-instagram-card img,
  .gma-thinking-section .gma-home-instagram-card img,
  .gma-blog-list-page .gma-home-instagram-card img {
    width: auto !important;
    height: 100% !important;
    max-height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    object-position: right center !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    border-radius: 30px !important;
    transform: none !important;
  }

  .gma-blog-showcase .gma-section-heading h2,
  .gma-blog-page-showcase .gma-section-heading h2,
  .gma-thinking-section .gma-section-heading h2,
  .gma-blog-list-page .gma-section-heading h2 {
    margin-top: 18px !important;
  }

  .gma-blog-showcase .gma-post-card-body,
  .gma-blog-page-showcase .gma-post-card-body,
  .gma-thinking-section .gma-post-card-body,
  .gma-blog-list-page .gma-post-card-body {
    padding: 0 !important;
  }
}

/* GMA contact/social/review messenger patch */
@media (min-width: 1200px) {
  .gma-blog-showcase,
  .gma-blog-showcase.gma-blog-page-showcase,
  .gma-thinking-section .gma-blog-showcase,
  .gma-blog-list-page .gma-blog-showcase {
    align-items: stretch !important;
  }

  .gma-blog-showcase .gma-home-instagram-card,
  .gma-blog-showcase.gma-blog-page-showcase .gma-home-instagram-card,
  .gma-blog-page-showcase .gma-home-instagram-card,
  .gma-thinking-section .gma-home-instagram-card,
  .gma-blog-list-page .gma-home-instagram-card {
    align-self: stretch !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  .gma-blog-showcase .gma-home-instagram-card img,
  .gma-blog-showcase.gma-blog-page-showcase .gma-home-instagram-card img,
  .gma-blog-page-showcase .gma-home-instagram-card img,
  .gma-thinking-section .gma-home-instagram-card img,
  .gma-blog-list-page .gma-home-instagram-card img {
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: right center !important;
  }
}

.gma-social-input-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  object-fit: contain !important;
}

.gma-social-current-icon .gma-social-input-icon {
  display: none !important;
}

.gma-social-smart-input[data-network="Instagram"] .gma-social-current-icon .gma-social-input-icon-instagram,
.gma-social-smart-input[data-network="Telegram"] .gma-social-current-icon .gma-social-input-icon-telegram,
.gma-social-smart-input[data-network="Viber"] .gma-social-current-icon .gma-social-input-icon-viber,
.gma-social-smart-input[data-network="WhatsApp"] .gma-social-current-icon .gma-social-input-icon-whatsapp,
.gma-social-smart-input[data-network="Facebook"] .gma-social-current-icon .gma-social-input-icon-facebook,
.gma-social-smart-input[data-network="YouTube"] .gma-social-current-icon .gma-social-input-icon-youtube,
.gma-social-smart-input[data-network="VK"] .gma-social-current-icon .gma-social-input-icon-vk {
  display: block !important;
}

.gma-review-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gma-accent);
  font-weight: 900;
}

.gma-review-author strong {
  color: var(--gma-accent);
}

.gma-review-author-messenger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(245, 247, 251, 0.78);
  font-size: 0.86em;
  font-weight: 700;
}

.gma-review-author-messenger .gma-social-input-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
}

.gma-contact-band-social-row {
  width: 100%;
}

.gma-contact-band .gma-contact-band-social-row {
  flex: 1 1 100%;
}

.gma-social-strip {
  align-items: center;
  padding: 0 15px;
}

.gma-contact-method-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 999px;
  color: #030406;
  font-size: 14px;
  font-weight: 950;
}

/* GMA service dropdown + copy buttons + social input icons */
.gma-services-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.gma-services-dropdown > summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--gma-text);
  font-weight: 900;
  list-style: none;
  cursor: pointer;
  user-select: none;
  transition: color .2s ease, border-color .2s ease;
}

.gma-services-dropdown > summary::-webkit-details-marker {
  display: none;
}

.gma-services-dropdown > summary:hover,
.gma-services-dropdown[open] > summary {
  border-color: var(--gma-accent);
  color: var(--gma-accent);
}

.gma-nav-chevron {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.gma-services-dropdown[open] .gma-nav-chevron {
  transform: rotate(180deg);
}

.gma-services-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 80;
  display: grid;
  min-width: min(360px, 90vw);
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0 0 18px 18px;
  background: rgba(15, 15, 16, 0.98);
  box-shadow: var(--gma-shadow);
  overflow: visible;
}

.gma-services-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(15, 15, 16, 0.98);
  border-left: 1px solid rgba(255,255,255,0.14);
  border-top: 1px solid rgba(255,255,255,0.14);
}

.gma-services-dropdown-menu a {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 52px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  color: var(--gma-text);
  font-weight: 850;
  white-space: nowrap;
}

.gma-services-dropdown-menu a:last-child {
  border-bottom: 0;
}

.gma-social-smart-input[data-network="Instagram"] .gma-social-current-icon .gma-social-input-icon-instagram,
.gma-social-smart-input[data-network="Telegram"] .gma-social-current-icon .gma-social-input-icon-telegram,
.gma-social-smart-input[data-network="Viber"] .gma-social-current-icon .gma-social-input-icon-viber,
.gma-social-smart-input[data-network="WhatsApp"] .gma-social-current-icon .gma-social-input-icon-whatsapp,
.gma-social-smart-input[data-network="Facebook"] .gma-social-current-icon .gma-social-input-icon-facebook,
.gma-social-smart-input[data-network="YouTube"] .gma-social-current-icon .gma-social-input-icon-youtube,
.gma-social-smart-input[data-network="VK"] .gma-social-current-icon .gma-social-input-icon-vk {
  display: block;
}

.gma-social-strip-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.gma-social-copy-button {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0);
  color: var(--gma-text);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}

.gma-social-strip-item:hover .gma-social-copy-button,
.gma-social-copy-button:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

.gma-social-strip-item a span {
  margin: 0;
  transition: all .2s;
}

.gma-social-strip-item:hover a span {
  margin-right: 30px !important;
}

.gma-social-copy-button:hover,
.gma-social-copy-button.is-copied {
  color: var(--gma-accent);
}

.gma-social-copy-icon {
  width: 38px;
  height: 36px;
  object-fit: contain;
}

.gma-contact-method-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  object-fit: contain !important;
}

@media (max-width: 900px) {
  .gma-services-dropdown {
    width: 100%;
  }

  .gma-services-dropdown > summary {
    width: 100%;
    justify-content: center;
  }

  .gma-services-dropdown-menu {
    left: 0;
    right: 0;
    min-width: 100%;
    transform: none;
  }
}

/* GMA services dropdown, plans and request layout refinements */
.gma-nav .gma-services-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.gma-services-dropdown-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  min-height: inherit;
  padding: inherit;
  border: inherit;
  border-radius: inherit;
  color: inherit;
}

.gma-services-dropdown-trigger:hover,
.gma-services-dropdown:focus-within .gma-services-dropdown-trigger {
  color: var(--gma-accent);
  border-color: var(--gma-accent);
}

.gma-services-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 120;
  display: grid;
  width: min(320px, 80vw);
  min-width: 260px;
  max-height: min(70vh, 560px);
  overflow-y: auto;
  padding: 0;
  transform: translateY(6px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0 0 18px 18px;
  background: rgba(14, 14, 16, 0.98);
  box-shadow: 0 28px 80px rgba(0,0,0,0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.gma-services-dropdown:hover .gma-services-dropdown-menu,
.gma-services-dropdown:focus-within .gma-services-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.gma-services-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 32px;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background: rgba(14, 14, 16, 0.98);
  border-left: 1px solid rgba(255,255,255,0.14);
  border-top: 1px solid rgba(255,255,255,0.14);
}

.gma-services-dropdown-menu a {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 48px;
  padding: 15px 18px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  color: var(--gma-text);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  white-space: normal;
}

.gma-services-dropdown-menu a:hover {
  color: var(--gma-accent);
  background: rgba(140,255,0,0.045);
}

.gma-social-strip-item {
  position: relative;
  border-radius: 0 99px 99px 0;
  overflow: hidden;
}

.gma-social-strip-item::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 88px;
  background: linear-gradient(90deg, rgba(3, 4, 6, 0.157), rgba(140, 255, 0, 0.56));
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.gma-social-strip-item:hover::after {
  opacity: 1;
}

.gma-social-copy-button {
  position: absolute !important;
  right: 3px !important;
  top: 50% !important;
  z-index: 3;
  transform: translateY(-50%) !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  border: 0 !important;
  box-shadow: none !important;
}

.gma-service-plans-section {
  margin-top: 56px;
}

.gma-service-plans-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
  text-align: center;
}

.gma-service-plans-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 48px);
  line-height: .95;
  letter-spacing: -0.05em;
}

.gma-service-plans-heading span {
  display: block;
  width: 76px;
  height: 4px;
  border-radius: 999px;
  background: var(--gma-text);
  opacity: .85;
}

.gma-service-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  align-items: stretch;
}

.gma-service-plans-count-1 {
  grid-template-columns: minmax(260px, 420px);
  justify-content: center;
}

.gma-service-plan-card {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 520px;
  padding: 48px 38px;
  border-radius: 8px;
  background: #26384a;
  color: #fff;
  transition: all .2s;
  border: 3px solid #0f0f0f !important;
}

.gma-service-plan-card:nth-child(odd) {
  background: #f8f8f5;
  color: #ffffff;
}

.gma-service-plan-card:hover {
  transform: translateY(-5px)!important;
  border-color: var(--gma-accent) !important;
}

.gma-service-plan-card.gma-service-plan-card-simple {
  color: #d1d1d1;
}

.gma-service-plan-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.gma-service-plan-card strong {
  display: block;
  white-space: pre-line;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.18;
}

.gma-service-plan-duration {
  font-size: 16px;
  font-weight: 800;
}

.gma-service-plan-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gma-service-plan-card li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.28;
}

.gma-service-plan-card:nth-child(odd) li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.gma-service-plan-card li::before {
  content: ">";
  margin-right: 2px;
}

.gma-service-plan-card .gma-button-secondary {
  justify-self: center;
  margin-top: 18px;
}

.gma-contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(320px, .35fr);
  gap: 36px;
  align-items: start;
}

.gma-contact-selected-services-hero {
  margin-top: 20px;
}

.gma-plan-admin-section {
  margin-top: 24px;
}

.gma-plan-admin-list {
  display: grid;
  gap: 16px;
}

.gma-plan-admin-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--admin-border, rgba(255,255,255,0.12));
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}

.gma-plan-feature-list {
  display: grid;
  gap: 10px;
}

.gma-plan-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

@media (max-width: 900px) {
  .gma-contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .gma-service-plans-grid,
  .gma-service-plans-count-1 {
    grid-template-columns: 1fr;
  }
}

/* GMA service dropdown / plans / contact strip final adjustments */
@media (min-width: 901px) {
  .gma-nav .gma-services-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  .gma-services-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: inherit;
    font: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
  }

  .gma-services-dropdown::after {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    top: 100%;
    height: 16px;
  }

  .gma-services-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: auto !important;
    width: min(320px, 82vw) !important;
    min-width: 260px !important;
    max-width: 320px !important;
    padding: 8px !important;
    border: 1px solid var(--gma-border) !important;
    border-radius: 18px !important;
    background: rgba(10, 10, 12, 0.94) !important;
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 80px rgba(0,0,0,0.38) !important;
    z-index: 90;
  }

  .gma-services-dropdown-menu a {
    display: block;
    padding: 12px 14px !important;
    border-radius: 12px;
    font-size: 14px !important;
    line-height: 1.2;
    white-space: normal;
  }
}

.gma-social-strip-item {
  position: relative;
}

.gma-social-strip-item .gma-social-copy-button {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  z-index: 2;
}

.gma-social-strip-item::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 72px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(140,255,0,0.14));
  transition: opacity 180ms ease;
}

.gma-social-strip-item:hover::after,
.gma-social-strip-item:focus-within::after {
  opacity: 1;
}

.gma-home-social-strip-section,
.gma-case-contact-strip-section {
  display: grid;
  gap: 18px;
}

.gma-home-social-strip-section h2,
.gma-case-contact-strip-section h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 38px);
  letter-spacing: -0.05em;
}

@media (min-width: 1000px) {
  .gma-contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 32px;
    align-items: start;
  }

  .gma-contact-hero-grid .gma-section-heading {
    max-width: 820px;
  }

  .gma-contact-selected-services-hero {
    width: min(100%, 460px) !important;
    max-width: 460px !important;
    justify-self: end;
  }
}

.gma-service-plans-grid {
  justify-content: center;
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(190px, 230px)) !important;
  gap: 22px !important;
}

.gma-service-plans-count-1 {
  grid-template-columns: minmax(190px, 230px) !important;
}

.gma-service-plan-card {
  min-height: 420px !important;
  padding: 24px 18px !important;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border-radius: 20px !important;
  background: rgba(255,255,255,0.045) !important;
}

.gma-service-plan-card-content {
  display: grid;
  gap: 12px;
}

.gma-service-plan-card h3 {
  font-size: 22px !important;
  line-height: 1.05;
}

.gma-service-plan-card strong {
  font-size: clamp(38px, 4vw, 58px) !important;
  line-height: 0.95;
}

.gma-service-plan-card ul {
  display: grid;
  gap: 8px !important;
  margin: 8px 0 0 !important;
}

.gma-service-plan-card li {
  font-size: 13px !important;
  line-height: 1.35;
}

.gma-service-plan-card .gma-button-secondary {
  margin-top: auto !important;
  align-self: stretch;
  justify-content: center;
}

.gma-service-plan-card-simple {
  background: rgba(255,255,255,0.045) !important;
}

.gma-service-plan-card-plus {
  background:
    radial-gradient(circle at 26% 18%, rgba(140,255,0,0.13), transparent 34%),
    rgba(255,255,255,0.05) !important;
}

.gma-service-plan-card-pro {
  background:
    radial-gradient(circle at 20% 12%, rgba(140,255,0,0.18), transparent 28%),
    radial-gradient(circle at 90% 86%, rgba(124,60,255,0.18), transparent 36%),
    rgba(255,255,255,0.06) !important;
}

.gma-service-plan-card-proPlus {
  background:
    radial-gradient(circle at 14% 8%, rgba(140,255,0,0.22), transparent 30%),
    radial-gradient(circle at 80% 28%, rgba(22,227,255,0.16), transparent 30%),
    radial-gradient(circle at 78% 92%, rgba(124,60,255,0.22), transparent 38%),
    rgba(255,255,255,0.07) !important;
}

@media (max-width: 760px) {
  .gma-service-plans-grid,
  .gma-service-plans-count-1 {
    grid-template-columns: 1fr !important;
  }

  .gma-service-plan-card {
    min-height: auto !important;
  }
}

/* GMA services dropdown / multilingual plan admin / service contact final patch */
.gma-nav .gma-services-dropdown {
  position: relative;
}

.gma-nav .gma-services-dropdown::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 20px;
}

.gma-services-dropdown-menu {
  width: min(280px, 72vw) !important;
  min-width: 240px !important;
  top: calc(100% + 10px) !important;
}

.gma-services-dropdown-menu a[href*="/services/"]:not([href$="/services/"]) {
  display: flex !important;
}

.gma-plan-language-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.gma-plan-language-buttons button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--admin-border, rgba(255,255,255,0.16));
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: inherit;
  font-weight: 800;
}

.gma-plan-language-buttons button.active {
  border-color: var(--gma-accent, #8cff00);
  color: var(--gma-accent, #8cff00);
  background: rgba(140,255,0,0.08);
}

.gma-plan-admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 14px 0 16px;
}

.gma-plan-feature-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.gma-plan-feature-row input {
  width: min(100%, 520px);
  flex: 1 1 360px;
}

.gma-plan-delete-button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 110, 110, 0.35);
  border-radius: 999px;
  background: rgba(255, 80, 80, 0.08);
  color: #ff9b9b;
  font-weight: 800;
}

.gma-plan-delete-button:hover {
  border-color: rgba(255, 110, 110, 0.75);
  background: rgba(255, 80, 80, 0.14);
}

.gma-service-contact-strip-section {
  /* margin-top: 54px; */
}

@media (max-width: 760px) {
  .gma-plan-admin-toolbar,
  .gma-plan-feature-row {
    align-items: stretch;
    flex-direction: column;
  }

  .gma-plan-feature-row input {
    width: 100%;
    flex: 1 1 auto;
  }
}

/* GMA review translations, contact strip, dropdown and toast refinements */
.gma-home-social-strip-section,
.gma-service-contact-strip-section,
.gma-case-contact-strip-section {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.gma-home-social-strip-section > h2,
.gma-service-contact-strip-section > h2,
.gma-case-contact-strip-section > h2,
.gma-contact-social-row > h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.gma-services-dropdown-menu {
  top: calc(100% + 18px) !important;
  left: 0 !important;
  width: min(200px, 80vw) !important;
  min-width: 240px !important;
  max-height: min(70vh, 540px);
  display: flex !important;
  flex-direction: column;
  gap: 5px;
  padding: 8px !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 18px !important;
  background: rgba(0,0,0,0.92) !important;
  box-shadow: var(--gma-shadow) !important;
  overflow-y: auto;
}

.gma-services-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -18px !important;
  left: 0 !important;
  right: 0 !important;
  width: auto !important;
  height: 18px !important;
  transform: none !important;
  border: 0 !important;
  background: transparent !important;
}

.gma-services-dropdown-menu a {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  min-height: 38px !important;
  padding: 9px 12px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  color: var(--gma-text) !important;
  background: transparent !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
}

.gma-services-dropdown-menu a:hover {
  border-color: rgba(140, 255, 0, 0.72) !important;
  color: var(--gma-accent) !important;
  background: transparent !important;
}

.gma-toast-host {
  position: fixed;
  top: 82px;
  left: 18px;
  z-index: 1000;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 36px));
  pointer-events: none;
}

.gma-toast {
  pointer-events: auto;
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(140,255,0,0.28);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.88);
  box-shadow: 0 24px 70px rgba(0,0,0,0.42);
  backdrop-filter: blur(18px);
  animation: gma-toast-in .24s ease both;
}

.gma-toast.is-hiding {
  animation: gma-toast-out .22s ease both;
}

.gma-toast p {
  margin: 0;
  color: var(--gma-text);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.gma-toast a {
  justify-self: start;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--gma-accent);
  color: #050607;
  font-size: 12px;
  font-weight: 950;
}

@keyframes gma-toast-in {
  from { opacity: 0; transform: translate3d(-14px, -8px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes gma-toast-out {
  from { opacity: 1; transform: translate3d(0, 0, 0); }
  to { opacity: 0; transform: translate3d(-12px, -8px, 0); }
}

@media (max-width: 760px) {
  .gma-toast-host {
    top: 74px;
    left: 12px;
    width: calc(100vw - 24px);
  }
}

/* GMA contact hero / social hover / case gallery final overrides */
.gma-contact-hero-grid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}

.gma-contact-hero-grid > .gma-section-heading {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 980px;
}

.gma-contact-hero-grid > .gma-contact-selected-services-hero {
  flex: 0 1 440px;
  width: min(440px, 34vw);
  max-width: 440px;
  min-width: 300px;
  margin-top: 0;
}

.gma-social-strip-item:hover > a,
.gma-social-strip-item:focus-within > a,
.gma-social-strip-item:has(.gma-social-copy-button:hover) > a {
  color: var(--gma-accent);
  border-color: var(--gma-accent);
}

.gma-case-gallery-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: start;
}

.gma-case-gallery-item {
  display: grid !important;
  width: 100%;
  overflow: hidden;
  border-radius: var(--gma-radius-lg);
  background: var(--gma-bg-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  cursor: zoom-in;
}

.gma-case-gallery-item img {
  width: 100% !important;
  aspect-ratio: 16 / 9;
  border-radius: 0 !important;
  object-fit: cover;
  background: #111827;
}

.gma-case-gallery-item span {
  display: block;
  margin: 0 !important;
  padding: 14px 16px 16px;
  color: var(--gma-muted);
  font-size: 14px;
  line-height: 1.35;
  transition: all .2s;
}

.gma-case-gallery-item:hover span {
  color: var(--gma-accent);
}

@media (max-width: 1100px) {
  .gma-case-gallery-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .gma-contact-hero-grid {
    flex-direction: column;
  }

  .gma-contact-hero-grid > .gma-contact-selected-services-hero {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .gma-case-gallery-row {
    grid-template-columns: 1fr !important;
  }
}

/* GMA request flow + adaptive header patch */
.gma-order-selected.gma-contact-selected-services,
.gma-contact-selected-services,
.gma-contact-selected-services-hero {
  border: 0 !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(140, 255, 0, 0.12), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(124, 60, 255, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.045) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24) !important;
}

.gma-contact-selected-services h3 {
  color: var(--gma-accent) !important;
  font-size: 16px !important;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.gma-selected-item {
  border: 0 !important;
  background: rgba(0, 0, 0, 0.34) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.gma-selected-item button {
  width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px;
  border: 2px solid rgba(255, 255, 255, 0.023) !important;
  border-radius: 999px !important;
  background: rgba(0, 0, 0, 0.74) !important;
  color: var(--gma-text) !important;
  font-size: 28px !important;
  line-height: 1 !important;
  transition: color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease !important;
}

.gma-selected-item button:hover,
.gma-selected-item button:focus-visible {
  border-color: var(--gma-accent) !important;
  color: var(--gma-accent) !important;
  transform: rotate(90deg) scale(1.04);
  box-shadow: 0 0 24px rgba(140, 255, 0, 0.18);
  outline: none;
}

.gma-mobile-menu-button,
.gma-mobile-menu {
  display: none;
}

@media (max-width: 1300px) and (min-width: 1101px) {
  .gma-header-inner,
  .gma-hero,
  .gma-section,
  .gma-page-hero,
  .gma-detail-page,
  .gma-footer {
    width: min(100% - 32px, 1160px) !important;
  }

  .gma-header-inner {
    grid-template-columns: minmax(190px, auto) minmax(0, 1fr) auto !important;
    gap: 12px !important;
  }

  .gma-logo,
  .gma-footer-brand {
    gap: 10px;
    font-size: 14px;
  }

  .gma-nav {
    gap: 6px !important;
    justify-content: flex-end;
  }

  .gma-nav a {
    min-height: 38px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }

  .gma-services-dropdown-menu {
    min-width: 220px !important;
  }

  .gma-hero {
    min-height: calc(100vh - 70px) !important;
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.72fr) !important;
    gap: 34px !important;
    padding-top: 72px !important;
  }

  .gma-hero h1,
  .gma-detail-hero h1 {
    font-size: clamp(58px, 7vw, 104px) !important;
  }

  .gma-section-heading h2 {
    font-size: clamp(42px, 5vw, 76px) !important;
  }

  .gma-hero p,
  .gma-section-heading p,
  .gma-detail-hero p {
    font-size: 17px !important;
  }

  .gma-hero-orb {
    min-height: 470px !important;
  }

  .gma-axis-cube-stage {
    min-height: 450px !important;
  }

  .gma-axis-cube-tilt {
    width: 350px !important;
    height: 350px !important;
  }

  .gma-axis-cube {
    --gma-cube-size: 310px !important;
  }

  .gma-inner-globe {
    width: 270px !important;
    height: 270px !important;
  }

  .gma-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: stretch !important;
  }

  .gma-services-grid,
  .gma-category-preview-grid,
  .gma-review-grid,
  .gma-post-grid,
  .gma-blog-more-grid,
  .gma-blog-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gma-project-cover {
    height: 250px !important;
  }

  .gma-project-card-body,
  .gma-service-card,
  .gma-review-card,
  .gma-post-card,
  .gma-category-preview-card,
  .gma-empty-card,
  .gma-contact-card-large,
  .gma-order-selected,
  .gma-order-form {
    padding: 24px !important;
  }

  .gma-project-card h3,
  .gma-service-card h3,
  .gma-post-card h3,
  .gma-service-category-head h3 {
    font-size: 24px !important;
  }

  .gma-approach-staircase {
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 56px !important;
  }

  .gma-approach-node,
  .gma-approach-node.is-left,
  .gma-approach-node.is-right {
    justify-items: center !important;
  }

  .gma-approach-card {
    width: min(100%, 620px) !important;
    grid-template-columns: 76px minmax(0, 1fr) !important;
    min-height: 150px !important;
    padding: 30px 34px !important;
  }

  .gma-approach-card h3 {
    font-size: clamp(30px, 3vw, 42px) !important;
  }

  .gma-approach-card p {
    max-width: 440px;
    font-size: 16px !important;
  }

  .gma-approach-auto-lines {
    color: rgba(128, 92, 255, 0.72) !important;
  }

  .gma-contact-hero-grid {
    gap: 28px !important;
  }
}

@media (max-width: 1100px) {
  .gma-header-inner {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 14px !important;
    width: min(100% - 28px, 1520px) !important;
    min-height: 50px !important;
    padding: 0 !important;
  }

  .gma-nav,
  .gma-language-menu {
    display: none !important;
  }

  .gma-mobile-menu-button {
    position: relative;
    z-index: 60;
    display: inline-grid !important;
    align-content: center;
    justify-items: center;
    gap: 3px;
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--gma-text);
    transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  }

  .gma-mobile-menu-button span {
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .gma-mobile-menu-button:hover,
  .gma-mobile-menu-button:focus-visible,
  .gma-mobile-menu-button[aria-expanded="true"] {
    border-color: var(--gma-accent);
    color: var(--gma-accent);
    box-shadow: 0 0 28px rgba(140, 255, 0, 0.14);
    outline: none;
  }

  .gma-mobile-menu:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: block !important;
  }

  .gma-mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(12px);
  }

  .gma-mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 22px;
    padding: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    background:
      radial-gradient(circle at 22% 8%, rgba(140, 255, 0, 0.12), transparent 30%),
      radial-gradient(circle at 88% 76%, rgba(124, 60, 255, 0.22), transparent 38%),
      rgba(4, 6, 10, 1);
    box-shadow: -30px 0 90px rgba(0, 0, 0, 0.44);
    animation: gmaMobileMenuIn .22s ease both;
  }

  @keyframes gmaMobileMenuIn {
    from { transform: translateX(24px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  .gma-mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .gma-mobile-menu-head > span {
    color: var(--gma-accent);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .16em;
  }

  .gma-mobile-menu-close {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.023);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.74);
    color: var(--gma-text);
    font-size: 28px;
    line-height: 1;
    transition: color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  }

  .gma-mobile-menu-close:hover,
  .gma-mobile-menu-close:focus-visible {
    border-color: var(--gma-accent);
    color: var(--gma-accent);
    transform: rotate(90deg) scale(1.04);
    box-shadow: 0 0 24px rgba(140, 255, 0, 0.18);
    outline: none;
  }

  .gma-mobile-menu-links {
    display: grid;
    align-content: start;
    gap: 10px;
    padding-top: 12px;
  }

  .gma-mobile-menu-links a,
  .gma-mobile-menu-primary,
  .gma-mobile-menu-secondary,
  .gma-mobile-language-buttons a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 999px;
    color: var(--gma-text);
    font-weight: 700;
    transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  }

  .gma-hero {
    gap: 0;
  }

  .gma-section, .gma-page-hero, .gma-detail-page {
    padding: 60px 0;
  }

  .gma-mobile-menu-links a {
    justify-content: flex-start;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 21px;
    line-height: 1;
    letter-spacing: -0.06em;
  }

  .gma-mobile-menu-links a:hover,
  .gma-mobile-menu-links a:focus-visible,
  .gma-mobile-menu-secondary:hover,
  .gma-mobile-menu-secondary:focus-visible,
  .gma-mobile-language-buttons a:hover,
  .gma-mobile-language-buttons a:focus-visible,
  .gma-mobile-language-buttons a.active {
    border-color: var(--gma-accent);
    color: var(--gma-accent);
    outline: none;
  }

  .gma-mobile-menu-bottom {
    display: grid;
    gap: 12px;
  }

  .gma-mobile-menu-primary {
    min-height: 54px;
    background: var(--gma-accent);
    color: var(--gma-bg);
    box-shadow: 0 0 34px rgba(140, 255, 0, 0.18);
  }

  .gma-mobile-menu-primary:hover,
  .gma-mobile-menu-primary:focus-visible {
    border-color: var(--gma-accent);
    background: transparent;
    color: var(--gma-accent);
    outline: none;
  }

  .gma-mobile-menu-secondary {
    min-height: 52px;
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.035);
  }

  .gma-mobile-language-buttons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .gma-mobile-language-buttons a {
    min-height: 42px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 13px;
    letter-spacing: .12em;
  }

  html.gma-mobile-menu-lock,
  body.gma-mobile-menu-lock {
    overflow: hidden;
  }
}

@media (max-width: 760px) {
  .gma-mobile-menu-panel {
    width: min(360px, 94vw);
    padding: 18px;
  }

  .gma-mobile-menu-links a {
    min-height: 44px;
  }
}

/* GMA patch 2026-06-24: mobile menu, approach, project cards, blog contact */
.gma-project-card {
  display: flex !important;
  flex-direction: column !important;
}

.gma-project-card-body {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
}

.gma-project-card-footer {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.gma-project-card-footer .gma-tool-pills,
.gma-project-card-body > .gma-tool-pills {
  margin-top: auto !important;
  margin-bottom: 0 !important;
}

.gma-project-card-footer .gma-arrow-link {
  justify-self: start;
}

.gma-blog-contact-row {
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

@media (max-width: 1100px) and (min-width: 761px) {
  .gma-approach-staircase {
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 56px !important;
  }

  .gma-approach-node,
  .gma-approach-node.is-left,
  .gma-approach-node.is-right {
    justify-items: center !important;
  }

  .gma-approach-card {
    width: min(100%, 620px) !important;
    grid-template-columns: 76px minmax(0, 1fr) !important;
    min-height: 150px !important;
    padding: 30px 34px !important;
  }

  .gma-approach-card h3 {
    font-size: clamp(30px, 5vw, 42px) !important;
  }

  .gma-approach-card p {
    max-width: 440px;
    font-size: 16px !important;
  }

  .gma-approach-auto-lines {
    display: block !important;
    color: rgba(128, 92, 255, 0.72) !important;
  }
}

@media (max-width: 1100px) {
  .gma-mobile-menu:not([hidden]) {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    z-index: 10000 !important;
    display: block !important;
  }

  .gma-mobile-menu-backdrop {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
  }

  .gma-mobile-menu-panel {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
  }
}

/* GMA patch 2026-06-25: case hero action, mobile lightbox, compact menu, phone layout */
.gma-case-detail-hero {
  width: 100%;
  max-width: none !important;
}

.gma-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 72px);
  align-items: start;
}

.gma-detail-hero-content {
  min-width: 0;
}

.gma-detail-hero-action {
  display: flex;
  justify-content: flex-end;
  padding-top: 18px;
}

.gma-linkout-button {
  gap: 10px;
  white-space: nowrap;
}

.gma-linkout-button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: transform .2s ease, opacity .2s ease;
}

.gma-linkout-button:hover img,
.gma-linkout-button:focus-visible img {
  transform: translate3d(2px, -2px, 0);
  opacity: .9;
}

@media (max-width: 1100px) {
  .gma-detail-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gma-detail-hero-action {
    justify-content: flex-start;
    padding-top: 0;
  }

  .gma-mobile-menu-panel {
    width: min(340px, 86vw) !important;
    gap: 16px !important;
    padding: 18px !important;
  }

  .gma-mobile-menu-head > span {
    font-size: 11px !important;
  }

  .gma-mobile-menu-close {
    width: 36px !important;
    height: 36px !important;
    font-size: 24px !important;
  }

  .gma-mobile-menu-links {
    gap: 8px !important;
    padding-top: 6px !important;
  }

  .gma-mobile-menu-links a {
    min-height: 40px !important;
    padding: 0 14px !important;
    font-size: 16px !important;
    letter-spacing: -0.035em !important;
  }

  .gma-mobile-menu-bottom {
    gap: 9px !important;
  }

  .gma-mobile-menu-primary,
  .gma-mobile-menu-secondary {
    min-height: 42px !important;
    font-size: 13px !important;
  }

  .gma-mobile-language-buttons {
    gap: 6px !important;
  }

  .gma-mobile-language-buttons a {
    min-height: 34px !important;
    font-size: 11px !important;
    letter-spacing: .08em !important;
  }
}

@media (max-width: 760px) {
  .gma-lightbox-modal {
    padding: 6px !important;
  }

  .gma-lightbox-panel {
    width: 100% !important;
    max-width: none !important;
    height: calc(100dvh - 12px) !important;
    max-height: none !important;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 8px !important;
  }

  .gma-lightbox-close {
    right: 8px !important;
    top: 8px !important;
    width: 40px !important;
    height: 40px !important;
    z-index: 5 !important;
  }

  .gma-lightbox-image-wrap {
    width: 100% !important;
    height: calc(100dvh - 56px) !important;
    max-height: none !important;
    display: grid;
    place-items: center;
    border-radius: 18px !important;
    cursor: grab;
    touch-action: none;
  }

  .gma-lightbox-modal.is-touch-panning .gma-lightbox-image-wrap {
    cursor: grabbing;
  }

  .gma-lightbox-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    will-change: transform;
  }

  .gma-lightbox-caption {
    min-height: 14px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 760px) {

  .gma-hero-microcopy {display: none;}

  .gma-header-inner,
  .gma-hero,
  .gma-section,
  .gma-page-hero,
  .gma-detail-page,
  .gma-footer {
    width: min(100% - 20px, 1520px) !important;
  }

  .gma-site > main {
    padding-top: 50px !important;
  }

  .gma-section,
  .gma-page-hero,
  .gma-detail-page,
  .gma-footer {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }

  .gma-hero {
    min-height: auto !important;
    gap: 18px !important;
    padding-top: 10px !important;
    padding-bottom: 0px !important;
  }

  .gma-section-topline,
  .gma-section-heading,
  .gma-page-hero,
  .gma-detail-hero,
  .gma-blog-content,
  .gma-case-layout,
  .gma-detail-grid,
  .gma-contact-layout,
  .gma-order-layout,
  .gma-project-grid,
  .gma-review-grid,
  .gma-post-grid,
  .gma-category-preview-grid,
  .gma-blog-more-grid,
  .gma-blog-posts-grid,
  .gma-case-gallery-row,
  .gma-contact-hero-grid {
    gap: 0px !important;
  }

  .gma-service-plans-grid,
  .gma-blog-showcase-main,
  .gma-services-grid {
    gap: 15px !important;
  }

  .gma-section-heading {
    padding-top: 10px;
  }

  .gma-hero h1,
  .gma-page-hero h1,
  .gma-section-heading h2,
  .gma-detail-hero h1,
  .gma-contact-band h2 {
    line-height: 1 !important;
    letter-spacing: -0.045em !important;
  }

  .gma-hero h1 {
    font-size: clamp(38px, 12.5vw, 62px) !important;
  }

  .gma-section-heading h2,
  .gma-page-hero h1,
  .gma-detail-hero h1,
  .gma-contact-band h2 {
    font-size: clamp(32px, 11vw, 54px) !important;
  }

  .gma-home-social-strip-section > h2,
  .gma-service-contact-strip-section > h2,
  .gma-case-contact-strip-section > h2,
  .gma-contact-social-row > h2 {
    font-size: clamp(22px, 7vw, 32px) !important;
    line-height: 1 !important;
  }

  .gma-hero p,
  .gma-section-heading p,
  .gma-detail-hero p,
  .gma-contact-band p,
  .gma-blog-content .gma-rich-text,
  .gma-rich-text,
  .gma-service-card p,
  .gma-post-card-body p,
  .gma-project-card p,
  .gma-review-card p,
  .gma-category-preview-card p {
    font-size: 15px !important;
    line-height: 1.38 !important;
  }

  .gma-eyebrow,
  .gma-section-heading span,
  .gma-card-kicker {
    font-size: 10px !important;
    letter-spacing: .1em !important;
  }

  .gma-hero-actions {
    gap: 9px !important;
    margin-top: 16px !important;
  }

  .gma-section-topline {
    margin-bottom: 10px !important;
  }

  .gma-button-primary,
  .gma-button-secondary,
  .gma-service-actions button,
  .gma-small-link,
  .gma-arrow-link {
    min-height: 40px !important;
    padding: 10px 12px !important;
    font-size: 15px !important;
  }

  .gma-section.gma-contact-layout {
    margin-top: 0;
    padding-top: 0 !important;
  }

  .gma-project-card-body,
  .gma-service-card,
  .gma-review-card,
  .gma-post-card,
  .gma-category-preview-card,
  .gma-empty-card,
  .gma-contact-card-large,
  .gma-order-selected,
  .gma-order-form,
  .gma-detail-grid section,
  .gma-case-main section,
  .gma-service-plan-card,
  .gma-contact-selected-services,
  .gma-contact-selected-services-hero {
    padding: 18px !important;
    border-radius: 22px !important;
    padding-top: 12px !important;
  }

  .gma-project-card h3,
  .gma-service-card h3,
  .gma-post-card h3,
  .gma-service-category-head h3,
  .gma-service-plan-card h3,
  .gma-case-main h2,
  .gma-case-screenshot-panel h2,
  .gma-case-gallery-section h2 {
    font-size: clamp(22px, 7vw, 32px) !important;
    line-height: 1 !important;
    letter-spacing: -0.05em !important;
  }

  .gma-project-cover,
  .gma-post-card-cover,
  .gma-blog-more-grid .gma-post-card-cover,
  .gma-blog-posts-grid .gma-post-card-cover {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }

  .gma-tool-pills {
    gap: 6px !important;
  }

  .gma-tool-pills span {
    padding: 6px 9px !important;
    font-size: 10px !important;
  }

  .gma-social-strip,
  .gma-contact-list,
  .gma-service-actions,
  .gma-hero-actions {
    flex-wrap: wrap !important;
    padding-left: 0 !important;
  }

  .gma-social-strip-item a,
  .gma-contact-list a {
    min-height: 38px !important;
    padding: 8px 11px !important;
    font-size: 12px !important;
  }

  .gma-contact-icon,
  .gma-contact-icon-inline,
  .gma-social-icon,
  .gma-social-icon-inline {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    flex-basis: 22px !important;
  }

  .gma-hero-orb {
    min-height: 350px !important;
  }

  .gma-axis-cube-stage {
    min-height: 330px !important;
  }

  .gma-axis-cube-tilt {
    width: 210px !important;
    height: 210px !important;
  }

  .gma-axis-cube {
    --gma-cube-size: 187px !important;
  }

  .gma-inner-globe {
    width: 198px !important;
    height: 198px !important;
  }

  .gma-approach-staircase {
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 42px !important;
  }

  .gma-approach-node,
  .gma-approach-node.is-left,
  .gma-approach-node.is-right {
    justify-items: center !important;
  }

  .gma-approach-card {
    width: min(100%, 620px) !important;
    grid-template-columns: 20px minmax(0, 1fr) !important;
    min-height: auto !important;
    padding: 20px 17px !important;
  }

  .gma-approach-index {
    width: 42px !important;
    height: 42px !important;
    font-size: 30px !important;
  }

  .gma-approach-card h3 {
    font-size: clamp(24px, 8vw, 34px) !important;
    line-height: 1 !important;
  }

  .gma-approach-card p {
    max-width: 440px;
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .gma-approach-auto-lines {
    display: block !important;
    color: rgba(128, 92, 255, 0.78) !important;
  }

  .gma-approach-auto-lines path {
    stroke-width: 2.2px !important;
  }

  .gma-approach-auto-lines circle {
    r: 4px;
  }

  .gma-case-layout,
  .gma-detail-grid,
  .gma-contact-layout,
  .gma-order-layout,
  .gma-footer-grid,
  .gma-project-grid,
  .gma-services-grid,
  .gma-review-grid,
  .gma-post-grid,
  .gma-category-preview-grid,
  .gma-service-plans-grid,
  .gma-case-gallery-row {
    grid-template-columns: 1fr !important;
  }

  .gma-blog-content {
    margin-top: 28px !important;
  }

  .gma-case-layout {
    margin-top: 32px !important;
  }

  .gma-detail-cover,
  .gma-blog-detail-cover {
    margin-top: 24px !important;
    border-radius: 20px !important;
  }

  .gma-mobile-menu-panel {
    width: min(308px, 84vw) !important;
    padding: 15px !important;
  }
}

/* GMA patch 2026-06-25 v4: smart menus, mobile menu contacts, footer contacts, mobile cube, vertical approach lines */
.gma-footer-contact-links {
  margin-top: 16px;
  gap: 8px !important;
}

.gma-footer-contact-links a,
.gma-mobile-menu-contact-list a {
  text-decoration: none;
}

.gma-footer-contact-links .gma-contact-method-icon,
.gma-mobile-menu-contact-list .gma-contact-method-icon {
  opacity: .92;
}

@media (max-width: 1100px) {
  .gma-mobile-menu-panel {
    width: min(292px, 80vw) !important;
    overflow-y: auto !important;
  }

  .gma-mobile-menu-contact-list.gma-social-links {
    display: grid !important;
    gap: 7px !important;
    padding: 6px 0 2px !important;
    align-content: start !important;
    justify-items: start !important;
  }

  .gma-mobile-menu-contact-list.gma-social-links a {
    min-height: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 3px 0 !important;
    gap: 8px !important;
    color: rgba(245, 247, 251, .72) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
  }

  .gma-mobile-menu-contact-list.gma-social-links a:hover,
  .gma-mobile-menu-contact-list.gma-social-links a:focus-visible {
    color: var(--gma-accent) !important;
  }

  .gma-mobile-menu-contact-list .gma-social-icon,
  .gma-mobile-menu-contact-list .gma-social-icon-inline {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    flex-basis: 20px !important;
  }
}

@media (max-width: 760px) {
  .gma-home-social-strip-section {
    display: none !important;
  }

  .gma-hero .gma-axis-cube-tilt {
    width: 231px !important;
    height: 231px !important;
  }

  .gma-hero .gma-axis-cube {
    --gma-cube-size: 206px !important;
  }

  .gma-hero .gma-axis-cube-stage {
    min-height: 350px !important;
  }

  .gma-approach-auto-lines {
    display: block !important;
  }
}

@media (max-width: 420px) {
  .gma-mobile-menu-panel {
    width: min(276px, 82vw) !important;
  }

  .gma-hero .gma-axis-cube-tilt {
    width: 224px !important;
    height: 224px !important;
  }

  .gma-hero .gma-axis-cube {
    --gma-cube-size: 200px !important;
  }
}
