/* GEEL — единый слой стилей (без темы Seolounge) */

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

:root {
  --g-font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --g-ink: #0f172a;
  --g-muted: #64748b;
  --g-line: #e2e8f0;
  --g-bg: #ffffff;
  --g-bg-soft: #f8fafc;
  --g-accent: #4f46e5;
  --g-accent-2: #f97316;
  --g-header-h: 4.25rem;
  --g-radius: 12px;
  --g-radius-lg: 16px;
  --g-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --g-shadow-hover: 0 12px 40px rgba(15, 23, 42, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--g-font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--g-ink);
  background: var(--g-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--g-accent);
}

a:hover {
  color: #4338ca;
}

.g-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.g-main {
  flex: 1;
}

.g-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

#section-stack,
#section-uslugi,
#section-about,
#section-process,
#section-contact {
  scroll-margin-top: calc(var(--g-header-h) + 0.75rem);
}

/* —— Header —— */
.g-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--g-line);
}

body {
  padding-top: var(--g-header-h);
}

.g-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--g-header-h);
}

.g-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--g-ink);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.g-nav-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.g-burger {
  display: none;
  margin-left: auto;
  width: 2.5rem;
  height: 2.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--g-line);
  border-radius: 10px;
  background: var(--g-bg);
  cursor: pointer;
}

.g-burger span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--g-ink);
  border-radius: 1px;
}

.g-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  margin-right: 0.75rem;
}

.g-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--g-muted);
  text-decoration: none;
}

.g-nav__link:hover {
  color: var(--g-ink);
}

.g-nav__link--cta-mobile {
  display: none;
}

.g-header__cta {
  flex-shrink: 0;
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--g-accent), #6366f1, var(--g-accent-2));
  background-size: 160% 100%;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-position 0.25s ease;
}

.g-header__cta:hover {
  transform: translateY(-1px);
  background-position: 100% 0;
}

@media (max-width: 900px) {
  .g-burger {
    display: flex;
  }

  .g-nav {
    position: fixed;
    top: var(--g-header-h);
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--g-line);
    box-shadow: var(--g-shadow);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.2s ease, visibility 0.2s;
  }

  .g-nav__link {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--g-line);
  }

  .g-nav__link:last-of-type {
    border-bottom: none;
  }

  .g-nav__link--cta-mobile {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--g-accent), var(--g-accent-2));
    color: #fff !important;
    font-weight: 600;
    border: none;
  }

  .g-header__cta {
    display: none;
  }

  #g-nav-toggle:checked ~ .g-nav {
    max-height: 28rem;
    opacity: 1;
    visibility: visible;
  }

  #g-nav-toggle:checked ~ .g-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  #g-nav-toggle:checked ~ .g-burger span:nth-child(2) {
    opacity: 0;
  }

  #g-nav-toggle:checked ~ .g-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* —— Typography blocks —— */
.g-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-accent);
}

.g-h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.g-h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.g-lead,
.g-sub {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--g-muted);
}

.g-sub {
  font-size: 1rem;
}

.g-prose {
  margin: 0 0 1rem;
  color: var(--g-muted);
  line-height: 1.65;
}

/* —— Hero —— */
.g-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.75rem, 9vw, 6.5rem) 0 clamp(4.25rem, 10.5vw, 8rem);
  background: linear-gradient(180deg, var(--g-bg-soft) 0%, var(--g-bg) 55%);
}

.g-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.g-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.5;
}

.g-hero__blob--a {
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  background: #c7d2fe;
  top: -10%;
  right: 5%;
}

.g-hero__blob--b {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  background: #fed7aa;
  bottom: -20%;
  left: -10%;
}

.g-hero__blob--c {
  width: min(240px, 35vw);
  height: min(240px, 35vw);
  background: #fbcfe8;
  top: 38%;
  left: 42%;
  opacity: 0.42;
}

/* Первый экран в духе примера Flames: светлый, «воздушный» hero */
.g-hero--flames {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f8fafc 100%);
}

.g-hero--flames .g-hero__blob {
  opacity: 0.55;
  filter: blur(64px);
}

.g-hero__h1 {
  max-width: none;
}

.g-hero .g-h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.6rem);
  margin-bottom: 1.28rem;
}

.g-hero .g-lead {
  font-size: 1.2rem;
  line-height: 1.74;
  max-width: 39.5rem;
}

.g-hero__accent-word {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 45%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.g-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.85rem;
  align-items: center;
}

@media (min-width: 960px) {
  .g-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: clamp(2.4rem, 5.2vw, 4.75rem);
    align-items: center;
  }
}

.g-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin: 2.4rem 0 2.65rem;
}

.g-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.g-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--g-accent), #6366f1, var(--g-accent-2));
  background-size: 160% 100%;
  box-shadow: 0 6px 22px rgba(79, 70, 229, 0.35);
}

.g-btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  background-position: 100% 0;
}

.g-btn--outline {
  color: var(--g-ink);
  background: var(--g-bg);
  border: 1px solid var(--g-line);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.g-btn--outline:hover {
  border-color: rgba(79, 70, 229, 0.4);
  color: var(--g-accent);
}

.g-hero__row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .g-hero__row {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
  }
}

.g-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--g-line);
}

@media (min-width: 640px) {
  .g-hero__stat {
    padding-bottom: 0;
    padding-right: 1.5rem;
    border-bottom: none;
    border-right: 1px solid var(--g-line);
  }
}

.g-hero__stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.g-hero__stat-txt {
  font-size: 0.9rem;
  color: var(--g-muted);
}

.g-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.g-tag {
  padding: 0.35rem 0.8rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--g-muted);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--g-line);
  border-radius: 999px;
}

/* Правая колонка hero — как в Flames App (Hero.jsx) */
.g-hero__art {
  display: none;
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 720px;
}

@media (min-width: 960px) {
  .g-hero__art {
    display: block;
  }
}

.g-hero__viz {
  position: relative;
  height: clamp(440px, 45vw, 580px);
  width: 100%;
}

.g-hero__viz-orbit {
  position: absolute;
  top: -2.25rem;
  left: -2.25rem;
  width: 15.5rem;
  height: 15.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #93c5fd, #a5b4fc);
  opacity: 0.6;
  filter: blur(40px);
  pointer-events: none;
}

.g-hero__mock {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  width: 75%;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow:
    0 25px 50px -12px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.g-hero__mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.g-hero__mock-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.g-hero__mock-dot--r {
  background: #f87171;
}

.g-hero__mock-dot--y {
  background: #facc15;
}

.g-hero__mock-dot--g {
  background: #4ade80;
}

.g-hero__mock-body {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.g-hero__mock-line-sm {
  height: 0.75rem;
  width: 8rem;
  border-radius: 0.25rem;
  background: #e2e8f0;
}

.g-hero__mock-line-gradient {
  height: 1.5rem;
  width: 75%;
  border-radius: 0.25rem;
  background: linear-gradient(to right, #2563eb, #4f46e5);
}

.g-hero__mock-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.g-hero__mock-cell {
  display: block;
  height: 6.5rem;
  border-radius: 0.5rem;
  background: #f1f5f9;
}

/* Карточка «Заявки» (динамика лидов) */
.g-hero__kpi {
  position: absolute;
  z-index: 4;
  right: 0;
  top: 0;
  min-width: 8.5rem;
  padding: 0.85rem 1rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 18px 40px rgba(79, 70, 229, 0.12);
  transform: rotate(3deg);
}

.g-hero__kpi-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g-muted);
  margin-bottom: 0.2rem;
}

.g-hero__kpi-val {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #4f46e5, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.g-hero__kpi-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.65rem;
  line-height: 1.35;
  color: var(--g-muted);
}

/* Плавающие чипы услуг */
.g-hero__chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
  white-space: nowrap;
}

.g-hero__chip-ico {
  flex-shrink: 0;
}

.g-hero__chip-ico--blue {
  color: #2563eb;
}

.g-hero__chip-ico--indigo {
  color: #4f46e5;
}

.g-hero__chip-ico--sky {
  color: #0ea5e9;
}

.g-hero__chip-ico--violet {
  color: #6366f1;
}

.g-hero__chip--dev {
  right: -1rem;
  top: 7rem;
  transform: rotate(3deg);
}

.g-hero__chip--seo {
  right: 2rem;
  top: 11.5rem;
  transform: rotate(-3deg);
}

.g-hero__chip--smm {
  left: 6rem;
  bottom: 2.4rem;
  transform: rotate(2deg);
}

.g-hero__chip--ads {
  left: 0.5rem;
  top: 13.85rem;
  transform: rotate(6deg);
}

/* Малая карточка справа снизу */
.g-hero__mini {
  position: absolute;
  right: -0.5rem;
  bottom: 0.75rem;
  width: 14rem;
  padding: 1.1rem;
  display: grid;
  gap: 0.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
  transform: rotate(6deg);
  z-index: 1;
}

.g-hero__mini-line {
  display: block;
  height: 1rem;
  border-radius: 0.25rem;
  background: #e2e8f0;
}

.g-hero__mini-line--a {
  width: 7rem;
}

.g-hero__mini-line--b {
  width: 10rem;
  background: #f1f5f9;
}

.g-hero__mini-chart {
  display: block;
  height: 6.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(to bottom right, #dbeafe, #e0e7ff);
}

.g-lucide {
  display: block;
}

/* —— Sections —— */
.g-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.g-section--muted {
  background: var(--g-bg-soft);
}

.g-section-head {
  max-width: 36rem;
  margin-bottom: 2.25rem;
}

/* —— Услуги: как Flames Services.jsx (Lucide + ленты + KPI chip) —— */
.g-flames-services {
  position: relative;
  overflow: hidden;
  padding-top: clamp(4rem, 9vw, 6rem);
  padding-bottom: clamp(4rem, 9vw, 6rem);
}

.g-flames-services__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    conic-gradient(from 180deg at 30% 20%, #f0f9ff, #ffffff, #eef2ff, #ffffff);
  opacity: 0.7;
}

.g-flames-services__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.08), transparent 40%);
}

.g-flames-services__inner {
  position: relative;
  z-index: 1;
}

.g-flames-services__head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3.5rem;
}

.g-flames-services__title {
  margin-bottom: 0.85rem;
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
}

.g-flames-services__head .g-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
}

.g-flames-services__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .g-flames-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.25rem);
  }
}

.g-flame-card {
  position: relative;
  border-radius: 1.85rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: clamp(1.65rem, 3vw, 2.15rem);
  min-height: 10.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.2s ease;
}

.g-flame-card:hover {
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
}

.g-flame-card__ribbon {
  position: absolute;
  top: -0.55rem;
  left: 1.15rem;
  right: 1.15rem;
  height: 0.55rem;
  border-radius: 1.75rem 1.75rem 0 0;
}

.g-flame-card--dev .g-flame-card__ribbon {
  background: linear-gradient(to right, #0ea5e9, #22d3ee);
}

.g-flame-card--seo .g-flame-card__ribbon {
  background: linear-gradient(to right, #10b981, #2dd4bf);
}

.g-flame-card--smm .g-flame-card__ribbon {
  background: linear-gradient(to right, #d946ef, #f472b6);
}

.g-flame-card--ads .g-flame-card__ribbon {
  background: linear-gradient(to right, #6366f1, #a78bfa);
}

.g-flame-card__row {
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
}

.g-flame-card__icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.g-flame-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1.2rem;
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
}

.g-flame-card--dev .g-flame-card__icon {
  background: linear-gradient(to bottom right, #0ea5e9, #22d3ee);
}

.g-flame-card--seo .g-flame-card__icon {
  background: linear-gradient(to bottom right, #10b981, #2dd4bf);
}

.g-flame-card--smm .g-flame-card__icon {
  background: linear-gradient(to bottom right, #d946ef, #f472b6);
}

.g-flame-card--ads .g-flame-card__icon {
  background: linear-gradient(to bottom right, #6366f1, #a78bfa);
}

.g-flame-card__dots {
  position: absolute;
  bottom: -0.35rem;
  right: -0.35rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}

.g-flame-card__dots span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #e2e8f0;
}

.g-flame-card__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #0f172a;
}

.g-flame-card__desc {
  margin: 0;
  font-size: clamp(0.98rem, 1.6vw, 1.0625rem);
  line-height: 1.6;
  color: #475569;
}

.g-flame-card__deco {
  position: absolute;
  bottom: -0.7rem;
  right: -0.7rem;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.85rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  pointer-events: none;
}

/* —— Cards grid —— */
.g-cards {
  display: grid;
  gap: 1.25rem;
}

.g-cards--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .g-cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.g-cards--4 {
  grid-template-columns: 1fr;
}

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

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

.g-card {
  padding: 1.35rem 1.4rem;
  background: var(--g-bg);
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius-lg);
  box-shadow: var(--g-shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.g-section--muted .g-card {
  background: var(--g-bg);
}

.g-card:hover {
  box-shadow: var(--g-shadow-hover);
  transform: translateY(-2px);
}

.g-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.g-card__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--g-muted);
  line-height: 1.55;
}

.g-card--icon .g-card__icon {
  width: auto;
  max-height: 48px;
  object-fit: contain;
  margin-bottom: 0.85rem;
}

/* —— About split —— */
.g-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .g-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.g-split__img {
  border-radius: var(--g-radius-lg);
  margin: 0 auto;
}

.g-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (min-width: 520px) {
  .g-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

.g-metric__val {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--g-accent);
  line-height: 1.1;
}

.g-metric__lbl {
  font-size: 0.8125rem;
  color: var(--g-muted);
  line-height: 1.35;
}

/* —— Process steps —— */
.g-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

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

.g-step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--g-bg);
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius-lg);
  box-shadow: var(--g-shadow);
}

.g-step__num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--g-accent);
  background: #eef2ff;
  border-radius: 10px;
}

.g-step__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
}

.g-step__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--g-muted);
  line-height: 1.5;
}

/* —— Contact —— */
.g-contact {
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-top: 1px solid var(--g-line);
  background: linear-gradient(180deg, var(--g-bg) 0%, var(--g-bg-soft) 100%);
}

.g-contact__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .g-contact__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: start;
  }
}

.g-contact__panel {
  padding: 1.5rem 1.35rem;
  background: var(--g-bg);
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius-lg);
  box-shadow: var(--g-shadow);
}

.g-contact__flash {
  margin: 0 0 1.1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--g-radius);
  font-size: 0.9375rem;
}

.g-contact__flash--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.g-contact__flash--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.g-contact .g-field {
  margin-bottom: 1rem;
}

.g-contact .g-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.g-contact .g-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 1px solid var(--g-line);
  border-radius: 10px;
  background: var(--g-bg-soft);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.g-contact .g-input:focus {
  outline: none;
  border-color: rgba(79, 70, 229, 0.45);
  background: var(--g-bg);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.g-contact .g-textarea {
  resize: vertical;
  min-height: 7rem;
}

.g-contact .g-error {
  margin-top: 0.3rem;
  font-size: 0.8125rem;
  color: #dc2626;
}

.g-contact .g-field.has-error .g-input {
  border-color: #fca5a5;
  background: #fffbeb;
}

.g-contact__row2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .g-contact__row2 {
    grid-template-columns: 1fr 1fr;
  }
}

.g-contact__actions {
  margin-top: 1.1rem;
}

.g-contact__submit {
  width: 100%;
}

@media (min-width: 560px) {
  .g-contact__submit {
    width: auto;
    min-width: 12rem;
  }
}

.g-contact__note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--g-muted);
}

.g-contact__email-line {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  color: var(--g-text);
}

.g-contact__email {
  color: var(--g-accent);
  font-weight: 600;
  text-decoration: none;
}

.g-contact__email:hover {
  text-decoration: underline;
}

/* —— Footer —— */
.g-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--g-line);
  background: var(--g-bg-soft);
}

.g-footer__inner {
  text-align: center;
}

.g-footer__copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--g-muted);
}
