:root {
      --primary: #1756d6;
      --primary-dark: #103d9c;
      --secondary: #8057e8;
      --accent: #f6bb3b;
      --mint: #19b893;
      --danger: #c0392b;
      --ink: #132147;
      --muted: #5f6f8d;
      --soft: #f6f8ff;
      --white: #ffffff;
      --line: rgba(23, 86, 214, 0.14);
      --shadow: 0 22px 60px rgba(23, 86, 214, 0.14);
      --radius: 8px;
      --hero-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1900&q=80");
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      min-width: 0;
      overflow-x: clip;
      color: var(--ink);
      font-family: "Segoe UI", Arial, sans-serif;
      background: #ffffff;
    }

    body.nav-open,
    body.modal-open {
      overflow: hidden;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .container {
      width: min(1140px, calc(100% - 40px));
      margin: 0 auto;
    }

    .section {
      position: relative;
      padding: 86px 0;
      overflow: hidden;
    }

    .section-heading {
      width: min(790px, 100%);
      margin: 0 auto 40px;
      text-align: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 34px;
      padding: 7px 13px;
      border: 1px solid rgba(23, 86, 214, 0.13);
      border-radius: 999px;
      color: var(--primary-dark);
      background: rgba(255, 255, 255, 0.86);
      box-shadow: 0 10px 28px rgba(23, 86, 214, 0.08);
      font-size: 0.86rem;
      font-weight: 800;
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(246, 187, 59, 0.2);
      flex: 0 0 auto;
    }

    h1,
    h2,
    h3,
    h4,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 840px;
      margin-bottom: 18px;
      color: #0d1a35;
      font-size: clamp(2.35rem, 6vw, 5rem);
      line-height: 1.03;
      letter-spacing: 0;
      overflow-wrap: break-word;
    }

    h2 {
      margin-bottom: 14px;
      color: #132147;
      font-size: clamp(1.9rem, 4vw, 3.05rem);
      line-height: 1.12;
      letter-spacing: 0;
    }

    h3 {
      margin-bottom: 10px;
      color: #17264d;
      font-size: 1.18rem;
      line-height: 1.32;
    }

    h4 {
      margin-bottom: 10px;
      color: #17264d;
      font-size: 1.05rem;
      line-height: 1.35;
    }

    p {
      color: var(--muted);
      line-height: 1.75;
    }

    .preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 20% 18%, rgba(128, 87, 232, 0.18), transparent 30%),
        radial-gradient(circle at 82% 78%, rgba(25, 184, 147, 0.14), transparent 28%),
        linear-gradient(135deg, #f9fbff, #edf4ff 54%, #ffffff);
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .preloader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .preloader-card {
      width: min(320px, calc(100% - 36px));
      padding: 34px 28px;
      border: 1px solid rgba(255, 255, 255, 0.76);
      border-radius: var(--radius);
      text-align: center;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 26px 78px rgba(20, 57, 126, 0.16);
      backdrop-filter: blur(18px);
    }

    .loader-logo {
      position: relative;
      width: 112px;
      height: 112px;
      margin: 0 auto 18px;
      display: grid;
      place-items: center;
    }

    .loader-logo::before,
    .loader-logo::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 2px solid transparent;
      border-top-color: var(--primary);
      border-right-color: rgba(128, 87, 232, 0.76);
      border-radius: 50%;
      animation: spin 1.1s linear infinite;
    }

    .loader-logo::after {
      inset: 12px;
      border-top-color: var(--accent);
      border-right-color: rgba(25, 184, 147, 0.72);
      animation-duration: 1.7s;
      animation-direction: reverse;
    }

    .loader-logo img {
      position: relative;
      z-index: 1;
      width: 78px;
      height: 78px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 12px 28px rgba(23, 86, 214, 0.18);
    }

    .loader-track {
      height: 6px;
      margin-top: 16px;
      overflow: hidden;
      border-radius: 999px;
      background: #e8eefb;
    }

    .loader-track span {
      display: block;
      width: 46%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
      animation: loaderMove 1.15s ease-in-out infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes loaderMove {
      from {
        transform: translateX(-120%);
      }
      to {
        transform: translateX(235%);
      }
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 1000;
      padding: 16px 0;
      transition: padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    }

    .site-header.scrolled {
      padding: 9px 0;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 12px 34px rgba(28, 54, 113, 0.12);
      backdrop-filter: blur(18px);
    }

    .nav-wrap {
      width: min(1200px, calc(100% - 28px));
      min-height: 66px;
      margin: 0 auto;
      padding: 8px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      border: 1px solid rgba(255, 255, 255, 0.76);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.86);
      box-shadow: 0 16px 40px rgba(23, 86, 214, 0.11);
      backdrop-filter: blur(18px);
    }

    .brand {
      min-width: 0;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: #162347;
    }

    .brand img {
      width: 48px;
      height: 48px;
      flex: 0 0 auto;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 8px 22px rgba(23, 86, 214, 0.18);
    }

    .brand span {
      display: grid;
      min-width: 0;
      font-size: 1rem;
      line-height: 1.05;
    }

    .brand small {
      margin-top: 3px;
      color: var(--primary);
      font-size: 0.68rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .nav-links {
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }

    .nav-links > li > a {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 10px;
      border-radius: var(--radius);
      color: #26395f;
      font-size: 0.88rem;
      font-weight: 800;
      transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
    }

    .nav-links > li > a:hover,
    .nav-links > li > a.active {
      color: var(--primary);
      background: rgba(23, 86, 214, 0.08);
      transform: translateY(-1px);
    }

    .nav-item {
      position: static;
    }

    .nav-item.has-mega > a {
      gap: 6px;
    }

    .nav-item.has-mega > a::after {
      content: "";
      width: 7px;
      height: 7px;
      margin-top: -2px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      opacity: 0.58;
      transform: rotate(45deg);
      transition: transform 0.22s ease, opacity 0.22s ease;
    }

    .nav-item.has-mega:hover > a::after,
    .nav-item.has-mega:focus-within > a::after {
      opacity: 1;
      transform: rotate(225deg) translate(-2px, -2px);
    }

    .mega-menu {
      position: fixed;
      left: 50%;
      top: 90px;
      z-index: 1001;
      width: min(1180px, calc(100vw - 28px));
      max-width: calc(100vw - 28px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translate(-50%, 14px);
      transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }

    .site-header.scrolled .mega-menu {
      top: 78px;
    }

    .nav-item.has-mega:hover .mega-menu,
    .nav-item.has-mega:focus-within .mega-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .mega-panel {
      display: grid;
      grid-template-columns: minmax(230px, 0.8fr) minmax(0, 2.2fr);
      gap: 14px;
      padding: 14px;
      border: 1px solid rgba(23, 86, 214, 0.12);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.97);
      box-shadow: 0 28px 80px rgba(20, 57, 126, 0.18);
      backdrop-filter: blur(18px);
    }

    .mega-intro {
      min-height: 100%;
      padding: 18px;
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(23, 86, 214, 0.12), rgba(128, 87, 232, 0.1)),
        #f8fbff;
    }

    .mega-intro strong {
      display: block;
      margin-bottom: 8px;
      color: #132147;
      font-size: 1.02rem;
      line-height: 1.28;
    }

    .mega-intro p {
      margin: 0;
      color: #53637d;
      font-size: 0.9rem;
      line-height: 1.65;
    }

    .mega-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .mega-card {
      min-width: 0;
      min-height: 112px;
      padding: 14px;
      display: grid;
      gap: 8px;
      align-content: start;
      border: 1px solid rgba(23, 86, 214, 0.1);
      border-radius: var(--radius);
      color: #26395f;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 12px 30px rgba(23, 86, 214, 0.08);
      transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }

    .mega-card:hover,
    .mega-card:focus {
      transform: translateY(-4px);
      border-color: rgba(23, 86, 214, 0.22);
      background: #ffffff;
      box-shadow: 0 18px 42px rgba(23, 86, 214, 0.14);
    }

    .mega-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      color: #ffffff;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 12px 24px rgba(23, 86, 214, 0.18);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.05em;
    }

    .mega-card strong {
      color: #17264d;
      font-size: 0.92rem;
      line-height: 1.25;
    }

    .mega-card span:last-child {
      color: #5f6f8d;
      font-size: 0.8rem;
      font-weight: 650;
      line-height: 1.45;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      place-items: center;
      border: 0;
      border-radius: var(--radius);
      color: #162347;
      background: rgba(23, 86, 214, 0.08);
      cursor: pointer;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      width: 20px;
      height: 2px;
      border-radius: 99px;
      background: currentColor;
      transition: transform 0.25s ease, top 0.25s ease, background 0.25s ease;
    }

    .menu-toggle span {
      position: relative;
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .menu-toggle span::before {
      top: -7px;
    }

    .menu-toggle span::after {
      top: 7px;
    }

    .menu-toggle.active span {
      background: transparent;
    }

    .menu-toggle.active span::before {
      top: 0;
      transform: rotate(45deg);
    }

    .menu-toggle.active span::after {
      top: 0;
      transform: rotate(-45deg);
    }

    .hero {
      min-height: 100vh;
      padding: 142px 0 76px;
      display: flex;
      align-items: center;
      isolation: isolate;
      background:
        linear-gradient(90deg, rgba(248, 251, 255, 0.96) 0%, rgba(248, 251, 255, 0.9) 42%, rgba(248, 251, 255, 0.54) 78%, rgba(248, 251, 255, 0.76) 100%),
        var(--hero-image) center / cover no-repeat,
        #edf4ff;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.72fr);
      gap: 40px;
      align-items: center;
    }

    .hero-copy > p {
      width: min(690px, 100%);
      margin-bottom: 26px;
      color: #465873;
      font-size: 1.08rem;
    }

    .hero-actions,
    .action-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      border-radius: var(--radius);
      padding: 0 18px;
      font-weight: 900;
      cursor: pointer;
      transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
      white-space: nowrap;
    }

    .btn svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    .btn-primary {
      color: #ffffff;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 18px 35px rgba(23, 86, 214, 0.28);
    }

    .btn-secondary {
      color: #0e5d48;
      border: 1px solid rgba(25, 184, 147, 0.26);
      background: #ffffff;
      box-shadow: 0 14px 32px rgba(25, 184, 147, 0.15);
    }

    .btn-ghost {
      color: var(--primary-dark);
      border: 1px solid rgba(23, 86, 214, 0.2);
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 14px 32px rgba(23, 86, 214, 0.1);
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 46px rgba(23, 86, 214, 0.22);
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 28px;
    }

    .point-pill {
      min-width: 0;
      padding: 13px 14px;
      border: 1px solid rgba(23, 86, 214, 0.1);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 14px 32px rgba(23, 86, 214, 0.09);
    }

    .point-pill strong {
      display: block;
      color: #12204a;
    }

    .point-pill span {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.45;
    }

    .hero-card {
      position: relative;
      padding: 28px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.84);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 30px 80px rgba(23, 86, 214, 0.18);
      backdrop-filter: blur(16px);
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 7px;
      background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    }

    .hero-card img {
      width: 86px;
      height: 86px;
      margin-bottom: 18px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 18px 42px rgba(23, 86, 214, 0.18);
    }

    .lead-form-section {
      background:
        radial-gradient(circle at 14% 12%, rgba(128, 87, 232, 0.1), transparent 27%),
        radial-gradient(circle at 86% 80%, rgba(25, 184, 147, 0.1), transparent 25%),
        var(--soft);
    }

    .lead-wrap,
    .contact-wrap {
      display: grid;
      grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1fr);
      gap: 28px;
      align-items: stretch;
    }

    .lead-panel,
    .form-card,
    .service-card,
    .why-card,
    .review-card,
    .blog-card,
    .predictor-panel,
    .office-card,
    .contact-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: var(--shadow);
    }

    .lead-panel {
      padding: 28px;
      background:
        linear-gradient(135deg, rgba(23, 86, 214, 0.95), rgba(128, 87, 232, 0.9)),
        var(--hero-image) center / cover no-repeat;
      color: #ffffff;
    }

    .lead-panel h2,
    .lead-panel p {
      color: #ffffff;
    }

    .lead-panel p {
      opacity: 0.9;
    }

    .mini-list {
      display: grid;
      gap: 12px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .mini-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: inherit;
      line-height: 1.55;
      font-weight: 650;
    }

    .check {
      width: 22px;
      height: 22px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      color: #ffffff;
      background: var(--mint);
      font-size: 0.8rem;
    }

    .form-card {
      padding: 28px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 15px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: #1c2f5a;
      font-weight: 850;
      font-size: 0.92rem;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-width: 0;
      border: 1px solid rgba(23, 86, 214, 0.16);
      border-radius: var(--radius);
      padding: 13px 14px;
      color: var(--ink);
      background: #f9fbff;
      outline: none;
      transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(23, 86, 214, 0.58);
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(23, 86, 214, 0.11);
    }

    .form-message {
      min-height: 24px;
      margin: 14px 0 0;
      color: var(--danger);
      font-weight: 800;
      font-size: 0.92rem;
    }

    .services {
      background: #ffffff;
    }

    .grid-4,
    .grid-3,
    .grid-2 {
      display: grid;
      gap: 18px;
    }

    .grid-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .grid-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .grid-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card,
    .why-card,
    .review-card,
    .blog-card {
      position: relative;
      min-width: 0;
      padding: 24px;
      overflow: hidden;
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .service-card::before,
    .blog-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
      opacity: 0;
      transition: opacity 0.24s ease;
    }

    .service-card:hover,
    .why-card:hover,
    .review-card:hover,
    .blog-card:hover,
    .prediction-card:hover {
      transform: translateY(-7px);
      border-color: rgba(23, 86, 214, 0.24);
      box-shadow: 0 28px 70px rgba(23, 86, 214, 0.18);
    }

    .service-card:hover::before,
    .blog-card:hover::before {
      opacity: 1;
    }

    .icon-box {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      border-radius: var(--radius);
      color: var(--primary);
      background: linear-gradient(135deg, rgba(23, 86, 214, 0.1), rgba(128, 87, 232, 0.1));
      font-weight: 900;
    }

    .card-link {
      display: inline-flex;
      margin-top: 12px;
      color: var(--primary);
      font-weight: 900;
    }

    .predictor {
      background:
        linear-gradient(135deg, rgba(23, 86, 214, 0.06), transparent 34%),
        linear-gradient(315deg, rgba(246, 187, 59, 0.1), transparent 30%),
        var(--soft);
    }

    .predictor-grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
      gap: 28px;
      align-items: start;
    }

    .predictor-panel {
      position: relative;
      padding: 28px;
      overflow: hidden;
    }

    .predictor-panel::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 7px;
      background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    }

    .prediction-result {
      display: none;
      position: relative;
      margin-top: 24px;
      padding: 28px;
      overflow: hidden;
      border: 1px solid rgba(23, 86, 214, 0.13);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
      box-shadow: 0 28px 78px rgba(23, 86, 214, 0.16);
    }

    .prediction-result.show {
      display: block;
      animation: resultReveal 0.5s ease both;
    }

    .result-ribbon {
      position: absolute;
      top: 22px;
      right: -44px;
      z-index: 2;
      width: 174px;
      padding: 8px 0;
      transform: rotate(34deg);
      text-align: center;
      color: #ffffff;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      box-shadow: 0 12px 26px rgba(23, 86, 214, 0.22);
      font-size: 0.74rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .prediction-cards {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 22px;
    }

    .prediction-card {
      position: relative;
      min-width: 0;
      padding: 20px;
      overflow: hidden;
      border: 1px solid rgba(23, 86, 214, 0.12);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 18px 46px rgba(23, 86, 214, 0.11);
      animation: resultCardUp 0.56s ease both;
      animation-delay: calc(var(--i, 0) * 0.08s);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .prediction-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    }

    .prediction-card.low {
      border-color: rgba(192, 57, 43, 0.2);
      background: linear-gradient(180deg, rgba(255, 250, 248, 0.98), rgba(255, 255, 255, 0.96));
    }

    .prediction-card.low::before {
      background: linear-gradient(90deg, #c0392b, #f6bb3b);
    }

    .prediction-card.medium {
      border-color: rgba(246, 187, 59, 0.28);
      background: linear-gradient(180deg, rgba(255, 252, 244, 0.98), rgba(255, 255, 255, 0.96));
    }

    .prediction-card.medium::before {
      background: linear-gradient(90deg, var(--accent), var(--primary));
    }

    .prediction-card.guidance {
      border-color: rgba(23, 86, 214, 0.28);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.98)),
        #ffffff;
      box-shadow: 0 28px 76px rgba(23, 86, 214, 0.2);
    }

    .prediction-card.guidance::before {
      height: 7px;
      background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    }

    .expert-badge {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      margin-bottom: 12px;
      padding: 0 11px;
      border-radius: 999px;
      color: #ffffff;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      box-shadow: 0 12px 28px rgba(23, 86, 214, 0.22);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .chance-badge {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 900;
    }

    .chance-high {
      color: #087255;
      background: rgba(25, 184, 147, 0.14);
    }

    .chance-medium {
      color: #8a5c00;
      background: rgba(246, 187, 59, 0.2);
    }

    .chance-low {
      color: #a63b2b;
      background: rgba(255, 111, 83, 0.13);
    }

    .prediction-meta {
      display: grid;
      gap: 8px;
      margin: 14px 0 18px;
      padding: 0;
      list-style: none;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.45;
    }

    .prediction-meta strong {
      color: #26395f;
    }

    .prediction-college-list {
      display: grid;
      gap: 8px;
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
    }

    .prediction-college-list li {
      padding: 9px 10px;
      border-radius: var(--radius);
      color: #26395f;
      background: rgba(23, 86, 214, 0.06);
      font-size: 0.9rem;
      font-weight: 800;
      line-height: 1.35;
    }

    .prediction-college-list li strong {
      display: block;
      margin-bottom: 5px;
      color: #172344;
      font-size: 0.92rem;
    }

    .prediction-college-list li span {
      display: block;
      color: #5c6d8a;
      font-size: 0.82rem;
      font-weight: 700;
      line-height: 1.45;
    }

    .prediction-college-list li em {
      display: inline-flex;
      margin-top: 7px;
      padding: 4px 8px;
      border-radius: 999px;
      color: #1756d6;
      background: rgba(23, 86, 214, 0.08);
      font-size: 0.74rem;
      font-style: normal;
      font-weight: 900;
    }

    .prediction-disclaimer {
      position: relative;
      z-index: 3;
      grid-column: 1 / -1;
      margin: 18px 0 0;
      padding: 13px 15px;
      border-left: 4px solid var(--accent);
      border-radius: var(--radius);
      color: #53637d;
      background: rgba(246, 187, 59, 0.1);
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .confetti-layer {
      position: absolute;
      inset: 0;
      z-index: 1;
      overflow: hidden;
      pointer-events: none;
    }

    .confetti-layer span {
      position: absolute;
      top: -20px;
      left: calc(var(--x) * 1%);
      width: 8px;
      height: 14px;
      border-radius: 2px;
      background: var(--c);
      opacity: 0;
      transform: rotate(var(--r));
      animation: confettiFall 1.05s ease-out var(--d) both;
    }

    .result-copy {
      position: relative;
      z-index: 3;
      max-width: 760px;
      padding-right: 80px;
    }

    .why {
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    .why-card .check {
      margin-bottom: 15px;
    }

    .office {
      background:
        linear-gradient(135deg, rgba(23, 86, 214, 0.92), rgba(128, 87, 232, 0.86)),
        var(--hero-image) center / cover no-repeat;
      color: #ffffff;
    }

    .office h2,
    .office h3,
    .office p {
      color: #ffffff;
    }

    .office-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
      gap: 28px;
      align-items: stretch;
    }

    .office-card {
      padding: 28px;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.94);
    }

    .office-card h3,
    .office-card p {
      color: var(--ink);
    }

    .map-box {
      min-height: 250px;
      padding: 24px;
      display: grid;
      align-content: end;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 0 2px, transparent 2px 16px);
      box-shadow: 0 24px 60px rgba(10, 25, 70, 0.22);
    }

    .stats {
      background: var(--soft);
    }

    .stat-card {
      padding: 26px 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      text-align: center;
      background: #ffffff;
      box-shadow: 0 18px 42px rgba(23, 86, 214, 0.08);
    }

    .stat-card strong {
      display: block;
      color: var(--primary);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
    }

    .stat-card span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-weight: 800;
    }

    .reviews {
      background: #ffffff;
    }

    .review-card p {
      margin-bottom: 16px;
      color: #465873;
      font-weight: 650;
    }

    .success-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 15px;
    }

    .success-avatar {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      color: #ffffff;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 14px 30px rgba(23, 86, 214, 0.2);
      font-weight: 900;
    }

    .success-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 14px 0 0;
    }

    .success-badge {
      min-height: 30px;
      display: inline-flex;
      align-items: center;
      padding: 0 10px;
      border-radius: 999px;
      color: var(--primary-dark);
      background: rgba(23, 86, 214, 0.08);
      font-size: 0.78rem;
      font-weight: 900;
    }

    .success-note {
      width: min(850px, 100%);
      margin: 22px auto 0;
      padding: 14px 16px;
      border-left: 4px solid var(--accent);
      border-radius: var(--radius);
      color: #53637d;
      background: rgba(246, 187, 59, 0.1);
      text-align: center;
      font-size: 0.92rem;
      line-height: 1.6;
    }

    .instagram-highlights {
      background:
        radial-gradient(circle at 12% 10%, rgba(128, 87, 232, 0.12), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(25, 184, 147, 0.1), transparent 26%),
        #ffffff;
    }

    .reels-carousel {
      position: relative;
      width: min(100%, 1180px);
      margin: 0 auto;
      overflow: hidden;
      padding: 10px 0 24px;
    }

    .reels-carousel::before,
    .reels-carousel::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      z-index: 2;
      width: 70px;
      pointer-events: none;
    }

    .reels-carousel::before {
      left: 0;
      background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
    }

    .reels-carousel::after {
      right: 0;
      background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
    }

    .reels-track {
      display: flex;
      width: max-content;
      gap: 18px;
      animation: reelsMarquee 44s linear infinite;
      will-change: transform;
    }

    .reels-carousel:hover .reels-track {
      animation-play-state: paused;
    }

    .reel-card {
      width: clamp(250px, 24vw, 330px);
      aspect-ratio: 9 / 16;
      flex: 0 0 auto;
      overflow: hidden;
      border: 1px solid rgba(23, 86, 214, 0.12);
      border-radius: var(--radius);
      background: #ffffff;
      box-shadow: 0 22px 56px rgba(23, 86, 214, 0.14);
      transform: translateZ(0);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .reel-card:hover {
      transform: translateY(-6px);
      border-color: rgba(23, 86, 214, 0.22);
      box-shadow: 0 30px 76px rgba(23, 86, 214, 0.2);
    }

    .reel-card .instagram-media {
      min-width: 100% !important;
      max-width: 100% !important;
      width: 100% !important;
      height: 100% !important;
      margin: 0 !important;
      border: 0 !important;
      box-shadow: none !important;
    }

    .reel-card iframe {
      width: 100% !important;
      height: 100% !important;
      border: 0 !important;
    }

    .instagram-cta {
      margin-top: 18px;
      display: flex;
      justify-content: center;
    }

    @keyframes reelsMarquee {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(calc(-50% - 9px));
      }
    }

    .stars {
      margin-bottom: 12px;
      color: var(--accent);
      letter-spacing: 0.12em;
    }

    .blogs {
      background: var(--soft);
    }

    .blog-card p {
      margin-bottom: 0;
      font-size: 0.95rem;
    }

    .contact {
      background:
        radial-gradient(circle at 14% 12%, rgba(128, 87, 232, 0.1), transparent 27%),
        radial-gradient(circle at 86% 80%, rgba(25, 184, 147, 0.1), transparent 25%),
        #ffffff;
    }

    .contact-card {
      padding: 26px;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .contact-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px;
      border-radius: var(--radius);
      background: #f7faff;
      color: var(--muted);
      line-height: 1.55;
    }

    .contact-list strong {
      display: block;
      color: var(--ink);
    }

    .footer {
      padding: 54px 0 24px;
      color: #dce6ff;
      background: #102044;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(0, 0.75fr));
      gap: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      color: #ffffff;
      font-weight: 900;
    }

    .footer-brand img {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      object-fit: cover;
    }

    .footer p,
    .footer li,
    .footer a {
      color: #c9d6f5;
      line-height: 1.55;
    }

    .footer h3 {
      color: #ffffff;
      font-size: 1rem;
    }

    .footer ul {
      margin: 0;
      padding: 0;
      display: grid;
      gap: 9px;
      list-style: none;
    }

    .socials {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }

    .socials a {
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      padding: 0 12px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--radius);
    }

    .copyright {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      color: #b9c7e8;
      font-size: 0.92rem;
    }

    .whatsapp-float {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 900;
      width: 60px;
      height: 60px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #ffffff;
      background: #1fbd62;
      box-shadow: 0 16px 38px rgba(31, 189, 98, 0.34);
      animation: pulse 1.9s infinite, floatY 3.2s ease-in-out infinite;
    }

    .whatsapp-float svg {
      width: 28px;
      height: 28px;
    }

    .whatsapp-float:hover {
      box-shadow: 0 0 0 10px rgba(31, 189, 98, 0.14), 0 22px 46px rgba(31, 189, 98, 0.42);
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: grid;
      place-items: center;
      padding: 20px;
      background: rgba(16, 32, 68, 0.45);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .modal.show {
      opacity: 1;
      visibility: visible;
    }

    .modal-card {
      width: min(460px, 100%);
      padding: 30px;
      border-radius: var(--radius);
      background: #ffffff;
      box-shadow: 0 30px 90px rgba(16, 32, 68, 0.26);
      animation: resultReveal 0.35s ease both;
    }

    .modal-card h2 {
      font-size: 1.55rem;
    }

    .modal-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(31, 189, 98, 0.38), 0 16px 38px rgba(31, 189, 98, 0.34);
      }
      70% {
        box-shadow: 0 0 0 16px rgba(31, 189, 98, 0), 0 16px 38px rgba(31, 189, 98, 0.34);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(31, 189, 98, 0), 0 16px 38px rgba(31, 189, 98, 0.34);
      }
    }

    @keyframes floatY {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-8px);
      }
    }

    @keyframes resultReveal {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes resultCardUp {
      from {
        opacity: 0;
        transform: translateY(26px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes confettiFall {
      0% {
        opacity: 0;
        transform: translateY(0) rotate(var(--r));
      }
      16% {
        opacity: 1;
      }
      100% {
        opacity: 0;
        transform: translateY(230px) translateX(var(--drift)) rotate(calc(var(--r) + 180deg));
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .lead-wrap,
      .predictor-grid,
      .office-grid,
      .contact-wrap {
        grid-template-columns: 1fr;
      }

      .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .prediction-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      .menu-toggle {
        display: grid;
      }

      .nav-links {
        position: fixed;
        left: 14px;
        right: 14px;
        top: 92px;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        display: grid;
        gap: 7px;
        padding: 14px;
        border: 1px solid rgba(23, 86, 214, 0.12);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 24px 60px rgba(20, 57, 126, 0.18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-16px);
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
      }

      .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .nav-links > li > a {
        justify-content: center;
        width: 100%;
      }

      .mega-menu {
        position: static;
        width: 100%;
        max-width: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: max-height 0.28s ease;
      }

      .site-header.scrolled .mega-menu,
      .nav-item.has-mega:hover .mega-menu,
      .nav-item.has-mega:focus-within .mega-menu {
        top: auto;
        transform: none;
      }

      .nav-item.mega-open .mega-menu {
        max-height: 740px;
      }

      .nav-item.has-mega.mega-open > a::after {
        transform: rotate(225deg) translate(-2px, -2px);
      }

      .mega-panel {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 8px;
        padding: 10px;
        border-color: rgba(23, 86, 214, 0.1);
        box-shadow: none;
        background: rgba(246, 248, 255, 0.92);
      }

      .mega-intro {
        padding: 12px;
      }

      .mega-grid {
        grid-template-columns: 1fr;
      }

      .mega-card {
        min-height: auto;
        grid-template-columns: 38px minmax(0, 1fr);
        align-items: center;
      }

      .mega-card span:last-child {
        grid-column: 2;
      }

      .reels-carousel {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
      }

      .reels-carousel::before,
      .reels-carousel::after {
        display: none;
      }

      .reels-track {
        width: auto;
        animation: none;
        padding: 0 4px;
      }

      .reel-card {
        width: min(78vw, 320px);
        scroll-snap-align: center;
      }
    }

    @media (max-width: 700px) {
      .container {
        width: min(100% - 28px, 1140px);
      }

      .section {
        padding: 66px 0;
      }

      .hero {
        min-height: auto;
        padding: 118px 0 58px;
      }

      .hero-points,
      .grid-4,
      .grid-3,
      .grid-2,
      .form-grid,
      .prediction-cards,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .btn,
      .action-row .btn,
      .hero-actions .btn,
      .modal-actions .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
      }

      .brand img {
        width: 42px;
        height: 42px;
      }

      .brand span {
        max-width: 166px;
        font-size: 0.92rem;
      }

      .form-card,
      .lead-panel,
      .predictor-panel,
      .prediction-result,
      .office-card,
      .contact-card {
        padding: 22px;
      }

      .result-copy {
        padding-right: 0;
      }

      .result-ribbon {
        display: none;
      }

      .copyright {
        display: grid;
      }

      .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 54px;
        height: 54px;
      }
    }

    .faq-section {
      background:
        radial-gradient(circle at 15% 18%, rgba(128, 87, 232, 0.1), transparent 28%),
        radial-gradient(circle at 86% 76%, rgba(25, 184, 147, 0.09), transparent 24%),
        var(--soft);
    }

    .faq-list {
      width: min(920px, 100%);
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .faq-item:hover,
    .faq-item.active {
      transform: translateY(-3px);
      border-color: rgba(128, 87, 232, 0.32);
      box-shadow: 0 24px 60px rgba(23, 86, 214, 0.18);
    }

    .faq-question {
      width: 100%;
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 22px;
      border: 0;
      background: transparent;
      color: var(--ink);
      font-weight: 900;
      text-align: left;
      cursor: pointer;
    }

    .faq-question span {
      width: 32px;
      height: 32px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      color: #ffffff;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 12px 24px rgba(23, 86, 214, 0.18);
      transition: transform 0.24s ease;
    }

    .faq-item.active .faq-question span {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.32s ease;
    }

    .faq-answer p {
      margin: 0;
      padding: 0 22px 20px;
      color: var(--muted);
      line-height: 1.7;
    }

    .faq-item.active .faq-answer {
      max-height: 360px;
    }

    .page-main {
      padding-top: 104px;
    }

    .page-main .section:first-child {
      padding-top: 72px;
    }

    @media (max-width: 760px) {
      .page-main {
        padding-top: 94px;
      }
    }



    .urgent-popup {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: grid;
      place-items: center;
      padding: 18px;
      background: rgba(13, 30, 72, 0.5);
      backdrop-filter: blur(12px);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 0.28s ease, visibility 0.28s ease;
    }

    .urgent-popup.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .urgent-popup-card {
      position: relative;
      width: min(460px, 100%);
      overflow: hidden;
      padding: 30px 26px 26px;
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 18px;
      background:
        radial-gradient(circle at 14% 0%, rgba(246, 187, 59, 0.3), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f5f8ff 48%, #eef1ff 100%);
      box-shadow: 0 28px 80px rgba(23, 86, 214, 0.28);
      text-align: center;
      animation: urgentPopIn 0.55s cubic-bezier(0.2, 0.9, 0.2, 1) both;
    }

    .urgent-popup-card::before {
      content: "";
      position: absolute;
      inset: -2px;
      z-index: -1;
      background: linear-gradient(135deg, var(--accent), var(--primary), var(--secondary));
      filter: blur(18px);
      opacity: 0.34;
    }

    .urgent-popup-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(246, 187, 59, 0.16);
      color: #9b5c00;
      font-size: 0.78rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .urgent-popup-title {
      margin: 16px 0 10px;
      color: var(--ink);
      font-size: clamp(1.75rem, 5vw, 2.45rem);
      line-height: 1.08;
      font-weight: 900;
    }

    .urgent-popup p {
      width: min(340px, 100%);
      margin: 0 auto 22px;
      color: var(--muted);
      font-weight: 700;
      line-height: 1.55;
    }

    .urgent-popup-btn {
      width: min(260px, 100%);
      justify-content: center;
      animation: urgentButtonPulse 1.9s ease-in-out infinite;
    }

    .urgent-popup-close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 50%;
      background: rgba(19, 33, 71, 0.08);
      color: var(--ink);
      font-size: 1.65rem;
      line-height: 1;
      cursor: pointer;
      transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
    }

    .urgent-popup-close:hover {
      transform: rotate(90deg) scale(1.05);
      background: var(--primary);
      color: #ffffff;
    }

    @keyframes urgentPopIn {
      from {
        opacity: 0;
        transform: translateY(24px) scale(0.94);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes urgentButtonPulse {
      0%, 100% {
        box-shadow: 0 16px 34px rgba(23, 86, 214, 0.24);
      }
      50% {
        box-shadow: 0 20px 46px rgba(128, 87, 232, 0.34), 0 0 0 8px rgba(246, 187, 59, 0.14);
      }
    }

    @media (max-width: 520px) {
      .urgent-popup-card {
        padding: 28px 18px 22px;
        border-radius: 14px;
      }

      .urgent-popup-close {
        top: 10px;
        right: 10px;
      }
    }

