/* ===== GUARANTEES PAGE ===== */

    /* --- Top 3 guarantee cards --- */
    .g-hero {
      padding: 40px 0 60px;
    }
    .g-h1 {
      font-size: 40px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 36px;
    }
    .g-top-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .g-top-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      position: relative;
    }
    .g-top-card__img {
      width: 100%;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 72px;
      position: relative;
    }
    .g-top-card__img--1 { background: linear-gradient(135deg, #e8f4fd 0%, #d0e8f7 100%); }
    .g-top-card__img--2 { background: linear-gradient(135deg, #fdecea 0%, #f8d7d5 100%); }
    .g-top-card__img--3 { background: linear-gradient(135deg, #e8f7ee 0%, #d0f0df 100%); }
    .g-top-card__num {
      position: absolute;
      top: 16px;
      left: 16px;
      width: 36px;
      height: 36px;
      background: var(--blue);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 900;
    }
    .g-top-card__body {
      padding: 24px;
    }
    .g-top-card__title {
      font-size: 17px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .g-top-card__text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* --- Плюсы работы с нами --- */
    .g-plus {
      background: var(--gray-bg);
      padding: 60px 0;
    }
    .g-plus__title {
      font-size: 30px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 32px;
    }
    .g-plus-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .g-plus-card {
      background: var(--white);
      border-radius: 20px;
      padding: 32px 36px;
      position: relative;
      overflow: hidden;
    }
    .g-plus-card__num {
      position: absolute;
      right: 24px;
      bottom: -10px;
      font-size: 120px;
      font-weight: 900;
      color: var(--gray-bg);
      line-height: 1;
      user-select: none;
      pointer-events: none;
    }
    .g-plus-card__title {
      font-size: 18px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 12px;
      line-height: 1.3;
      position: relative;
      z-index: 1;
    }
    .g-plus-card__text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
      position: relative;
      z-index: 1;
      max-width: 480px;
    }
    .g-plus-card__icon {
      width: 48px;
      height: 48px;
      background: #e8f4fd;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: var(--blue);
    }

    /* --- CTA dark section --- */
    .g-cta {
      background: var(--navy);
      padding: 0;
      overflow: hidden;
    }
    .g-cta__inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      padding: 60px 40px;
      max-width: var(--container);
      margin: 0 auto;
      position: relative;
    }
    .g-cta__num {
      position: absolute;
      right: 340px;
      bottom: -20px;
      font-size: 200px;
      font-weight: 900;
      color: rgba(255,255,255,.04);
      line-height: 1;
      user-select: none;
    }
    .g-cta__title {
      font-size: 32px;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.25;
      max-width: 600px;
    }
    .g-cta__text {
      font-size: 15px;
      color: rgba(255,255,255,.6);
      line-height: 1.65;
      max-width: 560px;
      margin-bottom: 32px;
    }
    .g-cta__figure {
      width: 280px;
      height: 280px;
      background: rgba(255,255,255,.05);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 100px;
      flex-shrink: 0;
    }

    /* --- Blog articles --- */
    .g-blog {
      padding: 60px 0;
    }
    .g-blog__title {
      font-size: 28px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 28px;
    }
    .g-blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .g-blog-card {
      background: var(--gray-bg);
      border-radius: 16px;
      overflow: hidden;
      transition: box-shadow .2s;
    }
    .g-blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
    .g-blog-card__img {
      width: 100%;
      height: 160px;
      background: linear-gradient(135deg, #d4e8f5 0%, #b8d8ef 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
    }
    .g-blog-card__body {
      padding: 20px;
    }
    .g-blog-card__title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
      line-height: 1.4;
      display: block;
      transition: color .2s;
    }
    .g-blog-card__title:hover { color: var(--blue); }
    .g-blog-card__excerpt {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .g-blog-card__meta {
      font-size: 12px;
      color: var(--text-light);
    }

    /* --- Form section --- */
    .g-form {
      background: var(--navy);
      border-radius: 28px;
      padding: 60px;
      margin: 0 40px 60px;
    }
    .g-form__title {
      font-size: 30px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 6px;
    }
    .g-form__sub {
      font-size: 15px;
      color: rgba(255,255,255,.55);
      margin-bottom: 8px;
    }
    .g-form__contacts {
      font-size: 14px;
      color: rgba(255,255,255,.55);
      margin-bottom: 36px;
    }
    .g-form__contacts a { color: var(--blue); font-weight: 700; }
    .gf-row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 20px; }
    .gf-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

    @media (max-width: 960px) {
      .g-h1 { font-size: 30px; }
      .g-top-grid { grid-template-columns: 1fr; }
      .g-top-card__img { height: 160px; }
      .g-plus-grid { grid-template-columns: 1fr; }
      .g-cta__inner { grid-template-columns: 1fr; padding: 48px 24px; }
      .g-cta__figure { display: none; }
      .g-cta__title { font-size: 24px; }
      .g-blog-grid { grid-template-columns: 1fr 1fr; }
      .g-form { margin: 0 24px 60px; padding: 40px 24px; }
      .gf-row3 { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .g-h1 { font-size: 26px; }
      .g-top-grid { grid-template-columns: 1fr; }
      .g-blog-grid { grid-template-columns: 1fr; }
      .g-form { margin: 0 16px 40px; padding: 32px 20px; }
      .gf-row3 { grid-template-columns: 1fr; }
      .gf-row2 { grid-template-columns: 1fr; }
      .g-plus__title { font-size: 22px; }
      .g-cta__title { font-size: 20px; }
    }