/* ==========================================================================
   NetSet Software — German market resource augmentation design system.
   Ported from a Tailwind/shadcn React build to plain PHP + Bootstrap 3.4.
   Palette: white / light grey surfaces, deep navy text, single controlled
   navy-blue accent. Bootstrap 3.4 grid + base classes are used throughout;
   everything below is scoped under the ctm-grmn- prefix per project spec.
   ========================================================================== */

:root {
  --ctm-radius:        14px;
  --ctm-radius-lg:      18px;
  --ctm-radius-pill:   999px;

  --ctm-background:    #ffffff;
  --ctm-foreground:    #151735;
  --ctm-surface:       #f7f8fa;
  --ctm-card:          #ffffff;

  --ctm-primary:       #104791;
  --ctm-primary-fg:    #fdfdff;

  --ctm-accent:        #104791;
  --ctm-accent-fg:     #fdfdff;
  --ctm-accent-soft:   #e7f1ff;

  --ctm-muted:         #f3f4f7;
  --ctm-muted-fg:      #4f5067;

  --ctm-border:        #e6e7ed;
  --ctm-border-strong: #d0d2db;

  --ctm-destructive:   #cc2827;

  /* Elevation scale — layered, low-opacity shadows (premium, never muddy) */
  --ctm-shadow-hair:   0 1px 2px rgba(21,23,53,0.04);
  --ctm-shadow-soft:   0 1px 2px rgba(21,23,53,0.04), 0 10px 28px -12px rgba(21,23,53,0.14);
  --ctm-shadow-float:  0 2px 6px rgba(21,23,53,0.05), 0 26px 60px -22px rgba(16,71,145,0.28);
  --ctm-shadow-lift:   0 3px 10px rgba(21,23,53,0.06), 0 40px 80px -28px rgba(16,71,145,0.34);

  /* Subtle brand gradients + glass surfaces */
  --ctm-gradient-brand:   linear-gradient(135deg, #104791 0%, #1a63c4 100%);
  --ctm-gradient-surface: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  --ctm-gradient-hairline: linear-gradient(90deg, rgba(16,71,145,0) 0%, rgba(16,71,145,0.28) 50%, rgba(16,71,145,0) 100%);
  --ctm-glass:            rgba(255,255,255,0.72);

  /* Motion — one shared easing curve keeps every interaction consistent */
  --ctm-ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --ctm-ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ctm-dur:       .28s;

  --ctm-font: "Manrope", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ctm-font-head: "Sora", "Manrope", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------------------------------------------------------------------- */
/* Base                                                                    */
/* ---------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--ctm-font);
  color: var(--ctm-foreground);
  background-color: var(--ctm-background);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .ctm-grmn-h2 {
  font-family: var(--ctm-font);
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ctm-foreground);
}

a { color: var(--ctm-accent); }
a:hover, a:focus { color: var(--ctm-accent); text-decoration: none; }

::selection { background: var(--ctm-accent-soft); color: var(--ctm-foreground); }

/* ---------------------------------------------------------------------- */
/* Layout helpers                                                         */
/* ---------------------------------------------------------------------- */
.ctm-grmn-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .ctm-grmn-container { padding-left: 32px; padding-right: 32px; }
}

.ctm-grmn-section { padding-top: 64px; padding-bottom: 64px; border-bottom: 1px solid var(--ctm-border); }
.ctm-grmn-section-tight { padding-top: 56px; padding-bottom: 56px; border-bottom: none; }
.ctm-grmn-section-plain { background-color: var(--ctm-background); }
.ctm-grmn-section:last-child { border-bottom: none; }
@media (min-width: 992px) {
  .ctm-grmn-section { padding-top: 96px; padding-bottom: 96px; }
}

.ctm-grmn-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ctm-accent);
  margin-bottom: 0;
}

.ctm-grmn-h2 {
  margin-top: 14px;
  font-size: 30px;
  line-height: 1.2;
}
@media (min-width: 768px) { .ctm-grmn-h2 { font-size: 36px; } }

.ctm-grmn-lead {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ctm-muted-fg);
}

.ctm-grmn-max-2xl { max-width: 640px; }
.ctm-grmn-max-3xl { max-width: 768px; }

/* ---------------------------------------------------------------------- */
/* Header / navigation                                                    */
/* ---------------------------------------------------------------------- */
.ctm-grmn-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  padding: 12px 12px 0;
}
@media (min-width: 768px) { .ctm-grmn-header { padding: 16px 20px 0; } }

.ctm-grmn-header-inner {
  max-width: 1340px;
  margin: 0 auto;
  border: 1px solid var(--ctm-border);
  border-radius: 18px;
  background-color: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: var(--ctm-shadow-soft);
}

.ctm-grmn-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
}
@media (min-width: 768px) { .ctm-grmn-header-row { padding: 12px 24px; } }

.ctm-grmn-logo { display: flex; align-items: center; gap: 10px; min-width: 0; }
.ctm-grmn-logo-img { display: block; height: 36px; width: auto; flex-shrink: 0; }
.ctm-grmn-logo-img-sm { height: 32px; }
.ctm-grmn-logo-mark {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--ctm-primary);
  color: var(--ctm-primary-fg);
  font-weight: 800;
  font-size: 13px;
}
.ctm-grmn-logo-mark-sm { width: 32px; height: 32px; }
.ctm-grmn-logo-text { min-width: 0; line-height: 1.2; }
.ctm-grmn-logo-name { display: block; font-weight: 800; font-size: 18px; color: var(--ctm-primary); }
.ctm-grmn-logo-tag {
  display: none;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ctm-muted-fg);
}
@media (min-width: 768px) { .ctm-grmn-logo-tag { display: block; } }

.ctm-grmn-nav { display: none; }
@media (min-width: 1200px) { .ctm-grmn-nav { display: flex; flex: 1; justify-content: center; } }

.ctm-grmn-nav-pill {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 6px;
  border-radius: var(--ctm-radius-pill);
  background: var(--ctm-surface);
}
.ctm-grmn-nav-link {
  display: inline-block;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: var(--ctm-radius-pill);
  font-size: 12.5px;
  color: var(--ctm-muted-fg);
  transition: background-color .15s ease, color .15s ease;
}
.ctm-grmn-nav-link:hover, .ctm-grmn-nav-link:focus { background: var(--ctm-background); color: var(--ctm-foreground); text-decoration: none; }
.ctm-grmn-nav-link-active { background: var(--ctm-background); color: var(--ctm-foreground); font-weight: 700; }

.ctm-grmn-header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.ctm-grmn-lang-switch { display: none; align-items: center; gap: 6px; font-size: 12px; color: var(--ctm-muted-fg); }
@media (min-width: 768px) { .ctm-grmn-lang-switch { display: flex; } }
@media (min-width: 1200px) { .ctm-grmn-lang-switch { display: none; } }
@media (min-width: 1400px) { .ctm-grmn-lang-switch { display: flex; } }
.ctm-grmn-lang-active { font-weight: 700; color: var(--ctm-foreground); }
.ctm-grmn-lang-switch form { display: inline; margin: 0; }
.ctm-grmn-lang-switch button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ctm-muted-fg);
  font: inherit;
  cursor: pointer;
}
.ctm-grmn-lang-switch button:hover, .ctm-grmn-lang-switch button:focus { color: var(--ctm-accent); text-decoration: underline; }

.ctm-grmn-header-cta { display: none; }
@media (min-width: 768px) { .ctm-grmn-header-cta { display: inline-flex; } }

.ctm-grmn-mobile-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--ctm-border);
  background: var(--ctm-background);
}
@media (min-width: 1200px) { .ctm-grmn-mobile-toggle { display: none; } }

.ctm-grmn-mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
@media (min-width: 1200px) { .ctm-grmn-mobile-nav { display: none; } }
.ctm-grmn-mobile-nav.ctm-grmn-open { max-height: 30rem; border-top: 1px solid var(--ctm-border); }
.ctm-grmn-mobile-nav nav { padding: 16px; }
.ctm-grmn-mobile-nav-list li a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--ctm-border);
  font-size: 14px;
  color: var(--ctm-foreground);
}
.ctm-grmn-mobile-nav-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ctm-grmn-mobile-nav-footer .ctm-grmn-lang-switch { display: flex; }

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */
.ctm-grmn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--ctm-radius-pill);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border: 1px solid transparent;
  transition: background-color .15s ease, border-color .15s ease, opacity .15s ease;
}
.ctm-grmn-btn .glyphicon { top: 1px; }
.ctm-grmn-btn-accent { background: var(--ctm-accent); border-color: var(--ctm-accent); color: var(--ctm-accent-fg); }
.ctm-grmn-btn-accent:hover, .ctm-grmn-btn-accent:focus { background: #0d3b7a; border-color: #0d3b7a; color: var(--ctm-accent-fg); }
.ctm-grmn-btn-outline { background: var(--ctm-background); border-color: var(--ctm-border-strong); color: var(--ctm-foreground); }
.ctm-grmn-btn-outline:hover, .ctm-grmn-btn-outline:focus { background: var(--ctm-surface); color: var(--ctm-foreground); }
.ctm-grmn-btn-stroke-accent { background: #fff; border-color: var(--ctm-accent); color: var(--ctm-accent); }
.ctm-grmn-btn-stroke-accent:hover, .ctm-grmn-btn-stroke-accent:focus { background: #fff; border-color: var(--ctm-accent); color: var(--ctm-accent); box-shadow: var(--ctm-shadow-float); }
.ctm-grmn-btn-quiet { background: transparent; border-color: transparent; padding: 0; color: var(--ctm-foreground); font-weight: 600; }
.ctm-grmn-btn-quiet:hover, .ctm-grmn-btn-quiet:focus { color: var(--ctm-accent); }
.ctm-grmn-btn-quiet .glyphicon { transition: transform .15s ease; }
.ctm-grmn-btn-quiet:hover .glyphicon { transform: translateX(2px); }

.ctm-grmn-btn-sm { height: 36px; padding: 0 16px; font-size: 12px; }
.ctm-grmn-btn-lg { height: 48px; padding: 0 28px; font-size: 15px; }
.ctm-grmn-btn-block-mobile { width: 100%; }
@media (min-width: 600px) { .ctm-grmn-btn-block-mobile { width: auto; } }

.ctm-grmn-btn-group { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
@media (min-width: 600px) { .ctm-grmn-btn-group { flex-direction: row; } }

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.ctm-grmn-hero-row { display: flex; flex-direction: column; gap: 48px; padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 992px) { .ctm-grmn-hero-row { flex-direction: row; align-items: center; gap: 64px; padding-top: 96px; padding-bottom: 96px; } }
.ctm-grmn-hero-col-text { flex: 1.05; min-width: 0; }
.ctm-grmn-hero-col-visual { flex: 1; min-width: 0; }

.ctm-grmn-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ctm-border);
  background: var(--ctm-surface);
  border-radius: var(--ctm-radius-pill);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ctm-accent);
  box-shadow: var(--ctm-shadow-soft);
}

.ctm-grmn-h1 {
  margin-top: 20px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) { .ctm-grmn-h1 { font-size: 44px; } }
@media (min-width: 992px) { .ctm-grmn-h1 { font-size: 54px; } }

.ctm-grmn-hero-copy { margin-top: 24px; max-width: 560px; }
.ctm-grmn-hero-copy p { font-size: 16px; line-height: 1.7; color: var(--ctm-muted-fg); margin-bottom: 14px; }
@media (min-width: 768px) { .ctm-grmn-hero-copy p { font-size: 16.8px; } }

.ctm-grmn-hero-note {
  margin-top: 30px;
  padding-left: 16px;
  border-left: 2px solid var(--ctm-accent);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ctm-muted-fg);
}

/* ---------------------------------------------------------------------- */
/* Visual placeholder (stands in for hand-produced imagery/illustrations) */
/* ---------------------------------------------------------------------- */
.ctm-grmn-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: var(--ctm-radius-lg);
  border: 1px dashed var(--ctm-border);
  background: var(--ctm-surface);
  padding: 24px;
  text-align: center;
}
.ctm-grmn-placeholder span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ctm-muted-fg);
}
.ctm-grmn-ratio-5-4 { aspect-ratio: 5 / 4; }
.ctm-grmn-ratio-16-10 { aspect-ratio: 16 / 10; }
.ctm-grmn-ratio-16-7 { aspect-ratio: 16 / 7; }
.ctm-grmn-ratio-16-6 { aspect-ratio: 16 / 6; }
@supports not (aspect-ratio: 1/1) {
  .ctm-grmn-ratio-5-4 { padding-top: 80%; height: 0; }
  .ctm-grmn-ratio-16-10 { padding-top: 62.5%; height: 0; }
  .ctm-grmn-ratio-16-7 { padding-top: 43.75%; height: 0; }
  .ctm-grmn-ratio-16-6 { padding-top: 37.5%; height: 0; }
}

/* ---------------------------------------------------------------------- */
/* Trust strip                                                            */
/* ---------------------------------------------------------------------- */
.ctm-grmn-trust-list { margin: 0; padding: 22px 0; }
.ctm-grmn-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
}
@media (min-width: 992px) {
  .ctm-grmn-trust-col { width: 20%; float: left; }
}
.ctm-grmn-trust-dot {
  margin-top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ctm-accent);
  flex-shrink: 0;
  display: inline-block;
}

/* ---------------------------------------------------------------------- */
/* Cards                                                                   */
/* ---------------------------------------------------------------------- */
.ctm-grmn-card {
  border: 1px solid var(--ctm-border);
  background: var(--ctm-card);
  border-radius: var(--ctm-radius-lg);
  padding: 28px;
  box-shadow: var(--ctm-shadow-soft);
  height: 100%;
  margin-bottom: 24px;
  transition: box-shadow .2s ease;
}
.ctm-grmn-card-hover:hover { box-shadow: var(--ctm-shadow-float); }
.ctm-grmn-card-surface { background: var(--ctm-surface); box-shadow: none; }
.ctm-grmn-card-flush { display: flex; flex-direction: column; }
.ctm-grmn-card-featured { border-color: var(--ctm-accent); background: var(--ctm-accent-soft); }

.ctm-grmn-icon-badge {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ctm-accent-soft);
  color: var(--ctm-accent);
  flex-shrink: 0;
}
.ctm-grmn-icon-badge .glyphicon { font-size: 16px; }

.ctm-grmn-card-title { margin-top: 20px; font-size: 18px; font-weight: 600; line-height: 1.35; }
.ctm-grmn-card-copy { margin-top: 10px; font-size: 14px; line-height: 1.7; color: var(--ctm-muted-fg); }

.ctm-grmn-chip-row {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ctm-grmn-chip {
  border: 1px solid var(--ctm-border);
  border-radius: var(--ctm-radius-pill);
  padding: 5px 12px;
  font-size: 12px;
  color: var(--ctm-muted-fg);
}

.ctm-grmn-tag-strength {
  display: inline-block;
  border-radius: var(--ctm-radius-pill);
  background: var(--ctm-accent-soft);
  color: var(--ctm-accent);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
}

.ctm-grmn-featured-flag {
  display: inline-block;
  flex-shrink: 0;
  border-radius: var(--ctm-radius-pill);
  background: var(--ctm-background);
  color: var(--ctm-accent);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
}

/* Mosaic grid — cards sharing hairline borders (challenges / assurance grids) */
.ctm-grmn-mosaic {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--ctm-border);
  border-radius: var(--ctm-radius-lg);
  overflow: hidden;
  background: var(--ctm-border);
  gap: 1px;
  margin-top: 46px;
}
.ctm-grmn-mosaic-item {
  flex: 1 1 100%;
  background: var(--ctm-background);
  padding: 28px;
  transition: background-color .15s ease;
}
.ctm-grmn-mosaic-item:hover { background: var(--ctm-surface); }
@media (min-width: 768px) { .ctm-grmn-mosaic-item.ctm-grmn-mosaic-2 { flex-basis: calc(50% - 1px); } }
@media (min-width: 992px) { .ctm-grmn-mosaic-item.ctm-grmn-mosaic-3 { flex-basis: calc(33.333% - 1px); } .ctm-grmn-mosaic-item.ctm-grmn-mosaic-4 { flex-basis: calc(25% - 1px); } }

.ctm-grmn-mosaic-index { font-size: 12px; font-weight: 700; color: var(--ctm-accent); }

/* ---------------------------------------------------------------------- */
/* Numbered timeline (horizontal desktop / vertical mobile)               */
/* ---------------------------------------------------------------------- */
.ctm-grmn-timeline { list-style: none; margin: 56px 0 0; padding: 0; display: none; }
@media (min-width: 992px) { .ctm-grmn-timeline { display: flex; } }
.ctm-grmn-timeline > li { flex: 1; position: relative; padding-right: 20px; }
.ctm-grmn-timeline-bar { position: absolute; left: 0; right: 0; top: 10px; height: 1px; background: var(--ctm-border); }
.ctm-grmn-timeline-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--ctm-accent);
  background: var(--ctm-surface);
}
.ctm-grmn-timeline-dot span { width: 6px; height: 6px; border-radius: 50%; background: var(--ctm-accent); }
.ctm-grmn-timeline-step { margin-top: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ctm-muted-fg); }
.ctm-grmn-timeline-title { margin-top: 8px; font-size: 14px; font-weight: 600; line-height: 1.35; }
.ctm-grmn-timeline-copy { margin-top: 8px; font-size: 14px; line-height: 1.7; color: var(--ctm-muted-fg); }

.ctm-grmn-timeline-vertical { list-style: none; margin: 40px 0 0; padding: 0; }
@media (min-width: 992px) { .ctm-grmn-timeline-vertical { display: none; } }
.ctm-grmn-timeline-vertical > li { position: relative; display: flex; gap: 20px; padding-bottom: 32px; }
.ctm-grmn-timeline-vertical > li:last-child { padding-bottom: 0; }
.ctm-grmn-timeline-vertical-bar { position: absolute; left: 9px; top: 24px; bottom: 0; width: 1px; background: var(--ctm-border); }
.ctm-grmn-timeline-vertical .ctm-grmn-timeline-dot { flex-shrink: 0; margin-top: 4px; }

/* ---------------------------------------------------------------------- */
/* Numbered / scaling steps (horizontal chain)                            */
/* ---------------------------------------------------------------------- */
.ctm-grmn-chain { display: flex; flex-direction: column; gap: 16px; margin-top: 46px; }
@media (min-width: 992px) { .ctm-grmn-chain { flex-direction: row; align-items: stretch; } }
.ctm-grmn-chain-step { display: flex; align-items: center; gap: 16px; flex: 1; }
@media (min-width: 992px) { .ctm-grmn-chain-step { flex-direction: column; align-items: flex-start; } }
.ctm-grmn-chain-card {
  flex: 1;
  border: 1px solid var(--ctm-border);
  background: var(--ctm-background);
  border-radius: var(--ctm-radius-lg);
  padding: 20px;
  box-shadow: var(--ctm-shadow-soft);
}
@media (min-width: 992px) { .ctm-grmn-chain-card { width: 100%; } }
.ctm-grmn-chain-num { font-size: 12px; font-weight: 700; color: var(--ctm-accent); }
.ctm-grmn-chain-title { margin-top: 10px; font-size: 14px; font-weight: 600; line-height: 1.35; }

.ctm-grmn-numbered-badge {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ctm-accent-soft);
  color: var(--ctm-accent);
  font-size: 14px;
  font-weight: 700;
}

/* ---------------------------------------------------------------------- */
/* Tables                                                                  */
/* ---------------------------------------------------------------------- */
.ctm-grmn-table-wrap {
  margin-top: 40px;
  border: 1px solid var(--ctm-border);
  border-radius: var(--ctm-radius-lg);
  overflow: hidden;
  background: var(--ctm-background);
  box-shadow: var(--ctm-shadow-soft);
}
.ctm-grmn-table-scroll { width: 100%; overflow-x: auto; }
table.ctm-grmn-table { width: 100%; min-width: 640px; margin-bottom: 0; }
table.ctm-grmn-table > thead > tr > th {
  border-bottom: 1px solid var(--ctm-border);
  background: var(--ctm-surface);
  font-weight: 700;
  padding: 16px 24px;
}
table.ctm-grmn-table > tbody > tr > td,
table.ctm-grmn-table > tbody > tr > th {
  border-top: none;
  border-bottom: 1px solid var(--ctm-border);
  padding: 16px 24px;
  vertical-align: middle;
}
table.ctm-grmn-table > tbody > tr:last-child > td,
table.ctm-grmn-table > tbody > tr:last-child > th { border-bottom: none; }
table.ctm-grmn-table .ctm-grmn-col-muted { color: var(--ctm-muted-fg); }
table.ctm-grmn-table .ctm-grmn-col-accent { color: var(--ctm-accent); }
table.ctm-grmn-table .ctm-grmn-col-strong { font-weight: 600; color: var(--ctm-foreground); }


.ctm-grmn-mobile-compare-card {
  border: 1px solid var(--ctm-border);
  border-radius: var(--ctm-radius-lg);
  background: var(--ctm-surface);
  padding: 24px;
  margin-bottom: 16px;
}
.ctm-grmn-mobile-compare-card.ctm-grmn-mobile-compare-accent {
  border-color: rgba(16,71,145,0.3);
  background: rgba(16,71,145,0.05);
}
.ctm-grmn-mobile-compare-card h3 { margin-top: 0; font-size: 14px; font-weight: 700; }
.ctm-grmn-mobile-compare-card ul { list-style: none; padding: 0; margin: 14px 0 0; }
.ctm-grmn-mobile-compare-card li { font-size: 14px; line-height: 1.7; padding: 3px 0; }
.ctm-grmn-mobile-compare-card dl { margin: 14px 0 0; }
.ctm-grmn-mobile-compare-card dl > div { display: flex; justify-content: space-between; gap: 16px; font-size: 13px; padding: 6px 0; }
.ctm-grmn-mobile-compare-card dt { color: var(--ctm-muted-fg); font-weight: 400; }
.ctm-grmn-mobile-compare-card dd { font-weight: 600; text-align: right; margin: 0; }

/* ---------------------------------------------------------------------- */
/* Value proposition / benefit list                                       */
/* ---------------------------------------------------------------------- */
.ctm-grmn-benefit-list { list-style: none; margin: 0; padding: 0; }
.ctm-grmn-benefit-list li { display: flex; gap: 12px; margin-bottom: 24px; }
.ctm-grmn-benefit-list li:last-child { margin-bottom: 0; }
.ctm-grmn-benefit-check { margin-top: 3px; color: var(--ctm-accent); flex-shrink: 0; transition: transform .3s var(--ctm-ease-out); }
.ctm-grmn-benefit-title { font-size: 14px; font-weight: 600; margin: 0; }
.ctm-grmn-benefit-copy { margin-top: 4px; font-size: 14px; line-height: 1.7; color: var(--ctm-muted-fg); }

.ctm-grmn-benefit-item {
  display: flex;
  gap: 12px;
  margin: 0 -14px 24px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background .3s var(--ctm-ease-out),
              box-shadow .3s var(--ctm-ease-out),
              transform .3s var(--ctm-ease-out);
}
.ctm-grmn-benefit-item:hover,
.ctm-grmn-benefit-item:focus-within {
  background: #e7f1ff7a;
  box-shadow: var(--ctm-shadow-hair);
  transform: translateY(-2px);
}
.ctm-grmn-benefit-item:hover .ctm-grmn-benefit-check,
.ctm-grmn-benefit-item:focus-within .ctm-grmn-benefit-check { transform: scale(1.15); }

/* ---------------------------------------------------------------------- */
/* Client experience / case study                                         */
/* ---------------------------------------------------------------------- */
.ctm-grmn-detail-grid {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--ctm-border);
  border-radius: var(--ctm-radius-lg);
  overflow: hidden;
  background: var(--ctm-border);
  gap: 1px;
}
.ctm-grmn-detail-grid > div { flex: 1 1 100%; background: var(--ctm-background); padding: 22px; }
@media (min-width: 768px) { .ctm-grmn-detail-grid > div { flex-basis: calc(50% - 1px); } }
.ctm-grmn-detail-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ctm-accent); margin: 0; }
.ctm-grmn-detail-copy { margin: 10px 0 0; font-size: 14px; line-height: 1.7; }

.ctm-grmn-confidentiality-note {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--ctm-border);
  border-radius: var(--ctm-radius-lg);
  background: var(--ctm-surface);
  padding: 16px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ctm-muted-fg);
}
.ctm-grmn-confidentiality-note .glyphicon { margin-top: 3px; }

/* ---------------------------------------------------------------------- */
/* Certifications banner                                                  */
/* ---------------------------------------------------------------------- */
.ctm-grmn-cert-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  border: 1px solid var(--ctm-border);
  border-radius: var(--ctm-radius-lg);
  background: var(--ctm-surface);
  padding: 32px 24px;
}
.ctm-grmn-cert-banner .ctm-grmn-cert-list { font-size: 15px; font-weight: 700; margin: 0; }
.ctm-grmn-cert-banner .ctm-grmn-cert-list span.ctm-grmn-dot { color: var(--ctm-border-strong); }
.ctm-grmn-cert-banner p.ctm-grmn-cert-copy { max-width: 640px; font-size: 14px; line-height: 1.7; color: var(--ctm-muted-fg); margin: 0; }

/* ---------------------------------------------------------------------- */
/* FAQ accordion (uses Bootstrap 3.4 panel-group + collapse JS)          */
/* ---------------------------------------------------------------------- */
.ctm-grmn-faq .panel-group { margin-bottom: 0; border-top: 1px solid var(--ctm-border); }
.ctm-grmn-faq .panel {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--ctm-border);
  box-shadow: none;
  background: transparent;
}
.ctm-grmn-faq .panel-heading { padding: 0; background: transparent; border: none; }
.ctm-grmn-faq .panel-title a {
  display: block;
  padding: 20px 28px 20px 0;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ctm-foreground);
  position: relative;
}
.ctm-grmn-faq .panel-title a:hover,
.ctm-grmn-faq .panel-title a:focus { color: var(--ctm-accent); text-decoration: none; }
.ctm-grmn-faq .panel-title a:after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  font-size: 20px;
  font-weight: 400;
  color: var(--ctm-muted-fg);
  transition: transform .2s ease;
}
.ctm-grmn-faq .panel-title a.ctm-grmn-faq-open:after { content: "\2212"; }
.ctm-grmn-faq .panel-body {
  border-top: none !important;
  padding: 0 28px 20px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ctm-muted-fg);
}

/* ---------------------------------------------------------------------- */
/* Forms                                                                   */
/* ---------------------------------------------------------------------- */
.ctm-grmn-form {
  border: 1px solid var(--ctm-border);
  background: var(--ctm-background);
  border-radius: var(--ctm-radius-lg);
  padding: 24px;
}
@media (min-width: 768px) { .ctm-grmn-form { padding: 32px; } }
.ctm-grmn-field { margin-bottom: 20px; }
.ctm-grmn-field label { font-size: 13.5px; font-weight: 600; color: var(--ctm-foreground); margin-bottom: 8px; }
.ctm-grmn-input.form-control {
  height: 42px;
  border-radius: 10px;
  border-color: var(--ctm-border-strong);
  box-shadow: none;
  font-size: 14px;
}
textarea.ctm-grmn-input.form-control { height: auto; }
.ctm-grmn-input.form-control:focus { border-color: var(--ctm-accent); box-shadow: 0 0 0 2px var(--ctm-accent-soft); }

.ctm-grmn-consent { margin-top: 8px; }
.ctm-grmn-checkbox label { font-weight: 400; font-size: 14px; line-height: 1.7; padding-left: 26px; }
.ctm-grmn-checkbox input[type="checkbox"] { margin-top: 5px; margin-left: -26px; }

.ctm-grmn-field-error, .ctm-grmn-field-error-text {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ctm-destructive);
}

.ctm-grmn-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  padding: 16px;
  font-size: 14px;
  margin-bottom: 24px;
}
.ctm-grmn-alert-success { border: 1px solid var(--ctm-border); background: var(--ctm-surface); }
.ctm-grmn-alert-success .glyphicon { color: var(--ctm-accent); margin-top: 2px; }
.ctm-grmn-alert-error { border: 1px solid rgba(204,40,39,0.35); background: rgba(204,40,39,0.05); color: var(--ctm-destructive); }
.ctm-grmn-alert-error .glyphicon { margin-top: 2px; }

.ctm-grmn-form-card-title { margin: 0; font-size: 20px; font-weight: 700; color: var(--ctm-foreground); }
.ctm-grmn-form-card-sub { margin: 6px 0 24px; font-size: 14px; line-height: 1.6; color: var(--ctm-muted-fg); }
.ctm-grmn-form-captcha { margin-bottom: 20px; }
.ctm-grmn-form label.error {
  display: flex; align-items: center; gap: 6px; margin-top: 8px;
  font-size: 12px; font-weight: 400; color: var(--ctm-destructive);
}
.ctm-grmn-form-submit { margin-top: 6px; width: 100%; }
@media (min-width: 600px) { .ctm-grmn-form-submit { width: auto; } }
.ctm-grmn-form-footnote { margin-top: 22px; font-size: 14px; line-height: 1.7; color: var(--ctm-muted-fg); }
.ctm-grmn-form-footnote a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.ctm-grmn-plain-list { margin-top: 28px; padding-left: 0; list-style: none; font-size: 14px; line-height: 1.7; color: var(--ctm-muted-fg); }
.ctm-grmn-plain-list li { margin-bottom: 12px; }

.ctm-grmn-form-row { display: flex; flex-wrap: wrap; }

/* ---------------------------------------------------------------------- */
/* Continue exploring strip                                               */
/* ---------------------------------------------------------------------- */
.ctm-grmn-continue {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--ctm-border);
  background: var(--ctm-surface);
  border-radius: var(--ctm-radius-lg);
  padding: 28px;
}
@media (min-width: 600px) { .ctm-grmn-continue { flex-direction: row; align-items: center; justify-content: space-between; } }
.ctm-grmn-continue-title { margin: 8px 0 0; font-size: 18px; font-weight: 600; }
.ctm-grmn-continue-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--ctm-accent); }
.ctm-grmn-continue-link:hover { opacity: .8; color: var(--ctm-accent); }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.ctm-grmn-footer { border-top: 1px solid var(--ctm-border); background: var(--ctm-background); padding: 56px 0; }
.ctm-grmn-footer-row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.ctm-grmn-footer-brand { display: flex; align-items: center; gap: 10px; }
.ctm-grmn-footer-brand-name { font-weight: 700; font-size: 16px; }
.ctm-grmn-footer-copy { margin-top: 16px; font-size: 14px; line-height: 1.7; color: var(--ctm-muted-fg); max-width: 260px; }
.ctm-grmn-footer-address { margin-top: 12px; }
.ctm-grmn-footer-heading { margin-top: 32px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; }
@media (min-width: 768px) { .ctm-grmn-footer-heading { margin-top: 0; } }
.ctm-grmn-footer-links { margin-top: 16px; }
.ctm-grmn-footer-links li { margin-bottom: 10px; }
.ctm-grmn-footer-links a { font-size: 14px; color: var(--ctm-muted-fg); }
.ctm-grmn-footer-links a:hover { color: var(--ctm-foreground); }
.ctm-grmn-footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--ctm-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: var(--ctm-muted-fg);
}
@media (min-width: 600px) { .ctm-grmn-footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.ctm-grmn-footer-bottom p { margin: 0; }

/* ---------------------------------------------------------------------- */
/* Placeholder page (contact / redirect targets)                          */
/* ---------------------------------------------------------------------- */
.ctm-grmn-placeholder-page { max-width: 720px; margin: 0 auto; padding: 96px 20px; text-align: center; }
@media (min-width: 992px) { .ctm-grmn-placeholder-page { padding: 128px 20px; } }
.ctm-grmn-placeholder-page h1 { margin-top: 16px; font-size: 36px; }
@media (min-width: 768px) { .ctm-grmn-placeholder-page h1 { font-size: 46px; } }
.ctm-grmn-placeholder-page .ctm-grmn-lead { margin-top: 24px; }
.ctm-grmn-placeholder-actions { margin-top: 36px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
@media (min-width: 600px) { .ctm-grmn-placeholder-actions { flex-direction: row; } }

/* ---------------------------------------------------------------------- */
/* Reveal-on-scroll animation                                             */
/* ---------------------------------------------------------------------- */
.ctm-grmn-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
}
.ctm-grmn-reveal.ctm-grmn-reveal-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ctm-grmn-reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------------------------------------------------------------------- */
/* Grid gutters — keep Bootstrap's row/col but tighten default gutter     */
/* for the tighter design system spacing used throughout the mock-ups.    */
/* ---------------------------------------------------------------------- */
.ctm-grmn-row-gap > [class*="col-"] { margin-bottom: 24px; }
.ctm-grmn-row-gap-0 > [class*="col-"]:last-child,
.ctm-grmn-row-gap > [class*="col-"]:last-child { margin-bottom: 0; }

/* ==========================================================================
   PREMIUM UI LAYER — 2026 enterprise refresh
   --------------------------------------------------------------------------
   Layered on top of the existing structure. Nothing here changes markup
   semantics, content, URLs or PHP behaviour: it only refines typography,
   spacing rhythm, elevation, motion and interaction quality.
   Every rule stays inside the ctm-grmn- prefix (or targets base elements).
   ========================================================================== */

/* --------------------------------------------------------------------- */
/* 1. Typography — display face for headings, tighter optical rhythm      */
/* --------------------------------------------------------------------- */
h1, h2, h3, h4,
.ctm-grmn-h1, .ctm-grmn-h2,
.ctm-grmn-card-title,
.ctm-grmn-timeline-title,
.ctm-grmn-continue-title,
.ctm-grmn-footer-brand-name {
  font-family: var(--ctm-font-head);
  font-weight: 600;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.ctm-grmn-h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.ctm-grmn-h2 {
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.ctm-grmn-lead,
.ctm-grmn-hero-copy p,
.ctm-grmn-card-copy,
.ctm-grmn-timeline-copy,
.ctm-grmn-benefit-copy {
  text-wrap: pretty;
}

.ctm-grmn-lead { font-size: 16.5px; line-height: 1.72; max-width: 62ch; }

/* Eyebrow gains a short accent rule — a small, distinctly "German corporate"
   signal of hierarchy without adding any new copy. */
.ctm-grmn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.18em;
}
.ctm-grmn-eyebrow:before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--ctm-gradient-brand);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------- */
/* 2. Accessibility utilities                                             */
/* --------------------------------------------------------------------- */
.ctm-grmn-skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 2000;
  padding: 10px 18px;
  border-radius: var(--ctm-radius-pill);
  background: var(--ctm-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: top var(--ctm-dur) var(--ctm-ease);
}
.ctm-grmn-skip-link:focus { top: 14px; color: #fff; outline: none; }

/* One consistent, high-contrast focus ring for keyboard users everywhere. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--ctm-accent);
  outline-offset: 3px;
  border-radius: 8px;
}
/* Mouse users keep clean surfaces (Bootstrap 3's default outline removed). */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* --------------------------------------------------------------------- */
/* 3. Reading progress bar                                                */
/* --------------------------------------------------------------------- */
.ctm-grmn-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 1100;
  pointer-events: none;
  background: transparent;
}
.ctm-grmn-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--ctm-gradient-brand);
  transform-origin: left center;
  transition: width .12s linear;
}

/* --------------------------------------------------------------------- */
/* 4. Header — glass, elevation on scroll, animated nav underline         */
/* --------------------------------------------------------------------- */
.ctm-grmn-header-inner {
  background: var(--ctm-glass);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: var(--ctm-shadow-hair);
  transition: box-shadow var(--ctm-dur) var(--ctm-ease),
              background-color var(--ctm-dur) var(--ctm-ease),
              border-color var(--ctm-dur) var(--ctm-ease);
}
.ctm-grmn-header.ctm-grmn-header-scrolled .ctm-grmn-header-inner {
  background: rgba(255,255,255,0.9);
  box-shadow: var(--ctm-shadow-soft);
  border-color: rgba(16,71,145,0.14);
}

.ctm-grmn-logo-mark {
  background: var(--ctm-gradient-brand);
  box-shadow: 0 6px 16px -6px rgba(16,71,145,0.7);
  transition: transform var(--ctm-dur) var(--ctm-ease-out), box-shadow var(--ctm-dur) var(--ctm-ease);
}
.ctm-grmn-logo:hover .ctm-grmn-logo-mark {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 10px 22px -8px rgba(16,71,145,0.75);
}

.ctm-grmn-nav-link { position: relative; transition: color var(--ctm-dur) var(--ctm-ease); }
.ctm-grmn-nav-link:after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ctm-accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--ctm-dur) var(--ctm-ease-out);
}
.ctm-grmn-nav-link:hover:after,
.ctm-grmn-nav-link-active:after { transform: scaleX(1); transform-origin: left center; }
.ctm-grmn-nav-link-active { box-shadow: var(--ctm-shadow-hair); }

.ctm-grmn-mobile-toggle { transition: background-color var(--ctm-dur) var(--ctm-ease), border-color var(--ctm-dur) var(--ctm-ease); }
.ctm-grmn-mobile-toggle:hover { background: var(--ctm-surface); border-color: var(--ctm-border-strong); }
.ctm-grmn-mobile-nav.ctm-grmn-open { max-height: 34rem; }
.ctm-grmn-mobile-nav-list li a { transition: padding-left var(--ctm-dur) var(--ctm-ease), color var(--ctm-dur) var(--ctm-ease); }
.ctm-grmn-mobile-nav-list li a:hover { padding-left: 6px; color: var(--ctm-accent); }

/* --------------------------------------------------------------------- */
/* 5. Buttons — premium fill, light sheen, hover lift, consistent radius  */
/* --------------------------------------------------------------------- */
.ctm-grmn-btn {
  position: relative;
  overflow: hidden;
  letter-spacing: -0.005em;
  transition: transform var(--ctm-dur) var(--ctm-ease-out),
              box-shadow var(--ctm-dur) var(--ctm-ease),
              background-color var(--ctm-dur) var(--ctm-ease),
              border-color var(--ctm-dur) var(--ctm-ease),
              color var(--ctm-dur) var(--ctm-ease);
  will-change: transform;
}
.ctm-grmn-btn:active { transform: translateY(0) scale(.985); }

/* Diagonal light sweep on hover (GPU-only transform, no layout cost). */
.ctm-grmn-btn-accent:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0) 65%);
  transform: translateX(-120%);
  transition: transform .7s var(--ctm-ease-out);
}
.ctm-grmn-btn-accent:hover:before { transform: translateX(120%); }

.ctm-grmn-btn-accent {
  background: var(--ctm-gradient-brand);
  border-color: transparent;
  box-shadow: 0 8px 20px -10px rgba(16,71,145,0.8);
}
.ctm-grmn-btn-accent:hover,
.ctm-grmn-btn-accent:focus {
  background: var(--ctm-gradient-brand);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(16,71,145,0.75);
}

.ctm-grmn-btn-outline {
  background: rgba(255,255,255,0.9);
  box-shadow: var(--ctm-shadow-hair);
}
.ctm-grmn-btn-outline:hover,
.ctm-grmn-btn-outline:focus {
  transform: translateY(-2px);
  border-color: rgba(16,71,145,0.35);
  box-shadow: 0 14px 30px -16px rgba(21,23,53,0.4);
}

.ctm-grmn-btn-quiet {
  overflow: visible;
  position: relative;
  padding-bottom: 2px;
}
.ctm-grmn-btn-quiet:after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: var(--ctm-accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--ctm-dur) var(--ctm-ease-out);
}
.ctm-grmn-btn-quiet:hover:after { transform: scaleX(1); transform-origin: left center; }
.ctm-grmn-btn-quiet:hover .glyphicon,
.ctm-grmn-btn-quiet:hover .ctm-grmn-ico { transform: translateX(4px); }

.ctm-grmn-btn .ctm-grmn-ico { transition: transform var(--ctm-dur) var(--ctm-ease-out); }
.ctm-grmn-btn-accent:hover .ctm-grmn-ico,
.ctm-grmn-btn-accent:hover .glyphicon-arrow-right { transform: translateX(3px); }

.ctm-grmn-btn-group { margin-top: 34px; gap: 14px; }

/* --------------------------------------------------------------------- */
/* 6. Sections — deliberate separation, quiet background craft            */
/* --------------------------------------------------------------------- */
.ctm-grmn-container { max-width: 1320px; }
@media (min-width: 1600px) { .ctm-grmn-container { max-width: 1400px; } }

.ctm-grmn-section { position: relative; }
@media (min-width: 992px) { .ctm-grmn-section { padding-top: 80px; padding-bottom: 80px; } }
@media (min-width: 1400px) { .ctm-grmn-section { padding-top: 60px; padding-bottom: 60px; } }

/* Hairline dividers fade out at the edges instead of hard-stopping. */
.ctm-grmn-section { border-bottom: none; }
.ctm-grmn-section:after {
  content: "";
  position: absolute;
  left: 5%; right: 5%; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(21,23,53,0) 0%, rgba(21,23,53,0.12) 50%, rgba(21,23,53,0) 100%);
}
.ctm-grmn-section:last-of-type:after,
.ctm-grmn-section-tight:after { display: none; }

/* Alternating bands get a very soft brand wash + fine noise for depth. */
.ctm-grmn-section-plain {
  background-image: radial-gradient(1200px 480px at 95% -20%, rgba(16,71,145,0.06), transparent 62%);
}

/* --------------------------------------------------------------------- */
/* 7. Hero                                                                */
/* --------------------------------------------------------------------- */
.ctm-grmn-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px 7px 12px;
  border-radius: var(--ctm-radius-pill);
  border: 1px solid rgba(16,71,145,0.18);
  background: linear-gradient(180deg, #ffffff 0%, var(--ctm-accent-soft) 100%);
  box-shadow: var(--ctm-shadow-hair);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ctm-accent);
}
.ctm-grmn-hero-badge .glyphicon,
.ctm-grmn-hero-badge .ctm-grmn-ico { color: var(--ctm-accent); }

.ctm-grmn-hero-note {
  border-left: none;
  padding: 16px 18px;
  border-radius: 0 var(--ctm-radius) var(--ctm-radius) 0;
  background: linear-gradient(90deg, var(--ctm-accent-soft) 0%, rgba(231,241,255,0) 100%);
  box-shadow: inset 2px 0 0 0 var(--ctm-accent);
}

.ctm-grmn-hero-col-visual { position: relative; }
/* Floating accent orbs behind the hero visual (decorative, GPU-animated). */
.ctm-grmn-hero-col-visual:before,
.ctm-grmn-hero-col-visual:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  z-index: 0;
  pointer-events: none;
}
.ctm-grmn-hero-col-visual:before {
  width: 220px; height: 220px;
  top: -46px; right: -32px;
  background: rgba(26,99,196,0.24);
  animation: ctm-float 11s ease-in-out infinite;
}
.ctm-grmn-hero-col-visual:after {
  width: 180px; height: 180px;
  bottom: -40px; left: -30px;
  background: rgba(16,71,145,0.16);
  animation: ctm-float 13s ease-in-out infinite reverse;
}
.ctm-grmn-hero-col-visual > * { position: relative; z-index: 1; }

@keyframes ctm-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -18px, 0); }
}

/* --------------------------------------------------------------------- */
/* 8. Figures — real imagery in a premium glass frame                     */
/* --------------------------------------------------------------------- */
.ctm-grmn-figure {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--ctm-radius-lg);
  border: 1px solid var(--ctm-border);
  background: var(--ctm-gradient-surface);
  box-shadow: var(--ctm-shadow-soft);
  transition: transform .5s var(--ctm-ease-out), box-shadow .5s var(--ctm-ease);
  will-change: transform;
}
.ctm-grmn-figure:hover { transform: translateY(-4px); box-shadow: var(--ctm-shadow-lift); }

.ctm-grmn-figure-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform .9s var(--ctm-ease-out);
}
.ctm-grmn-figure:hover .ctm-grmn-figure-img { transform: scale(1.045); }

/* Slow diagonal glass sheen across the image on hover. */
.ctm-grmn-figure-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,0) 38%, rgba(255,255,255,0.32) 50%, rgba(255,255,255,0) 62%);
  transform: translateX(-110%);
  transition: transform 1s var(--ctm-ease-out);
}
.ctm-grmn-figure:hover .ctm-grmn-figure-sheen { transform: translateX(110%); }

/* Ratio utilities also apply to figures (fallback for older browsers). */
.ctm-grmn-figure.ctm-grmn-ratio-5-4,
.ctm-grmn-figure.ctm-grmn-ratio-16-10,
.ctm-grmn-figure.ctm-grmn-ratio-16-7,
.ctm-grmn-figure.ctm-grmn-ratio-16-6 { display: block; }
@supports not (aspect-ratio: 1/1) {
  .ctm-grmn-figure { height: auto; padding-top: 0 !important; }
  .ctm-grmn-figure-img { height: auto; }
}

/* Figure with a CTA overlaid directly on the image (dark gradient + left-aligned copy). */
.ctm-grmn-figure-cta .ctm-grmn-figure-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ctm-grmn-figure-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,18,38,0.92) 0%, rgba(8,18,38,0.72) 38%, rgba(8,18,38,0.32) 68%, rgba(8,18,38,0.08) 100%);
  pointer-events: none;
}
.ctm-grmn-figure-cta-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 44px 56px;
  max-width: 600px;
}
.ctm-grmn-figure-cta-title {
  font-family: var(--ctm-font-head);
  font-weight: 700;
  color: #fff;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.ctm-grmn-figure-cta-copy {
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 26px;
  max-width: 480px;
}
.ctm-grmn-figure-cta-content .ctm-grmn-btn-accent {
  border-color: transparent;
}
@media (max-width: 767px) {
  .ctm-grmn-figure-cta.ctm-grmn-ratio-16-6 { aspect-ratio: auto; min-height: 380px; }
  .ctm-grmn-figure-cta-content { padding: 28px 24px; }
  .ctm-grmn-figure-cta-title { margin-bottom: 12px; }
  .ctm-grmn-figure-cta-copy { margin-bottom: 20px; }
  .ctm-grmn-figure-overlay { background: linear-gradient(180deg, rgba(8,18,38,0.32) 0%, rgba(8,18,38,0.88) 62%, rgba(8,18,38,0.94) 100%); }
  .ctm-grmn-figure-cta-content { justify-content: flex-end; }
}

/* Parallax drift for hero/feature imagery (translate only — always 60fps). */
.ctm-grmn-parallax { transition: transform .35s var(--ctm-ease-out); }

/* --------------------------------------------------------------------- */

/* --------------------------------------------------------------------- */
/* 10. Cards — elevation, brand glow edge, animated top hairline          */
/* --------------------------------------------------------------------- */
.ctm-grmn-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: var(--ctm-gradient-surface);
  transition: transform .35s var(--ctm-ease-out),
              box-shadow .35s var(--ctm-ease),
              border-color .35s var(--ctm-ease);
  will-change: transform;
}
.ctm-grmn-card:before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--ctm-gradient-brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s var(--ctm-ease-out);
}
.ctm-grmn-card-hover:hover,
.ctm-grmn-card-hover:focus-within {
  transform: translateY(-6px);
  border-color: rgba(16,71,145,0.28);
  box-shadow: var(--ctm-shadow-float);
}
.ctm-grmn-card-hover:hover:before,
.ctm-grmn-card-hover:focus-within:before { transform: scaleX(1); }

.ctm-grmn-card-surface {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fa 100%);
  box-shadow: var(--ctm-shadow-hair);
}
.ctm-grmn-card-surface:hover { box-shadow: var(--ctm-shadow-soft); transform: translateY(-4px); border-color: rgba(16,71,145,0.22); }
.ctm-grmn-card-surface:hover:before { transform: scaleX(1); }

.ctm-grmn-card-featured {
  background: linear-gradient(160deg, #ffffff 0%, var(--ctm-accent-soft) 100%);
  border-color: rgba(16,71,145,0.35);
  box-shadow: var(--ctm-shadow-soft);
}

.ctm-grmn-card-title { letter-spacing: -0.02em; }

/* Icon badges: gradient tint, gentle lift + tilt on card hover. */
.ctm-grmn-icon-badge {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--ctm-accent-soft) 0%, #d8e8ff 100%);
  border: 1px solid rgba(16,71,145,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform .35s var(--ctm-ease-out), box-shadow .35s var(--ctm-ease);
}
.ctm-grmn-card:hover .ctm-grmn-icon-badge,
.ctm-grmn-mosaic-item:hover .ctm-grmn-icon-badge {
  transform: translateY(-2px) rotate(-4deg);
  box-shadow: 0 10px 20px -12px rgba(16,71,145,0.8);
}

/* Chips */
.ctm-grmn-chip {
  background: #fff;
  transition: border-color var(--ctm-dur) var(--ctm-ease), color var(--ctm-dur) var(--ctm-ease), transform var(--ctm-dur) var(--ctm-ease-out);
}
.ctm-grmn-chip:hover { border-color: rgba(16,71,145,0.4); color: var(--ctm-accent); transform: translateY(-1px); }

.ctm-grmn-tag-strength,
.ctm-grmn-featured-flag {
  border: 1px solid rgba(16,71,145,0.16);
  background: linear-gradient(180deg, #ffffff 0%, var(--ctm-accent-soft) 100%);
}

/* Mosaic tiles */
.ctm-grmn-mosaic { box-shadow: var(--ctm-shadow-soft); }
.ctm-grmn-mosaic-item {
  position: relative;
  padding: 32px 30px;
  transition: background-color .3s var(--ctm-ease), transform .3s var(--ctm-ease-out);
}
.ctm-grmn-mosaic-item:before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--ctm-gradient-brand);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .4s var(--ctm-ease-out);
}
.ctm-grmn-mosaic-item:hover {
  background: linear-gradient(180deg, #ffffff 0%, var(--ctm-surface) 100%);
}
.ctm-grmn-mosaic-item:hover:before { transform: scaleY(1); }
.ctm-grmn-mosaic-index {
  display: inline-block;
  font-family: var(--ctm-font-head);
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------- */
/* 11. Timeline + chain                                                   */
/* --------------------------------------------------------------------- */
.ctm-grmn-timeline-dot {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(16,71,145,0.08);
  transition: box-shadow .3s var(--ctm-ease), transform .3s var(--ctm-ease-out);
}
.ctm-grmn-timeline > li:hover .ctm-grmn-timeline-dot,
.ctm-grmn-timeline-vertical > li:hover .ctm-grmn-timeline-dot {
  transform: scale(1.12);
  box-shadow: 0 0 0 7px rgba(16,71,145,0.12);
}
.ctm-grmn-timeline-dot span { background: var(--ctm-gradient-brand); }
.ctm-grmn-timeline-bar,
.ctm-grmn-timeline-vertical-bar { background: var(--ctm-gradient-hairline); }
.ctm-grmn-timeline > li { padding-right: 26px; }

.ctm-grmn-chain-card {
  background: var(--ctm-gradient-surface);
  transition: transform .3s var(--ctm-ease-out), box-shadow .3s var(--ctm-ease), border-color .3s var(--ctm-ease);
}
.ctm-grmn-chain-card:hover { transform: translateY(-4px); border-color: rgba(16,71,145,0.28); box-shadow: var(--ctm-shadow-float); }
.ctm-grmn-numbered-badge {
  background: var(--ctm-gradient-brand);
  color: #fff;
  box-shadow: 0 8px 18px -10px rgba(16,71,145,0.9);
}

/* --------------------------------------------------------------------- */
/* 12. Tables                                                             */
/* --------------------------------------------------------------------- */
table.ctm-grmn-table > thead > tr > th {
  background: linear-gradient(180deg, #ffffff 0%, var(--ctm-surface) 100%);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ctm-muted-fg);
}
table.ctm-grmn-table > thead > tr > th.ctm-grmn-col-accent { color: var(--ctm-accent); }
table.ctm-grmn-table > tbody > tr { transition: background-color .2s var(--ctm-ease); }
table.ctm-grmn-table > tbody > tr:hover { background: rgba(16,71,145,0.035); }
table.ctm-grmn-table > tbody > tr > th { font-weight: 600; }

/* --------------------------------------------------------------------- */
/* 13. Certifications + case-study detail grid                            */
/* --------------------------------------------------------------------- */
.ctm-grmn-cert-banner {
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(16,71,145,0.08), transparent 70%),
    var(--ctm-gradient-surface);
  box-shadow: var(--ctm-shadow-soft);
  padding: 40px 28px;
}
.ctm-grmn-cert-banner .ctm-grmn-cert-list {
  font-family: var(--ctm-font-head);
  font-size: 17px;
  letter-spacing: 0.02em;
}

.ctm-grmn-detail-grid { box-shadow: var(--ctm-shadow-soft); }
.ctm-grmn-detail-grid > div { transition: background-color .25s var(--ctm-ease); }
.ctm-grmn-detail-grid > div:hover { background: var(--ctm-surface); }
.ctm-grmn-confidentiality-note { background: var(--ctm-gradient-surface); display:flex; align-items:center; }

/* --------------------------------------------------------------------- */
/* 14. FAQ                                                                */
/* --------------------------------------------------------------------- */
.ctm-grmn-faq .panel-title a {
  padding: 22px 44px 22px 4px;
  transition: color var(--ctm-dur) var(--ctm-ease), padding-left var(--ctm-dur) var(--ctm-ease);
}
.ctm-grmn-faq .panel-title a:hover { padding-left: 10px; }
.ctm-grmn-faq .panel-title a:after {
  right: 8px;
  top: 50%;
  margin-top: -14px;
  width: 28px;
  height: 28px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--ctm-border);
  background: #fff;
  font-size: 16px;
  transition: transform var(--ctm-dur) var(--ctm-ease-out), border-color var(--ctm-dur) var(--ctm-ease), color var(--ctm-dur) var(--ctm-ease);
}
.ctm-grmn-faq .panel-title a:hover:after { border-color: rgba(16,71,145,0.4); color: var(--ctm-accent); }
.ctm-grmn-faq .panel-title a.ctm-grmn-faq-open:after {
  transform: rotate(180deg);
  border-color: var(--ctm-accent);
  color: var(--ctm-accent);
}
.ctm-grmn-faq .panel-body { padding-bottom: 24px; max-width: 68ch; }

/* --------------------------------------------------------------------- */
/* 15. Forms — enterprise input treatment                                 */
/* --------------------------------------------------------------------- */
.ctm-grmn-form {
  background: var(--ctm-gradient-surface);
  box-shadow: var(--ctm-shadow-soft);
  position: relative;
  overflow: hidden;
}
.ctm-grmn-form:before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ctm-gradient-brand);
}
.ctm-grmn-input.form-control {
  height: 48px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  transition: border-color var(--ctm-dur) var(--ctm-ease), box-shadow var(--ctm-dur) var(--ctm-ease), transform var(--ctm-dur) var(--ctm-ease-out);
}
.ctm-grmn-input.form-control:hover { border-color: rgba(16,71,145,0.35); }
.ctm-grmn-input.form-control:focus {
  border-color: var(--ctm-accent);
  box-shadow: 0 0 0 4px rgba(16,71,145,0.12);
  transform: translateY(-1px);
}
.ctm-grmn-input.form-control::placeholder { color: #9a9db2; }
.ctm-grmn-field label { letter-spacing: -0.005em; }
.ctm-grmn-alert-success { background: var(--ctm-gradient-surface); box-shadow: var(--ctm-shadow-hair); }

/* --------------------------------------------------------------------- */
/* 16. Continue-exploring strip + footer                                  */
/* --------------------------------------------------------------------- */
.ctm-grmn-continue {
  background:
    radial-gradient(700px 240px at 100% 0%, rgba(16,71,145,0.09), transparent 65%),
    var(--ctm-gradient-surface);
  box-shadow: var(--ctm-shadow-soft);
  transition: box-shadow .3s var(--ctm-ease), transform .3s var(--ctm-ease-out);
}
.ctm-grmn-continue:hover { transform: translateY(-3px); box-shadow: var(--ctm-shadow-float); }
.ctm-grmn-continue-link .glyphicon,
.ctm-grmn-continue-link .ctm-grmn-ico { transition: transform var(--ctm-dur) var(--ctm-ease-out); }
.ctm-grmn-continue-link:hover .glyphicon,
.ctm-grmn-continue-link:hover .ctm-grmn-ico { transform: translateX(4px); }

.ctm-grmn-footer {
  border-top: none;
  padding-top: 72px;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--ctm-surface) 100%);
  position: relative;
}
/* Premium gradient divider above the footer. */
.ctm-grmn-footer:before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--ctm-gradient-hairline);
}
.ctm-grmn-footer-heading { color: var(--ctm-foreground); }
.ctm-grmn-footer-links a {
  display: inline-block;
  transition: color var(--ctm-dur) var(--ctm-ease), transform var(--ctm-dur) var(--ctm-ease-out);
}
.ctm-grmn-footer-links a:hover { color: var(--ctm-accent); transform: translateX(3px); }
.ctm-grmn-footer-bottom { border-top-color: rgba(21,23,53,0.08); }

/* --------------------------------------------------------------------- */
/* 17. Motion system — reveal, stagger, reduced-motion safety             */
/* --------------------------------------------------------------------- */
.ctm-grmn-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity .7s var(--ctm-ease-out), transform .7s var(--ctm-ease-out);
  transition-delay: var(--ctm-delay, 0ms);
  will-change: opacity, transform;
}
.ctm-grmn-reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* Images fade in once decoded, so nothing "pops" during scroll. */
.ctm-grmn-figure-img { opacity: 0; transition: opacity .6s var(--ctm-ease), transform .9s var(--ctm-ease-out); }
.ctm-grmn-figure-img.ctm-grmn-img-loaded,
.no-js .ctm-grmn-figure-img { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .ctm-grmn-reveal { opacity: 1; transform: none; }
  .ctm-grmn-figure-img { opacity: 1; }
}

/* --------------------------------------------------------------------- */
/* 18. Modern SVG icon system (progressively swapped in by main.js)       */
/* --------------------------------------------------------------------- */
.ctm-grmn-ico {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.135em;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.ctm-grmn-icon-badge .ctm-grmn-ico { width: 19px; height: 19px; }
.ctm-grmn-benefit-check .ctm-grmn-ico { width: 18px; height: 18px; }
.ctm-grmn-mosaic-item > .ctm-grmn-ico { width: 22px; height: 22px; color: var(--ctm-accent); }

/* --------------------------------------------------------------------- */
/* 19. Responsive polish                                                  */
/* --------------------------------------------------------------------- */
@media (max-width: 767px) {
  .ctm-grmn-card { padding: 24px; }
  .ctm-grmn-mosaic-item { padding: 24px 22px; }
  .ctm-grmn-section { padding-top: 64px; padding-bottom: 64px; }
  .ctm-grmn-hero-col-visual:before,
  .ctm-grmn-hero-col-visual:after { display: none; }
}
@media (min-width: 1600px) {
  .ctm-grmn-hero-row { gap: 88px; }
  .ctm-grmn-lead { font-size: 17px; }
}

/* --------------------------------------------------------------------- */
/* 20. Equal-height card rows                                             */
/* --------------------------------------------------------------------- */
/* Bootstrap 3 columns are floats, so sibling cards used to end at
   different heights. Switching the row to flex from the small breakpoint
   up aligns every card in a row without touching any markup. */
@media (min-width: 768px) {
  .row.ctm-grmn-row-gap {
    display: flex;
    flex-wrap: wrap;
  }
  .row.ctm-grmn-row-gap > [class*="col-"] {
    display: flex;
    flex-direction: column;
    float: none;
  }
  .row.ctm-grmn-row-gap > [class*="col-"] > .ctm-grmn-card { flex: 1 1 auto; }
  /* Keep the last-child margin reset from applying inside a flex row. */
  .row.ctm-grmn-row-gap > [class*="col-"]:last-child { margin-bottom: 24px; }
}

/* --------------------------------------------------------------------- */
/* 21. Placeholder page — premium panel treatment                         */
/* --------------------------------------------------------------------- */
/* Same copy, presented as an intentional card instead of bare centred
   text, so the contact route matches the rest of the site. */
.ctm-grmn-placeholder-page {
  position: relative;
  max-width: 780px;
  margin: 72px auto;
  padding: 64px 32px 68px;
  border: 1px solid var(--ctm-border);
  border-radius: var(--ctm-radius-xl, 24px);
  background: var(--ctm-card);
  box-shadow: var(--ctm-shadow-float);
  overflow: hidden;
}
@media (min-width: 992px) {
  .ctm-grmn-placeholder-page { margin: 104px auto; padding: 88px 56px 92px; }
}
.ctm-grmn-placeholder-page::before {
  content: "";
  position: absolute;
  inset: -40% 20% auto 20%;
  height: 320px;
  background: var(--ctm-brand-gradient, radial-gradient(circle, rgba(23,74,167,.22), transparent 70%));
  filter: blur(70px);
  opacity: .35;
  pointer-events: none;
}
.ctm-grmn-placeholder-page > * { position: relative; }
.ctm-grmn-placeholder-page .ctm-grmn-eyebrow { justify-content: center; display: inline-flex; }

/* --------------------------------------------------------------------- */
/* 22. Mobile header — avoid CTA/logo collision                           */
/* --------------------------------------------------------------------- */
/* The same CTA already lives in the mobile drawer, so the inline header
   button only shows once there is room for it next to the wordmark. */
@media (max-width: 991px) {
  .ctm-grmn-header-cta { display: none; }
}


img{
  width: 100%;
}

/* --------------------------------------------------------------------- */
/* 23. Trusted & Verified — review-platform badge marquee                 */
/* Structure mirrors /products/ (.trusted-slider / .netset-proof-card)    */
/* --------------------------------------------------------------------- */
.ctm-grmn-verified-head { max-width: 640px; margin: 0 auto; text-align: center; }
.ctm-grmn-verified-marquee {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  padding: 15px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.ctm-grmn-verified-track {
  display: flex;
  align-items: stretch;
  gap: 40px;
  width: max-content;
  animation: ctmMarquee 30s linear infinite;
}
.ctm-grmn-verified-marquee:hover .ctm-grmn-verified-track { animation-play-state: paused; }
.ctm-grmn-verified-slide { flex: 0 0 250px; width: 250px; }
.ctm-grmn-verified-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 20px;
  border: 1px solid var(--ctm-border);
  border-radius: var(--ctm-radius);
  background: var(--ctm-card);
  text-decoration: none !important;
  transition: transform .35s ease, box-shadow .35s ease, border-color var(--ctm-dur) var(--ctm-ease);
}
.ctm-grmn-verified-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px -8px rgba(16,71,145,0.22);
  border-color: var(--ctm-border-strong);
}
.ctm-grmn-verified-logo { height: 44px; display: flex; align-items: center; }
.ctm-grmn-verified-logo img { width: auto; height: 100%; max-width: 130px; max-height: 44px; object-fit: contain; }
.ctm-grmn-verified-metric { margin: 15px 0; font-size: 26px; font-weight: 700; color: var(--ctm-foreground); }
.ctm-grmn-verified-meta {
  margin: 0; padding-bottom: 18px; color: var(--ctm-muted-fg); font-size: 14px; line-height: 1.6;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical;
}
.ctm-grmn-verified-chips { display: flex; flex-direction: column; gap: 8px; margin-bottom: 15px; }
.ctm-grmn-verified-chip {
  display: inline-flex; align-items: center; gap: 6px; width: fit-content;
  padding: 4px 14px; border-radius: 999px; background: var(--ctm-accent-soft); color: var(--ctm-foreground); font-size: 12px;
}
.ctm-grmn-verified-chip .glyphicon { top: 1px; font-size: 10px; color: var(--ctm-accent); }
.ctm-grmn-verified-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ctm-grmn-verified-footer > span:first-child { font-weight: 700; font-size: 16px; color: var(--ctm-foreground); transition: color var(--ctm-dur) var(--ctm-ease); }
.ctm-grmn-verified-card:hover .ctm-grmn-verified-footer > span:first-child { color: var(--ctm-accent); }
.ctm-grmn-verified-link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--ctm-muted-fg); white-space: nowrap; }
.ctm-grmn-verified-link .glyphicon { font-size: 10px; }

/* --------------------------------------------------------------------- */
/* 24. Trusted by — client logo marquee (sized to match /products/)       */
/* --------------------------------------------------------------------- */
.ctm-grmn-clients-head { max-width: 640px; margin: 0 auto; text-align: center; }
.ctm-grmn-clients-marquee {
  position: relative;
  margin-top: 36px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.ctm-grmn-clients-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: ctmMarquee 40s linear infinite;
}
.ctm-grmn-clients-marquee:hover .ctm-grmn-clients-track { animation-play-state: paused; }
.ctm-grmn-clients-slide { flex: 0 0 auto; width: 150px; display: flex; align-items: center; opacity: .7; transition: opacity var(--ctm-dur) var(--ctm-ease); }
.ctm-grmn-clients-slide:hover { opacity: 1; }
.ctm-grmn-clients-slide img { width: 100%; height: auto; object-fit: contain; filter: grayscale(1); transition: filter .3s ease; }
.ctm-grmn-clients-slide:hover img { filter: grayscale(0); }
@media (max-width: 767px) {
  .ctm-grmn-verified-slide { flex-basis: 220px; width: 220px; }
  .ctm-grmn-clients-slide { width: 110px; }
  .ctm-grmn-clients-track { gap: 44px; }
}

@keyframes ctmMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ctm-grmn-verified-track, .ctm-grmn-clients-track { animation: none; }
}

/* --------------------------------------------------------------------- */
/* 25. Fixed WhatsApp / Telegram / Call contact buttons                   */
/* --------------------------------------------------------------------- */
.ctm-grmn-contact-fabs {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ctm-grmn-contact-fab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none !important;
}
.ctm-grmn-contact-fab-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ctm-shadow-soft);
}
.ctm-grmn-contact-fab-icon img { width: 28px; height: 28px; object-fit: contain; }
.ctm-grmn-contact-fab-icon .glyphicon { font-size: 22px; color: #fff; }
.ctm-grmn-contact-fab-text {
  position: absolute;
  right: 56px;
  top: 0;
  min-width: 150px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.ctm-grmn-contact-fab:hover .ctm-grmn-contact-fab-text,
.ctm-grmn-contact-fab:focus .ctm-grmn-contact-fab-text { transform: translateX(0); }

.ctm-grmn-contact-fab--whatsapp .ctm-grmn-contact-fab-icon,
.ctm-grmn-contact-fab--whatsapp .ctm-grmn-contact-fab-text { background: #25D366; }
.ctm-grmn-contact-fab--telegram .ctm-grmn-contact-fab-icon,
.ctm-grmn-contact-fab--telegram .ctm-grmn-contact-fab-text { background: #0088CC; }
.ctm-grmn-contact-fab--call .ctm-grmn-contact-fab-icon,
.ctm-grmn-contact-fab--call .ctm-grmn-contact-fab-text { background: var(--ctm-primary); }

@media (max-width: 767px) {
  .ctm-grmn-contact-fab-icon { width: 48px; height: 48px; }
  .ctm-grmn-contact-fab-icon img { width: 24px; height: 24px; }
  .ctm-grmn-contact-fab-icon .glyphicon { font-size: 19px; }
  .ctm-grmn-contact-fab-text { display: none; }
}

.ctm-grmn-form-fields {
    display: flex;
    gap: 20px;
}

.ctm-grmn-form-fields .ctm-grmn-field {
    width: 100%;
    flex: 1;
}
.ctm-grmn-phone-field {
    display: flex;
    flex-direction: column;
}
.ctm-grmn-phone-field ul#iti-0__country-listbox {
    margin-top: 2px;
}
form#project-consultation-form .form-field .iti {
    width: 100%;
}
.ctm-grmn-section-plain .cta-badge-grid {
    display: flex;
    margin: 20px 0 10px;
    flex-wrap: wrap;
    gap: 0px;
}
.ctm-grmn-section-plain .cta-badge-grid .cta-badge-item {
    width: fit-content;
    padding: 10px;
    border-radius: 12px;
}

.ctm-grmn-section-plain .cta-badge-grid .cta-badge-item {
    max-width: 85px;
    border-radius: 100%;
    overflow: hidden;
}
.ctm-grmn-footer-address {
    display: flex;
}

.ctm-grmn-footer-address img {
    width: 20px;
    height: 35px;
    margin-right: 10px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(25%) saturate(7385%) hue-rotate(205deg) brightness(95%) contrast(88%);
}
.ctm-grmn-phone-field .iti__selected-flag {
    height: 48px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.ctm-grmn-phone-field .iti--separate-dial-code .iti--allow-dropdown {
    width: 100%;
}

/* ==========================================================================
   About Us page — scoped styles.
   Everything below is namespaced under .ctm-grmn-aboutus-* (About Us page
   only) so it cannot affect any other page. Nothing here redefines or
   overrides a global (unprefixed) ctm-grmn-* rule.
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* Slim "let's talk" CTA bands                                            */
/* ---------------------------------------------------------------------- */
.ctm-grmn-aboutus-cta-band {
  padding: 40px 0;
  background: var(--ctm-accent-soft);
  border-bottom: 1px solid var(--ctm-border);
}
.ctm-grmn-aboutus-cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.ctm-grmn-aboutus-cta-band-title {
  margin: 0;
  font-family: var(--ctm-font-head);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ctm-foreground);
}
@media (min-width: 768px) {
  .ctm-grmn-aboutus-cta-band-inner { flex-direction: row; text-align: left; }
  .ctm-grmn-aboutus-cta-band-title { font-size: 22px; }
}

/* ---------------------------------------------------------------------- */
/* Our Journey — sticky visual (left) + timeline (right)                  */
/* ---------------------------------------------------------------------- */
.ctm-grmn-aboutus-journey-sticky { margin-bottom: 32px; }
@media (min-width: 768px) {
  .ctm-grmn-aboutus-journey-sticky {
    position: sticky;
    top: 112px;
    margin-bottom: 0;
  }
}

/* ---------------------------------------------------------------------- */
/* Our Journey — always-on vertical timeline (16 milestones, 2011-2026)   */
/* ---------------------------------------------------------------------- */
.ctm-grmn-aboutus-journey-list { list-style: none; margin: 40px 0 0; padding: 0; }
.ctm-grmn-aboutus-journey-list > li { position: relative; display: flex; gap: 20px; padding-bottom: 32px; }
.ctm-grmn-aboutus-journey-list > li:last-child { padding-bottom: 0; }
.ctm-grmn-aboutus-journey-list > li::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 24px;
  bottom: -32px;
  width: 1px;
  background: var(--ctm-border);
}
.ctm-grmn-aboutus-journey-list > li:last-child::before { display: none; }
.ctm-grmn-aboutus-journey-list .ctm-grmn-timeline-dot { flex-shrink: 0; margin-top: 4px; }
.ctm-grmn-aboutus-journey-year {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ctm-accent);
}
.ctm-grmn-aboutus-journey-copy { margin: 8px 0 0; font-size: 14px; line-height: 1.7; color: var(--ctm-muted-fg); }
@media (min-width: 768px) {
  .ctm-grmn-aboutus-journey-list { margin-top: 56px; }
  .ctm-grmn-aboutus-journey-year { font-size: 12px; }
  .ctm-grmn-aboutus-journey-copy { font-size: 15px; max-width: 62ch; }
}

/* ---------------------------------------------------------------------- */
/* Our Business Binding Cord — numbered principle cards                   */
/* ---------------------------------------------------------------------- */
.ctm-grmn-aboutus-business-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ctm-accent-soft);
  color: var(--ctm-accent);
  font-family: var(--ctm-font-head);
  font-size: 16px;
  font-weight: 700;
}

/* ---------------------------------------------------------------------- */
/* Global Impression — recognition logo grid                              */
/* ---------------------------------------------------------------------- */
.ctm-grmn-aboutus-global-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.ctm-grmn-aboutus-global-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 100px;
  padding: 18px;
  border: 1px solid var(--ctm-border);
  border-radius: var(--ctm-radius-lg);
  background: var(--ctm-background);
  box-shadow: var(--ctm-shadow-hair);
  transition: box-shadow var(--ctm-dur) var(--ctm-ease), transform var(--ctm-dur) var(--ctm-ease);
}
.ctm-grmn-aboutus-global-logo:hover { box-shadow: var(--ctm-shadow-soft); transform: translateY(-2px); }
.ctm-grmn-aboutus-global-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ---------------------------------------------------------------------- */
/* Closing CTA — accent band                                              */
/* ---------------------------------------------------------------------- */
.ctm-grmn-aboutus-schedule { padding: 64px 0; background: var(--ctm-gradient-brand); text-align: center; }
.ctm-grmn-aboutus-schedule h2 { margin: 0 0 28px; color: var(--ctm-accent-fg); }
.ctm-grmn-aboutus-schedule .ctm-grmn-btn-accent {
  background: var(--ctm-background);
  border-color: var(--ctm-background);
  color: var(--ctm-accent);
}
@media (min-width: 992px) { .ctm-grmn-aboutus-schedule { padding: 96px 0; } }

/* ==========================================================================
   Terms & Conditions page — scoped styles.
   Everything below is namespaced under .ctm-grmn-terms-* (Terms & Conditions
   page only) so it cannot affect any other page. Nothing here redefines or
   overrides a global (unprefixed) ctm-grmn-* rule.
   ========================================================================== */
.ctm-grmn-terms-heading {
  margin: 48px 0 16px;
  font-family: var(--ctm-font-head);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ctm-foreground);
}
.ctm-grmn-terms-body > .ctm-grmn-terms-heading:first-of-type { margin-top: 32px; }
.ctm-grmn-terms-copy { margin: 0 0 16px; font-size: 15px; line-height: 1.75; color: var(--ctm-muted-fg); }

.ctm-grmn-terms-list { margin: 0 0 20px; padding: 0; list-style: none; }
.ctm-grmn-terms-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ctm-muted-fg);
}
.ctm-grmn-terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ctm-accent);
}
.ctm-grmn-terms-list li strong { color: var(--ctm-foreground); }

.ctm-grmn-terms-contact {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--ctm-border);
  border-radius: var(--ctm-radius-lg);
  background: var(--ctm-surface);
}
.ctm-grmn-terms-contact p { margin: 0 0 8px; font-size: 15px; line-height: 1.7; color: var(--ctm-muted-fg); }
.ctm-grmn-terms-contact p:last-child { margin-bottom: 0; }
.ctm-grmn-terms-contact strong { color: var(--ctm-foreground); font-size: 16px; }
