/* ============================================================
   GlowMavi — global stylesheet
   Theme: deep midnight navy + azure "glow" accents, amber details.
   Bootstrap 5.3 (data-bs-theme="dark") does the heavy lifting —
   everything below is just the brand layer on top.
   ============================================================ */

:root {
  --gm-bg: #0a1122;
  --gm-bg-soft: #0e1830;
  --gm-surface: #101d38;
  --gm-surface-2: #152341;
  --gm-line: rgba(148, 180, 255, 0.14);
  --gm-line-strong: rgba(148, 180, 255, 0.28);

  --gm-text: #e9effa;
  --gm-muted: #93a6c4;

  --gm-accent: #38bdf8;
  --gm-accent-2: #67e8f9;
  --gm-gold: #e9b872;
  --gm-danger: #fb7185;

  --gm-grad: linear-gradient(120deg, var(--gm-accent), var(--gm-accent-2));
  --gm-grad-warm: linear-gradient(120deg, #e9b872, #f5d9a8);

  --gm-radius: 18px;
  --gm-radius-sm: 12px;

  --gm-font-display: "Fraunces", Georgia, serif;
  --gm-font-body: "Sora", system-ui, sans-serif;

  --gm-shadow: 0 24px 60px rgba(2, 8, 24, 0.55);
}

/* ---------- base ---------- */

html {
  scroll-behavior: smooth;overflow-x:hidden
}

body {
  background-color: var(--gm-bg);
  color: var(--gm-text);
  font-family: var(--gm-font-body);
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, .gm-display {
  font-family: var(--gm-font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4, h5, h6 {
  font-family: var(--gm-font-body);
  font-weight: 600;
}

p {
  color: var(--gm-muted);
  line-height: 1.75;
}

a {
  color: var(--gm-accent-2);
  text-decoration: none;
}

a:hover {
  color: var(--gm-accent);
}

img {
  max-width: 100%;
}

::selection {
  background: rgba(56, 189, 248, 0.35);
}

/* thin custom scrollbar, purely cosmetic */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--gm-bg); }
::-webkit-scrollbar-thumb { background: #22324f; border-radius: 8px; }

/* ---------- shared bits ---------- */

.gm-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.gm-section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.gm-section--alt {
  background: var(--gm-bg-soft);
}

/* sections/blocks that carry a photo background — url(../images/glowmavi_0f4e97a8cda20.23279138.jpg) is filled by photo.js.
   Always pair with an overlay in the inline style. */
.gm-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gm-accent-2);
  margin-bottom: 1rem;
}

.gm-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gm-grad);
}

.gm-eyebrow--gold {
  color: var(--gm-gold);
}

.gm-eyebrow--gold::before {
  background: var(--gm-grad-warm);
}

.gm-lead {
  font-size: 1.08rem;
  color: var(--gm-muted);
}

.gm-grad-text {
  background: var(--gm-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gm-grad-text--gold {
  background: var(--gm-grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* giant ghost numerals/words used as decoration */
.gm-ghost {
  position: absolute;
  font-family: var(--gm-font-display);
  font-weight: 700;
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(148, 180, 255, 0.12);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* soft radial glow blobs — pure CSS decoration, no SVG */
.gm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.gm-orb--a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 65%);
  top: -120px;
  right: -120px;
}

.gm-orb--b {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(233, 184, 114, 0.22), transparent 65%);
  bottom: -100px;
  left: -100px;
}

.gm-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gm-line-strong), transparent);
  border: 0;
  margin: 0;
}

/* ---------- buttons ---------- */

.gm-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--gm-grad);
  color: #062033;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.gm-btn:hover {
  color: #062033;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(56, 189, 248, 0.35);
  filter: brightness(1.06);
}

.gm-btn--sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
}

.gm-btn--ghost {
  background: transparent;
  color: var(--gm-text);
  border-color: var(--gm-line-strong);
}

.gm-btn--ghost:hover {
  color: var(--gm-accent-2);
  border-color: var(--gm-accent);
  box-shadow: none;
  filter: none;
}

.gm-btn--gold {
  background: var(--gm-grad-warm);
  color: #2a1d07;
}

.gm-btn--gold:hover {
  color: #2a1d07;
  box-shadow: 0 12px 32px rgba(233, 184, 114, 0.3);
}

/* ---------- chips & badges ---------- */

.gm-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--gm-line);
  background: rgba(21, 35, 65, 0.6);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gm-muted);
  white-space: nowrap;
}

.gm-chip i {
  color: var(--gm-accent-2);
}

.gm-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.5rem;
  border-radius: 12px;
  border: 2px solid var(--gm-danger);
  color: var(--gm-danger);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ---------- header ---------- */

.gm-header {
  position: relative;
  z-index: 100;
}

.gm-topbar {
  background: #060c1b;
  border-bottom: 1px solid var(--gm-line);
  font-size: 0.8rem;
}

.gm-topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  padding: 0.45rem 0;
}

.gm-topbar__group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
}

.gm-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gm-muted);
}

.gm-topbar__item i {
  color: var(--gm-accent);
  font-size: 0.75rem;
}

a.gm-topbar__item--link:hover {
  color: var(--gm-accent-2);
}

/* keep topbar readable on small screens */
@media (max-width: 575.98px) {
  .gm-topbar { font-size: 0.72rem; }
  .gm-topbar__group { gap: 0.25rem 0.9rem; }
  .gm-topbar__group--right { display: none; }
}

.gm-navbar {
  background: rgba(10, 17, 34, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gm-line);
  position: sticky;
  top: 0;
  z-index: 1020;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.gm-navbar.is-scrolled {
  background: rgba(8, 14, 28, 0.96);
  box-shadow: 0 10px 40px rgba(2, 8, 24, 0.6);
}

.gm-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.gm-brand__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(103, 232, 249, 0.35));
}

.gm-brand__name {
  font-family: var(--gm-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gm-text);
  letter-spacing: 0.01em;
}

.gm-brand__name em {
  font-style: normal;
  background: var(--gm-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gm-nav .nav-link {
  color: var(--gm-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.6rem 0.85rem;
  position: relative;
}

.gm-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--gm-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.gm-nav .nav-link:hover,
.gm-nav .nav-link.active {
  color: var(--gm-text);
}

.gm-nav .nav-link:hover::after,
.gm-nav .nav-link.active::after {
  transform: scaleX(1);
}

.gm-toggler {
  border: 1px solid var(--gm-line-strong);
  border-radius: 10px;
  color: var(--gm-accent-2);
  font-size: 1.1rem;
  padding: 0.35rem 0.7rem;
}

.gm-toggler:focus {
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

.gm-nav-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--gm-line-strong);
}

.gm-nav-contacts__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gm-muted);
  font-size: 0.88rem;
}

.gm-nav-contacts__item i {
  color: var(--gm-accent);
}

/* ---------- hero ---------- */

.gm-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
}

.gm-hero--inner {
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.gm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--gm-line-strong);
  background: rgba(16, 29, 56, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gm-accent-2);
  margin-bottom: 1.5rem;
}

.gm-hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.gm-hero--inner h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
}

.gm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.gm-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gm-line);
}

@media (max-width: 767.98px) {
  .gm-hero__stats { grid-template-columns: repeat(2, 1fr); }
}

.gm-stat__num {
  font-family: var(--gm-font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gm-text);
}

.gm-stat__num span {
  color: var(--gm-accent-2);
}

.gm-stat__label {
  font-size: 0.8rem;
  color: var(--gm-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- cards ---------- */

.gm-card {
  position: relative;
  background: var(--gm-surface);
  border: 1px solid var(--gm-line);
  border-radius: var(--gm-radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gm-card:hover {
  transform: translateY(-6px);
  border-color: var(--gm-line-strong);
  box-shadow: var(--gm-shadow);
}

.gm-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.gm-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gm-card:hover .gm-card__img img {
  transform: scale(1.06);
}

.gm-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 17, 34, 0.85));
}

.gm-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.gm-card__body {
  padding: 1.5rem 1.5rem 1.7rem;
}

.gm-card__title {
  font-family: var(--gm-font-display);
  font-size: 1.3rem;
  color: var(--gm-text);
  margin-bottom: 0.6rem;
}

.gm-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.gm-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
}

.gm-card__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  color: var(--gm-muted);
}

.gm-card__list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.7rem;
  color: var(--gm-accent-2);
}

/* ---------- feature tiles ---------- */

.gm-feature {
  position: relative;
  height: 100%;
  padding: 1.6rem;
  background: var(--gm-surface);
  border: 1px solid var(--gm-line);
  border-radius: var(--gm-radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.gm-feature:hover {
  border-color: var(--gm-line-strong);
  transform: translateY(-4px);
}

.gm-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(103, 232, 249, 0.08));
  border: 1px solid var(--gm-line-strong);
  color: var(--gm-accent-2);
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.gm-feature__icon--gold {
  background: linear-gradient(135deg, rgba(233, 184, 114, 0.2), rgba(233, 184, 114, 0.06));
  color: var(--gm-gold);
}

.gm-feature h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--gm-text);
}

.gm-feature p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ---------- framed imagery ---------- */

.gm-frame {
  position: relative;
  border-radius: var(--gm-radius);
}

.gm-frame img {
  border-radius: var(--gm-radius);
  width: 100%;
  object-fit: cover;
}

/* offset gradient outline behind the image */
.gm-frame--offset::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(16px, 16px);
  border-radius: var(--gm-radius);
  border: 1px solid var(--gm-line-strong);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), transparent 60%);
  z-index: -1;
}

.gm-frame__badge {
  position: absolute;
  bottom: 1.2rem;
  left: -1rem;
  z-index: 2;
  padding: 0.9rem 1.3rem;
  border-radius: var(--gm-radius-sm);
  background: rgba(13, 24, 46, 0.92);
  border: 1px solid var(--gm-line-strong);
  backdrop-filter: blur(8px);
  box-shadow: var(--gm-shadow);
}

.gm-frame__badge strong {
  display: block;
  font-family: var(--gm-font-display);
  font-size: 1.4rem;
  color: var(--gm-accent-2);
}

.gm-frame__badge span {
  font-size: 0.75rem;
  color: var(--gm-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- marquee strip ---------- */

.gm-marquee {
  overflow: hidden;
  border-top: 1px solid var(--gm-line);
  border-bottom: 1px solid var(--gm-line);
  padding: 1rem 0;
  background: #080f20;
}

.gm-marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: gm-marquee 28s linear infinite;
}

.gm-marquee__track span {
  font-family: var(--gm-font-display);
  font-size: 1.05rem;
  color: var(--gm-muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.gm-marquee__track i {
  color: var(--gm-accent);
  font-size: 0.6rem;
}

@keyframes gm-marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .gm-marquee__track { animation: none; }
}

/* ---------- steps ---------- */

.gm-step {
  position: relative;
  padding: 2rem 1.6rem;
  height: 100%;
  background: var(--gm-surface);
  border: 1px solid var(--gm-line);
  border-radius: var(--gm-radius);
}

.gm-step__num {
  font-family: var(--gm-font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gm-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.gm-step h4 {
  color: var(--gm-text);
  margin-bottom: 0.6rem;
}

.gm-step p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---------- quotes / testimonials ---------- */

.gm-quote {
  height: 100%;
  padding: 1.9rem;
  background: var(--gm-surface);
  border: 1px solid var(--gm-line);
  border-radius: var(--gm-radius);
  position: relative;
}

.gm-quote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  color: rgba(103, 232, 249, 0.2);
  font-size: 1.6rem;
}

.gm-quote__stars {
  color: var(--gm-gold);
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
}

.gm-quote__text {
  color: var(--gm-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.3rem;
}

.gm-quote__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.gm-quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gm-line-strong);
}

.gm-quote__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gm-text);
}

.gm-quote__role {
  font-size: 0.78rem;
  color: var(--gm-muted);
}

/* ---------- accordion ---------- */

.gm-faq .accordion-item {
  background: var(--gm-surface);
  border: 1px solid var(--gm-line);
  border-radius: var(--gm-radius-sm) !important;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.gm-faq .accordion-button {
  background: var(--gm-surface);
  color: var(--gm-text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.1rem 1.3rem;
  box-shadow: none;
}

.gm-faq .accordion-button:not(.collapsed) {
  background: var(--gm-surface-2);
  color: var(--gm-accent-2);
}

.gm-faq .accordion-button:focus {
  box-shadow: none;
  border-color: var(--gm-line-strong);
}

.gm-faq .accordion-button::after {
  /* FA chevron instead of the default svg icon */
  background-image: none;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  width: auto;
  height: auto;
}

.gm-faq .accordion-body {
  color: var(--gm-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  border-top: 1px solid var(--gm-line);
}

/* ---------- disclaimer (casino pages) ---------- */

.gm-disclaimer {
  border: 1px solid var(--gm-line-strong);
  border-radius: var(--gm-radius);
  background: var(--gm-surface);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.gm-disclaimer h3 {
  font-size: 1.35rem;
  color: var(--gm-text);
  margin-bottom: 0.6rem;
}

.gm-disclaimer ul {
  color: var(--gm-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  padding-left: 1.2rem;
}

.gm-disclaimer__warn {
  margin-top: 1.5rem;
  padding: 1.3rem 1.5rem;
  border-radius: var(--gm-radius-sm);
  background: rgba(251, 113, 133, 0.08);
  border: 1px solid rgba(251, 113, 133, 0.35);
}

.gm-disclaimer__warn h4 {
  color: var(--gm-danger);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.gm-disclaimer__warn p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.gm-disclaimer__orgs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

/* ---------- forms ---------- */

.gm-form .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gm-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gm-form .form-control,
.gm-form .form-select {
  background: rgba(10, 17, 34, 0.7);
  border: 1px solid var(--gm-line-strong);
  color: var(--gm-text);
  border-radius: var(--gm-radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
}

.gm-form .form-control:focus,
.gm-form .form-select:focus {
  background: rgba(10, 17, 34, 0.9);
  border-color: var(--gm-accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
  color: var(--gm-text);
}

.gm-form .form-control::placeholder {
  color: rgba(147, 166, 196, 0.5);
}

.gm-form .form-check-input {
  background-color: transparent;
  border-color: var(--gm-line-strong);
}

.gm-form .form-check-input:checked {
  background-color: var(--gm-accent);
  border-color: var(--gm-accent);
}

/* inline success note — the "no alert()" notification */
.gm-form-note {
  display: none;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--gm-radius-sm);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #6ee7b7;
  font-size: 0.9rem;
}

.gm-form-note.is-visible {
  display: flex;
  animation: gm-note-in 0.35s ease;
}

.gm-form-note i {
  font-size: 1.1rem;
}

@keyframes gm-note-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- modal ---------- */

.gm-modal .modal-content {
  background: var(--gm-bg-soft);
  border: 1px solid var(--gm-line-strong);
  border-radius: var(--gm-radius);
  box-shadow: var(--gm-shadow);
}

.gm-modal .modal-header {
  border-bottom: 1px solid var(--gm-line);
}

.gm-modal .modal-title {
  font-family: var(--gm-font-display);
  color: var(--gm-text);
}

.gm-modal .btn-close {
  filter: invert(1);
  opacity: 0.7;
}

.gm-modal .modal-footer {
  border-top: 1px solid var(--gm-line);
}

/* ---------- cookie banner (home only) ---------- */

.gm-cookie {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translate(-50%, 140%);
  z-index: 1080;
  width: min(680px, calc(100% - 2rem));
  background: rgba(13, 24, 46, 0.96);
  border: 1px solid var(--gm-line-strong);
  border-radius: var(--gm-radius);
  padding: 1.2rem 1.4rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--gm-shadow);
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.gm-cookie.is-visible {
  transform: translate(-50%, 0);
}

.gm-cookie__row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.gm-cookie__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid var(--gm-line-strong);
  color: var(--gm-accent-2);
  font-size: 1.2rem;
}

.gm-cookie__text {
  flex: 1 1 240px;
  font-size: 0.85rem;
  color: var(--gm-muted);
  margin: 0;
}

.gm-cookie__text a {
  text-decoration: underline;
}

.gm-cookie__actions {
  display: flex;
  gap: 0.6rem;
  flex: 0 0 auto;
}

/* ---------- CTA banner ---------- */

.gm-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--gm-radius);
  border: 1px solid var(--gm-line-strong);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background: linear-gradient(120deg, #0d1a33, #12254a);
}

.gm-cta-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25), transparent 65%);
  filter: blur(60px);
}

/* ---------- timeline (about) ---------- */

.gm-timeline {
  position: relative;
  padding-left: 1.8rem;
  border-left: 1px solid var(--gm-line-strong);
}

.gm-timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

.gm-timeline__item:last-child {
  padding-bottom: 0;
}

.gm-timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-1.8rem - 6px);
  top: 0.4rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gm-grad);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

.gm-timeline__year {
  font-family: var(--gm-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gm-accent-2);
}

.gm-timeline__item h4 {
  color: var(--gm-text);
  font-size: 1.05rem;
  margin: 0.3rem 0 0.4rem;
}

.gm-timeline__item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---------- team ---------- */

.gm-team__photo {
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
}

.gm-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gm-team:hover .gm-team__photo img {
  transform: scale(1.05);
}

.gm-team__role {
  font-size: 0.78rem;
  color: var(--gm-accent-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- misc ---------- */

.gm-map {
  border-radius: var(--gm-radius);
  overflow: hidden;
  border: 1px solid var(--gm-line-strong);
  box-shadow: var(--gm-shadow);
}

.gm-map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(35%) invert(0.92) hue-rotate(190deg) saturate(0.7);
}

/* generic "info tile" used on contacts/legal pages */
.gm-tile {
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
  height: 100%;
  background: var(--gm-surface);
  border: 1px solid var(--gm-line);
  border-radius: var(--gm-radius);
}

.gm-tile__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid var(--gm-line-strong);
  color: var(--gm-accent-2);
  font-size: 1.15rem;
}

.gm-tile h4 {
  font-size: 1rem;
  color: var(--gm-text);
  margin-bottom: 0.35rem;
}

.gm-tile p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* legal pages */
.gm-legal h3 {
  font-size: 1.3rem;
  color: var(--gm-text);
  margin-bottom: 0.8rem;
}

.gm-legal ul {
  color: var(--gm-muted);
  font-size: 0.92rem;
  line-height: 1.85;
  padding-left: 1.2rem;
}

.gm-legal .gm-callout {
  padding: 1.1rem 1.3rem;
  border-left: 3px solid var(--gm-accent);
  border-radius: 0 var(--gm-radius-sm) var(--gm-radius-sm) 0;
  background: rgba(56, 189, 248, 0.07);
  font-size: 0.9rem;
  color: var(--gm-muted);
}

/* ---------- footer ---------- */

.gm-footer {
  background: #060c1b;
  border-top: 1px solid var(--gm-line);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  margin-top: 0;
}

.gm-footer__about {
  font-size: 0.88rem;
  margin: 1.2rem 0 1.4rem;
  max-width: 34ch;
}

.gm-socials {
  display: flex;
  gap: 0.7rem;
}

.gm-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--gm-line);
  color: var(--gm-muted);
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.gm-socials a:hover {
  color: var(--gm-accent-2);
  border-color: var(--gm-accent);
  transform: translateY(-2px);
}

.gm-footer__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gm-text);
  margin-bottom: 1.2rem;
}

.gm-footer__menu,
.gm-footer__contacts,
.gm-footer__legal {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gm-footer__menu li {
  margin-bottom: 0.55rem;
}

.gm-footer__menu a {
  color: var(--gm-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.gm-footer__menu a:hover {
  color: var(--gm-accent-2);
  padding-left: 4px;
}

.gm-footer__contacts li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
  color: var(--gm-muted);
  line-height: 1.5;
}

.gm-footer__contacts i {
  color: var(--gm-accent);
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.gm-footer__contacts a {
  color: var(--gm-muted);
}

.gm-footer__contacts a:hover {
  color: var(--gm-accent-2);
}

.gm-footer__legal li {
  margin-bottom: 0.7rem;
  font-size: 0.85rem;
  color: var(--gm-text);
}

.gm-footer__legal li span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gm-muted);
  margin-bottom: 0.1rem;
}

.gm-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 3rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--gm-line);
}

.gm-footer__copy {
  font-size: 0.82rem;
  margin: 0;
}

.gm-footer__bottomlinks {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gm-footer__bottomlinks a {
  font-size: 0.82rem;
  color: var(--gm-muted);
}

.gm-footer__bottomlinks a:hover {
  color: var(--gm-accent-2);
}

/* ---------- small helpers ---------- */

.gm-text-muted { color: var(--gm-muted); }
.gm-list-check { list-style: none; padding: 0; margin: 0; }
.gm-list-check li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--gm-muted);
  font-size: 0.92rem;
}
.gm-list-check li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--gm-accent-2);
}
