h1, h2, h3, h4, strong {
      font-family: var(--title-font);
      color: var(--title-color);
    }

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

    a:hover {
      color: var(--theme-color2);
    }

    section {
      padding: var(--section-space) 0;
    }

    section.alt-bg {
      background: var(--smoke-color);
    }

    section.warm-bg {
      background: var(--gray-color);
    }

    /* =========================
       HERO
    ========================= */
    .hero {
      position: relative;
      background: linear-gradient(155deg, var(--theme-dark) 0%, var(--theme-color) 55%, var(--black-color4) 100%);
      color: var(--white-color);
      padding: 48px 0;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 0% 50%, rgba(200, 155, 60, 0.12) 0%, transparent 50%);
      pointer-events: none;
    }

/*        .hero::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--theme-color2), var(--gold-light), var(--theme-color2));
    }
*/
    .hero .container {
      position: relative;
      z-index: 1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .hero-content {
      text-align: left;
    }

    .hero-badge {
      display: inline-block;
      padding: 5px 14px;
      margin-bottom: 14px;
      font-family: var(--body-font);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-light);
      background: rgba(200, 155, 60, 0.12);
      border: 1px solid var(--hairline);
      border-radius: 50px;
    }

    .hero h1 {
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 900;
      line-height: 1.15;
      margin: 0 0 12px;
      color: var(--white-color);
    }

    .hero h1 em {
      font-family: var(--caveat-font);
      font-style: normal;
      font-size: 1.1em;
      color: var(--gold-light);
      display: block;
      margin-top: 4px;
      font-weight: 600;
    }

    .hero p {
      margin: 0 0 20px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 15px;
      font-weight: 300;
      max-width: 480px;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .hero-stat {
      padding: 10px 16px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--hairline-faint);
      border-radius: 10px;
      min-width: 100px;
    }

    .hero-stat strong {
      display: block;
      font-size: 20px;
      font-weight: 900;
      color: var(--gold-light);
      line-height: 1.2;
    }

    .hero-stat span {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: rgba(255, 255, 255, 0.55);
    }

    .hero-visual {
      position: relative;
    }

    .hero-image {
      display: block;
      width: 100%;
      height: 320px;
      object-fit: cover;
      border-radius: 14px;
      border: 2px solid var(--hairline);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    }

    .hero-image-accent {
      position: absolute;
      bottom: -10px;
      left: -10px;
      width: 60%;
      height: 60%;
      border-radius: 14px;
      border: 2px solid var(--theme-color2);
      z-index: -1;
      opacity: 0.45;
    }

    /* =========================
       SECTION TITLE
    ========================= */
    .section-title {
      text-align: center;
      margin-bottom: var(--section-title-space);
    }

    .section-title .label {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--theme-color2);
      margin-bottom: 8px;
    }

    .section-title h2 {
      font-size: clamp(22px, 3vw, 28px);
      font-weight: 900;
      margin: 0 0 8px;
      line-height: 1.2;
    }

    .section-title h2::after {
      content: "";
      display: block;
      width: 40px;
      height: 2px;
      margin: 12px auto 0;
      background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));
      border-radius: 2px;
    }

    .section-title p {
      color: var(--body-color);
      max-width: 600px;
      margin: 0 auto;
      font-size: 14px;
    }

    .section-title.left {
      text-align: left;
      margin-bottom: 20px;
    }

    .section-title.left h2::after {
      margin-left: 0;
      margin-right: auto;
    }

    .split-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .mb-gap {
      margin-bottom: 20px;
    }

    /* =========================
       CONTENT BLOCK
    ========================= */
    .content-block {
      background: var(--white-color);
      padding: 22px 24px;
      border-radius: 12px;
      border: 1px solid var(--th-border-color);
      box-shadow: 0 2px 12px rgba(75, 20, 109, 0.04);
      position: relative;
      overflow: hidden;
    }

  /*  .content-block::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--theme-color), var(--theme-color2));
    }*/

    .content-block p {
      margin: 0;
      font-size: 16px;
      color: var(--body-color);
      line-height: 1.65;
    }

    .content-block h3 {
      font-size: 20px;
      font-weight: 800;
      margin: 0 0 8px;
      color: var(--theme-color);
    }

    /* =========================
       CARDS
    ========================= */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .card {
      background: var(--white-color);
      padding: 18px 16px;
      border-radius: 10px;
      border: 1px solid var(--th-border-color);
      box-shadow: 0 2px 8px rgba(75, 20, 109, 0.03);
      transition: transform 0.2s ease, border-color 0.2s ease;
      position: relative;
    }

    .card:hover {
      transform: translateY(-3px);
      border-color: var(--hairline);
    }

    .card-icon {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--theme-color), var(--theme-dark));
      color: var(--gold-light);
      border-radius: 12px;
      font-size: 22px;
      margin-bottom: 20px;
      box-shadow: 0 6px 16px rgba(75, 20, 109, 0.2);
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 19px;
      font-weight: 800;
      color: var(--title-color);
    }

    .card p {
      margin: 0;
      color: var(--body-color);
      font-size: 15px;
      line-height: 1.7;
    }

    /* =========================
       OBJECTIVES
    ========================= */
    .list {
      background: var(--white-color);
      padding: 40px 44px;
      border-radius: 16px;
      border: 1px solid var(--th-border-color);
      box-shadow: 0 4px 24px rgba(75, 20, 109, 0.05);
    }

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

    .list li {
      position: relative;
      padding: 14px 0 14px 36px;
      margin: 0;
      color: var(--title-color);
      font-size: 16px;
      border-bottom: 1px solid var(--smoke-color3);
    }

    .list li:last-child {
      border-bottom: none;
    }

    .list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--theme-color2), var(--gold-light));
      box-shadow: 0 2px 8px rgba(200, 155, 60, 0.35);
    }

    .list li::after {
      content: "";
      position: absolute;
      left: 7px;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 5px;
      height: 9px;
      border-right: 2px solid var(--white-color);
      border-bottom: 2px solid var(--white-color);
    }

    /* =========================
       BUDGET TABLE
    ========================= */
    .table-wrap {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--th-border-color);
      box-shadow: 0 2px 12px rgba(75, 20, 109, 0.04);
    }

    .table {
      width: 100%;
      border-collapse: collapse;
      background: var(--white-color);
    }

    .table th {
      background: linear-gradient(135deg, var(--theme-dark), var(--theme-color));
      color: var(--white-color);
      text-align: left;
      padding: 10px 16px;
      font-family: var(--title-font);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .table th:last-child {
      text-align: right;
    }

    .table td {
      padding: 10px 16px;
      border-bottom: 1px solid var(--smoke-color3);
      font-size: 14px;
      color: var(--body-color);
    }

    .table td:last-child {
      text-align: right;
      font-weight: 600;
      color: var(--title-color);
      font-variant-numeric: tabular-nums;
    }

    .table tbody tr:hover td {
      background: var(--smoke-color);
    }

    .table tr.total-row td {
      font-weight: 900;
      font-size: 15px;
      background: var(--gray-color);
      color: var(--theme-dark);
      border-bottom: none;
      border-top: 2px solid var(--theme-color2);
    }

    .table tr.total-row td:last-child {
      color: var(--theme-color);
      font-size: 17px;
    }

    /* =========================
       PROCESS STEPS
    ========================= */
    .steps {
      display: grid;
      gap: 16px;
      counter-reset: step-counter;
    }

    .step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      background: var(--white-color);
      padding: 24px 28px;
      border-radius: 14px;
      border: 1px solid var(--th-border-color);
      box-shadow: 0 2px 12px rgba(75, 20, 109, 0.04);
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .step:hover {
      border-color: var(--hairline);
      box-shadow: 0 8px 28px rgba(75, 20, 109, 0.08);
    }

    .step-number {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--theme-color), var(--theme-dark));
      color: var(--gold-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--title-font);
      font-weight: 900;
      font-size: 16px;
      box-shadow: 0 4px 12px rgba(75, 20, 109, 0.25);
    }

    .step strong {
      display: block;
      font-size: 17px;
      font-weight: 800;
      margin-bottom: 4px;
      color: var(--title-color);
    }

    .step p {
      margin: 0;
      font-size: 15px;
      color: var(--body-color);
    }
    /* =========================
       CTA
    ========================= */
    .cta {
      position: relative;
      background: linear-gradient(135deg, var(--theme-dark) 0%, var(--theme-color) 50%, var(--black-color4) 100%);
      color: var(--white-color);
      text-align: center;
      padding: 72px 40px;
      border-radius: 20px;
      overflow: hidden;
    }

    .cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 155, 60, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(230, 200, 122, 0.1) 0%, transparent 55%);
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
    }

    .cta h2 {
      font-size: clamp(26px, 4vw, 34px);
      font-weight: 900;
      margin: 0 0 14px;
      color: var(--white-color);
    }

    .cta p {
      max-width: 600px;
      margin: 0 auto 28px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
    }

    .cta-btn {
      display: inline-block;
      padding: 14px 36px;
      background: linear-gradient(135deg, var(--theme-color2), var(--gold-light));
      color: var(--theme-dark);
      font-family: var(--title-font);
      font-weight: 800;
      font-size: 15px;
      letter-spacing: 0.04em;
      border-radius: 50px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      box-shadow: 0 6px 20px rgba(200, 155, 60, 0.35);
    }

    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(200, 155, 60, 0.45);
      color: var(--theme-dark);
    }

    /* =========================
       FOOTER
    ========================= */
    .page-footer {
      background: var(--black-color3);
      color: rgba(255, 255, 255, 0.55);
      text-align: center;
      padding: 20px 0;
      font-size: 12px;
      border-top: 2px solid var(--theme-color2);
    }

    .page-footer strong {
      color: var(--gold-light);
      font-weight: 700;
    }

    .page-footer a {
      color: var(--gold-light);
    }

    /* =========================
       RESPONSIVE
    ========================= */
    @media (max-width: 992px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .hero-content {
        text-align: center;
      }

      .hero p {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-stats {
        justify-content: center;
      }

      .hero-image {
        height: 240px;
      }

      .split-2 {
        grid-template-columns: 1fr;
      }

      .steps {
        grid-template-columns: 1fr 1fr;
      }

      .list ul {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
      section {
        padding: var(--section-space-mobile) 0;
      }

      .steps {
        grid-template-columns: 1fr;
      }

      .hero {
        padding: 36px 0;
      }

      .hero-image {
        height: 200px;
      }

      .cta {
        padding: 32px 20px;
      }
    }