/* Extracted from reseller-hosting.html inline <style> block 03. */
    .webystrata_white_control_section,
    .webystrata_white_control_section * {
      box-sizing: border-box;
    }

    .webystrata_white_control_section {
      --webystrata_blue: #075bd8;
      --webystrata_blue_dark: #0648ac;
      --webystrata_blue_soft: #eef5ff;
      --webystrata_ink: #0f172a;
      --webystrata_text: #475569;
      --webystrata_muted: #64748b;
      --webystrata_line: #dce6f3;
      --webystrata_line_soft: #e8eef7;

      width: 100%;
      padding: 46px 0;
      background: #ffffff;
      color: var(--webystrata_ink);
      font-family: "DM Sans", "Inter", Arial, sans-serif;
      overflow: hidden;
    }

    .webystrata_white_control_container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .webystrata_white_control_panel {
      position: relative;
      background: #ffffff;
      border: 1px solid var(--webystrata_line);
      border-radius: 30px;
      padding: 28px;
      overflow: hidden;
    }

    .webystrata_white_control_panel::before {
      content: "";
      position: absolute;
      left: 28px;
      right: 28px;
      top: 0;
      height: 4px;
      border-radius: 0 0 999px 999px;
      background: var(--webystrata_blue);
      z-index: 2;
    }

    .webystrata_white_control_panel::after {
      content: "";
      position: absolute;
      top: -90%;
      left: -90%;
      width: 42%;
      height: 300%;
      background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(7,91,216,0.025) 35%,
        rgba(7,91,216,0.10) 50%,
        rgba(7,91,216,0.025) 65%,
        rgba(255,255,255,0) 100%
      );
      transform: skewX(-22deg);
      pointer-events: none;
      transition: left 0.85s ease;
      z-index: 1;
    }

    .webystrata_white_control_panel:hover::after {
      left: 130%;
    }

    .webystrata_white_control_header,
    .webystrata_white_control_grid {
      position: relative;
      z-index: 3;
    }

    .webystrata_white_control_header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 22px;
      align-items: end;
      margin-bottom: 24px;
    }

    .webystrata_white_control_badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 0 15px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid #cfe0ff;
      color: var(--webystrata_blue);
      font-size: 10.5px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: 0.75px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .webystrata_white_control_title {
      max-width: 760px;
      margin: 0;
      color: var(--webystrata_ink);
      font-size: clamp(30px, 3.4vw, 50px);
      line-height: 0.98;
      letter-spacing: -2px;
      font-weight: 900;
    }

    .webystrata_white_control_title span {
      color: var(--webystrata_blue);
    }

    .webystrata_white_control_subtitle {
      max-width: 760px;
      margin: 16px 0 0;
      color: var(--webystrata_text);
      font-size: 15.5px;
      line-height: 1.62;
      font-weight: 500;
    }

    .webystrata_white_control_note {
      min-height: 132px;
      padding: 20px;
      border-radius: 22px;
      background: #ffffff;
      border: 1px solid var(--webystrata_line_soft);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .webystrata_white_control_note strong {
      display: block;
      color: var(--webystrata_blue);
      font-size: 11px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: 0.75px;
      text-transform: uppercase;
    }

    .webystrata_white_control_note span {
      display: block;
      margin-top: 10px;
      color: var(--webystrata_ink);
      font-size: 15px;
      line-height: 1.45;
      font-weight: 800;
      letter-spacing: -0.2px;
    }

    .webystrata_white_control_grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .webystrata_white_control_card {
      position: relative;
      min-height: 190px;
      padding: 22px;
      border-radius: 24px;
      background: #ffffff;
      border: 1px solid var(--webystrata_line);
      overflow: hidden;
      transition: transform 0.24s ease, border-color 0.24s ease;
    }

    .webystrata_white_control_card:hover {
      transform: translateY(-3px);
      border-color: #bfd5f8;
    }

    .webystrata_white_control_card::before {
      content: "";
      position: absolute;
      left: 20px;
      right: 20px;
      top: 0;
      height: 3px;
      border-radius: 0 0 999px 999px;
      background: var(--webystrata_blue);
      opacity: 0;
      transition: opacity 0.24s ease;
      z-index: 2;
    }

    .webystrata_white_control_card:hover::before {
      opacity: 1;
    }

    .webystrata_white_control_card::after {
      content: "";
      position: absolute;
      top: -90%;
      left: -90%;
      width: 42%;
      height: 300%;
      background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(7,91,216,0.025) 35%,
        rgba(7,91,216,0.10) 50%,
        rgba(7,91,216,0.025) 65%,
        rgba(255,255,255,0) 100%
      );
      transform: skewX(-22deg);
      pointer-events: none;
      transition: left 0.85s ease;
      z-index: 1;
    }

    .webystrata_white_control_card:hover::after {
      left: 130%;
    }

    .webystrata_white_control_icon,
    .webystrata_white_control_card h3,
    .webystrata_white_control_card p {
      position: relative;
      z-index: 3;
    }

    .webystrata_white_control_icon {
      width: 52px;
      height: 52px;
      border-radius: 17px;
      background: var(--webystrata_blue_soft);
      border: 1px solid #cfe0ff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
    }

    .webystrata_white_control_icon svg {
      width: 25px;
      height: 25px;
      fill: var(--webystrata_blue);
    }

    .webystrata_white_control_card h3 {
      margin: 0;
      color: var(--webystrata_ink);
      font-size: 20px;
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: -0.7px;
    }

    .webystrata_white_control_card p {
      margin: 10px 0 0;
      color: var(--webystrata_text);
      font-size: 13.8px;
      line-height: 1.52;
      font-weight: 500;
    }

    @media (max-width: 1120px) {
      .webystrata_white_control_header {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .webystrata_white_control_note {
        min-height: auto;
      }

      .webystrata_white_control_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .webystrata_white_control_section {
        padding: 36px 0;
      }

      .webystrata_white_control_container {
        padding: 0 16px;
      }

      .webystrata_white_control_panel {
        padding: 22px;
        border-radius: 24px;
      }

      .webystrata_white_control_title {
        font-size: 34px;
        line-height: 1;
        letter-spacing: -1.5px;
      }

      .webystrata_white_control_subtitle {
        font-size: 14.8px;
        line-height: 1.58;
      }

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

      .webystrata_white_control_card {
        min-height: auto;
        padding: 22px;
        border-radius: 22px;
      }
    }
