/* ===== HERO ===== */
    .page-hero {
      background: var(--navy);
      padding: 52px 0;
    }
    .page-hero__inner {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 48px;
      align-items: center;
    }
    .page-hero h1 {
      font-size: 40px;
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .page-hero__text {
      font-size: 14px;
      color: rgba(255,255,255,.65);
      line-height: 1.7;
      margin-bottom: 10px;
    }
    .page-hero__text a { color: var(--blue); }
    .page-hero__img {
      border-radius: var(--radius);
      overflow: hidden;
    }
    .page-hero__img-ph {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, #162d50 0%, #1B93D4 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 80px;
      color: rgba(255,255,255,.2);
    }

    /* ===== USP STRIP ===== */
    .usp-strip { background: var(--gray-bg); border-bottom: 1px solid var(--border); }
    .usp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .usp-item {
      padding: 24px 28px;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .usp-item:last-child { border-right: none; }
    .usp-num {
      font-size: 11px;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 1px;
    }
    .usp-val {
      font-size: 18px;
      font-weight: 900;
      color: var(--navy);
      line-height: 1.2;
    }
    .usp-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.45;
    }

    /* ===== CONTENT WITH SIDEBAR ===== */
    .content-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 40px;
      align-items: start;
    }
    .sidebar {
      position: sticky;
      top: 80px;
    }
    .sidebar__title {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: .6px;
      margin-bottom: 12px;
    }
    .sidebar__nav {
      background: var(--gray-bg);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .sidebar__nav a {
      display: block;
      padding: 10px 16px;
      font-size: 13px;
      color: var(--text);
      border-bottom: 1px solid var(--border);
      transition: background .15s, color .15s;
      line-height: 1.4;
    }
    .sidebar__nav a:last-child { border-bottom: none; }
    .sidebar__nav a:hover { background: var(--white); color: var(--blue); }
    .sidebar__nav a.active { background: var(--blue); color: var(--white); }

    /* ===== PRICE TABLES ===== */
    .price-section { margin-bottom: 48px; }
    .price-section:last-child { margin-bottom: 0; }
    .price-section h2 {
      font-size: 24px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--border);
    }
    .price-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
    }
    .price-table thead th {
      background: var(--navy);
      color: var(--white);
      padding: 12px 18px;
      text-align: left;
      font-size: 13px;
      font-weight: 700;
    }
    .price-table thead th:last-child { text-align: right; width: 180px; }
    .price-table .group-row td {
      background: #e8edf3;
      padding: 10px 18px;
      font-weight: 800;
      font-size: 13px;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: .4px;
    }
    .price-table .subgroup-row td {
      background: var(--gray-bg);
      padding: 8px 18px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
      font-style: italic;
    }
    .price-table td {
      padding: 10px 18px;
      border-bottom: 1px solid var(--border);
      color: var(--text);
      vertical-align: middle;
    }
    .price-table tr:last-child td { border-bottom: none; }
    .price-table tr:not(.group-row):not(.subgroup-row):hover td { background: #f7f9fc; }
    .price-table .price-col {
      text-align: right;
      font-weight: 700;
      color: var(--navy);
      white-space: nowrap;
    }
    .price-table .price-free {
      color: #2e7d32;
      font-weight: 700;
    }

    /* ===== PROJECTS GRID ===== */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .project-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: box-shadow .2s;
    }
    .project-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); }
    .project-card__img {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, #1B3A65, #0D1E35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      color: rgba(255,255,255,.2);
    }
    .project-card__body { padding: 16px 18px; }
    .project-card__title {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.4;
      margin-bottom: 6px;
      display: block;
    }
    .project-card__title:hover { color: var(--blue); }
    .project-card__desc {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ===== CERTS ===== */
    .certs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .cert-card {
      background: var(--gray-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 16px;
      text-align: center;
      cursor: pointer;
      transition: border-color .2s;
    }
    .cert-card:hover { border-color: var(--blue); }
    .cert-card__icon {
      font-size: 40px;
      margin-bottom: 10px;
    }
    .cert-card__label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1200px) {
      .page-hero__inner { grid-template-columns: 1fr; }
      .page-hero__img { display: none; }
      .projects-grid { grid-template-columns: repeat(2, 1fr); }
      .certs-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 960px) {
      .usp-grid { grid-template-columns: repeat(2, 1fr); }
      .content-layout { grid-template-columns: 1fr; }
      .sidebar { position: static; }
      .sidebar__nav { display: flex; flex-wrap: wrap; }
      .sidebar__nav a { flex: 1 1 160px; border-right: 1px solid var(--border); }
    }
    @media (max-width: 640px) {
      .page-hero h1 { font-size: 28px; }
      .usp-grid { grid-template-columns: 1fr 1fr; }
      .projects-grid { grid-template-columns: 1fr; }
      .certs-grid { grid-template-columns: repeat(2, 1fr); }
      .price-table { font-size: 12px; }
      .price-table td, .price-table thead th { padding: 8px 10px; }
    }