/* ✅ TRUSTEDHOSTING.IN - WordPress Hosting Section (Isolated CSS) */
.trustedhosting-wordpress-hosting {
  position: relative;
  padding: 130px 0 110px;
  background: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-family: 'Inter', sans-serif;
}

/* Root Variables */
.trustedhosting-wordpress-hosting {
  --blue1: #007bff;
  --blue2: #005ce6;
  --text: #0a1633;
}

/* Background Grid */
.trustedhosting-wordpress-hosting .wp-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 92, 230, 0.03) 1px, transparent 1px),
                    linear-gradient(180deg, rgba(0, 92, 230, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: wpGridMove 22s linear infinite;
  z-index: 0;
}
@keyframes wpGridMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 80px 80px, 80px 80px; }
}

/* Glow */
.trustedhosting-wordpress-hosting .wp-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(0, 123, 255, 0.12), transparent 70%);
  filter: blur(70px);
  z-index: 0;
}

/* Wrapper */
.trustedhosting-wordpress-hosting .wp-wrap {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 80px;
}

/* Left Side */
.trustedhosting-wordpress-hosting .wp-left {
  flex: 1 1 550px;
  animation: fadeLeft 1.2s ease both;
}
.trustedhosting-wordpress-hosting .wp-kicker {
  display: inline-block;
  background: linear-gradient(90deg, var(--blue2), var(--blue1));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 8px 14px;
  border-radius: 10px;
  text-transform: uppercase;
  animation: glowPulse 5s infinite;
}
.trustedhosting-wordpress-hosting .wp-title {
  font-size: 35px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin: 22px 0 10px;
  animation: glowPulse 5s infinite;
}
@keyframes glowPulse {
  0%, 90% { text-shadow: none; }
  95% { text-shadow: 0 0 20px rgba(0, 102, 255, 0.6); }
  100% { text-shadow: none; }
}

.trustedhosting-wordpress-hosting .wp-offer {
  font-size: 25px;
  font-weight: 700;
  color: var(--blue1);
  margin-bottom: 25px;
  display: inline-block;
  background: linear-gradient(90deg, var(--blue1), var(--blue2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wpShine 7s linear infinite;
}
@keyframes wpShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.trustedhosting-wordpress-hosting .wp-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 35px;
  max-width: 95%;
}

/* Features List */
.trustedhosting-wordpress-hosting .wp-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 60px;
  margin-bottom: 45px;
}
.trustedhosting-wordpress-hosting .wp-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}
.trustedhosting-wordpress-hosting .wp-features img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(34%) sepia(100%) saturate(5121%) hue-rotate(204deg) brightness(96%) contrast(98%);
}

/* CTA */
.trustedhosting-wordpress-hosting .wp-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.trustedhosting-wordpress-hosting .wp-btn {
  background: linear-gradient(90deg, var(--blue1), var(--blue2));
  color: #fff;
  padding: 13px 38px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 102, 255, 0.25);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  animation: shineBtn 5s infinite;
}
.trustedhosting-wordpress-hosting .wp-btn:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

/* Timer Box */
.trustedhosting-wordpress-hosting .wp-timer-box {
  background: #f4f8ff;
  border: 2px solid #007bff;
  border-radius: 10px;
  padding: 10px 26px;
  font-weight: 700;
  font-size: 15px;
  color: #005ce6;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(0, 102, 255, 0.15);
  transition: all .3s ease;
}
.trustedhosting-wordpress-hosting .wp-timer-box:hover {
  box-shadow: 0 0 25px rgba(0, 102, 255, 0.35);
  transform: scale(1.05);
}

/* Right Side */
.trustedhosting-wordpress-hosting .wp-right {
  flex: 1 1 520px;
  position: relative;
  animation: fadeRight 1.2s ease both;
  text-align: center;
}
.trustedhosting-wordpress-hosting .wp-right img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  border-radius: 100%;
  animation: floatImage 5s ease-in-out infinite;
}
@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Feature Boxes */
.trustedhosting-wordpress-hosting .wp-feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
  text-align: center;
  perspective: 1000px;
}
.trustedhosting-wordpress-hosting .wp-feature-item {
  position: relative;
  background: #0b122a;
  background-image: radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.18) 0%, rgba(0, 0, 0, 0) 60%);
  border-radius: 18px;
  padding: 32px 18px 26px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 10px 30px rgba(0, 123, 255, 0.25);
  color: #fff;
  transform-style: preserve-3d;
  overflow: hidden;
  animation: cardPop .9s cubic-bezier(.16, 1, .3, 1) both;
}
.trustedhosting-wordpress-hosting .wp-feature-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(0, 123, 255, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
  transform: translate(-50%, -50%);
  filter: blur(50px);
  opacity: 0.15;
  animation: softPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes softPulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.4; }
}

/* Chip */
.trustedhosting-wordpress-hosting .wp-chip {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue1), var(--blue2));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.5);
  animation: chipFloat 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes chipFloat {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -4px); }
}

/* Gloss Effect */
.trustedhosting-wordpress-hosting .wp-feature-gloss {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(75deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  filter: blur(20px);
  opacity: 0;
  transform: skewX(-20deg);
}
.trustedhosting-wordpress-hosting .wp-feature-item:hover .wp-feature-gloss {
  animation: glossSweep 1.2s ease;
}
@keyframes glossSweep {
  0% { left: -80%; opacity: 0; }
  20% { opacity: 1; }
  100% { left: 140%; opacity: 0; }
}
.trustedhosting-wordpress-hosting .wp-feature-item:hover {
  box-shadow: 0 30px 60px rgba(0, 123, 255, 0.4), 0 15px 40px rgba(0, 0, 0, 0.8);
  transform: translateY(-8px) scale(1.04) rotateX(2deg) rotateY(-2deg);
}
.trustedhosting-wordpress-hosting .wp-feature-item:hover h4 {
  background: linear-gradient(90deg, #ffffff 0%, #66a2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trustedhosting-wordpress-hosting .wp-feature-item:hover p {
  color: #ffffff;
}

/* Inner Feature */
.trustedhosting-wordpress-hosting .wp-feature-inner {
  position: relative;
  margin-top: 34px;
  z-index: 2;
}
.trustedhosting-wordpress-hosting .wp-feature-item h4 {
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(90deg, #fff 0%, #a9c8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.trustedhosting-wordpress-hosting .wp-feature-item p {
  font-size: 14px;
  color: #b7c3ff;
  line-height: 1.6;
  margin: 0;
}

/* Animations */
@keyframes fadeLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cardPop { 0% { opacity: 0; transform: scale(.9) translateY(30px); } 60% { opacity: 1; transform: scale(1.03) translateY(-4px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }

/* Responsive */
@media (max-width: 991px) {
  .trustedhosting-wordpress-hosting { padding: 90px 0 70px; }
  .trustedhosting-wordpress-hosting .wp-wrap { flex-direction: column; }
  .trustedhosting-wordpress-hosting .wp-title { font-size: 34px; }
  .trustedhosting-wordpress-hosting .wp-offer { font-size: 22px; }
  .trustedhosting-wordpress-hosting .wp-features { grid-template-columns: 1fr; }
  .trustedhosting-wordpress-hosting .wp-feature-boxes { grid-template-columns: repeat(2, 1fr); }
  .trustedhosting-wordpress-hosting .wp-right { display: none; }
}
  /* Trust Band Container */
  .shaiksaimeera_webystraa-trust-band {
    width: 100%;
    background: #ffffff;
    padding: 40px 0 35px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    font-family: system-ui, -apple-system, sans-serif;
    overflow: hidden;
  }
  
  /* Typography with Accent Lines */
  .shaiksaimeera_webystraa-trust-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 30px;
  }

  .shaiksaimeera_webystraa-trust-label::before,
  .shaiksaimeera_webystraa-trust-label::after {
    content: '';
    height: 1px;
    width: 40px;
    background: #e2e8f0;
  }

  /* Marquee constraints & Edge Fading */
  .shaiksaimeera_webystraa-marquee-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    /* Smooth fade-out effect on the left and right edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }

  /* Hardware accelerated track */
  .shaiksaimeera_webystraa-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: shaiksaimeera_webystraa-scroll 40s linear infinite;
    will-change: transform;
  }

  /* Pause on hover for usability */
  .shaiksaimeera_webystraa-marquee-container:hover .shaiksaimeera_webystraa-marquee-track {
    animation-play-state: paused;
  }

  /* Individual Logo Wrappers */
  .shaiksaimeera_webystraa-logo-item {
    padding: 0 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Advanced Logo Styling & Hover Physics */
  .shaiksaimeera_webystraa-logo-item img {
    height: 34px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    /* Start washed out so it doesn't distract from the main hero CTA */
    filter: grayscale(100%) opacity(40%);
    /* Bouncy cubic-bezier transition for a premium feel */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
  }

  .shaiksaimeera_webystraa-logo-item img:hover {
    transform: scale(1.15) translateY(-2px);
    /* Restores color and adds a shape-contouring shadow to the PNG */
    filter: grayscale(0%) opacity(100%) drop-shadow(0 4px 6px rgba(0,0,0,0.15));
  }

  /* Seamless Loop Keyframes */
  @keyframes shaiksaimeera_webystraa-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Mobile Adjustments */
  @media (max-width: 768px) {
    .shaiksaimeera_webystraa-trust-band {
      padding: 30px 0 25px 0;
    }
    .shaiksaimeera_webystraa-trust-label {
      font-size: 0.65rem;
      gap: 10px;
      margin-bottom: 25px;
    }
    .shaiksaimeera_webystraa-trust-label::before,
    .shaiksaimeera_webystraa-trust-label::after {
      width: 25px;
    }
    .shaiksaimeera_webystraa-logo-item {
      padding: 0 25px;
    }
    .shaiksaimeera_webystraa-logo-item img {
      height: 26px;
    }
  }
   body {
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #0f172a;
  }

  .webystrata_refund_black_section,
  .webystrata_refund_black_section * {
    box-sizing: border-box;
  }

  .webystrata_refund_black_section {
    width: 100%;
    padding: 18px 0 26px;
    background: #ffffff;
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    overflow: hidden;
  }

  .webystrata_refund_black_container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 28px;
  }

  .webystrata_refund_black_card {
    position: relative;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) 300px;
    gap: 26px;
    align-items: center;
    width: 100%;
    min-height: 170px;
    padding: 28px 30px;
    border-radius: 26px;
    background:
      radial-gradient(circle at 18% 20%, rgba(13, 110, 253, 0.18), transparent 28%),
      linear-gradient(120deg, #050914 0%, #091122 48%, #111827 100%);
    border: 1px solid rgba(125, 182, 255, 0.18);
    box-shadow: none !important;
    overflow: hidden;
    isolation: isolate;
  }

  .webystrata_refund_black_card::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 0;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #0a5cff 0%, #65b3ff 50%, #0a5cff 100%);
    z-index: 2;
  }

  .webystrata_refund_black_card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -35%;
    width: 26%;
    height: 220%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.04) 36%,
      rgba(255, 255, 255, 0.14) 50%,
      rgba(255, 255, 255, 0.04) 64%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-22deg);
    animation: webystrata_refund_black_shine 8s linear infinite;
    pointer-events: none;
    z-index: 1;
  }

  @keyframes webystrata_refund_black_shine {
    0% {
      left: -35%;
    }

    100% {
      left: 120%;
    }
  }

  .webystrata_refund_black_days,
  .webystrata_refund_black_content,
  .webystrata_refund_black_action {
    position: relative;
    z-index: 3;
  }

  .webystrata_refund_black_days {
    width: 132px;
    height: 132px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0a5cff 0%, #0d6efd 58%, #075bd8 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .webystrata_refund_black_days strong {
    display: block;
    color: #ffffff;
    font-size: 58px;
    line-height: 0.82;
    font-weight: 900;
    letter-spacing: -3px;
  }

  .webystrata_refund_black_days span {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
  }

  .webystrata_refund_black_badge {
    display: inline-flex;
    width: fit-content;
    min-height: 32px;
    padding: 0 15px;
    margin-bottom: 13px;
    border-radius: 999px;
    background: rgba(10, 92, 255, 0.12);
    border: 1px solid rgba(101, 179, 255, 0.25);
    color: #8fc5ff;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
  }

  .webystrata_refund_black_content h2 {
    max-width: 720px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 2.8vw, 44px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -1.8px;
  }

  .webystrata_refund_black_content p {
    max-width: 790px;
    margin: 12px 0 0;
    color: rgba(226, 232, 240, 0.78);
    font-size: 15px;
    line-height: 1.58;
    font-weight: 500;
    letter-spacing: -0.04px;
  }

  .webystrata_refund_black_action {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(148, 163, 184, 0.18);
    backdrop-filter: blur(8px);
    box-shadow: none !important;
  }

  .webystrata_refund_black_founder {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  }

  .webystrata_refund_black_founder span {
    display: block;
    color: #7db6ff;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.65px;
    text-transform: uppercase;
  }

  .webystrata_refund_black_founder strong {
    display: block;
    margin-top: 9px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.14;
    font-weight: 900;
    letter-spacing: -0.45px;
  }

  .webystrata_refund_black_founder p {
    margin: 5px 0 0;
    color: rgba(226, 232, 240, 0.68);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
  }

  .webystrata_refund_black_action a {
    position: relative;
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0a5cff 0%, #0d6efd 100%);
    border: 1px solid rgba(101, 179, 255, 0.35);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04px;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: none !important;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  }

  .webystrata_refund_black_action a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.12) 42%,
      rgba(255, 255, 255, 0.30) 50%,
      rgba(255, 255, 255, 0.12) 58%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: left 0.75s ease;
  }

  .webystrata_refund_black_action a:hover {
    background: linear-gradient(135deg, #075bd8 0%, #0a5cff 100%);
    border-color: rgba(125, 182, 255, 0.45);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
  }

  .webystrata_refund_black_action a:hover::before {
    left: 130%;
  }

  @media (max-width: 1020px) {
    .webystrata_refund_black_card {
      grid-template-columns: 132px minmax(0, 1fr);
    }

    .webystrata_refund_black_action {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 230px;
      gap: 20px;
      align-items: center;
    }

    .webystrata_refund_black_founder {
      padding-bottom: 0;
      margin-bottom: 0;
      border-bottom: 0;
    }
  }

  @media (max-width: 720px) {
    .webystrata_refund_black_section {
      padding: 28px 0;
    }

    .webystrata_refund_black_container {
      padding: 0 16px;
    }

    .webystrata_refund_black_card {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 22px;
      border-radius: 24px;
    }

    .webystrata_refund_black_card::before {
      left: 22px;
      right: 22px;
    }

    .webystrata_refund_black_days {
      width: 100%;
      height: 108px;
      border-radius: 20px;
    }

    .webystrata_refund_black_days strong {
      font-size: 50px;
    }

    .webystrata_refund_black_content h2 {
      font-size: clamp(28px, 8vw, 38px);
      line-height: 1.04;
      letter-spacing: -1.4px;
    }

    .webystrata_refund_black_content p {
      font-size: 14.8px;
      line-height: 1.6;
    }

    .webystrata_refund_black_action {
      display: block;
      padding: 20px;
      border-radius: 20px;
    }

    .webystrata_refund_black_founder {
      padding-bottom: 18px;
      margin-bottom: 18px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    }

    .webystrata_refund_black_action a {
      white-space: normal;
    }
  }
  
    body {
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #0f172a;
  }

  .webystrata_migration_ops_section,
  .webystrata_migration_ops_section * {
    box-sizing: border-box;
  }

  .webystrata_migration_ops_section {
    width: 100%;
    padding: 34px 0;
    background: #ffffff;
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    color: #0f172a;
    overflow: hidden;
  }

  .webystrata_migration_ops_container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 22px;
  }

  .webystrata_migration_ops_panel {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.35fr;
    gap: 0;
    width: 100%;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #dce6f3;
    overflow: hidden;
  }

  .webystrata_migration_ops_panel::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #075bd8 0%, #0d6efd 52%, #004fc4 100%);
    z-index: 3;
  }

  .webystrata_migration_ops_left {
    position: relative;
    min-height: auto;
    padding: 34px 34px 32px;
    background:
      radial-gradient(circle at 20% 20%, rgba(13, 110, 253, 0.09), transparent 30%),
      linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-right: 1px solid #dce6f3;
  }

  .webystrata_migration_ops_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    color: #075bd8;
    font-size: 10.4px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.72px;
    text-transform: uppercase;
  }

  .webystrata_migration_ops_left h2 {
    max-width: 560px;
    margin: 0;
    color: #0f172a;
    font-size: clamp(32px, 3.2vw, 48px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -2.1px;
  }

  .webystrata_migration_ops_left > p {
    max-width: 610px;
    margin: 16px 0 0;
    color: #53627a;
    font-size: 15px;
    line-height: 1.58;
    font-weight: 500;
    letter-spacing: -0.04px;
  }

  .webystrata_migration_ops_promise {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
  }

  .webystrata_migration_ops_promise div {
    min-height: 96px;
    padding: 16px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #dce6f3;
  }

  .webystrata_migration_ops_promise strong {
    display: block;
    color: #075bd8;
    font-size: 32px;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -1.5px;
  }

  .webystrata_migration_ops_promise span {
    display: block;
    margin-top: 9px;
    color: #53627a;
    font-size: 12.8px;
    line-height: 1.38;
    font-weight: 800;
  }

  .webystrata_migration_ops_button {
    position: relative;
    width: 100%;
    min-height: 46px;
    margin-top: 22px;
    padding: 0 22px;
    border-radius: 15px;
    background: #075bd8;
    border: 1px solid #075bd8;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 14.2px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04px;
    overflow: hidden;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  }

  .webystrata_migration_ops_button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.12) 42%,
      rgba(255, 255, 255, 0.30) 50%,
      rgba(255, 255, 255, 0.12) 58%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: left 0.75s ease;
    pointer-events: none;
  }

  .webystrata_migration_ops_button:hover {
    background: #004fc4;
    border-color: #004fc4;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
  }

  .webystrata_migration_ops_button:hover::before {
    left: 130%;
  }

  .webystrata_migration_ops_right {
    padding: 34px;
    background: #ffffff;
  }

  .webystrata_migration_ops_status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 18px;
    background: #07111f;
    border: 1px solid #07111f;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
  }

  .webystrata_migration_ops_status::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -45%;
    width: 28%;
    height: 240%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.08) 42%,
      rgba(255, 255, 255, 0.22) 50%,
      rgba(255, 255, 255, 0.08) 58%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-22deg);
    animation: webystrata_migration_ops_shine 7s linear infinite;
  }

  @keyframes webystrata_migration_ops_shine {
    0% {
      left: -45%;
    }

    42% {
      left: 125%;
    }

    100% {
      left: 125%;
    }
  }

  .webystrata_migration_ops_status span,
  .webystrata_migration_ops_status strong {
    position: relative;
    z-index: 2;
  }

  .webystrata_migration_ops_status span {
    color: #7db6ff;
    font-size: 10.4px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.72px;
    text-transform: uppercase;
  }

  .webystrata_migration_ops_status strong {
    color: #ffffff;
    font-size: 14.8px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.2px;
    text-align: right;
  }

  .webystrata_migration_ops_timeline {
    position: relative;
    display: grid;
    gap: 12px;
  }

  .webystrata_migration_ops_timeline::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 32px;
    bottom: 32px;
    width: 2px;
    background: #dce6f3;
  }

  .webystrata_migration_ops_step {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .webystrata_migration_ops_marker {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    color: #075bd8;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .webystrata_migration_ops_marker span {
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.4px;
  }

  .webystrata_migration_ops_step_content {
    padding: 16px 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #dce6f3;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
  }

  .webystrata_migration_ops_step:hover .webystrata_migration_ops_step_content {
    transform: translateY(-2px);
    border-color: #bfd5f8;
    background: #fbfdff;
  }

  .webystrata_migration_ops_step_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .webystrata_migration_ops_step h3 {
    margin: 0;
    color: #0f172a;
    font-size: 19px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.65px;
  }

  .webystrata_migration_ops_step small {
    min-height: 27px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    color: #075bd8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 10.5px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.2px;
  }

  .webystrata_migration_ops_step p {
    margin: 8px 0 0;
    color: #53627a;
    font-size: 13.8px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.04px;
  }

  .webystrata_migration_ops_footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid #dce6f3;
  }

  .webystrata_migration_ops_footer span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #075bd8;
    flex: 0 0 auto;
  }

  .webystrata_migration_ops_footer p {
    margin: 0;
    color: #172033;
    font-size: 13.5px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: -0.04px;
  }

  @media (max-width: 1040px) {
    .webystrata_migration_ops_panel {
      grid-template-columns: 1fr;
    }

    .webystrata_migration_ops_left {
      border-right: 0;
      border-bottom: 1px solid #dce6f3;
    }
  }

  @media (max-width: 720px) {
    .webystrata_migration_ops_section {
      padding: 34px 0;
    }

    .webystrata_migration_ops_container {
      padding: 0 16px;
    }

    .webystrata_migration_ops_panel {
      border-radius: 24px;
    }

    .webystrata_migration_ops_panel::before {
      left: 20px;
      right: 20px;
    }

    .webystrata_migration_ops_left {
      padding: 28px 20px;
    }

    .webystrata_migration_ops_left h2 {
      font-size: clamp(32px, 9vw, 42px);
      line-height: 1;
      letter-spacing: -1.7px;
    }

    .webystrata_migration_ops_left > p {
      font-size: 14.8px;
      line-height: 1.58;
    }

    .webystrata_migration_ops_promise {
      grid-template-columns: 1fr;
    }

    .webystrata_migration_ops_right {
      padding: 22px 20px;
    }

    .webystrata_migration_ops_status {
      display: block;
    }

    .webystrata_migration_ops_status strong {
      display: block;
      margin-top: 7px;
      text-align: left;
    }

    .webystrata_migration_ops_timeline::before {
      left: 24px;
    }

    .webystrata_migration_ops_step {
      grid-template-columns: 50px minmax(0, 1fr);
      gap: 13px;
    }

    .webystrata_migration_ops_marker {
      width: 50px;
      height: 50px;
      border-radius: 16px;
    }

    .webystrata_migration_ops_step_top {
      display: block;
    }

    .webystrata_migration_ops_step small {
      margin-top: 10px;
    }
  }
    body {
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #0f172a;
  }

  .webystrata_wp_board_section,
  .webystrata_wp_board_section * {
    box-sizing: border-box;
  }

  .webystrata_wp_board_section {
    width: 100%;
    padding: 82px 0;
    background: #ffffff;
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    color: #0f172a;
    overflow: hidden;
  }

  .webystrata_wp_board_container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
  }

  .webystrata_wp_board_header {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
  }

  .webystrata_wp_board_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 17px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    color: #075bd8;
    font-size: 11.6px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
  }

  .webystrata_wp_board_header h2 {
    max-width: 860px;
    margin: 0 auto;
    color: #0f172a;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -2.4px;
  }

  .webystrata_wp_board_header p {
    max-width: 720px;
    margin: 20px auto 0;
    color: #53627a;
    font-size: 16.5px;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: -0.1px;
  }

  .webystrata_wp_board_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .webystrata_wp_board_card {
    min-height: 292px;
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #dce6f3;
    box-shadow: 0 18px 54px rgba(15, 23, 42, 0.055);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    overflow: hidden;
  }

  .webystrata_wp_board_card:hover {
    transform: translateY(-4px);
    border-color: #c6dcff;
    box-shadow: 0 26px 74px rgba(15, 23, 42, 0.085);
  }

  .webystrata_wp_board_card_blue {
    background: linear-gradient(135deg, #075bd8 0%, #0a6cf0 52%, #004fc4 100%);
    border-color: rgba(7, 91, 216, 0.18);
    box-shadow: 0 28px 82px rgba(7, 91, 216, 0.22);
  }

  .webystrata_wp_board_card_dark {
    background: linear-gradient(135deg, #020617 0%, #071326 58%, #111827 100%);
    border-color: #071326;
    box-shadow: 0 24px 72px rgba(2, 6, 23, 0.19);
  }

  .webystrata_wp_board_card_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .webystrata_wp_board_number {
    color: #075bd8;
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1.2px;
  }

  .webystrata_wp_board_card_blue .webystrata_wp_board_number,
  .webystrata_wp_board_card_dark .webystrata_wp_board_number {
    color: #ffffff;
  }

  .webystrata_wp_board_label {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    color: #075bd8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .webystrata_wp_board_card_blue .webystrata_wp_board_label,
  .webystrata_wp_board_card_dark .webystrata_wp_board_label {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.26);
    color: #ffffff;
  }

  .webystrata_wp_board_icon {
    width: 50px;
    height: 50px;
    border-radius: 17px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .webystrata_wp_board_icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #075bd8;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .webystrata_wp_board_card_body {
    margin-top: 36px;
  }

  .webystrata_wp_board_card_body h3 {
    margin: 0;
    color: #0f172a;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.85px;
  }

  .webystrata_wp_board_card_body p {
    margin: 13px 0 0;
    color: #53627a;
    font-size: 15px;
    line-height: 1.62;
    font-weight: 500;
    letter-spacing: -0.06px;
  }

  .webystrata_wp_board_card_blue .webystrata_wp_board_card_body h3,
  .webystrata_wp_board_card_dark .webystrata_wp_board_card_body h3 {
    color: #ffffff;
  }

  .webystrata_wp_board_card_blue .webystrata_wp_board_card_body p,
  .webystrata_wp_board_card_dark .webystrata_wp_board_card_body p {
    color: rgba(255, 255, 255, 0.78);
  }

  @media (max-width: 1100px) {
    .webystrata_wp_board_section {
      padding: 72px 0;
    }

    .webystrata_wp_board_grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 720px) {
    .webystrata_wp_board_section {
      padding: 54px 0 62px;
    }

    .webystrata_wp_board_container {
      padding: 0 16px;
    }

    .webystrata_wp_board_header {
      margin-bottom: 30px;
      text-align: left;
    }

    .webystrata_wp_board_header h2 {
      font-size: clamp(34px, 10.5vw, 48px);
      line-height: 1.03;
      letter-spacing: -1.7px;
    }

    .webystrata_wp_board_header p {
      font-size: 15.5px;
      line-height: 1.62;
      margin-left: 0;
      margin-right: 0;
    }

    .webystrata_wp_board_grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .webystrata_wp_board_card {
      min-height: auto;
      padding: 24px;
      border-radius: 22px;
    }

    .webystrata_wp_board_number {
      font-size: 32px;
    }

    .webystrata_wp_board_card_body {
      margin-top: 34px;
    }

    .webystrata_wp_board_card_body h3 {
      font-size: 23px;
      line-height: 1.14;
      letter-spacing: -0.75px;
    }

    .webystrata_wp_board_card_body p {
      font-size: 15px;
      line-height: 1.6;
    }
  }
    body {
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #0f172a;
  }

  .webystrata_wp_support_section,
  .webystrata_wp_support_section * {
    box-sizing: border-box;
  }

  .webystrata_wp_support_section {
    width: 100%;
    padding: 48px 0;
    background: #ffffff;
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    color: #0f172a;
    overflow: hidden;
  }

  .webystrata_wp_support_container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 28px;
  }

  .webystrata_wp_support_header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: end;
    margin-bottom: 28px;
  }

  .webystrata_wp_support_intro {
    max-width: 850px;
  }

  .webystrata_wp_support_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    color: #075bd8;
    font-size: 10.8px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.75px;
    text-transform: uppercase;
  }

  .webystrata_wp_support_intro h2 {
    max-width: 820px;
    margin: 0;
    color: #0f172a;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2.4px;
  }

  .webystrata_wp_support_intro p {
    max-width: 820px;
    margin: 18px 0 0;
    color: #53627a;
    font-size: 16.2px;
    line-height: 1.65;
    font-weight: 500;
    letter-spacing: -0.05px;
  }

  .webystrata_wp_support_cta {
    padding: 20px;
    border-radius: 24px;
    background: #f8fbff;
    border: 1px solid #dce6f3;
  }

  .webystrata_wp_support_cta a {
    position: relative;
    width: 100%;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 15px;
    background: #075bd8;
    border: 1px solid #075bd8;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 14.2px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04px;
    overflow: hidden;
    isolation: isolate;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  }

  .webystrata_wp_support_cta a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.12) 42%,
      rgba(255, 255, 255, 0.30) 50%,
      rgba(255, 255, 255, 0.12) 58%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: left 0.75s ease;
    pointer-events: none;
    z-index: 1;
  }

  .webystrata_wp_support_cta a:hover::before {
    left: 130%;
  }

  .webystrata_wp_support_cta a:hover {
    background: #004fc4;
    border-color: #004fc4;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
  }

  .webystrata_wp_support_cta a {
    z-index: 1;
  }

  .webystrata_wp_support_cta span {
    display: block;
    margin-top: 14px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
    text-align: center;
  }

  .webystrata_wp_support_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .webystrata_wp_support_card {
    position: relative;
    min-height: 300px;
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #dce6f3;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    isolation: isolate;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
  }

  .webystrata_wp_support_card:hover {
    transform: translateY(-4px);
    border-color: #bfd5f8;
    background: #fbfdff;
  }

  .webystrata_wp_support_card::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 0;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: #075bd8;
    opacity: 0;
    transition: opacity 0.24s ease;
    z-index: 2;
  }

  .webystrata_wp_support_card:hover::before {
    opacity: 1;
  }

  .webystrata_wp_support_card_blue::after,
  .webystrata_wp_support_card_dark::after {
    content: "";
    position: absolute;
    top: -45%;
    left: -55%;
    width: 34%;
    height: 190%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.05) 36%,
      rgba(255, 255, 255, 0.22) 50%,
      rgba(255, 255, 255, 0.05) 64%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-22deg);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
  }

  .webystrata_wp_support_card_blue:hover::after,
  .webystrata_wp_support_card_dark:hover::after {
    animation: webystrata_wp_support_card_shine 0.9s ease forwards;
    opacity: 1;
  }

  @keyframes webystrata_wp_support_card_shine {
    0% {
      left: -55%;
    }

    100% {
      left: 125%;
    }
  }

  .webystrata_wp_support_card > * {
    position: relative;
    z-index: 3;
  }

  .webystrata_wp_support_number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    color: #075bd8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.6px;
  }

  .webystrata_wp_support_card_content {
    margin-top: 48px;
  }

  .webystrata_wp_support_card_content h3 {
    margin: 0;
    color: #0f172a;
    font-size: 23px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.9px;
  }

  .webystrata_wp_support_card_content p {
    margin: 14px 0 0;
    color: #53627a;
    font-size: 14.3px;
    line-height: 1.62;
    font-weight: 500;
    letter-spacing: -0.04px;
  }

  .webystrata_wp_support_card_blue {
    background:
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
      linear-gradient(135deg, #075bd8 0%, #0866ef 55%, #004fc4 100%);
    border-color: #075bd8;
  }

  .webystrata_wp_support_card_blue::before {
    background: rgba(255, 255, 255, 0.75);
    opacity: 1;
  }

  .webystrata_wp_support_card_blue:hover {
    background:
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%),
      linear-gradient(135deg, #075bd8 0%, #0866ef 55%, #004fc4 100%);
    border-color: #075bd8;
  }

  .webystrata_wp_support_card_blue .webystrata_wp_support_number {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
  }

  .webystrata_wp_support_card_blue h3 {
    color: #ffffff;
  }

  .webystrata_wp_support_card_blue p {
    color: rgba(255, 255, 255, 0.84);
  }

  .webystrata_wp_support_card_dark {
    background: #07111f;
    border-color: #07111f;
  }

  .webystrata_wp_support_card_dark::before {
    background: #0a5cff;
    opacity: 1;
  }

  .webystrata_wp_support_card_dark:hover {
    background: #07111f;
    border-color: #07111f;
  }

  .webystrata_wp_support_card_dark .webystrata_wp_support_number {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
  }

  .webystrata_wp_support_card_dark h3 {
    color: #ffffff;
  }

  .webystrata_wp_support_card_dark p {
    color: rgba(226, 232, 240, 0.78);
  }

  @media (max-width: 1080px) {
    .webystrata_wp_support_header {
      grid-template-columns: 1fr;
      align-items: start;
    }

    .webystrata_wp_support_cta {
      max-width: 380px;
    }

    .webystrata_wp_support_grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 680px) {
    .webystrata_wp_support_section {
      padding: 42px 0;
    }

    .webystrata_wp_support_container {
      padding: 0 16px;
    }

    .webystrata_wp_support_header {
      gap: 22px;
      margin-bottom: 22px;
    }

    .webystrata_wp_support_intro h2 {
      font-size: clamp(32px, 9vw, 44px);
      line-height: 1.02;
      letter-spacing: -1.7px;
    }

    .webystrata_wp_support_intro p {
      font-size: 15.2px;
      line-height: 1.62;
    }

    .webystrata_wp_support_cta {
      max-width: 100%;
      padding: 18px;
      border-radius: 20px;
    }

    .webystrata_wp_support_grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .webystrata_wp_support_card {
      min-height: auto;
      padding: 24px;
      border-radius: 24px;
    }

    .webystrata_wp_support_card_content {
      margin-top: 44px;
    }

    .webystrata_wp_support_card_content h3 {
      font-size: 23px;
    }
  }
    body {
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #0f172a;
  }

  .webystrata_assurance_wide_section,
  .webystrata_assurance_wide_section * {
    box-sizing: border-box;
  }

  .webystrata_assurance_wide_section {
    width: 100%;
    padding: 12px 0 34px;
    background: #ffffff;
    font-family: "DM Sans", "Inter", Arial, sans-serif;
    color: #0f172a;
    overflow: hidden;
  }

  .webystrata_assurance_wide_container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .webystrata_assurance_wide_divider {
    width: 100%;
    height: 1px;
    margin: 0 auto 28px;
    opacity: 0.85;
    background: linear-gradient(
      90deg,
      rgba(7, 91, 216, 0),
      rgba(7, 91, 216, 0.22),
      rgba(7, 91, 216, 0)
    );
  }

  .webystrata_assurance_wide_shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
  }

  .webystrata_assurance_wide_intro {
    position: relative;
    min-height: 210px;
    padding: 22px;
    border-radius: 24px;
    background: #07111f;
    border: 1px solid #07111f;
    overflow: hidden;
  }

  .webystrata_assurance_wide_intro::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #075bd8, #65b3ff, #075bd8);
    z-index: 2;
  }

  .webystrata_assurance_wide_intro::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -90%;
    width: 42%;
    height: 260%;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.05) 35%,
      rgba(255,255,255,0.16) 50%,
      rgba(255,255,255,0.05) 65%,
      rgba(255,255,255,0) 100%
    );
    transform: skewX(-22deg);
    animation: webystrata_assurance_wide_shine 8s linear infinite;
    pointer-events: none;
    z-index: 1;
  }

  @keyframes webystrata_assurance_wide_shine {
    0% {
      left: -90%;
    }

    42% {
      left: 125%;
    }

    100% {
      left: 125%;
    }
  }

  .webystrata_assurance_wide_badge,
  .webystrata_assurance_wide_intro h2,
  .webystrata_assurance_wide_intro p {
    position: relative;
    z-index: 3;
  }

  .webystrata_assurance_wide_badge {
    width: fit-content;
    min-height: 28px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: #8fc5ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9.5px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.72px;
    text-transform: uppercase;
  }

  .webystrata_assurance_wide_intro h2 {
    margin: 30px 0 0;
    color: #ffffff;
    font-size: 34px;
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: -1.4px;
  }

  .webystrata_assurance_wide_intro h2 span {
    display: block;
    color: #7db6ff;
  }

  .webystrata_assurance_wide_intro p {
    margin: 12px 0 0;
    color: rgba(226, 232, 240, 0.76);
    font-size: 13.5px;
    line-height: 1.45;
    font-weight: 600;
  }

  .webystrata_assurance_wide_cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .webystrata_assurance_wide_card {
    position: relative;
    min-height: 210px;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #dce6f3;
    overflow: hidden;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
  }

  .webystrata_assurance_wide_card:hover {
    transform: translateY(-3px);
    border-color: #bfd5f8;
    background: #fbfdff;
  }

  .webystrata_assurance_wide_card::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: #075bd8;
    opacity: 0;
    transition: opacity 0.24s ease;
    z-index: 2;
  }

  .webystrata_assurance_wide_card:hover::before,
  .webystrata_assurance_wide_card_dark::before {
    opacity: 1;
  }

  .webystrata_assurance_wide_card::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -90%;
    width: 42%;
    height: 260%;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(7,91,216,0.03) 35%,
      rgba(7,91,216,0.12) 50%,
      rgba(7,91,216,0.03) 65%,
      rgba(255,255,255,0) 100%
    );
    transform: skewX(-22deg);
    pointer-events: none;
    transition: left 0.85s ease;
    z-index: 1;
  }

  .webystrata_assurance_wide_card:hover::after {
    left: 125%;
  }

  .webystrata_assurance_wide_card_dark {
    background: #07111f;
    border-color: #07111f;
  }

  .webystrata_assurance_wide_card_dark:hover {
    background: #07111f;
    border-color: #07111f;
  }

  .webystrata_assurance_wide_card_dark::after {
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.04) 35%,
      rgba(255,255,255,0.16) 50%,
      rgba(255,255,255,0.04) 65%,
      rgba(255,255,255,0) 100%
    );
  }

  .webystrata_assurance_wide_card_top,
  .webystrata_assurance_wide_card h3,
  .webystrata_assurance_wide_card p {
    position: relative;
    z-index: 3;
  }

  .webystrata_assurance_wide_card_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .webystrata_assurance_wide_icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: #eef5ff;
    border: 1px solid #cfe0ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .webystrata_assurance_wide_icon svg {
    width: 24px;
    height: 24px;
    fill: #075bd8;
  }

  .webystrata_assurance_wide_card_top span {
    color: #075bd8;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.7px;
  }

  .webystrata_assurance_wide_card_dark .webystrata_assurance_wide_icon {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
  }

  .webystrata_assurance_wide_card_dark .webystrata_assurance_wide_icon svg {
    fill: #ffffff;
  }

  .webystrata_assurance_wide_card_dark .webystrata_assurance_wide_card_top span {
    color: #7db6ff;
  }

  .webystrata_assurance_wide_card h3 {
    margin: 34px 0 0;
    color: #0f172a;
    font-size: 21px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.7px;
  }

  .webystrata_assurance_wide_card p {
    margin: 10px 0 0;
    color: #53627a;
    font-size: 13.5px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: -0.03px;
  }

  .webystrata_assurance_wide_card_dark h3 {
    color: #ffffff;
  }

  .webystrata_assurance_wide_card_dark p {
    color: rgba(226, 232, 240, 0.76);
  }

  .webystrata_assurance_wide_refund {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 200px;
    gap: 22px;
    align-items: center;
    max-width: 1240px;
    margin: 14px auto 0;
    padding: 18px 20px;
    border-radius: 22px;
    background: #f8fbff;
    border: 1px solid #dce6f3;
  }

  .webystrata_assurance_wide_refund_title span {
    display: block;
    color: #075bd8;
    font-size: 9.5px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.72px;
    text-transform: uppercase;
  }

  .webystrata_assurance_wide_refund_title strong {
    display: block;
    margin-top: 7px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.7px;
  }

  .webystrata_assurance_wide_refund p {
    margin: 0;
    color: #53627a;
    font-size: 13.8px;
    line-height: 1.45;
    font-weight: 600;
    letter-spacing: -0.03px;
  }

  .webystrata_assurance_wide_btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    background: #075bd8;
    color: #ffffff;
    border: 1px solid #075bd8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 13.2px;
    line-height: 1;
    font-weight: 900;
    transition: transform 0.22s ease, background 0.22s ease;
  }

  .webystrata_assurance_wide_btn:hover {
    background: #004fc4;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
  }

  @media (max-width: 1180px) {
    .webystrata_assurance_wide_shell {
      grid-template-columns: 1fr;
    }

    .webystrata_assurance_wide_intro {
      min-height: auto;
    }

    .webystrata_assurance_wide_intro h2 {
      margin-top: 26px;
    }

    .webystrata_assurance_wide_cards {
      grid-template-columns: 1fr;
    }

    .webystrata_assurance_wide_refund {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .webystrata_assurance_wide_btn {
      width: fit-content;
    }
  }

  @media (max-width: 720px) {
    .webystrata_assurance_wide_section {
      padding: 8px 0 34px;
    }

    .webystrata_assurance_wide_container {
      padding: 0 16px;
    }

    .webystrata_assurance_wide_divider {
      margin-bottom: 22px;
    }

    .webystrata_assurance_wide_intro,
    .webystrata_assurance_wide_card {
      border-radius: 22px;
      padding: 22px;
    }

    .webystrata_assurance_wide_intro h2 {
      font-size: 34px;
      line-height: 0.98;
      letter-spacing: -1.3px;
    }

    .webystrata_assurance_wide_card {
      min-height: auto;
    }

    .webystrata_assurance_wide_card h3 {
      margin-top: 30px;
    }

    .webystrata_assurance_wide_refund {
      padding: 18px;
      border-radius: 20px;
    }

    .webystrata_assurance_wide_btn {
      width: 100%;
    }
  }