/*
Theme Name: Georgian Help Theme
Theme URI: https://gehelp.ru/
Author: Teya Aurora (AuraDesign Agent)
Description: High-fidelity child theme for gehelp.ru built with Aura Design System guidelines. Includes high contrast, trust-first anxiety reduction patterns, and E-E-A-T compliance.
Author URI: https://gehelp.ru/
Version: 1.6.9
Text Domain: gehelp
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-colors, custom-menu, translation-ready, accessibility-compliant
*/

/* -----------------------------------------------------------------------------
 * 1. Aura Design Tokens & Custom Variables
 * ----------------------------------------------------------------------------- */
:root {
  /* Color Chemistry */
  --color-primary: #C8102E;         /* Strict active/CTA red */
  --color-primary-hover: #A50D25;   /* Deep red hover */
  --color-white: #FFFFFF;           /* Canvas background */
  --color-text: #1A1A1A;            /* Contrast near-black */
  --color-text-muted: #5A5A5A;      /* Slate body/muted text */
  --color-bg-light: #F6F6F6;        /* Soft alternating section background */
  --color-bg-dark: #1A1A1A;         /* Dark emphasis sections / Footer */
  --color-border: #E0E0E0;          /* Separators */
  --color-success: #1A7F4B;         /* E-E-A-T trust checks / green badges */
  --color-info: #1A5FA5;            /* Info/alert blue */
  --color-on-primary: #FFFFFF;      /* Text on primary red buttons */
  --color-on-text: #FFFFFF;         /* Text on dark backgrounds */
  --color-on-bg-light: #1A1A1A;     /* Text on light grey */
  --color-on-bg-dark: #FFFFFF;      /* Text on dark sections */

  /* Typography */
  --font-heading: 'Montserrat', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Arial', sans-serif;
  --body-line-height: 1.7;

  /* Layout Spacing */
  --container-width: 1200px;
  --section-padding-desktop: 80px 0;
  --section-padding-mobile: 48px 0;
  --gap-cards: 24px;

  /* Geometry & Radii */
  --radius-card: 16px;
  --radius-button: 8px;
  --radius-pill: 100px;

  /* Borders */
  --border-card: 1px solid #E0E0E0;

  /* Shadows (Ambient & Color Aligned) */
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.14);

  /* Transitions & Motion */
  --transition-button: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  --transition-card: box-shadow 0.25s ease, transform 0.2s ease;
}

/* -----------------------------------------------------------------------------
 * 3. Base Styles & Global Resets
 * ----------------------------------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--body-line-height);
  color: var(--color-text-muted);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: -0.5px; /* tight kerning on Montserrat headings */
  margin-top: 0;
}

h1 { font-weight: 800; font-size: 2.5rem; line-height: 1.15; }
h2 { font-weight: 700; font-size: 1.85rem; line-height: 1.25; }
h3 { font-weight: 700; font-size: 1.35rem; line-height: 1.3; }

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-hover);
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

/* -----------------------------------------------------------------------------
 * 4. Buttons
 * ----------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-button);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  border-color: var(--color-primary);
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-on-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.35);
}

.btn-primary:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* -----------------------------------------------------------------------------
 * 5. Site Header & Navigation
 * ----------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-text);
}

.brand-text .text-red {
  color: var(--color-primary);
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
}

.brand-logo--drawer {
  height: 40px;
}

@media (max-width: 767px) {
  .brand-logo {
    height: 40px;
  }
}

.header-messengers {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header-messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.header-messenger svg {
  display: block;
  border-radius: 50%;
}

.header-messenger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1023px) {
  .header-messengers {
    gap: 8px;
  }

  .header-messenger svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 359px) {
  .header-messengers {
    display: none;
  }
}

.primary-nav {
  display: none;
}

.primary-nav .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-nav .menu--compact > li {
  position: relative;
}

.primary-nav .menu > li {
  position: relative;
}

.primary-nav .menu--compact > li > a,
.primary-nav .menu--compact > li > .menu-parent-toggle {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--radius-button);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  line-height: 1.2;
}

.primary-nav .menu--compact > li > .menu-parent-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.primary-nav .menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-button);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.primary-nav .menu--compact > li > a:hover,
.primary-nav .menu--compact > li > a:focus,
.primary-nav .menu--compact > li > .menu-parent-toggle:hover,
.primary-nav .menu--compact > li > .menu-parent-toggle:focus,
.primary-nav .menu-item-has-children:hover > .menu-parent-toggle,
.primary-nav .menu-item-has-children:focus-within > .menu-parent-toggle {
  color: var(--color-primary);
  background-color: rgba(200, 16, 46, 0.06);
}

.primary-nav .sub-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  padding: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav .sub-menu li a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--color-text);
  font-size: 14px;
  text-decoration: none;
}

.primary-nav .sub-menu li a:hover {
  background-color: var(--color-bg-light);
  color: var(--color-primary);
}

/* Client dropdown (Для клиентов) */
.primary-nav .sub-menu--client {
  min-width: 300px;
  left: 0;
}

.primary-nav .sub-menu--client a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
}

.primary-nav .sub-menu--client .sub-menu__label {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.primary-nav .sub-menu--client .sub-menu__desc {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.primary-nav .sub-menu--client a.is-highlight .sub-menu__label {
  color: var(--color-primary);
}

/* Mega menu (Услуги) */
.primary-nav .menu-item--mega {
  position: static;
}

.primary-nav .mega-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(920px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 16px;
  padding: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card-hover);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.primary-nav .menu-item--mega:hover > .mega-menu,
.primary-nav .menu-item--mega:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__title {
  margin: 0 0 8px;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.mega-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu__list a {
  display: block;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
}

.mega-menu__list a:hover,
.mega-menu__list a.is-highlight {
  color: var(--color-primary);
  background: rgba(200, 16, 46, 0.06);
}

.drawer-sub-heading {
  padding: 12px 24px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  list-style: none;
}

.drawer-group-label {
  flex: 1;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
  padding-left: 24px;
  text-align: left;
}

/* Prices page */
.gh-prices-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .gh-prices-featured {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gh-price-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.gh-price-card--featured {
  border-color: rgba(200, 16, 46, 0.25);
  box-shadow: 0 12px 32px rgba(200, 16, 46, 0.08);
}

.gh-price-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  background: rgba(200, 16, 46, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.gh-price-card__title {
  font-size: 1.125rem;
  margin: 0 0 12px;
}

.gh-price-card__price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 8px;
  line-height: 1.1;
}

.gh-price-card__note {
  color: var(--color-text-muted);
  font-size: 14px;
  margin: 0 0 20px;
  flex: 1;
}

.gh-price-card__link {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.gh-price-card__link:hover {
  text-decoration: underline;
}

.gh-prices-group {
  margin-bottom: 40px;
}

.gh-prices-group__title {
  font-size: 1.125rem;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(200, 16, 46, 0.15);
}

/* Contacts block on homepage */
.gh-contacts-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gh-contacts-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.gh-contacts-primary {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-messenger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-messenger:hover {
  opacity: 0.88;
}
.btn-telegram {
  background: #29a8eb;
  color: #fff;
}
.btn-max {
  background: #0077ff;
  color: #fff;
}
.gh-contacts-secondary {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text-muted);
}
.gh-contacts-secondary a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.gh-contacts-secondary a:hover {
  color: var(--color-primary);
}
@media (max-width: 600px) {
  .gh-contacts-primary {
    flex-direction: column;
  }
  .btn-messenger {
    justify-content: center;
  }
}

/* Contacts page channel cards */
.gh-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gh-contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 12px;
  border: 2px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gh-contact-card--primary:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card-hover);
}
.gh-contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gh-contact-card__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gh-contact-card__label {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.gh-contact-card__value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}
.gh-contact-card__note {
  font-size: 13px;
  color: var(--color-text-muted);
}
.gh-contact-card__arrow {
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 700;
}
.gh-contact-secondary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gh-contact-secondary-item {
  display: flex;
  gap: 16px;
  align-items: center;
}
.gh-contact-secondary-item__label {
  min-width: 140px;
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gh-contact-secondary-item__value {
  font-size: 15px;
  color: var(--color-text);
  text-decoration: none;
}
.gh-contact-secondary-item__value:hover {
  color: var(--color-primary);
}

/* Service page inline CTA link */
.gh-service-cta-link {
  text-align: center;
  padding: 24px;
  font-size: 15px;
  color: var(--color-text-muted);
}
.gh-service-cta-link a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}
.gh-service-cta-link a:hover {
  text-decoration: underline;
}

/* Services hub */
.gh-services-hero__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.gh-services-flagship {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .gh-services-flagship {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .gh-services-flagship {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gh-services-flagship-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 22px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gh-services-flagship-card--primary {
  border-color: rgba(200, 16, 46, 0.28);
  box-shadow: 0 14px 36px rgba(200, 16, 46, 0.1);
}

.gh-services-flagship-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(200, 16, 46, 0.08);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gh-services-flagship-card__title {
  margin: 0 0 10px;
  padding-right: 72px;
  font-size: 1.0625rem;
  line-height: 1.25;
}

.gh-services-flagship-card__desc {
  flex: 1;
  margin: 0 0 18px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.gh-services-flagship-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.gh-services-flagship-card__price {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-text);
}

.gh-services-flagship-card__link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.gh-services-flagship-card__link:hover {
  text-decoration: underline;
}

.gh-services-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gh-services-jump__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.gh-services-jump__link:hover {
  border-color: rgba(200, 16, 46, 0.35);
  color: var(--color-primary);
  background: rgba(200, 16, 46, 0.04);
}

.gh-services-category-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.gh-services-category-head__title {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.gh-services-category-head__desc {
  margin: 0;
  max-width: 42rem;
  color: var(--color-text-muted);
}

.gh-services-category-head__count {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(200, 16, 46, 0.08);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.gh-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .gh-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gh-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gh-service-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 20px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-white);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gh-service-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 16, 46, 0.22);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.gh-service-tile--highlight {
  border-color: rgba(200, 16, 46, 0.24);
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.03) 0%, var(--color-white) 100%);
}

.gh-service-tile__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.gh-service-tile__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.gh-service-tile__mark {
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(200, 16, 46, 0.1);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gh-service-tile__desc {
  flex: 1;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.gh-service-tile__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.gh-service-tile__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
}

.gh-service-tile__arrow {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .gh-services-category-head {
    flex-direction: column;
  }

  .gh-services-flagship-card__title {
    padding-right: 0;
  }
}

.gh-prices-table-wrap {
  overflow-x: auto;
}

.gh-prices-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.gh-prices-table th,
.gh-prices-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}

.gh-prices-table th {
  background: var(--color-bg-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

.gh-prices-table tr:last-child td {
  border-bottom: none;
}

.gh-prices-table__price {
  font-weight: 700;
  white-space: nowrap;
}

.gh-prices-table__action {
  text-align: right;
  white-space: nowrap;
}

.gh-prices-table__action a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.gh-legal-doc h2 {
  font-size: 1.125rem;
  margin-top: 2rem;
}

.gh-legal-doc__requisites {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 20px 24px;
}

.gh-legal-doc__quote {
  margin: 1.5rem 0;
  padding: 16px 20px;
  border-left: 4px solid var(--color-primary);
  background: var(--color-white);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.gh-legal-doc__quote p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .header-cta .btn-sm {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 12px;
  }

  .header-phone {
    font-size: 13px;
  }
}

.header-cta {
  display: none;
  align-items: center;
  gap: 16px;
}

.header-phone {
  color: var(--color-text);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--color-primary);
}

.mobile-call-btn,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
}

.nav-toggle {
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu-drawer.active {
  visibility: visible;
  pointer-events: auto;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-menu-drawer.active .drawer-overlay {
  opacity: 1;
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100%;
  background: var(--color-white);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-drawer.active .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.drawer-nav {
  padding: 12px 0;
}

.drawer-menu {
  list-style: none;
}

.drawer-menu > li > a,
.drawer-item-row > a {
  display: block;
  padding: 14px 24px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.drawer-menu > li > a:hover,
.drawer-item-row > a:hover {
  color: var(--color-primary);
  background: var(--color-bg-light);
}

.drawer-menu > li > a.drawer-link--strong {
  font-weight: 700;
  color: var(--color-primary);
}

.drawer-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 12px 0 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.drawer-item-row > a {
  flex: 1;
}

.drawer-toggle-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: none;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.drawer-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--color-text-muted);
  transition: transform 0.2s ease;
}

.drawer-sub-menu {
  list-style: none;
  background: var(--color-bg-light);
}

.drawer-sub-menu a {
  display: block;
  padding: 12px 24px 12px 36px;
  color: var(--color-text-muted);
  font-size: 15px;
  text-decoration: none;
}

.drawer-sub-menu a:hover {
  color: var(--color-primary);
}

.drawer-footer {
  margin-top: auto;
  padding: 24px;
  border-top: 1px solid var(--color-border);
}

.drawer-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}

.drawer-hours {
  margin: 8px 0 16px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.drawer-socials,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link,
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: var(--color-white);
  transition: all 0.25s ease;
}

.social-link.tg:hover,
.social-btn.tg:hover {
  color: var(--color-primary);
  border-color: rgba(200, 16, 46, 0.25);
}

.social-link.wa:hover,
.social-btn.wa:hover {
  color: var(--color-success);
  border-color: rgba(26, 127, 75, 0.25);
}

.social-link.max:hover,
.social-btn.max:hover {
  color: #2F80ED;
  border-color: rgba(47, 128, 237, 0.25);
}

@media (min-width: 1024px) {
  .primary-nav,
  .header-cta {
    display: flex;
  }

  .mobile-call-btn,
  .nav-toggle,
  .mobile-menu-drawer {
    display: none;
  }

  .header-messengers {
    margin-left: 0;
    order: 1;
  }

  .header-cta {
    order: 2;
  }
}

@media (max-width: 1023px) {
  .header-cta {
    display: none;
  }
}

/* -----------------------------------------------------------------------------
 * 6. Site Footer
 * ----------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-bg-dark);
  color: var(--color-on-bg-dark);
  padding-top: 64px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
  color: var(--color-white);
}

.site-footer .social-btn,
.site-footer .social-link {
  color: var(--color-text) !important;
  background-color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.site-footer .social-btn:hover,
.site-footer .social-link:hover {
  color: var(--color-primary) !important;
  background-color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 48px;
}

.footer-col h3 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.footer-legal-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0 96px;
}

.footer-bottom-inner p {
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-disclaimer {
  max-width: 920px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom {
    padding-bottom: 32px;
  }
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  display: flex;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-cta .btn {
  flex: 1;
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none;
  }
}

/* Desktop floating messenger FAB (bottom-right) */
.gh-fab-write {
  display: none;
}

@media (min-width: 768px) {
  .gh-fab-write {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9997;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-primary);
    cursor: pointer;
    box-shadow:
      0 10px 28px rgba(200, 16, 46, 0.28),
      0 2px 8px rgba(26, 26, 26, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .gh-fab-write__halo {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.18) 0%, rgba(200, 16, 46, 0.06) 45%, transparent 70%);
    pointer-events: none;
    animation: gh-fab-pulse 2.8s ease-out infinite;
  }

  .gh-fab-write__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    line-height: 0;
  }

  .gh-fab-write:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px) scale(1.04);
    box-shadow:
      0 14px 34px rgba(200, 16, 46, 0.34),
      0 4px 12px rgba(26, 26, 26, 0.14);
  }

  .gh-fab-write:focus-visible {
    outline: 3px solid rgba(200, 16, 46, 0.35);
    outline-offset: 4px;
  }

  .gh-fab-write[aria-expanded="true"] {
    background: var(--color-primary-hover);
    transform: scale(0.96);
  }
}

@keyframes gh-fab-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gh-fab-write__halo {
    animation: none;
  }
}

/* Mobile messenger bottom sheet ("Написать") */
.gh-write-sheet {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
}

.gh-write-sheet.active {
  visibility: visible;
  pointer-events: auto;
}

.gh-write-sheet__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gh-write-sheet.active .gh-write-sheet__overlay {
  opacity: 1;
}

.gh-write-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  border-radius: 20px 20px 0 0;
  padding: 10px 20px calc(20px + env(safe-area-inset-bottom));
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.16);
  transform: translateY(100%);
  transition: transform 0.28s ease;
}

.gh-write-sheet.active .gh-write-sheet__panel {
  transform: translateY(0);
}

.gh-write-sheet__handle {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-border);
  margin: 0 auto 14px;
}

.gh-write-sheet__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 16px;
}

.gh-write-sheet__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gh-write-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-white);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.gh-write-link:active {
  background: var(--color-bg-light);
}

.gh-write-link__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-bg-light);
}

.gh-write-link__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gh-write-link__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.gh-write-link__desc {
  font-size: 12.5px;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .gh-write-sheet {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .gh-write-sheet__panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(420px, 100%);
    border-radius: 20px;
    padding: 24px 24px 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
    transform: translateY(16px) scale(0.97);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .gh-write-sheet.active .gh-write-sheet__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .gh-write-sheet__handle {
    display: none;
  }

  .gh-write-sheet__title {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .gh-write-link:hover {
    background: var(--color-bg-light);
    border-color: rgba(200, 16, 46, 0.22);
  }
}

.site-content {
  position: relative;
  z-index: 1;
}

/* -----------------------------------------------------------------------------
 * 7. Custom Cookie Banner
 * ----------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background-color: var(--color-bg-dark);
  color: var(--color-on-bg-dark);
  padding: 16px 24px;
  border-radius: var(--radius-card);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner[hidden],
.cookie-banner.is-hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .cookie-banner {
    left: auto;
    right: 24px;
    width: 480px;
  }
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}

.cookie-banner a {
  color: var(--color-white);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner a:hover {
  color: var(--color-primary);
}

.cookie-banner button {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-button);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-button);
}

.cookie-banner button:hover {
  background-color: var(--color-primary-hover);
}

/* -----------------------------------------------------------------------------
 * 5. Screen Reader Utilities
 * ----------------------------------------------------------------------------- */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  clip: auto !important;
  clip-path: none !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  position: absolute;
  top: 5px;
  text-decoration: none;
  width: auto;
  z-index: 100000;
}

/* -----------------------------------------------------------------------------
 * 6. Aura Layout & Section Styles
 * ----------------------------------------------------------------------------- */
.section {
  padding: var(--section-padding-desktop);
}
@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile);
  }
}

.bg-white { background-color: var(--color-white); }
.bg-light { background-color: var(--color-bg-light); }
.bg-dark { background-color: var(--color-bg-dark); color: var(--color-on-bg-dark); }

.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Grid Utilities */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--gap-cards); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--gap-cards); }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: var(--gap-cards); }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* -----------------------------------------------------------------------------
 * 7. Hero Section Split-Layout
 * ----------------------------------------------------------------------------- */
.gh-hero {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 100px;
}
.gh-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .gh-hero__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
.gh-hero__title {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .gh-hero__title {
    font-size: 3rem;
  }
}
.gh-hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}
.gh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.gh-hero__trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gh-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}
.gh-hero__trust-item svg {
  flex-shrink: 0;
}
.gh-hero__image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.gh-hero__image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* -----------------------------------------------------------------------------
 * 8. Trust Counter Bar
 * ----------------------------------------------------------------------------- */
.gh-trust-bar {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
  z-index: 20;
  box-shadow: 0 12px 32px rgba(200, 16, 46, 0.2);
}
@media (min-width: 1024px) {
  .gh-trust-bar--overlap {
    margin-top: -60px;
  }
}
.gh-trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 576px) {
  .gh-trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gh-trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gh-trust-bar__item {
  text-align: center;
}
@media (min-width: 1024px) {
  .gh-trust-bar__item {
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 16px;
  }
  .gh-trust-bar__item:last-child {
    border-right: none;
    padding-right: 0;
  }
}
.gh-trust-bar__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.gh-trust-bar__label {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: block;
}

/* -----------------------------------------------------------------------------
 * 9. Cards & UI Elements
 * ----------------------------------------------------------------------------- */
.gh-card {
  background-color: var(--color-white);
  border: var(--border-card);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-card);
  position: relative;
}
.gh-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.gh-service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.gh-service-card__icon {
  margin-bottom: 24px;
  color: var(--color-primary);
}
.gh-service-card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.gh-service-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}
.gh-service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}
.gh-service-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
}
.gh-service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

/* Process Steps Cards */
.gh-step-card {
  background-color: var(--color-white);
  border: var(--border-card);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.gh-step-card__number-bg {
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.05;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.gh-step-card__title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.gh-step-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

/* Reviews Cards */
.gh-review-card {
  background-color: var(--color-white);
  border: var(--border-card);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.gh-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.gh-review-card__author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
}
.gh-review-card__date {
  font-size: 12px;
  color: var(--color-text-muted);
}
.gh-review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #FFC107;
}
.gh-review-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}
.gh-review-card__source {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* -----------------------------------------------------------------------------
 * 10. FAQ Accordion
 * ----------------------------------------------------------------------------- */
.gh-faq,
.gh-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.gh-faq__item {
  background-color: var(--color-white);
  border: var(--border-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-card);
}
.gh-faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  user-select: none;
}
.gh-faq__item summary::-webkit-details-marker {
  display: none;
}
.gh-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-light);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.25s ease, background-color 0.2s ease;
}
.gh-faq__item[open] .gh-faq__icon {
  transform: rotate(45deg);
  background-color: var(--color-primary);
  color: var(--color-white);
}
.gh-faq__answer {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  border-top: 1px solid transparent;
  opacity: 0;
  transform: translateY(-8px);
  animation: faqFadeIn 0.3s ease forwards;
}
.gh-faq__item[open] .gh-faq__answer {
  border-top-color: var(--color-border);
}
@keyframes faqFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------------------------------------------------------
 * 11. Promo Focus Banner
 * ----------------------------------------------------------------------------- */
.gh-promo-banner {
  background-color: var(--color-bg-dark);
  color: var(--color-on-bg-dark);
  border-radius: var(--radius-card);
  padding: 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 1024px) {
  .gh-promo-banner {
    padding: 64px;
  }
}
.gh-promo-banner__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .gh-promo-banner__grid {
    grid-template-columns: 1.5fr 1fr;
  }
}
.gh-promo-banner__title {
  color: var(--color-white);
  font-size: 1.75rem;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .gh-promo-banner__title {
    font-size: 2.25rem;
  }
}
.gh-promo-banner__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}
.gh-promo-banner__action {
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .gh-promo-banner__action {
    justify-content: flex-end;
  }
}

/* -----------------------------------------------------------------------------
 * 12. Interactive Forms
 * ----------------------------------------------------------------------------- */
.gh-form-container {
  background-color: var(--color-white);
  border: var(--border-card);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .gh-form-container {
    padding: 48px;
  }
}
.gh-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gh-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gh-form__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.gh-form__input,
.gh-form__select,
.gh-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background-color: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.gh-form__input:focus,
.gh-form__select:focus,
.gh-form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}
.gh-form__textarea {
  resize: vertical;
  min-height: 120px;
}
.gh-form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.gh-form__checkbox {
  margin-top: 4px;
  flex-shrink: 0;
}
.gh-form__checkbox-label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-muted);
  user-select: none;
}
.gh-form__checkbox-label a {
  text-decoration: underline;
}

/* Form Status Messages */
.form-status-msg {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-button);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.success-msg {
  background-color: rgba(26, 127, 75, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(26, 127, 75, 0.2);
}
.error-msg {
  background-color: rgba(200, 16, 46, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(200, 16, 46, 0.2);
}

/* -----------------------------------------------------------------------------
 * 13. Interactive Tables
 * ----------------------------------------------------------------------------- */
.gh-table-responsive {
  width: 100%;
  overflow-x: auto;
  border: var(--border-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}
.gh-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  background-color: var(--color-white);
}
.gh-table th,
.gh-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
}
.gh-table th {
  background-color: var(--color-bg-light);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gh-table tr:last-child td {
  border-bottom: none;
}
.gh-table tr:hover td {
  background-color: rgba(0, 0, 0, 0.015);
}
.gh-table__btn {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
}

/* ---------------------------------------------------------------------------
 * Mobile: transform opt-in tables (.gh-table--stack) into stacked cards so
 * they never need horizontal scrolling. Each <td> needs a data-label; the
 * first cell becomes the card title and the action cell a full-width button.
 * --------------------------------------------------------------------------- */
@media (max-width: 767px) {
  /* The wrapper no longer scrolls — cards carry their own frame. */
  .gh-table-responsive--stack {
    overflow: visible;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
  }

  .gh-table--stack {
    font-size: 15px;
    background: transparent;
  }

  .gh-table--stack thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .gh-table--stack,
  .gh-table--stack tbody,
  .gh-table--stack tr,
  .gh-table--stack td {
    display: block;
    width: 100%;
  }

  .gh-table--stack tr {
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: var(--color-white);
    box-shadow: var(--shadow-card);
    padding: 18px 18px 6px;
    margin-bottom: 16px;
  }

  .gh-table--stack tr:hover td {
    background: transparent;
  }

  .gh-table--stack td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    padding: 9px 0;
    border: none;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    text-align: right;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .gh-table--stack td::before {
    content: attr(data-label);
    flex: 0 0 42%;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--color-text-muted);
  }

  /* First cell → card title (full-width, no label). */
  .gh-table--stack td:first-child {
    display: block;
    text-align: left;
    padding: 0 0 12px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
    font-size: 17px;
    line-height: 1.35;
  }
  .gh-table--stack td:first-child::before {
    display: none;
  }
  .gh-table--stack td:first-child strong {
    color: var(--color-primary);
    font-size: 17px;
  }

  /* Action cell → full-width button, no label, no divider. */
  .gh-table--stack td.gh-table__action {
    display: block;
    text-align: center;
    padding-top: 14px;
    border-bottom: none;
  }
  .gh-table--stack td.gh-table__action::before {
    display: none;
  }
  .gh-table--stack td.gh-table__action .btn,
  .gh-table--stack td.gh-table__action .gh-table__btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
  }
}

/* -----------------------------------------------------------------------------
 * 14. Comparison & Options Layouts
 * ----------------------------------------------------------------------------- */
.gh-compare-col {
  background-color: var(--color-white);
  border: var(--border-card);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.gh-compare-col--accent {
  border-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(200, 16, 46, 0.08);
}
.gh-compare-col__header {
  border-b: 1px solid var(--color-border);
  padding-bottom: 20px;
  margin-bottom: 24px;
}
.gh-compare-col__title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.gh-compare-col__badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background-color: var(--color-bg-light);
  color: var(--color-text-muted);
}
.gh-compare-col--accent .gh-compare-col__badge {
  background-color: rgba(200, 16, 46, 0.1);
  color: var(--color-primary);
}
.gh-compare-col__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.gh-compare-col__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.gh-compare-col__item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* -----------------------------------------------------------------------------
 * 15. Badges & Utilities
 * ----------------------------------------------------------------------------- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  line-height: 1;
}
.badge--success { background-color: rgba(26, 127, 75, 0.1); color: var(--color-success); }
.badge--info { background-color: rgba(26, 95, 165, 0.1); color: var(--color-info); }
.badge--primary { background-color: rgba(200, 16, 46, 0.1); color: var(--color-primary); }

.text-red { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }
.font-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.text-center { text-align: center; }

.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Checklists & steps (service/about pages) */
.gh-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gh-checklist li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
  font-size: 15px;
}
.gh-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(26, 127, 75, 0.15);
  box-shadow: inset 0 0 0 3px var(--color-success);
}
.gh-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gh-steps__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
}
.gh-step__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(200, 16, 46, 0.2);
  margin-bottom: 8px;
}
.gh-split {
  align-items: start;
  gap: 32px;
}
.gh-contact-block a {
  color: var(--color-text);
}
.gh-map-container,
.gh-map-placeholder {
  min-height: 320px;
  border-radius: var(--radius-card);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}
.gh-map-container iframe {
  border: 0;
  border-radius: var(--radius-card);
  width: 100%;
  min-height: 420px;
}

/* Blog archive & single post utilities */
.content-container { padding-top: 3rem; padding-bottom: 3rem; }
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(3, 1fr); }
}
.post-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.post-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.post-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.post-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-title a { color: var(--color-text); text-decoration: none; }
.post-title a:hover { color: var(--color-primary); }
.read-more { margin-top: auto; font-weight: 600; color: var(--color-primary); text-decoration: none; }
.read-more:hover { text-decoration: underline; }
.text-sm { font-size: 14px; }
.border-b { border-bottom: 1px solid var(--color-border); }
.border-t { border-top: 1px solid var(--color-border); }
.rounded-2xl { border-radius: 1rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }
.shadow-md { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); }
.shadow-sm { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
.shadow-xs { box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.shrink-0 { flex-shrink: 0; }
.self-center { align-self: center; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.leading-relaxed { line-height: 1.7; }
.w-full { width: 100%; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.h-auto { height: auto; }
.object-cover { object-fit: cover; }
.border { border: 1px solid var(--color-border); }
.border-white { border-color: var(--color-white); }
.text-white { color: var(--color-white); }
.text-white-opacity-80 { color: rgba(255, 255, 255, 0.8); }
.bg-white { background-color: var(--color-white); }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.pt-8 { padding-top: 2rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.h3, .h4, .h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; }
.h3 { font-size: 1.25rem; }
.h4 { font-size: 1.125rem; }
.h5 { font-size: 1rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:text-left { text-align: left; }
  .sm\:items-start { align-items: flex-start; }
}
.post-inline-cta {
  border-left: 4px solid var(--color-primary);
}
.border-left-red { border-left: 4px solid var(--color-primary); }
.badge-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-light);
  color: var(--color-text-muted);
  font-size: 13px;
  text-decoration: none;
}
.badge-pill:hover { background: rgba(200, 16, 46, 0.08); color: var(--color-primary); }
.pagination { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-button);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
}
.pagination .current {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.entry-content {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text);
}
.entry-content h2,
.entry-content h3 {
  font-family: var(--font-heading);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.entry-content p { margin-bottom: 1.25rem; }
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.25rem 1.25rem;
  padding-left: 1rem;
}
.entry-content li { margin-bottom: 0.5rem; }
.entry-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-light);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}
.entry-content a { color: var(--color-primary); }
/* Primary CTA buttons inside entry-content: don't inherit red link color (red-on-red) */
.entry-content a.btn-primary,
.entry-content a.btn-primary:visited,
.entry-content a.btn-primary:hover,
.entry-content a.btn-primary:focus,
.entry-content a.btn-primary:active,
.entry-content .btn-primary,
.entry-content .btn-primary:visited,
.entry-content .btn-primary:hover,
.entry-content .btn-primary:focus,
.entry-content .btn-primary:active {
  color: #ffffff !important;
  color: var(--color-on-primary) !important;
}
.entry-content a.btn-primary svg,
.entry-content .btn-primary svg {
  color: inherit;
  stroke: currentColor;
  fill: currentColor;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 15px;
}
.entry-content th,
.entry-content td {
  border: 1px solid var(--color-border);
  padding: 10px 12px;
  text-align: left;
}
.entry-content th { background: var(--color-bg-light); }

/* -----------------------------------------------------------------------------
 * 15b. Premium Blog Category Filters & Fallback Thumbnails
 * ----------------------------------------------------------------------------- */
.filter-pill {
  display: inline-block;
  padding: 10px 22px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.filter-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}
.filter-pill.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white) !important;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}
.post-thumbnail-wrapper {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  padding-top: 56.25% !important; /* 16:9 aspect ratio */
  overflow: hidden !important;
  background: var(--color-bg-light) !important;
}
.post-thumbnail-wrapper img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.badge-category {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  z-index: 10 !important;
  background: rgba(200, 16, 46, 0.95);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.post-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.post-card img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.read-more svg {
  transition: transform 0.2s ease;
}
.read-more:hover svg {
  transform: translateX(4px);
}

/* Inline CTA Button Text Color Override to fix Contrast ("красное на красном", "красный на черном") */
.post-inline-cta {
  background-color: #141414 !important;
  color: #ffffff !important;
  border-left: 5px solid var(--color-primary) !important;
  padding: 2.5rem !important;
  border-radius: var(--radius-card) !important;
}
.post-inline-cta h3 {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 1.5rem !important;
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
}
.post-inline-cta p {
  color: rgba(255, 255, 255, 0.8) !important;
}
.entry-content .post-inline-cta a {
  text-decoration: none !important;
}
.entry-content .post-inline-cta a.btn-primary {
  color: #ffffff !important;
  background-color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
  font-weight: 600 !important;
}
.entry-content .post-inline-cta a.btn-primary:hover {
  background-color: #a00b22 !important;
  border-color: #a00b22 !important;
}
.entry-content .post-inline-cta a.btn-outline {
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  background-color: transparent !important;
  font-weight: 600 !important;
}
.entry-content .post-inline-cta a.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* -----------------------------------------------------------------------------
 * 16. Aura Backdrop Canvas
 * ----------------------------------------------------------------------------- */
#aura-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  display: block;
}

/* -----------------------------------------------------------------------------
 * 17. Accessibility & Motion Compliance
 * ----------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  
  #aura-backdrop {
    display: none !important;
  }
  
  .gh-card:hover,
  .gh-service-card:hover,
  .gh-review-card:hover,
  .btn-primary:hover {
    transform: none !important;
  }
}

/* -----------------------------------------------------------------------------
 * 18. Visible Premium Breadcrumbs (Aura Minimal Layout)
 * ----------------------------------------------------------------------------- */
.gehelp-breadcrumbs {
  font-size: 13px;
  font-weight: 500;
  color: #8c8c8c;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center; /* Centered by default for landing/hero headers */
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.4;
}
.gehelp-breadcrumbs a {
  color: #8c8c8c;
  text-decoration: none;
  transition: color 0.2s ease;
}
.gehelp-breadcrumbs a:hover {
  color: var(--color-primary);
}
.gehelp-breadcrumbs .sep, 
.gehelp-breadcrumbs span {
  color: #bfbfbf;
}
.gehelp-breadcrumbs .current,
.gehelp-breadcrumbs .breadcrumb_last {
  color: #4a4a4a;
  font-weight: 500;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

/* Specific alignments for standard layouts */
.page-header .gehelp-breadcrumbs,
.post-header-section .gehelp-breadcrumbs,
.archive-header .gehelp-breadcrumbs,
.content-container .gehelp-breadcrumbs {
  justify-content: flex-start; /* Left-aligned inside standard titles */
}

@media (max-width: 767px) {
  .gehelp-breadcrumbs {
    font-size: 12px;
    gap: 6px;
  }
  .gehelp-breadcrumbs .current,
  .gehelp-breadcrumbs .breadcrumb_last {
    max-width: 180px;
  }
}

/* -----------------------------------------------------------------------------
 * 19. Premium Table of Contents (TOC) & E-E-A-T Badges
 * ----------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

h2[id^="toc-"] {
  scroll-margin-top: 100px; /* Space above H2 when navigated via TOC links */
}

.gh-toc {
  background-color: var(--color-bg-light) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.gh-toc__title {
  color: var(--color-text) !important;
  font-family: var(--font-heading) !important;
}

.gh-toc__link {
  color: var(--color-text-muted) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
}

.gh-toc__link:hover {
  color: var(--color-primary) !important;
  transform: translateX(2px) !important;
}

/* E-E-A-T Badges */
.badge-eeat {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02) !important;
}

.badge-verified {
  background-color: rgba(34, 197, 94, 0.08) !important;
  color: #166534 !important;
  border: 1px solid rgba(34, 197, 94, 0.15) !important;
}

.badge-updated {
  background-color: rgba(59, 130, 246, 0.08) !important;
  color: #1e40af !important;
  border: 1px solid rgba(59, 130, 246, 0.15) !important;
}

/* -----------------------------------------------------------------------------
 * 20. Mobile hardening — no horizontal overflow, graceful text wrapping
 * ----------------------------------------------------------------------------- */
html,
body {
  max-width: 100%;
  /* clip (not hidden) avoids creating a scroll container that would break the sticky header */
  overflow-x: clip;
}

/* Long, unbreakable words (URLs, long RU compounds) must never widen the page */
h1, h2, h3, h4, h5, h6,
p, li, span, a, td, th, summary, blockquote {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Never hyphenate headings: "по-ездок"-style breaks look unprofessional */
h1, h2, h3, h4, h5, h6 {
  hyphens: none;
  -webkit-hyphens: none;
}

/* Media and iframes never exceed their container */
img,
svg,
iframe,
video,
table {
  max-width: 100%;
}

/* Keep wide tables scrollable instead of stretching the viewport */
.entry-content table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 600px) {
  /* Headings scale down and wrap cleanly */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .gh-hero__title {
    font-size: 1.9rem;
    line-height: 1.2;
    hyphens: none;
  }
  .gh-hero__subtitle {
    font-size: 1.05rem;
  }

  /* Buttons wrap their label instead of forcing the layout wider than screen */
  .btn {
    white-space: normal;
    text-align: center;
  }

  /* Primary hero / CTA buttons go full width for a clean, tappable stack */
  .gh-hero__actions {
    width: 100%;
  }
  .gh-hero__actions .btn {
    width: 100%;
  }

  /* Prevent fixed min-widths from overflowing narrow screens */
  .gh-trust-bar,
  .gh-promo-banner,
  .gh-card,
  .gh-price-card,
  .gh-contact-card {
    min-width: 0;
  }
}

@media (max-width: 400px) {
  .gh-hero__title {
    font-size: 1.65rem;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ---------------------------------------------------------------------------
 * Lead-form confirmation card + messenger hand-off
 * --------------------------------------------------------------------------- */
.gh-lead-success {
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-border, #e6e6e6);
  border-radius: 18px;
  padding: 40px 28px;
  box-shadow: 0 12px 40px rgba(20, 20, 20, 0.06);
  animation: gh-fade-up 0.35s ease;
}

@keyframes gh-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gh-lead-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #1a7f4b;
  box-shadow: 0 8px 24px rgba(26, 127, 75, 0.28);
}

.gh-lead-success__title {
  font-family: var(--font-heading, sans-serif);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text, #141414);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.gh-lead-success__ticket {
  font-size: 16px;
  color: var(--color-text, #141414);
  margin: 0 0 8px;
}

.gh-lead-success__ticket strong {
  display: inline-block;
  background: rgba(200, 16, 46, 0.08);
  color: var(--color-primary, #C8102E);
  padding: 2px 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.gh-lead-success__note {
  font-size: 15px;
  color: var(--color-text-muted, #5a5a5a);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 24px;
}

.gh-lead-success__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto;
}

.gh-msgr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body, sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.gh-msgr svg { flex-shrink: 0; }

.gh-msgr:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.14);
  color: #fff;
}

.gh-msgr--wa  { background: #25D366; }
.gh-msgr--tg  { background: #29A8EB; }
.gh-msgr--max { background: #0077FF; }

.gh-lead-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px auto 0;
  padding: 10px 18px;
  background: transparent;
  border: 1.5px solid var(--color-border, #d9d9d9);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text, #141414);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.gh-lead-copy:hover {
  border-color: var(--color-primary, #C8102E);
  background: rgba(200, 16, 46, 0.04);
}

.gh-lead-success__hint {
  font-size: 13px;
  color: var(--color-text-muted, #8a8a8a);
  line-height: 1.5;
  max-width: 420px;
  margin: 14px auto 0;
}

/* Selected-service chip shown above the lead form when a service is chosen */
.gh-form-selected {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 20px;
  padding: 10px 18px;
  background: rgba(200, 16, 46, 0.06);
  border: 1px solid rgba(200, 16, 46, 0.18);
  border-radius: 999px;
  font-size: 14px;
  color: var(--color-text-muted, #5a5a5a);
  text-align: center;
}

.gh-form-selected strong {
  color: var(--color-primary, #C8102E);
  font-weight: 700;
}

/* Visible error state (overrides any inline display:none) */
.form-status-msg.error-msg {
  display: block !important;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff0f2;
  border: 1px solid rgba(200, 16, 46, 0.30);
  color: var(--color-primary, #C8102E);
  font-size: 14px;
  line-height: 1.5;
}

/* Transient toast (clipboard confirmations) */
.gh-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: #141414;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  max-width: calc(100vw - 32px);
  text-align: center;
}

.gh-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ==========================================================================
   Unified service detail pages
   ========================================================================== */

.gh-service-detail {
  overflow: clip;
}

.gh-service-detail .section {
  position: relative;
}

.gh-service-eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gh-service-eyebrow--light {
  color: rgba(255, 255, 255, 0.68);
}

.gh-service-hero {
  padding-top: 40px;
}

.gh-service-hero .gehelp-breadcrumbs {
  margin: 0 0 34px;
  text-align: left;
  justify-content: flex-start;
}

.gh-service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

.gh-service-hero__content {
  min-width: 0;
}

.gh-service-hero__title {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(38px, 3.9vw, 56px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  hyphens: none;
}

.gh-service-hero__lead {
  max-width: 680px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.65;
}

.gh-service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.gh-service-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.gh-service-hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.4;
}

.gh-service-hero__proof svg,
.gh-service-benefit svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: #1a7f4b;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.gh-service-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-radius: 28px;
  background: #eee9e6;
  box-shadow: 0 24px 64px rgba(111, 20, 40, 0.14);
}

.gh-service-hero__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(91, 18, 35, 0.09);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.gh-service-hero__media img,
.gh-service-intro__media img,
.gh-service-issuer__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-service-intro,
.gh-service-issuer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.84fr);
  gap: clamp(42px, 6vw, 80px);
  align-items: center;
}

.gh-service-intro__copy h2,
.gh-service-issuer__copy h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.gh-service-intro__copy p:not(.gh-service-eyebrow),
.gh-service-issuer__copy > p {
  margin: 0 0 16px;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.gh-service-intro__media,
.gh-service-issuer__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  background: #eee9e6;
  box-shadow: 0 18px 48px rgba(111, 20, 40, 0.1);
}

.gh-service-section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.gh-service-section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.gh-service-section-head > p:last-child:not(.gh-service-eyebrow) {
  margin: 16px 0 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.gh-service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gh-service-feature {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(91, 18, 35, 0.1);
  border-radius: 18px;
  background: var(--color-white);
}

.gh-service-feature__num {
  display: block;
  margin-bottom: 30px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.gh-service-feature p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.gh-service-docs {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.gh-service-docs__head {
  position: sticky;
  top: 112px;
}

.gh-service-docs__head h2 {
  margin: 0 0 18px;
  font-size: clamp(31px, 3.5vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.gh-service-docs__head > p:last-child {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.gh-service-docs__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gh-service-docs__list li {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 20px 22px;
  border: 1px solid rgba(91, 18, 35, 0.09);
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.55;
}

.gh-service-docs__icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 11px;
  background: rgba(200, 16, 46, 0.07);
  color: var(--color-primary);
}

.gh-service-docs__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.gh-service-terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gh-service-term {
  min-width: 0;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(91, 18, 35, 0.11);
  border-radius: 20px;
  background: var(--color-white);
}

.gh-service-term--accent {
  border-color: rgba(200, 16, 46, 0.26);
  background: linear-gradient(145deg, rgba(200, 16, 46, 0.055), rgba(200, 16, 46, 0.015));
}

.gh-service-term__label {
  display: block;
  margin-bottom: 18px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gh-service-term strong {
  display: block;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.25;
}

.gh-service-term--accent strong {
  color: var(--color-primary);
}

.gh-service-term p {
  margin: 16px 0 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.gh-service-payment {
  color: var(--color-white);
}

.gh-service-payment__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.gh-service-payment h2 {
  margin: 0 0 18px;
  color: var(--color-white);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.gh-service-payment p:not(.gh-service-eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.gh-service-payment__marks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gh-service-payment__marks span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.gh-service-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 17px 18px;
  border: 1px solid rgba(26, 95, 165, 0.14);
  border-radius: 13px;
  background: rgba(26, 95, 165, 0.055);
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.gh-service-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: #1a5fa5;
  stroke-linecap: round;
  stroke-width: 1.8;
}

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

.gh-service-step {
  display: flex;
  min-width: 0;
  gap: 18px;
  padding: 25px;
  border: 1px solid rgba(91, 18, 35, 0.09);
  border-radius: 16px;
  background: var(--color-white);
}

.gh-service-step__num {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.gh-service-step h3 {
  margin: 0 0 8px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.35;
}

.gh-service-step p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.gh-service-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.gh-service-benefit {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 20px 22px;
  border-radius: 14px;
  background: var(--color-bg-light);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.gh-service-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.09), transparent 34%),
    #5b1223;
  color: var(--color-white);
  box-shadow: 0 24px 64px rgba(91, 18, 35, 0.18);
}

.gh-service-final-cta h2 {
  margin: 0 0 14px;
  color: var(--color-white);
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.gh-service-final-cta p:not(.gh-service-eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 15px;
  line-height: 1.7;
}

.gh-service-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.gh-service-final-cta .gh-service-final-cta__primary {
  border-color: var(--color-white);
  background: var(--color-white);
  color: #5b1223;
}

.gh-service-final-cta .gh-service-final-cta__secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
}

.gh-service-final-cta .gh-service-final-cta__secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.gh-service-disclaimer {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px 44px;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 1023px) {
  .gh-service-hero__grid,
  .gh-service-intro,
  .gh-service-issuer,
  .gh-service-payment__inner {
    grid-template-columns: 1fr;
  }

  .gh-service-hero__media {
    max-width: 760px;
  }

  .gh-service-intro__media,
  .gh-service-issuer__media {
    max-width: 760px;
  }

  .gh-service-feature-grid,
  .gh-service-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gh-service-docs {
    grid-template-columns: 1fr;
  }

  .gh-service-docs__head {
    position: static;
    max-width: 680px;
  }

  .gh-service-final-cta {
    grid-template-columns: 1fr;
  }

  .gh-service-final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .gh-service-hero {
    padding-top: 26px;
  }

  .gh-service-hero .gehelp-breadcrumbs {
    margin-bottom: 26px;
  }

  .gh-service-hero__grid {
    gap: 34px;
  }

  .gh-service-hero__title {
    font-size: clamp(30px, 8.4vw, 46px);
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
  }

  .gh-service-hero__lead {
    font-size: 16px;
  }

  .gh-service-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gh-service-hero__actions .btn {
    width: 100%;
  }

  .gh-service-hero__proof {
    display: grid;
    gap: 10px;
  }

  .gh-service-hero__media,
  .gh-service-intro__media,
  .gh-service-issuer__media {
    border-radius: 18px;
  }

  .gh-service-feature-grid,
  .gh-service-terms,
  .gh-service-steps,
  .gh-service-benefits {
    grid-template-columns: 1fr;
  }

  .gh-service-feature {
    padding: 22px;
  }

  .gh-service-feature__num {
    margin-bottom: 18px;
  }

  .gh-service-docs__list li {
    align-items: flex-start;
    padding: 17px;
  }

  .gh-service-term {
    padding: 24px;
  }

  .gh-service-payment__marks {
    grid-template-columns: 1fr 1fr;
  }

  .gh-service-payment__marks span {
    min-height: 68px;
    padding: 10px;
    font-size: 12px;
  }

  .gh-service-step {
    padding: 20px;
  }

  .gh-service-final-cta {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .gh-service-final-cta__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .gh-service-final-cta__actions .gh-service-final-cta__primary {
    grid-column: 1 / -1;
  }

  .gh-service-final-cta__actions .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .gh-service-payment__marks {
    grid-template-columns: 1fr;
  }

  .gh-service-final-cta__actions {
    grid-template-columns: 1fr;
  }

  .gh-service-final-cta__actions .gh-service-final-cta__primary {
    grid-column: auto;
  }
}



