.wim-audit {
    --wim-yellow: #F7A400;
    --wim-yellow-2: #ffbd2e;
    --wim-blue: #191D88;
    --wim-heading: #14176C;
    --wim-dark-blue: #0E104B;
    --wim-text: #3E4073;
    --wim-muted: #6f7199;
    --wim-white: #ffffff;
    --wim-cream: #FFFBF3;
    --wim-soft-blue: #ECF6FA;
    --wim-border: #CFDDE2;
    --wim-shadow: 0 18px 45px rgba(20, 23, 108, 0.12);
    font-family: Inter, Arial, sans-serif;
    color: var(--wim-text);
    overflow: hidden;
  }

  .wim-audit * {
    box-sizing: border-box;
  }

  .wim-audit a {
    text-decoration: none;
  }

  .wim-audit .wim-container {
    width: min(1170px, calc(100% - 30px));
    margin: 0 auto;
  }

  .wim-audit .wim-section {
    padding: 90px 0;
    position: relative;
  }

  .wim-audit .wim-section.wim-bg-cream {
    background: var(--wim-cream);
  }

  .wim-audit .wim-section.wim-bg-soft {
    background: var(--wim-soft-blue);
  }

  .wim-audit .wim-section-title {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
  }

  .wim-audit .wim-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--wim-yellow);
    font-family: Outfit, Inter, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .wim-audit .wim-subtitle::before,
  .wim-audit .wim-subtitle::after {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 30px;
    background: var(--wim-yellow);
  }

  .wim-audit h1,
  .wim-audit h2,
  .wim-audit h3 {
    font-family: Outfit, Inter, sans-serif;
    color: var(--wim-heading);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
  }

  .wim-audit h1 {
    font-size: clamp(42px, 5vw, 68px);
    letter-spacing: -1.5px;
    margin-bottom: 20px;
  }

  .wim-audit h2 {
    font-size: clamp(31px, 3.6vw, 46px);
    letter-spacing: -0.8px;
    margin-bottom: 14px;
  }

  .wim-audit h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .wim-audit p {
    color: var(--wim-text);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 16px;
  }

  .wim-audit .wim-lead {
    font-size: 18px;
    color: var(--wim-muted);
  }

  .wim-audit .wim-highlight {
    color: var(--wim-yellow);
  }

  .wim-audit .wim-btn-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 28px;
  }

  .wim-audit .wim-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 16px 26px;
    border-radius: 999px;
    font-family: Outfit, Inter, sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s ease;
    border: 2px solid transparent;
  }

  .wim-audit .wim-btn-primary {
    background: var(--wim-yellow);
    color: var(--wim-dark-blue);
    box-shadow: 0 14px 28px rgba(247, 164, 0, 0.28);
  }

  .wim-audit .wim-btn-primary:hover {
    background: var(--wim-heading);
    color: var(--wim-white);
    transform: translateY(-2px);
  }

  .wim-audit .wim-btn-secondary {
    background: var(--wim-heading);
    color: var(--wim-white);
    box-shadow: 0 14px 28px rgba(20, 23, 108, 0.18);
  }

  .wim-audit .wim-btn-secondary:hover {
    background: var(--wim-yellow);
    color: var(--wim-dark-blue);
    transform: translateY(-2px);
  }

  .wim-audit .wim-hero {
    padding: 95px 0;
    background:
      radial-gradient(circle at 12% 18%, rgba(247,164,0,0.18), transparent 24%),
      radial-gradient(circle at 88% 16%, rgba(25,29,136,0.13), transparent 30%),
      linear-gradient(135deg, #FFFBF3 0%, #FFFFFF 48%, #ECF6FA 100%);
    position: relative;
  }

  .wim-audit .wim-hero::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -110px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(247,164,0,0.14);
  }

  .wim-audit .wim-hero::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -150px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(25,29,136,0.10);
  }

  .wim-audit .wim-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 42px;
    align-items: center;
  }

  .wim-audit .wim-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--wim-yellow);
    font-family: Outfit, Inter, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
  }

  .wim-audit .wim-hero-kicker::before {
    content: "";
    width: 36px;
    height: 3px;
    border-radius: 30px;
    background: var(--wim-yellow);
  }

  .wim-audit .wim-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
  }

  .wim-audit .wim-stat {
    background: var(--wim-white);
    border: 1px solid var(--wim-border);
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: var(--wim-shadow);
    overflow: hidden;
    position: relative;
  }

  .wim-audit .wim-stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--wim-yellow);
  }

  .wim-audit .wim-stat strong {
    display: block;
    color: var(--wim-heading);
    font-family: Outfit, Inter, sans-serif;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 6px;
  }

  .wim-audit .wim-stat span {
    color: var(--wim-muted);
    font-size: 13px;
    font-weight: 700;
  }

  .wim-audit .wim-price-card {
    position: relative;
    padding: 34px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--wim-blue), var(--wim-heading));
    color: var(--wim-white);
    box-shadow: 0 24px 60px rgba(20, 23, 108, 0.24);
    overflow: hidden;
  }

  .wim-audit .wim-price-card::after {
    content: "";
    position: absolute;
    right: -55px;
    top: -55px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(247,164,0,0.24);
  }

  .wim-audit .wim-offer-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: var(--wim-yellow-2);
    font-family: Outfit, Inter, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 22px;
  }

  .wim-audit .wim-price-card h2,
  .wim-audit .wim-price-card p {
    position: relative;
    z-index: 1;
    color: var(--wim-white);
  }

  .wim-audit .wim-price-card h2 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .wim-audit .wim-price-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
  }

  .wim-audit .wim-old-price {
    font-family: Outfit, Inter, sans-serif;
    color: rgba(255,255,255,0.68);
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    text-decoration: line-through;
    margin-bottom: 10px;
  }

  .wim-audit .wim-new-price {
    font-family: Outfit, Inter, sans-serif;
    color: var(--wim-yellow-2);
    font-size: 88px;
    line-height: 0.88;
    font-weight: 800;
    letter-spacing: -3px;
  }

  .wim-audit .wim-new-price small {
    font-size: 30px;
    letter-spacing: 0;
  }



  .wim-audit .wim-price-card .wim-save-line,
  .wim-audit .wim-price-card .wim-save-line strong {
    color: #ffffff !important;
  }

  .wim-audit .wim-list {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
  }

  .wim-audit .wim-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
  }

  .wim-audit .wim-check {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--wim-yellow-2);
    color: var(--wim-dark-blue);
    font-size: 13px;
    font-weight: 800;
  }

  .wim-audit .wim-problem-grid,
  .wim-audit .wim-card-grid,
  .wim-audit .wim-deliver-grid,
  .wim-audit .wim-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .wim-audit .wim-problem {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 82px;
    padding: 18px;
    border-radius: 15px;
    background: var(--wim-white);
    border: 1px solid var(--wim-border);
    box-shadow: 0 12px 32px rgba(20, 23, 108, 0.07);
    color: var(--wim-heading);
    font-family: Outfit, Inter, sans-serif;
    font-weight: 700;
  }

  .wim-audit .wim-cross {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: var(--wim-yellow);
    color: var(--wim-dark-blue);
    font-size: 15px;
    font-weight: 800;
  }

  .wim-audit .wim-card,
  .wim-audit .wim-deliver,
  .wim-audit .wim-step,
  .wim-audit .wim-faq,
  .wim-audit .wim-perfect {
    background: var(--wim-white);
    border: 1px solid var(--wim-border);
    box-shadow: 0 15px 38px rgba(20, 23, 108, 0.08);
  }

  .wim-audit .wim-card,
  .wim-audit .wim-deliver,
  .wim-audit .wim-faq {
    padding: 28px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
  }

  .wim-audit .wim-card::before,
  .wim-audit .wim-deliver::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--wim-yellow), var(--wim-blue));
  }

  .wim-audit .wim-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 15px;
    background: var(--wim-cream);
    color: var(--wim-yellow);
    border: 1px solid rgba(247,164,0,0.25);
    font-size: 28px;
    line-height: 1;
  }

  .wim-audit .wim-card ul,
  .wim-audit .wim-deliver ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
  }

  .wim-audit .wim-card li,
  .wim-audit .wim-deliver li {
    position: relative;
    padding-left: 21px;
    color: var(--wim-text);
    font-size: 15px;
  }

  .wim-audit .wim-card li::before,
  .wim-audit .wim-deliver li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wim-yellow);
  }

  .wim-audit .wim-ai-box {
    margin-top: 32px;
    padding: 34px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--wim-blue), var(--wim-heading));
    color: var(--wim-white);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 26px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(20, 23, 108, 0.16);
    position: relative;
    overflow: hidden;
  }

  .wim-audit .wim-ai-box::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(247,164,0,0.22);
  }

  .wim-audit .wim-ai-box h3,
  .wim-audit .wim-ai-box p {
    color: var(--wim-white);
  }

  .wim-audit .wim-ai-box p {
    color: rgba(255,255,255,0.82);
    margin-bottom: 0;
  }

  .wim-audit .wim-platforms {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .wim-audit .wim-chip {
    display: inline-flex;
    border-radius: 999px;
    padding: 9px 13px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: var(--wim-white);
    font-size: 13px;
    font-weight: 700;
  }

  .wim-audit .wim-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    counter-reset: wim-step;
  }

  .wim-audit .wim-step {
    padding: 28px;
    border-radius: 20px;
  }

  .wim-audit .wim-step::before {
    counter-increment: wim-step;
    content: "0" counter(wim-step);
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--wim-yellow);
    color: var(--wim-dark-blue);
    font-family: Outfit, Inter, sans-serif;
    font-size: 17px;
    font-weight: 800;
  }

  .wim-audit .wim-step p,
  .wim-audit .wim-faq p {
    color: var(--wim-muted);
    font-size: 15px;
    margin-bottom: 0;
  }

  .wim-audit .wim-perfect-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }

  .wim-audit .wim-perfect {
    min-height: 78px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 16px 12px;
    border-radius: 16px;
    color: var(--wim-heading);
    font-family: Outfit, Inter, sans-serif;
    font-weight: 700;
  }


  .wim-audit .wim-testimonials-section {
    background:
      radial-gradient(circle at 12% 20%, rgba(247,164,0,0.18), transparent 24%),
      linear-gradient(135deg, #171A7C 0%, var(--wim-blue) 55%, var(--wim-heading) 100%);
  }

  .wim-audit .wim-testimonials-title h2,
  .wim-audit .wim-testimonials-title .wim-lead {
    color: var(--wim-white);
  }

  .wim-audit .wim-testimonials-title .wim-lead {
    color: rgba(255,255,255,0.82);
  }

  .wim-audit .wim-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .wim-audit .wim-testimonial-card {
    background: var(--wim-white);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 42px rgba(14,16,75,0.22);
    position: relative;
    overflow: hidden;
    min-height: 100%;
  }

  .wim-audit .wim-testimonial-card::before {
    content: "“";
    position: absolute;
    right: 18px;
    bottom: -30px;
    font-family: Georgia, serif;
    font-size: 118px;
    line-height: 1;
    color: rgba(247,164,0,0.14);
  }

  .wim-audit .wim-testimonial-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }

  .wim-audit .wim-testimonial-avatar {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--wim-yellow);
    color: var(--wim-dark-blue);
    font-family: Outfit, Inter, sans-serif;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(247,164,0,0.25);
  }

  .wim-audit .wim-testimonial-author strong {
    display: block;
    color: var(--wim-heading);
    font-family: Outfit, Inter, sans-serif;
    font-size: 18px;
    line-height: 1.2;
  }

  .wim-audit .wim-testimonial-author span {
    display: block;
    color: var(--wim-muted);
    font-size: 13px;
    line-height: 1.35;
    margin-top: 3px;
  }

  .wim-audit .wim-stars {
    color: var(--wim-yellow);
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }

  .wim-audit .wim-testimonial-card p {
    position: relative;
    z-index: 1;
    color: var(--wim-text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
  }

  .wim-audit .wim-offer-deal {
    border-radius: 24px;
    padding: 34px;
    background: var(--wim-white);
    color: var(--wim-text);
    box-shadow: 0 20px 50px rgba(14,16,75,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
  }

  .wim-audit .wim-offer-deal::after {
    content: "";
    position: absolute;
    right: -55px;
    top: -55px;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: rgba(247,164,0,0.18);
  }

  .wim-audit .wim-offer-deal h3 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .wim-audit .wim-deal-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(247,164,0,0.16);
    color: var(--wim-heading);
    font-family: Outfit, Inter, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
  }

  .wim-audit .wim-deal-price {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin: 12px 0 18px;
  }

  .wim-audit .wim-deal-old {
    color: var(--wim-muted);
    font-family: Outfit, Inter, sans-serif;
    font-size: 30px;
    font-weight: 800;
    text-decoration: line-through;
    margin-bottom: 8px;
  }

  .wim-audit .wim-deal-new {
    color: var(--wim-yellow);
    font-family: Outfit, Inter, sans-serif;
    font-size: 82px;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -3px;
  }

  .wim-audit .wim-deal-new small {
    font-size: 28px;
    letter-spacing: 0;
  }

  .wim-audit .wim-deal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    gap: 12px;
  }

  .wim-audit .wim-deal-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--wim-heading);
    font-weight: 700;
  }

  .wim-audit .wim-offer-section {
    padding: 90px 0;
    background:
      radial-gradient(circle at 18% 20%, rgba(247,164,0,0.18), transparent 23%),
      linear-gradient(135deg, var(--wim-blue), var(--wim-heading));
    color: var(--wim-white);
  }

  .wim-audit .wim-offer-grid {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 30px;
    align-items: stretch;
  }

  .wim-audit .wim-offer-copy,
  .wim-audit .wim-form-card {
    border-radius: 24px;
    padding: 38px;
  }

  .wim-audit .wim-offer-copy {
    max-width: none;
    margin: 0;
    text-align: left;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
  }

  .wim-audit .wim-offer-copy h2,
  .wim-audit .wim-offer-copy p {
    color: var(--wim-white);
  }

  .wim-audit .wim-offer-copy p {
    color: rgba(255,255,255,0.83);
    font-size: 18px;
  }

  .wim-audit .wim-offer-copy .wim-btn-wrap {
    justify-content: flex-start;
  }

  .wim-audit .wim-guarantees {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin: 28px 0 0;
    max-width: none;
  }

  .wim-audit .wim-guarantee {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 13px;
    border-radius: 14px;
    background: rgba(255,255,255,0.10);
    color: var(--wim-white);
    border: 1px solid rgba(255,255,255,0.13);
    font-weight: 700;
  }

  .wim-audit .wim-form-card {
    background: var(--wim-white);
    color: var(--wim-text);
    box-shadow: 0 20px 50px rgba(14,16,75,0.18);
  }

  .wim-audit .wim-form-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .wim-audit .wim-form-card label {
    display: block;
    margin: 13px 0 7px;
    color: var(--wim-heading);
    font-weight: 700;
  }

  .wim-audit .wim-form-card input,
  .wim-audit .wim-form-card textarea {
    width: 100%;
    border: 1px solid var(--wim-border);
    background: var(--wim-cream);
    color: var(--wim-heading);
    border-radius: 12px;
    padding: 14px 15px;
    outline: none;
    font: inherit;
  }

  .wim-audit .wim-form-card textarea {
    min-height: 96px;
    resize: vertical;
  }

  .wim-audit .wim-form-card input:focus,
  .wim-audit .wim-form-card textarea:focus {
    border-color: var(--wim-yellow);
    background: var(--wim-white);
    box-shadow: 0 0 0 4px rgba(247,164,0,0.13);
  }

  .wim-audit .wim-note {
    color: var(--wim-muted);
    font-size: 13px;
    margin-top: 12px;
    margin-bottom: 0;
  }

  .wim-audit .wim-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wim-audit .wim-faq {
    box-shadow: 0 12px 30px rgba(20, 23, 108, 0.07);
  }



  .wim-audit .wim-hero h1 {
    color: var(--wim-heading);
  }

  .wim-audit .wim-hero .wim-lead,
  .wim-audit .wim-hero p {
    color: var(--wim-text);
  }

  .wim-audit .wim-hero-points {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
    max-width: 700px;
  }

  .wim-audit .wim-hero-points li {
    background: var(--wim-white);
    border: 1px solid var(--wim-border);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 10px 26px rgba(20,23,108,0.07);
  }

  .wim-audit .wim-hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--wim-text);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
  }

  .wim-audit .wim-hero-points li::before {
    content: "✓";
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--wim-yellow);
    color: var(--wim-dark-blue);
    font-size: 13px;
    font-weight: 900;
    margin-top: 1px;
  }

  .wim-audit .wim-before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: stretch;
  }

  .wim-audit .wim-ba-card {
    background: var(--wim-white);
    border: 1px solid var(--wim-border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(20,23,108,0.10);
    position: relative;
    overflow: hidden;
  }

  .wim-audit .wim-ba-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
  }

  .wim-audit .wim-ba-before::before {
    background: #d9dde8;
  }

  .wim-audit .wim-ba-after::before {
    background: linear-gradient(90deg, var(--wim-yellow), var(--wim-blue));
  }

  .wim-audit .wim-ba-label {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    font-family: Outfit, Inter, sans-serif;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 18px;
  }

  .wim-audit .wim-ba-before .wim-ba-label {
    background: #f1f3f8;
    color: #5f6688;
  }

  .wim-audit .wim-ba-after .wim-ba-label {
    background: rgba(247,164,0,0.16);
    color: var(--wim-heading);
  }

  .wim-audit .wim-ba-image {
    min-height: 260px;
    border-radius: 20px;
    padding: 20px;
    display: grid;
    align-content: center;
    gap: 14px;
    border: 1px solid rgba(207,221,226,0.85);
  }

  .wim-audit .wim-ba-before .wim-ba-image {
    background: linear-gradient(135deg, #f2f4f8, #ffffff);
    filter: grayscale(0.38);
  }

  .wim-audit .wim-ba-after .wim-ba-image {
    background:
      radial-gradient(circle at 80% 10%, rgba(247,164,0,0.20), transparent 26%),
      linear-gradient(135deg, #eef6ff, #ffffff);
  }

  .wim-audit .wim-ba-browser {
    background: var(--wim-white);
    border: 1px solid var(--wim-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(20,23,108,0.10);
  }

  .wim-audit .wim-ba-top {
    height: 32px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    background: var(--wim-soft-blue);
  }

  .wim-audit .wim-ba-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c8d2e8;
  }

  .wim-audit .wim-ba-screen {
    padding: 18px;
    display: grid;
    gap: 10px;
  }

  .wim-audit .wim-ba-line {
    height: 10px;
    border-radius: 20px;
    background: #dbe3ef;
  }

  .wim-audit .wim-ba-before .wim-ba-line.bad {
    width: 82%;
    background: #c6ccda;
  }

  .wim-audit .wim-ba-before .wim-ba-line.short {
    width: 52%;
  }

  .wim-audit .wim-ba-after .wim-ba-line.good {
    width: 92%;
    background: var(--wim-yellow);
  }

  .wim-audit .wim-ba-after .wim-ba-line.short {
    width: 68%;
    background: #91a7ff;
  }

  .wim-audit .wim-ba-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
  }

  .wim-audit .wim-ba-metric {
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    font-family: Outfit, Inter, sans-serif;
    font-weight: 800;
    background: var(--wim-white);
    border: 1px solid var(--wim-border);
    color: var(--wim-heading);
  }

  .wim-audit .wim-ba-metric span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: var(--wim-muted);
    font-family: Inter, Arial, sans-serif;
    font-weight: 700;
  }

  .wim-audit .wim-client-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 850px;
    margin: 0 auto;
  }

  .wim-audit .wim-client-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px;
    border-radius: 22px;
    background: var(--wim-white);
    border: 1px solid var(--wim-border);
    box-shadow: 0 16px 38px rgba(20,23,108,0.09);
  }

  .wim-audit .wim-client-logo {
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--wim-blue), var(--wim-heading));
    color: var(--wim-yellow);
    font-family: Outfit, Inter, sans-serif;
    font-size: 24px;
    font-weight: 900;
  }

  .wim-audit .wim-client-card h3 {
    margin-bottom: 4px;
  }

  .wim-audit .wim-client-card a {
    color: var(--wim-yellow);
    font-weight: 800;
  }


  .wim-audit .wim-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
  }

  .wim-audit .wim-proof-card {
    background: var(--wim-white);
    border: 1px solid var(--wim-border);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(20,23,108,0.10);
    overflow: hidden;
  }

  .wim-audit .wim-proof-card h3 {
    margin: 6px 8px 12px;
  }

  .wim-audit .wim-proof-card p {
    margin: 0 8px 16px;
    color: var(--wim-muted);
  }

  .wim-audit .wim-proof-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid var(--wim-border);
    background: var(--wim-soft-blue);
  }

  .wim-audit .wim-proof-note {
    margin-top: 22px;
    text-align: center;
    color: var(--wim-muted);
    font-size: 14px;
  }
  @media (max-width: 1020px) {
    .wim-audit .wim-hero-grid,
    .wim-audit .wim-ai-box,
    .wim-audit .wim-offer-grid,
    .wim-audit .wim-before-after-grid,
    .wim-audit .wim-proof-grid {
      grid-template-columns: 1fr;
    }

    .wim-audit .wim-problem-grid,
    .wim-audit .wim-card-grid,
    .wim-audit .wim-deliver-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wim-audit .wim-steps {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wim-audit .wim-perfect-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wim-audit .wim-client-grid {
      grid-template-columns: 1fr;
    }

    .wim-audit .wim-testimonial-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 680px) {
    .wim-audit .wim-section,
    .wim-audit .wim-hero,
    .wim-audit .wim-offer-section {
      padding: 60px 0;
    }

    .wim-audit .wim-stats,
    .wim-audit .wim-problem-grid,
    .wim-audit .wim-card-grid,
    .wim-audit .wim-deliver-grid,
    .wim-audit .wim-steps,
    .wim-audit .wim-perfect-grid,
    .wim-audit .wim-faq-grid,
    .wim-audit .wim-guarantees,
    .wim-audit .wim-testimonial-grid {
      grid-template-columns: 1fr;
    }

    .wim-audit .wim-price-card,
    .wim-audit .wim-ai-box,
    .wim-audit .wim-offer-copy,
    .wim-audit .wim-form-card {
      padding: 26px;
    }

    .wim-audit .wim-new-price {
      font-size: 72px;
    }

    .wim-audit .wim-btn {
      width: 100%;
    }
  }

/* Live page only: hide default contact/enquiry form if theme auto-adds it */
body#page-16143 .shortcode-contact-form,
body#page-16143 .panel.panel-default:has(.shortcode-contact-form) {
  display: none !important;
}

/* Live page only: if old stripped request form text remains, hide it */
body#page-16143 .wim-audit .wim-offer-grid > h3,
body#page-16143 .wim-audit .wim-offer-grid > h3 + p,
body#page-16143 .wim-audit .wim-offer-grid > h3 + p + p {
  display: none !important;
}

/* Page width fix for Web Infomatrix CMS container */
body#page-16143 {
  overflow-x: hidden !important;
}

body#page-16143 .ck-content > .wim-audit,
body#page-16143 .wim-audit {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow-x: hidden !important;
}

body#page-16143 .wim-audit .wim-container {
  width: min(1170px, calc(100% - 30px)) !important;
  max-width: 1170px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body#page-16143 .wim-audit .wim-section,
body#page-16143 .wim-audit .wim-hero,
body#page-16143 .wim-audit .wim-offer-section {
  width: 100% !important;
}

@media (max-width: 680px) {
  body#page-16143 .wim-audit .wim-container {
    width: calc(100% - 24px) !important;
  }
}