 :root {
      --blue: #243b78;
      --text: #374151;
      --muted: #6b7280;
      --green: #7ad800;
      --green-dark: #67be00;
      --card-border: #e5e7eb;
      --pill-bg: #eef2ff;
      --pill-border: #c7d2fe;
      --shadow: 0 10px 26px rgba(36, 59, 120, 0.06);
      --info-bg: #f8fafc;
      --white: #ffffff;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: #fff;
      color: var(--text);
    }

    .wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 40px 32px 56px;
    }

    /* Hero */
    .hero {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 28px;
      align-items: stretch;
      min-height: 520px;
    }

    .hero__content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-right: 10px;
    }

    .hero__title {
      margin: 0 0 26px;
      font-size: 46px;
      line-height: 1.08;
      color: var(--blue);
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .hero__subtitle {
      margin: 0 0 10px;
      font-size: 24px;
      line-height: 1.25;
      color: #111827;
      font-weight: 400;
    }

    .hero__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 18px;
    }

    .hero__tags span {
      position: relative;
      padding-left: 18px;
    }

    .hero__tags span::before {
      content: "•";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--blue);
    }

    .hero__tags span:first-child {
      padding-left: 0;
    }

    .hero__tags span:first-child::before {
      content: "";
    }

    .hero__text {
      margin: 0 0 32px;
      max-width: 860px;
      font-size: 20px;
      line-height: 1.5;
      color: #4b5563;
    }

    .hero__cta {
      display: inline-block;
      width: fit-content;
      padding: 16px 34px;
      border-radius: 10px;
      background: var(--green);
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      font-weight: 700;
      transition: 0.2s ease;
    }

    .hero__cta:hover {
      transform: translateY(-1px);
      background: var(--green-dark);
    }

    .hero__image {
      border-radius: 24px;
      overflow: hidden;
      min-height: 520px;
      background: linear-gradient(135deg, #f5f5f5, #d9d9d9);
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
    }

    .hero__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Section */
    .section {
      margin-top: 52px;
    }

    .section__title {
      margin: 0 0 14px;
      font-size: 34px;
      line-height: 1.2;
      color: var(--blue);
      font-weight: 700;
    }

    .section__lead {
      margin: 0 0 20px;
      max-width: 960px;
      font-size: 18px;
      line-height: 1.6;
      color: #4b5563;
    }

    /* Compact info block */
    .info-simple {
      background: var(--info-bg);
      border: 1px solid #e5e7eb;
      border-radius: 18px;
      padding: 20px 22px;
      margin-bottom: 24px;
    }

    .info-simple__title {
      margin: 0 0 8px;
      font-size: 20px;
      line-height: 1.2;
      color: var(--blue);
      font-weight: 700;
    }

    .info-simple__lead {
      margin: 0 0 12px;
      font-size: 15px;
      line-height: 1.55;
      color: #4b5563;
    }

    .info-simple__list {
      margin: 0;
      padding-left: 20px;
      display: grid;
      gap: 8px;
    }

    .info-simple__list li {
      font-size: 15px;
      line-height: 1.55;
      color: #374151;
    }

    .info-simple__list li.is-accent {
      color: var(--blue);
      font-weight: 700;
    }

    /* Tabs */
    .tabs {
      margin-top: 18px;
    }

    .tabs__nav {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    .tabs__btn {
      appearance: none;
      border: 1px solid var(--card-border);
      background: #f9fafb;
      color: var(--blue);
      padding: 14px 22px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .tabs__btn:hover {
      border-color: #cbd5e1;
      transform: translateY(-1px);
    }

    .tabs__btn.is-active {
      background: var(--green);
      border-color: var(--green);
      color: #fff;
    }

    .tabs__panel {
      display: none;
      animation: fadeIn 0.22s ease;
    }

    .tabs__panel.is-active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Tariff cards */
    .tariffs {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .tariff-card {
      background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
      border: 1px solid var(--card-border);
      border-left: 8px solid var(--green);
      border-radius: 22px;
      padding: 24px 24px 22px;
      box-shadow: var(--shadow);
      min-height: 190px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .tariff-card__top {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 14px;
      align-items: flex-start;
    }

    .tariff-card__title-block {
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-width: 0;
    }

    .tariff-card__name {
      margin: 0;
      font-size: 24px;
      line-height: 1.2;
      color: var(--blue);
      font-weight: 700;
    }

    .tariff-card__action {
      display: flex;
      justify-content: flex-start;
    }

    .tariff-card__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: auto;
      min-width: 105px;
      padding: 8px 14px;
      border: none;
      border-radius: 9px;
      background: var(--green);
      color: #fff!important;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: 0.2s ease;
    }

    .tariff-card__btn:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    /* price + button stack on right */
    .tariff-card__side {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
    }

    .tariff-card__price {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-width: 120px;
      white-space: nowrap;
      color: #111827;
      font-weight: 700;
      padding: 6px 12px;
      background: var(--pill-bg);
      border-radius: 14px;
      border: 1px solid var(--pill-border);
    }

    .tariff-card__price-value {
      font-size: 18px;
      font-weight: 700;
      color: #111827;
      line-height: 1.1;
    }

    .tariff-card__price-note {
      margin-top: 3px;
      font-size: 12px;
      line-height: 1.1;
      color: var(--muted);
      font-weight: 400;
    }

    .tariff-card__desc {
      margin: 0 0 16px;
      font-size: 16px;
      line-height: 1.6;
      color: var(--muted);
    }

    .tariff-card__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
    }

    .pill {
      display: inline-block;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--pill-bg);
      color: var(--blue);
      font-size: 13px;
      font-weight: 700;
    }

    /* Responsive */
    @media (max-width: 980px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero__image {
        min-height: 340px;
      }

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

      .hero__title {
        font-size: 36px;
      }
    }

    @media (max-width: 640px) {
      .wrap {
        padding: 20px 16px 40px;
      }

      .hero__title {
        font-size: 30px;
      }

      .hero__subtitle {
        font-size: 20px;
      }

      .hero__text,
      .section__lead,
      .info-simple__lead,
      .info-simple__list li {
        font-size: 14px;
      }

      .tabs__btn {
        width: 100%;
        text-align: center;
      }

      .tariff-card {
        padding: 20px;
      }

      .tariff-card__top {
        flex-direction: column;
      }

      .tariff-card__side {
        align-items: flex-start;
      }

      .tariff-card__price {
        width: fit-content;
        min-width: 0;
      }

      .info-simple {
        padding: 16px;
        border-radius: 14px;
      }

      .info-simple__title {
        font-size: 18px;
      }
    }