:root {
  --bg: #f5f7fb;
  --bg-2: #eef2f7;
  --bg-3: #ffffff;
  --card: #ffffff;
  --line: rgba(15, 23, 42, 0.12);
  --text: #0f172a;
  --muted: #5c6b7d;
  --blue: #1777e6;
  --blue-2: #0b63c7;
  --blue-d: #0a4fa0;
  --gold: #9a6b00;
  --ok: #0f9f6e;
  --err: #d92d20;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --font: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1180px;
  --header: 92px;
}

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

html, body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, fieldset {
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body.gm-theme {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-2); text-decoration: none; }
a:hover { color: var(--blue-d); }
button, input, select, textarea { font: inherit; color: inherit; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  clip: auto;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #fff;
  color: #000;
}

.gm-wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

.gm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gm-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue);
}

h1, h2, h3, .gm-display {
  font-family: var(--display);
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.28;
  font-weight: 700;
  margin: 0 0 0.55em;
  text-wrap: balance;
}

h1 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h2 { font-size: clamp(1.45rem, 2.4vw, 2.05rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

.gm-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 42rem;
}

.gm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: 0.18s ease;
  text-decoration: none !important;
}

.gm-btn-primary {
  background: var(--blue);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(23, 119, 230, 0.28);
}

.gm-btn-primary:hover {
  transform: translateY(-1px);
  color: #fff !important;
  background: var(--blue-2);
}

.gm-btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--text) !important;
}

.gm-btn-ghost:hover { border-color: var(--blue); background: #f4f8ff; }

.gm-btn:focus-visible,
.gm-nav a:focus-visible,
.gm-form input:focus-visible,
.gm-form select:focus-visible,
.gm-form textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

::selection { background: rgba(58, 160, 255, 0.35); }
.gm-btn-lg { padding: 0.95rem 1.45rem; font-size: 1.02rem; }
.gm-btn-full { width: 100%; }
.gm-center { text-align: center; }

/* Header */
.gm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header);
  background: rgba(11, 18, 32, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.gm-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 13, 24, 0.98);
}

.gm-header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 20px;
}

.gm-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.gm-logo img {
  height: 72px;
  width: auto;
  max-width: min(260px, 58vw);
  object-fit: contain;
  object-position: left center;
}

.gm-nav-wrap { margin-left: auto; }

.gm-nav {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gm-nav a {
  color: rgba(226, 232, 240, 0.78);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.gm-nav a:hover,
.gm-nav a.is-active { color: #fff; background: rgba(23, 119, 230, 0.22); }

.gm-header-cta { display: flex; gap: 8px; }
.gm-header-cta .gm-btn { padding: 0.55rem 1rem; font-size: 0.92rem; }

.gm-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: transparent;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.gm-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}

.gm-mobile-nav {
  display: none;
  padding: 12px 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b1220;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.gm-mobile-nav[hidden] {
  display: none !important;
}

.gm-mobile-nav.is-open {
  display: block;
}

.gm-mobile-nav .gm-nav {
  flex-direction: column;
  margin-bottom: 16px;
}

/* Hero */
.gm-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 72px;
}

.gm-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 80% 10%, rgba(23, 119, 230, 0.12), transparent 60%),
    radial-gradient(700px 360px at 10% 80%, rgba(23, 119, 230, 0.06), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  pointer-events: none;
}

.gm-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, #000 20%, transparent 75%);
  opacity: 0.7;
}

.gm-hero-grid,
.gm-split,
.gm-contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.gm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.gm-hero-proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.gm-hero-proof strong { color: var(--text); margin-right: 6px; }

.gm-hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.gm-portrait {
  margin: 0;
  width: min(100%, 460px);
}

.gm-portrait img {
  width: 100%;
  height: auto;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.gm-cite-card {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  max-width: 460px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.gm-cite-label {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-2);
  font-weight: 700;
}

.gm-cite-q { margin: 0 0 8px; color: var(--muted); font-size: 0.92rem; }
.gm-cite-a { margin: 0 0 10px; font-size: 0.95rem; }
.gm-cite-src { margin: 0; font-size: 12px; color: var(--gold); }

/* Logos */
.gm-logos { border-block: 1px solid var(--line); background: var(--bg-2); }
.gm-logos-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}

.gm-logos p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.gm-logos ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gm-logos li {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
}

/* Entity */
.gm-entity-section { padding: 56px 0 0; }
.gm-entity {
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(58,160,255,0.08), rgba(255,255,255,0.02));
}

.gm-entity h2 { margin-bottom: 10px; }
.gm-entity p { margin: 0; color: var(--text); font-size: 1.05rem; }

/* Sections */
.gm-section { padding: 88px 0; }
.gm-section-alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.gm-section-head { max-width: 760px; margin-bottom: 40px; }
.gm-section-head p { color: var(--muted); line-height: 1.8; }

.gm-services-intro {
  margin-bottom: 56px;
}

.gm-services-intro h2 {
  margin-bottom: 1.15rem;
}

.gm-services-intro p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.85;
  max-width: 42em;
}

.gm-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gm-compare article {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}

.gm-compare article.is-featured {
  border-color: rgba(58, 160, 255, 0.45);
  background: linear-gradient(180deg, rgba(58,160,255,0.12), var(--card));
}

.gm-compare ul { margin: 0; padding-left: 18px; color: var(--muted); }
.gm-compare li { margin: 8px 0; }

.gm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.gm-steps li {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  counter-increment: step;
}

.gm-steps li::before {
  content: counter(step);
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-family: var(--font);
}

.gm-steps p { margin: 0; color: var(--muted); }

.gm-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.gm-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--line);
}

.gm-plan.is-best {
  background: #fff;
  border: 2px solid var(--blue);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(23, 119, 230, 0.16);
}

.gm-badge,
.gm-plan p.gm-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  margin: 0;
  padding: 7px 14px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.gm-plan-name { margin: 0; color: var(--muted); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.gm-price { font-size: 1.05rem; margin: 6px 0 12px; color: var(--text); }
.gm-price strong { font-family: var(--display); font-size: 2.2rem; color: var(--text); }
.gm-price span { color: var(--muted); }
.gm-plan > p:not(.gm-badge):not(.gm-plan-name):not(.gm-price) { color: var(--muted); }
.gm-plan ul { margin: 0 0 22px; padding-left: 18px; color: var(--text); flex: 1; }
.gm-plan li { margin: 8px 0; }

.gm-cards,
.gm-blog-grid,
.gm-quotes,
.gm-shots {
  display: grid;
  gap: 16px;
}

.gm-cards { grid-template-columns: repeat(3, 1fr); }
.gm-cards-wide { grid-template-columns: repeat(3, 1fr); }

.gm-cards article {
  padding: 28px 26px 32px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
}

.gm-cards h3 { margin-bottom: 0.7em; }
.gm-cards p { margin: 0; color: var(--muted); line-height: 1.7; }
.gm-cards + .gm-center {
  margin-top: 40px;
}

.gm-shots { grid-template-columns: repeat(4, 1fr); }
.gm-shots figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8eef4;
}

.gm-shots img { width: 100%; height: 220px; object-fit: cover; object-position: top; }
.gm-shots figcaption {
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.gm-quotes { grid-template-columns: repeat(3, 1fr); }
.gm-quotes blockquote {
  margin: 0;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
}

.gm-quotes p { margin: 0 0 16px; }
.gm-quotes footer { color: var(--muted); font-size: 0.9rem; }

.gm-post-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
}

.gm-blog-grid { grid-template-columns: repeat(3, 1fr); }
.gm-post-card a { color: inherit; display: block; }
.gm-post-card img { width: 100%; height: 190px; object-fit: cover; }
.gm-post-card div { padding: 18px 20px 22px; }
.gm-post-card time { color: var(--muted); font-size: 0.85rem; }
.gm-post-card h2, .gm-post-card h3 { font-size: 1.15rem; margin: 8px 0; }
.gm-post-card p { margin: 0; color: var(--muted); }

.gm-faq-wrap { max-width: 820px; }
.gm-faq { display: grid; gap: 10px; }
.gm-faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 4px 18px 4px;
}

.gm-faq-item summary { cursor: pointer; list-style: none; }
.gm-faq-item summary::-webkit-details-marker { display: none; }
.gm-faq-item h2 { font-size: 1.12rem; font-weight: 600; line-height: 1.35; padding: 14px 0; margin: 0; color: var(--text); }
.gm-faq-item p { margin: 0 0 16px; color: var(--muted); }

.gm-cta-band {
  background: linear-gradient(90deg, #0b63c7, #1777e6 55%, #3b8bef);
  border-top: 1px solid transparent;
}

.gm-cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 42px 0;
}

.gm-cta-band h2 { margin: 0; max-width: 22ch; color: #fff; }
.gm-cta-band .gm-kicker { color: #dbeafe; }
.gm-cta-band .gm-kicker::before { background: #fff; }
.gm-cta-band .gm-btn-primary {
  background: #fff;
  color: var(--blue-d) !important;
  box-shadow: none;
}
.gm-cta-band .gm-btn-primary:hover {
  background: #f4f8ff;
  color: var(--blue-d) !important;
}

.gm-footer {
  padding: 56px 0 28px;
  background: #0b1220;
  color: #cbd5e1;
}
.gm-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr;
  gap: 32px;
}

.gm-footer h3 { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: #94a3b8; }
.gm-footer ul { list-style: none; margin: 0; padding: 0; }
.gm-footer li { margin: 8px 0; }
.gm-footer a { color: #e2e8f0; }
.gm-footer a:hover { color: #93c5fd; }
.gm-footer-brand p { color: #94a3b8; }
.gm-footer-brand strong { color: #e2e8f0; }
.gm-footer-meta { font-size: 0.9rem; }
.gm-footer-copy {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.88rem;
}

.gm-news { display: flex; gap: 8px; margin: 12px 0; }
.gm-news input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  padding: 10px 14px;
}

.gm-social { display: flex; gap: 14px; font-weight: 700; margin-top: 16px; }

.gm-sticky-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  justify-content: center;
  padding: 14px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.gm-page-hero { padding: 48px 0 20px; }
.gm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gm-pills li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
}

.gm-reco { margin: 32px 0 0; }
.gm-reco img { border-radius: var(--radius); border: 1px solid var(--line); }

.gm-contact-hero { padding-bottom: 48px; }
.gm-contact-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  color: var(--text);
  line-height: 1.5;
  font-size: 1.02rem;
}
.gm-contact-points li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 0;
}
.gm-contact-points li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 1px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6.2l2.4 2.4 4.6-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.gm-form-card {
  padding: 32px 28px 36px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gm-form-card h2 { margin-top: 0; margin-bottom: 1.1rem; }

.gm-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gm-form label { display: grid; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--muted); }
.gm-form input,
.gm-form select,
.gm-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 12px 12px;
}

.gm-form textarea { resize: vertical; }
.gm-span-2 { grid-column: span 2; }
.gm-form .gm-btn {
  margin-top: 8px;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}
.gm-form-note { color: var(--muted); font-size: 0.82rem; margin-top: 14px; }
.gm-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.gm-alert {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-weight: 600;
}
.gm-alert-ok { background: rgba(62, 224, 162, 0.12); color: var(--ok); }
.gm-alert-err { background: rgba(255, 107, 122, 0.12); color: var(--err); }

.gm-prose ul, .gm-prose ol { padding-left: 1.2em; }
.gm-prose img { border-radius: 14px; margin: 1.2em 0; }
.gm-prose { max-width: 760px; color: var(--text); line-height: 1.8; }
.gm-prose h2 { color: var(--text); margin-bottom: 1rem; }
.gm-prose p { margin-bottom: 1.35em; line-height: 1.8; }
.gm-prose a { text-decoration: underline; }
.gm-legal .elementor { background: transparent !important; }
.gm-legal .elementor-widget-container,
.gm-legal p,
.gm-legal li { color: var(--text) !important; }
.gm-legal h1, .gm-legal h2, .gm-legal h3 { color: var(--text) !important; }

.gm-article-head { max-width: 820px; }
.gm-meta { color: var(--muted); }
.gm-article-heroimg { margin: 10px auto 28px; }
.gm-article-heroimg img { width: 100%; border-radius: 18px; max-height: 420px; object-fit: cover; }
.gm-article-author {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 40px auto 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 760px;
}
.gm-article-author img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 62% 38%;
}
.gm-article-author p { margin: 6px 0; color: var(--muted); }

.gm-pagination { margin-top: 28px; }
.gm-pagination .nav-links { display: flex; gap: 10px; }

.gm-footer .gm-logo img {
  height: 64px;
  max-width: 220px;
}

@media (max-width: 1100px) {
  .gm-header-cta,
  .gm-nav-wrap { display: none; }
  .gm-burger { display: flex; margin-left: auto; }
}

body.gm-nav-open { overflow: hidden; }

@media (max-width: 980px) {
  .gm-hero-grid,
  .gm-split,
  .gm-contact-grid,
  .gm-compare,
  .gm-plans,
  .gm-cards,
  .gm-cards-wide,
  .gm-quotes,
  .gm-blog-grid,
  .gm-footer-grid { grid-template-columns: 1fr; }
  .gm-steps { grid-template-columns: 1fr 1fr; }
  .gm-shots { grid-template-columns: 1fr 1fr; }
  .gm-plan.is-best { transform: none; }
  .gm-cite-card { width: 100%; }
  .gm-portrait { margin: 0 auto; width: min(100%, 380px); }
  .gm-cta-band-inner { flex-direction: column; align-items: flex-start; }
  .gm-sticky-cta { display: flex; }
  .gm-footer { padding-bottom: 92px; }
}

@media (max-width: 640px) {
  .gm-wrap { width: min(var(--wrap), calc(100% - 28px)); }
  .gm-section { padding: 64px 0; }
  .gm-steps, .gm-shots, .gm-form-grid { grid-template-columns: 1fr; }
  .gm-span-2 { grid-column: auto; }
  .gm-hero { padding-top: 18px; }
  .gm-news { flex-direction: column; }
  .gm-contact-grid { gap: 36px; }
  .gm-contact-points {
    gap: 18px;
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gm-btn-primary:hover { transform: none; }
}

.gm-logo-word {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8eef6 !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(0.92rem, 2.2vw, 1.18rem);
}
.gm-logo-word span { line-height: 1; }
.gm-logo-word img {
  height: 56px;
  width: auto;
  max-width: 64px;
}
.gm-footer .gm-logo-word img { height: 48px; max-width: 56px; }
.gm-footer .gm-logo-word { font-size: 1.02rem; }
