* {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #fffaf6;
      color: #162033;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none
    }

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: auto
    }

    :root {
      --orange: #ff7a12;
      --orange-dark: #f26100;
      --orange-soft: #fff1e5;
      --blue: #3558e8;
      --blue-2: #5b7cff;
      --text: #162033;
      --muted: #667085;
      --line: #ece5dc;
      --white: #ffffff;
      --bg: #fffaf6;
      --shadow: 0 16px 40px rgba(22, 32, 51, .08);

      --popup-text: #fff8ef;
      --popup-text-soft: rgba(255, 245, 232, 0.88);
      --popup-overlay: rgba(5, 2, 14, 0.72);
      --popup-border: rgba(255, 210, 165, 0.42);
      --gold-1: #fff6d9;
      --gold-2: #ffd777;
      --gold-3: #ffbe45;
      --gold-4: #f58b15;
      --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.46);
      --card-glow: rgba(255, 136, 0, 0.28);
      --violet-glow: rgba(141, 90, 255, 0.22);
    }

    header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(255, 250, 246, .94);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 15px 0;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 28px;
      font-weight: 900;
      color: var(--blue);
      letter-spacing: -1px;
      white-space: nowrap;
    }

    .logo-call {
      display: none;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, var(--orange), var(--orange-dark));
      color: #fff;
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 13px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(255, 122, 18, .16);
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
    }

    .nav-links a {
      color: #6d7280;
      font-size: 14px;
      font-weight: 700;
    }

    .nav-links a:hover {
      color: var(--orange)
    }

    .quote-btn,
    .primary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, var(--orange), var(--orange-dark));
      color: #fff;
      padding: 13px 22px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 12px 24px rgba(255, 122, 18, .18);
      transition: .25s ease;
      border: none;
      cursor: pointer;
    }

    .quote-btn:hover,
    .primary-btn:hover {
      transform: translateY(-2px)
    }

    .secondary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      color: var(--text);
      border: 1px solid #eadfd2;
      padding: 13px 22px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 800;
      transition: .25s ease;
      cursor: pointer;
    }

    .secondary-btn:hover {
      transform: translateY(-2px)
    }

    .hero {
      padding: 58px 0 46px;
      background:
        radial-gradient(circle at top left, rgba(255, 122, 18, .10), transparent 30%),
        radial-gradient(circle at top right, rgba(53, 88, 232, .10), transparent 28%),
        linear-gradient(180deg, #fffaf6 0%, #fff7f0 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 55% 40%;
      gap: 5%;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(90deg, #fff0e2, #eef2ff);
      color: var(--blue);
      padding: 10px 16px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 18px;
      border: 1px solid #efe3d6;
    }

    .hero h1 {
      font-size: clamp(34px, 5.1vw, 64px);
      line-height: 1.02;
      letter-spacing: -1.8px;
      font-weight: 900;
      max-width: 720px;
    }

    .hero .accent-orange {
      color: var(--orange);
    }

    .hero .accent-gradient {
      background: linear-gradient(90deg, var(--orange), var(--blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      margin-top: 20px;
      font-size: 17px;
      color: var(--muted);
      max-width: 700px;
      line-height: 1.85;
    }

    .hero-actions {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-trust {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      align-items: center;
    }

    .avatars {
      display: flex;
      align-items: center;
    }

    .avatars span {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--orange), var(--blue));
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      border: 2px solid #fff;
      margin-left: -7px;
    }

    .avatars span:first-child {
      margin-left: 0
    }

    .hero-card {
      background: rgba(255, 255, 255, .8);
      border: 1px solid #efe3d6;
      border-radius: 26px;
      padding: 24px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-card:before {
      content: "";
      position: absolute;
      right: -60px;
      top: -60px;
      width: 160px;
      height: 160px;
      background: radial-gradient(circle, rgba(255, 122, 18, .13) 0%, rgba(255, 122, 18, 0) 72%);
      pointer-events: none;
    }

    .card-label {
      font-size: 12px;
      font-weight: 800;
      color: var(--blue);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .hero-card h2 {
      font-size: clamp(26px, 2.7vw, 44px);
      line-height: 1.08;
      letter-spacing: -1px;
      font-weight: 900;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .hero-card .accent {
      color: var(--orange);
    }

    .hero-card p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 15px;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .form-grid {
      margin-top: 18px;
      display: grid;
      gap: 11px;
      position: relative;
      z-index: 1;
    }

    .input,
    .select,
    .textarea {
      width: 100%;
      border: 1px solid #eadfd2;
      background: #fff;
      border-radius: 14px;
      padding: 15px 16px;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: .2s ease;
    }

    .input:focus,
    .select:focus,
    .textarea:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 4px rgba(255, 122, 18, .10);
    }

    .textarea {
      min-height: 105px;
      resize: vertical
    }

    .captcha-row {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 10px;
      align-items: center;
    }

    .captcha-box {
      min-width: 108px;
      text-align: center;
      background: linear-gradient(135deg, #fff0e5, #eef2ff);
      border: 1px solid #eadfd2;
      color: var(--blue);
      padding: 14px 18px;
      border-radius: 14px;
      font-weight: 800;
      letter-spacing: 1px;
    }

    .terms {
      margin-top: 8px;
      text-align: center;
      color: var(--muted);
      font-size: 12px;
    }

    .section {
      padding: 78px 0
    }

    .section-header {
      max-width: 820px;
      margin: 0 auto 40px;
      text-align: center;
    }

    .section-tag {
      font-size: 12px;
      font-weight: 800;
      color: var(--blue);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-header h2 {
      font-size: clamp(28px, 3.4vw, 50px);
      line-height: 1.1;
      letter-spacing: -1.2px;
      font-weight: 900;
    }

    .section-header .accent {
      color: var(--orange);
    }

    .section-header p {
      margin-top: 16px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.85;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .card {
      background: #fff;
      border: 1px solid #efe3d6;
      border-radius: 24px;
      padding: 22px;
      box-shadow: 0 10px 28px rgba(22, 32, 51, .05);
      transition: .25s ease;
      position: relative;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 38px rgba(22, 32, 51, .08);
    }

    .pill {
      position: absolute;
      top: 16px;
      right: 16px;
      background: linear-gradient(90deg, var(--orange), #ff9441);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      padding: 7px 11px;
      border-radius: 999px;
      letter-spacing: .4px;
    }

    .card h3 {
      font-size: 20px;
      line-height: 1.18;
      letter-spacing: -.7px;
      margin-top: 8px;
      margin-bottom: 7px;
      max-width: 85%;
    }

    .muted {
      color: var(--muted);
      font-size: 13px
    }

    .blue-strong {
      color: var(--blue);
      font-weight: 800;
      margin: 12px 0;
      font-size: 14px;
    }

    .features {
      list-style: none;
      display: grid;
      gap: 9px;
      margin-top: 6px;
    }

    .features li {
      color: #3d4758;
      font-size: 14px;
      padding-left: 22px;
      position: relative;
    }

    .features li:before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--orange);
      font-weight: 900;
    }

    .save {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 17px;
      background: var(--orange-soft);
      color: var(--orange);
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
    }

    .mini-title {
      margin-top: 15px;
      font-size: 12px;
      font-weight: 800;
      color: var(--blue);
      display: none;
    }

    .price-label {
      margin-top: 7px;
      font-size: 13px;
      color: var(--muted);
    }

    .price-row {
      margin-top: 3px;
      display: flex;
      align-items: flex-end;
      gap: 8px;
      flex-wrap: wrap;
    }

    .old-price {
      color: #98a2b3;
      text-decoration: line-through;
      font-size: 18px;
      font-weight: 700;
    }

    .new-price {
      font-size: 34px;
      line-height: 1;
      font-weight: 900;
      color: var(--text);
      letter-spacing: -1px;
    }

    .card-note {
      margin-top: 10px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.75;
      min-height: 42px;
    }

    .gst {
      margin-top: 10px;
      font-size: 11px;
      color: var(--muted);
    }

    .featured {
      border: 1.5px solid #ffd7b3;
      background: linear-gradient(180deg, #fff 0%, #fff7f1 100%);
      box-shadow: 0 20px 42px rgba(255, 122, 18, .10);
    }

    .pricing-banner {
      background: linear-gradient(135deg, #ff8f2a 0%, #ff6f0f 45%, #5472f0 100%);
      border-radius: 30px;
      color: #fff;
      padding: 42px 24px;
      text-align: center;
      box-shadow: 0 22px 48px rgba(255, 122, 18, .18);
    }

    .pricing-banner p {
      max-width: 740px;
      margin: 16px auto 0;
      color: rgba(255, 255, 255, .93);
      font-size: 16px;
      line-height: 1.85;
    }

    .pricing-banner .primary-btn {
      margin-top: 24px;
      background: #fff;
      color: var(--orange);
      box-shadow: none;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .why-card {
      background: #fff;
      border: 1px solid #efe3d6;
      border-radius: 24px;
      padding: 24px 22px;
      box-shadow: 0 10px 28px rgba(22, 32, 51, .04);
    }

    .why-card .icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #fff1e5, #eef2ff);
      color: var(--orange);
      font-size: 24px;
      margin-bottom: 15px;
    }

    .why-card h3 {
      font-size: 20px;
      line-height: 1.22;
      letter-spacing: -.6px;
      margin-bottom: 10px;
    }

    .why-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.85;
    }

    .testimonial-card {
      max-width: 900px;
      margin: auto;
      background: #fff;
      border: 1px solid #efe3d6;
      border-radius: 28px;
      padding: 30px 24px;
      text-align: center;
      box-shadow: 0 14px 32px rgba(22, 32, 51, .05);
    }

    .stars {
      color: #ff9d22;
      font-size: 22px;
    }

    .testimonial-card p {
      margin-top: 16px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.95;
    }

    .client-name {
      margin-top: 18px;
      font-size: 21px;
      font-weight: 800;
    }

    .client-role {
      margin-top: 3px;
      color: var(--muted);
      font-size: 14px;
    }

    .youtube-shell {
      background: #fff;
      border: 1px solid #efe3d6;
      border-radius: 30px;
      padding: 28px;
      box-shadow: 0 16px 36px rgba(22, 32, 51, .05);
    }

    .youtube-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .youtube-top-left h3 {
      font-size: clamp(24px, 3.5vw, 40px);
      line-height: 1.12;
      letter-spacing: -1px;
      font-weight: 900;
    }

    .youtube-top-left p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.8;
      max-width: 700px;
    }

    .youtube-channel-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #ff3b30, #e4261a);
      color: #fff;
      padding: 13px 18px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
      box-shadow: 0 14px 28px rgba(228, 38, 26, .16);
    }

    .youtube-screen {
      background: linear-gradient(180deg, #1f2430, #0f1117);
      border-radius: 26px;
      padding: 18px;
      overflow: hidden;
      box-shadow: 0 20px 44px rgba(15, 17, 23, .22);
    }

    .screen-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }

    .screen-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #4a5060;
    }

    .screen-dot:nth-child(1) {
      background: #ff5f57
    }

    .screen-dot:nth-child(2) {
      background: #febc2e
    }

    .screen-dot:nth-child(3) {
      background: #28c840
    }

    .screen-url {
      margin-left: 8px;
      background: #2a3040;
      color: #cbd5e1;
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 12px;
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .video-grid {
      display: grid;
      grid-template-columns: auto auto auto auto;
      gap: 14px;
    }

    .video-card {
      background: #161a23;
      border: 1px solid rgba(255, 255, 255, .06);
      border-radius: 20px;
      overflow: hidden;
      color: #fff;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: auto;
    }

    .video-thumb {
      position: relative;
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, #ff8f2a, #5472f0);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      color: #fff;
      font-weight: 900;
    }

    .video-thumb.small {
      font-size: 28px;
    }

    .play-btn {
      width: 66px;
      height: 66px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .18);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    }

    .video-body {
      padding: 16px;
    }

    .video-body h4 {
      font-size: 16px;
      line-height: 1.45;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .video-body p {
      color: #cbd5e1;
      font-size: 13px;
      line-height: 1.7;
    }

    .faq-wrap {
      max-width: 960px;
      margin: auto;
      display: grid;
      gap: 13px;
    }

    .faq-item {
      background: #fff;
      border: 1px solid #efe3d6;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 22px rgba(22, 32, 51, .03);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      font-size: 15px;
      font-weight: 800;
      color: var(--text);
    }

    .faq-icon {
      min-width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #fff1e5, #eef2ff);
      color: var(--orange);
      font-size: 18px;
      font-weight: 900;
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.9;
    }

    .cta {
      padding-top: 10px;
    }

    .cta-box {
      background: linear-gradient(135deg, #ff8f2a 0%, #ff6f0f 40%, #5472f0 100%);
      color: #fff;
      border-radius: 32px 32px 0 0;
      padding: 56px 22px;
      text-align: center;
    }

    .cta-box h2 {
      max-width: 920px;
      margin: auto;
      font-size: clamp(28px, 4.8vw, 52px);
      line-height: 1.12;
      letter-spacing: -1.2px;
      font-weight: 900;
    }

    .cta-box p {
      max-width: 740px;
      margin: 18px auto 0;
      color: rgba(255, 255, 255, .94);
      font-size: 16px;
      line-height: 1.85;
    }

    .cta-actions {
      margin-top: 26px;
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .cta-actions .primary-btn {
      border: 2px solid white;
    }

    .cta-box .secondary-btn {
      background: #fff;
      color: var(--text);
      border: 2px solid orange;
    }

    footer {
      background: #1d2331;
      color: #fff;
      padding: 48px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .footer-title {
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-text,
    .footer-link {
      color: #d7deea;
      font-size: 14px;
      line-height: 1.9;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-bottom {
      margin-top: 28px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .10);
      text-align: center;
      color: #d7deea;
      font-size: 13px;
    }

    .mobile-sticky-bar {
      display: none;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1000;
      padding: 10px;
      background: rgba(255, 250, 246, .96);
      backdrop-filter: blur(10px);
      border-top: 1px solid #eadfd2;
      box-shadow: 0 -8px 24px rgba(22, 32, 51, .08);
      gap: 10px;
    }

    .mobile-sticky-bar a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      padding: 14px 10px;
      font-size: 14px;
      font-weight: 800;
    }

    .mobile-call-btn {
      background: #fff;
      color: var(--text);
      border: 1px solid #eadfd2;
    }

    .mobile-wa-btn {
      background: linear-gradient(180deg, var(--orange), var(--orange-dark));
      color: #fff;
      box-shadow: 0 10px 20px rgba(255, 122, 18, .18);
    }

    /* PREMIUM SCROLL POPUP CSS START */
    .offer-overlay {
      position: fixed;
      inset: 0;
      background: var(--popup-overlay);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.4s ease, visibility 0.4s ease;
      backdrop-filter: blur(7px);
    }

    .offer-overlay.show {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .offer-modal {
      position: relative;
      width: min(100%, 410px);
      border-radius: 30px;
      padding: 22px 24px 22px;
      overflow: visible;
      color: var(--popup-text);
      border: 1px solid var(--popup-border);
      box-shadow:
        var(--shadow-lg),
        0 0 0 1px rgba(255, 230, 197, 0.1) inset,
        0 0 45px var(--card-glow),
        0 0 85px rgba(132, 76, 255, 0.1);
      background:
        radial-gradient(circle at 16% 12%, rgba(255, 120, 0, 0.95) 0%, rgba(255, 120, 0, 0.72) 22%, rgba(255, 120, 0, 0.15) 46%, transparent 62%),
        radial-gradient(circle at 86% 83%, rgba(204, 88, 255, 0.9) 0%, rgba(157, 63, 255, 0.54) 20%, rgba(93, 38, 170, 0.16) 45%, transparent 64%),
        radial-gradient(circle at 87% 16%, rgba(112, 73, 255, 0.9) 0%, rgba(112, 73, 255, 0.56) 22%, rgba(112, 73, 255, 0.14) 46%, transparent 65%),
        linear-gradient(155deg, #6f2a18 0%, #552a39 30%, #422663 60%, #6a2eff 100%);
      transform: translateY(22px) scale(0.94);
      transition: transform 0.45s cubic-bezier(.2, .9, .2, 1);
      isolation: isolate;
      font-family: Arial, Helvetica, sans-serif;
    }

    .offer-overlay.show .offer-modal {
      transform: translateY(0) scale(1);
      animation: popupFloat 5.5s ease-in-out infinite;
    }

    .offer-modal::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: inherit;
      padding: 2px;
      background: conic-gradient(from 0deg,
          rgba(255, 232, 190, 0.15),
          rgba(255, 183, 80, 0.9),
          rgba(130, 88, 255, 0.8),
          rgba(255, 129, 0, 0.85),
          rgba(255, 232, 190, 0.15));
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: rotateBorder 6.5s linear infinite;
      z-index: -2;
      filter: blur(0.3px);
      opacity: 0.95;
      pointer-events: none;
    }

    .offer-modal::after {
      content: "";
      position: absolute;
      inset: -18px;
      border-radius: 40px;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 159, 67, 0.26), transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(133, 88, 255, 0.22), transparent 35%),
        radial-gradient(circle at 50% 85%, rgba(255, 196, 96, 0.18), transparent 40%);
      filter: blur(18px);
      opacity: 0.95;
      z-index: -3;
      pointer-events: none;
      animation: glowPulse 3.6s ease-in-out infinite;
    }

    .modal-sheen {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }

    .modal-sheen::before {
      content: "";
      position: absolute;
      top: -20%;
      left: -45%;
      width: 50%;
      height: 140%;
      transform: rotate(20deg);
      background: linear-gradient(90deg,
          transparent,
          rgba(255, 255, 255, 0.08),
          rgba(255, 255, 255, 0.16),
          transparent);
      animation: sheenSweep 5.5s ease-in-out infinite;
    }

    /* .offer-close {
      position: absolute;
      top: 12px;
      right: 14px;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      color: rgba(255, 255, 255, 0.92);
      font-size: 1.4rem;
      line-height: 1;
      cursor: pointer;
      z-index: 3;
      transition: transform 0.2s ease, background 0.2s ease;
      backdrop-filter: blur(6px);
    }

    .offer-close:hover {
      transform: scale(1.08);
      background: rgba(255, 255, 255, 0.12);
    } */

    .offer-badge {
      width: fit-content;
      margin: 0 auto 14px;
      padding: 7px 16px;
      border-radius: 999px;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: #ffe8c7;
      background: linear-gradient(90deg, rgba(77, 40, 22, 0.95), rgba(96, 51, 32, 0.95), rgba(78, 36, 62, 0.95));
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 8px 20px rgba(0, 0, 0, 0.18);
      position: relative;
      z-index: 1;
      text-align: center;
      backdrop-filter: blur(8px);
    }

    .offer-title {
      text-align: center;
      font-size: 1.7rem;
      line-height: 1.18;
      font-weight: 800;
      margin-bottom: 6px;
      position: relative;
      z-index: 1;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
      color: var(--popup-text);
    }

    .price-line {
      display: block;
      margin-top: 8px;
      font-weight: 800;
      line-height: 1;
    }

    .currency {
      font-size: 2rem;
      vertical-align: middle;
    }

    .price {
      font-size: clamp(2.8rem, 8vw, 4.2rem);
      letter-spacing: -1.8px;
      vertical-align: middle;
    }

    .only {
      font-size: 1.12rem;
      font-weight: 700;
      vertical-align: middle;
    }

    .offer-save {
      text-align: center;
      font-size: 1rem;
      font-weight: 600;
      color: #ffd27a;
      margin-bottom: 22px;
      position: relative;
      z-index: 1;
    }

    .offer-subtext {
      text-align: center;
      color: var(--popup-text-soft);
      font-size: 0.98rem;
      line-height: 1.65;
      max-width: 300px;
      margin: 0 auto 22px;
      position: relative;
      z-index: 1;
    }

    .offer-cta-wrap {
      position: relative;
      width: min(100%, 290px);
      margin: 0 auto 14px;
      z-index: 1;
    }

    .offer-cta-ring {
      position: absolute;
      inset: -6px;
      border-radius: 999px;
      background: conic-gradient(from 0deg,
          rgba(255, 215, 120, 0.15),
          rgba(255, 190, 75, 0.95),
          rgba(255, 255, 255, 0.65),
          rgba(255, 165, 42, 0.95),
          rgba(255, 215, 120, 0.15));
      filter: blur(10px);
      opacity: 0.8;
      animation: ringSpin 4s linear infinite, ringBreath 2.8s ease-in-out infinite;
      pointer-events: none;
    }

    .offer-cta {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      text-align: center;
      text-decoration: none;
      color: #8f4200;
      font-weight: 800;
      font-size: 1.05rem;
      padding: 16px 20px;
      border-radius: 999px;
      background:
        linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 58%, var(--gold-3) 100%);
      box-shadow:
        0 14px 28px rgba(255, 174, 63, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        inset 0 -3px 10px rgba(195, 114, 19, 0.18);
      transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
      overflow: hidden;
      isolation: isolate;
      font-family: Arial, Helvetica, sans-serif;
    }

    .offer-cta::before {
      content: "";
      position: absolute;
      top: 0;
      left: -120%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg,
          transparent,
          rgba(255, 255, 255, 0.18),
          rgba(255, 255, 255, 0.65),
          transparent);
      transform: skewX(-22deg);
      animation: buttonShine 2.8s ease-in-out infinite;
      z-index: 0;
    }

    .offer-cta::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
      pointer-events: none;
      z-index: 1;
    }

    .offer-cta-text,
    .offer-cta-icon {
      position: relative;
      z-index: 2;
    }

    .offer-cta-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.35);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      animation: iconNudge 1.8s ease-in-out infinite;
    }

    .offer-cta:hover {
      transform: translateY(-3px) scale(1.015);
      box-shadow:
        0 18px 34px rgba(255, 174, 63, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -3px 10px rgba(195, 114, 19, 0.22);
      filter: saturate(1.03);
    }

    .offer-cta:active {
      transform: translateY(-1px) scale(0.995);
    }

    .offer-timer {
      text-align: center;
      font-size: 0.9rem;
      color: #ffe4bf;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
    }

    .offer-dismiss {
      display: block;
      margin: 0 auto;
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.82);
      text-decoration: underline;
      font-size: 0.95rem;
      cursor: pointer;
      position: relative;
      z-index: 1;
      transition: opacity 0.2s ease, transform 0.2s ease;
      font-family: Arial, Helvetica, sans-serif;
    }

    .offer-dismiss:hover {
      opacity: 1;
      transform: translateY(-1px);
    }

    @keyframes popupFloat {

      0%,
      100% {
        transform: translateY(0) scale(1);
      }

      50% {
        transform: translateY(-4px) scale(1);
      }
    }

    @keyframes rotateBorder {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes glowPulse {

      0%,
      100% {
        opacity: 0.72;
        transform: scale(0.985);
      }

      50% {
        opacity: 1;
        transform: scale(1.02);
      }
    }

    @keyframes sheenSweep {
      0% {
        left: -55%;
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      45% {
        left: 120%;
        opacity: 0.9;
      }

      100% {
        left: 120%;
        opacity: 0;
      }
    }

    @keyframes ringSpin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes ringBreath {

      0%,
      100% {
        opacity: 0.7;
        transform: scale(0.98);
      }

      50% {
        opacity: 1;
        transform: scale(1.03);
      }
    }

    @keyframes buttonShine {
      0% {
        left: -130%;
      }

      55% {
        left: 140%;
      }

      100% {
        left: 140%;
      }
    }

    @keyframes iconNudge {

      0%,
      100% {
        transform: translateX(0);
      }

      50% {
        transform: translateX(3px);
      }
    }

    /* PREMIUM SCROLL POPUP CSS END */

    @media (prefers-reduced-motion: reduce) {

      .offer-modal,
      .offer-modal::before,
      .offer-modal::after,
      .modal-sheen::before,
      .offer-cta-ring,
      .offer-cta::before,
      .offer-cta-icon,
      .offer-overlay.show .offer-modal {
        animation: none !important;
      }

      .offer-modal,
      .offer-cta,
      .offer-close,
      .offer-overlay {
        transition: none !important;
      }
    }

    @media (max-width:1080px) {
      .hero-grid {
        grid-template-columns: 1fr
      }

      .service-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .video-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media (max-width:820px) {

      .nav-links,
      .quote-btn {
        display: none
      }

      .logo {
        font-size: 24px
      }

      .logo-call {
        display: inline-flex
      }

      .hero {
        padding: 42px 0 28px
      }

      .hero h1 {
        font-size: clamp(30px, 10vw, 48px);
        line-height: 1.04;
        letter-spacing: -1.2px;
      }

      .hero p {
        font-size: 15px
      }

      .hero-card {
        padding: 20px
      }

      .hero-card h2 {
        font-size: clamp(24px, 8vw, 36px)
      }

      .service-grid {
        grid-template-columns: 1fr
      }

      .why-grid {
        grid-template-columns: 1fr
      }

      .footer-grid {
        grid-template-columns: 1fr
      }

      .section {
        padding: 62px 0
      }

      .captcha-row {
        grid-template-columns: 1fr
      }

      .video-grid {
        grid-template-columns: 1fr
      }

      .mobile-sticky-bar {
        display: flex
      }

      body {
        padding-bottom: 84px
      }
    }

    @media (max-width:480px) {
      .container {
        width: min(1180px, calc(100% - 20px))
      }

      .nav-wrap {
        padding: 12px 0
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr
      }

      .cta-actions {
        display: grid;
        grid-template-columns: 1fr
      }

      .primary-btn,
      .secondary-btn {
        width: 100%
      }

      .new-price {
        font-size: 30px
      }

      .card h3 {
        font-size: 21px
      }

      .section-header h2 {
        font-size: 30px
      }

      .youtube-shell {
        padding: 18px
      }

      .youtube-top {
        margin-bottom: 18px
      }

      .offer-overlay {
        padding: 10px;
        align-items: center;
      }

      .offer-modal {
        width: 100%;
        padding: 18px 18px 18px;
        border-radius: 24px;
      }

      .offer-title {
        font-size: 1.38rem;
      }

      .currency {
        font-size: 1.5rem;
      }

      .price {
        font-size: 3rem;
      }

      .only {
        font-size: 0.98rem;
      }

      .offer-save {
        font-size: 0.92rem;
        margin-bottom: 16px;
      }

      .offer-subtext {
        font-size: 0.92rem;
        margin-bottom: 18px;
      }

      .offer-cta-wrap {
        width: 100%;
        max-width: 280px;
      }

      .offer-cta {
        font-size: 1rem;
        padding: 15px 16px;
      }

      .offer-badge {
        font-size: 0.7rem;
        padding: 6px 13px;
      }

      .offer-close {
        width: 34px;
        height: 34px;
        font-size: 1.25rem;
      }
    }

    @media (min-width:992px) {
      .offer-modal {
        width: 420px;
        padding: 25px 28px 24px;
      }

      .offer-title {
        font-size: 1.88rem;
      }

      .offer-subtext {
        max-width: 320px;
      }
    }
