/*
Theme Name: OTTRecharge Fresh
Theme URI: https://ottrecharge.com/
Author: OTTRecharge
Description: Fresh standalone OTTRecharge WordPress theme with site-wide sticky header, footer and popup.
Version: 2.0.0
Requires at least: 5.8
Requires PHP: 7.4
Text Domain: ottrecharge-fresh
*/


/*
Theme Name: OTTRecharge
Author: OTTRecharge
Description: OTTRecharge responsive unified-color WordPress theme.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: ottrecharge
*/

    /* ========== GLOBAL RESET ========== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Roboto, system-ui, -apple-system, 'Poppins', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #0a0a0f;
      min-height: 100vh;
      color: #e8e8f0;
      overflow-x: hidden;
    }

    /* ========== HEADER - STICKY ========== */
    .header-wrapper {
      width: 100%;
      background: #12121a;
      padding: 1.2rem 2.5rem;
      border-bottom: 1px solid #2a2a3a;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    }

    .header-container {
      max-width: 1450px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .brand a {
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0;
    }

    .brand-name {
      font-size: 2.65rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #D4AF37 !important;
      text-shadow: 0 0 30px rgba(212, 175, 55, 0.15), 0 0 60px rgba(212, 175, 55, 0.05);
      transition: all 0.3s ease;
    }
    .brand-name:hover {
      text-shadow: 0 0 40px rgba(212, 175, 55, 0.25), 0 0 80px rgba(212, 175, 55, 0.1);
      transform: scale(1.01);
    }

    /* SEARCH BOX - No red border, no arrow, perfect size */
    .search-desktop {
      flex: 1 1 400px;
      max-width: 700px;
      min-width: 200px;
    }

    .search-wrapper {
      position: relative;
      width: 100%;
    }

    .search-box {
      display: flex;
      align-items: center;
      background: #1a1a2a;
      border-radius: 60px;
      padding: 0.4rem 0.4rem 0.4rem 1.5rem;
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }

    .search-box:focus-within {
      border-color: #3a3a4a;
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.05), 0 0 60px rgba(255, 255, 255, 0.02);
      transform: scale(1.01);
    }

    .search-box i {
      color: #8a8a9a;
      font-size: 1.1rem;
      margin-right: 0.8rem;
    }

    .search-box input {
      border: none;
      background: transparent;
      padding: 0.9rem 0.4rem;
      font-size: 1.15rem;
      width: 100%;
      outline: none;
      color: #e8e8f0;
    }

    .search-box input::placeholder {
      color: #6a6a7a;
      font-size: 1rem;
    }

    .search-box button {
      background: #e61a3c;
      border: none;
      color: white;
      padding: 0.6rem 1.5rem;
      border-radius: 40px;
      font-size: 0.9rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 3px 15px rgba(230, 26, 60, 0.3);
      transition: all 0.15s ease;
      white-space: nowrap;
      letter-spacing: 0.3px;
      text-transform: uppercase;
      min-height: 44px;
    }

    .search-box button:hover {
      background: #c41232;
      transform: scale(0.96);
      box-shadow: 0 4px 20px rgba(230, 26, 60, 0.5);
    }

    /* ===== SUGGESTIONS DROPDOWN - CLEAN (No URL text) ===== */
    .suggestions-box {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      width: 100%;
      background: #1a1a2a;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 60px rgba(0,0,0,0.6);
      max-height: 300px;
      overflow-y: auto;
      display: none;
      z-index: 100;
    }

    .suggestions-box.active {
      display: block;
    }

    .suggestions-box .suggestion-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 18px;
      color: #e8e8f0;
      cursor: pointer;
      transition: 0.2s;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      text-decoration: none;
      font-size: 0.95rem;
    }

    .suggestions-box .suggestion-item:hover {
      background: rgba(255,255,255,0.06);
    }

    .suggestions-box .suggestion-item i {
      color: #D4AF37;
      font-size: 0.9rem;
      width: 20px;
    }

    .suggestions-box .suggestion-item .match {
      color: #D4AF37;
      font-weight: 700;
    }

    .menu-icon > a {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: #e8e8f0;
      font-weight: 500;
      padding: 0.8rem 1.4rem;
      border-radius: 40px;
      background: #1a1a2a;
      text-decoration: none;
      border: 1px solid #2a2a3a;
      cursor: pointer;
      transition: 0.2s;
      font-size: 1rem;
    }
    .menu-icon > a i {
      font-size: 1.2rem;
      color: #e8e8f0;
    }
    .menu-icon > a:hover {
      background: #2a2a3a;
      border-color: #e61a3c;
    }

    .mobile-search-wrapper {
      display: none;
      width: 100%;
      margin-top: 0.8rem;
      padding-top: 0.8rem;
      border-top: 1px solid #2a2a3a;
    }

    @media screen and (max-width: 820px) {
      .header-wrapper { padding: 0.9rem 1.2rem; }
      .search-desktop { display: none; }
      .mobile-search-wrapper { display: block; }
      .brand-name { font-size: 1.75rem; }
      .menu-icon > a { padding: 0.5rem 1rem; font-size: 0.9rem; }
      .menu-icon .menu-label-text { display: none; }
      .search-box { padding: 0.35rem 0.35rem 0.35rem 1.2rem; }
      .search-box input { font-size: 1rem; padding: 0.8rem 0.3rem; }
      .search-box input::placeholder { font-size: 0.9rem; }
      .search-box button { padding: 0.5rem 1.2rem; font-size: 0.8rem; min-height: 40px; }
      .search-box i { font-size: 1rem; }
    }
    @media screen and (min-width: 821px) {
      .mobile-search-wrapper { display: none !important; }
    }
    @media screen and (max-width: 480px) {
      .header-wrapper { padding: 0.7rem 0.8rem; }
      .brand-name { font-size: 1.4rem; }
      .search-box { padding: 0.25rem 0.25rem 0.25rem 0.8rem; }
      .search-box input { font-size: 0.85rem; padding: 0.6rem 0.2rem; }
      .search-box input::placeholder { font-size: 0.75rem; }
      .search-box button { padding: 0.35rem 0.8rem; font-size: 0.65rem; min-height: 32px; }
      .search-box i { font-size: 0.85rem; margin-right: 0.5rem; }
      .menu-icon > a { padding: 0.3rem 0.6rem; font-size: 0.8rem; }
      .menu-icon > a i { font-size: 0.9rem; }
    }

    /* ===== SIDEBAR ===== */
    .sidebar-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(6px);
      z-index: 9999;
    }
    .sidebar-overlay.active { display: block; }

    .sidebar-menu {
      position: fixed;
      top: 0; left: -100%;
      width: 320px;
      height: 100%;
      background: #12121a;
      z-index: 10000;
      transition: left 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
      padding: 2rem 1.5rem;
      overflow-y: auto;
      border-right: 1px solid #2a2a3a;
      box-shadow: 0 0 60px rgba(0,0,0,0.5);
    }
    .sidebar-menu.active { left: 0; }

    .sidebar-close {
      position: absolute;
      top: 0.8rem;
      right: 1.2rem;
      font-size: 1.8rem;
      color: #8a8a9a;
      cursor: pointer;
      background: none;
      border: none;
      transition: 0.2s;
      z-index: 10;
    }
    .sidebar-close:hover { color: #ffffff; transform: rotate(90deg); }

    .sidebar-brand {
      font-size: 1.8rem;
      font-weight: 700;
      color: #D4AF37;
      margin-bottom: 2.5rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .sidebar-menu-list { list-style: none; }
    .sidebar-menu-list li { margin-bottom: 0.4rem; }
    .sidebar-menu-list li a {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      color: #e8e8f0;
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 500;
      border-radius: 16px;
      transition: 0.2s;
    }
    .sidebar-menu-list li a:hover { background: #1a1a2a; }
    .sidebar-menu-list li a .icon-home { color: #e61a3c; }
    .sidebar-menu-list li a .icon-gift { color: #f9a825; }
    .sidebar-menu-list li a .icon-earth { color: #2a7de1; }
    .sidebar-menu-list li a .icon-support { color: #e61a3c; }

    .sidebar-divider { height: 1px; background: #2a2a3a; margin: 1rem 0; }

    .sidebar-btn-whatsapp {
      margin-top: 0.5rem;
      padding: 14px 18px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: white;
      font-weight: 600;
      box-shadow: 0 6px 20px rgba(37,211,102,0.15);
      transition: 0.2s;
    }
    .sidebar-btn-whatsapp:hover { transform: scale(1.02); box-shadow: 0 8px 30px rgba(37,211,102,0.25); }

    .sidebar-btn-support {
      margin-top: 0.5rem;
      padding: 14px 18px;
      background: linear-gradient(135deg, #e61a3c, #8a0a1e);
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: white;
      font-weight: 600;
      box-shadow: 0 6px 20px rgba(230,26,60,0.15);
      transition: 0.2s;
    }
    .sidebar-btn-support:hover { transform: scale(1.02); }

    /* =========================================
       HERO
    ========================================= */
    .hero {
      position: relative;
      min-height: 760px;
      width: 100%;
      display: flex;
      align-items: center;
      overflow: hidden;
      background:
        radial-gradient(circle at 78% 45%, rgba(255,20,55,.17), transparent 30%),
        radial-gradient(circle at 15% 80%, rgba(100,20,255,.09), transparent 30%),
        #030303;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 65px 65px;
      mask-image: linear-gradient(to bottom, black, transparent);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 650px;
      height: 650px;
      right: -250px;
      top: -220px;
      border-radius: 50%;
      background: rgba(255,20,55,.08);
      filter: blur(100px);
      animation: bgGlow 7s ease-in-out infinite alternate;
    }

    @keyframes bgGlow {
      from { transform: translate(0,0) scale(1); }
      to { transform: translate(-80px,80px) scale(1.2); }
    }

    .hero-container {
      position: relative;
      z-index: 5;
      width: 100%;
      max-width: 1280px;
      margin: auto;
      padding: 90px 30px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .hero-content { max-width: 620px; }

    .hero h1 {
      font-size: clamp(50px,6vw,78px);
      line-height: .96;
      letter-spacing: -4px;
      font-weight: 900;
      margin-bottom: 25px;
    }
    .hero h1 .heading-white { display: block; color: #fff; }
    .hero h1 .heading-red {
      display: block;
      color: #ff3158;
      text-shadow: 0 0 12px rgba(255,49,88,.25);
    }

    .description {
      max-width: 550px;
      color: #9c9ca2;
      font-size: 18px;
      line-height: 1.7;
      margin-bottom: 32px;
    }
    .description strong { color: #fff; }

    .buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      min-height: 56px;
      padding: 0 27px;
      border-radius: 13px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-decoration: none;
      font-size: 15px;
      font-weight: 800;
      transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -120%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
      transform: skewX(-25deg);
      transition: left .7s ease;
    }
    .btn:hover::before { left: 150%; }

    .whatsapp-btn {
      color: #fff;
      background: linear-gradient(135deg, #0dbb63, #16d978);
      box-shadow: 0 8px 30px rgba(0,210,105,.25);
      border: 1px solid rgba(255,255,255,.08);
    }
    .whatsapp-btn:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 18px 50px rgba(0,220,110,.45);
    }
    .whatsapp-btn .btn-icon { font-size: 22px; transition: transform .3s ease; }
    .whatsapp-btn:hover .btn-icon { transform: scale(1.2) rotate(-10deg); }

    .trial-btn {
      color: #080808;
      background: linear-gradient(135deg, #ffd84a, #ffb300);
      box-shadow: 0 8px 30px rgba(255,190,30,.25);
      border: 1px solid rgba(255,215,0,.15);
    }
    .trial-btn:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 18px 50px rgba(255,190,30,.5);
    }
    .trial-btn .btn-icon { font-size: 20px; transition: transform .3s ease; }
    .trial-btn:hover .btn-icon { transform: scale(1.3) rotate(180deg); }

    .visual {
      position: relative;
      height: 550px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-person-slider {
      position: relative;
      width: min(550px, 95%);
      height: 560px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      z-index: 3;
    }

    .hero-person {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) scale(1);
      width: auto;
      max-width: 70%;
      height: auto;
      max-height: 72%;
      object-fit: contain;
      object-position: center;
      filter: drop-shadow(0 25px 45px rgba(0,0,0,.65));
      opacity: 0;
      animation: heroPersonSwitch 39s ease-in-out infinite;
    }

    .hero-person-kapil { animation-delay: 0s; }
    .hero-person-samay { animation-delay: 3s; max-height: 68%; }
    .hero-person-ikka { animation-delay: 6s; }
    .hero-person-tarak { animation-delay: 9s; max-height: 68%; }
    .hero-person-bhootbangla { animation-delay: 12s; max-height: 70%; }
    .hero-person-lockup { animation-delay: 15s; max-height: 70%; }
    .hero-person-musafir { animation-delay: 18s; max-height: 70%; }
    .hero-person-mainwapas { animation-delay: 21s; max-height: 70%; }
    .hero-person-rajashivaji { animation-delay: 24s; max-height: 72%; }
    .hero-person-dedepyaarde2 { animation-delay: 27s; max-height: 70%; }
    .hero-person-daadikishaadi { animation-delay: 30s; max-height: 70%; }
    .hero-person-toaster { animation-delay: 33s; max-height: 70%; }
    .hero-person-peddit { animation-delay: 36s; max-height: 70%; }

    @keyframes heroPersonSwitch {
      0% { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
      2% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
      6% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
      8% { opacity: 0; transform: translate(-50%, -50%) scale(1.05); }
      100% { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
    }
    .hero-person { animation-duration: 39s; }

    .hero-label {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 6;
      width: 90%;
      text-align: center;
      font-size: clamp(13px, 1.8vw, 18px);
      font-weight: 700;
      color: #D4AF37;
      letter-spacing: 0.3px;
      text-shadow: 0 0 30px rgba(212,175,55,.3), 0 2px 20px rgba(0,0,0,.9);
      padding: 6px 12px;
      background: transparent;
      border: none;
      backdrop-filter: none;
      opacity: 0;
      animation: labelSlideUp 39s ease-in-out infinite;
      white-space: nowrap;
    }

    .hero-label-tarak,
    .hero-label-samay {
      font-size: clamp(11px, 1.4vw, 15px);
    }

    @keyframes labelSlideUp {
      0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
      2% { opacity: 1; transform: translateX(-50%) translateY(0); }
      6% { opacity: 1; transform: translateX(-50%) translateY(0); }
      8% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
      100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
    }

    .hero-label-kapil { animation: labelSlideUp 39s ease-in-out infinite; animation-delay: 0s; }
    .hero-label-samay { animation: labelSlideUp 39s ease-in-out infinite; animation-delay: 3s; }
    .hero-label-ikka { animation: labelSlideUp 39s ease-in-out infinite; animation-delay: 6s; }
    .hero-label-tarak { animation: labelSlideUp 39s ease-in-out infinite; animation-delay: 9s; }
    .hero-label-bhootbangla { animation: labelSlideUp 39s ease-in-out infinite; animation-delay: 12s; }
    .hero-label-lockup { animation: labelSlideUp 39s ease-in-out infinite; animation-delay: 15s; }
    .hero-label-musafir { animation: labelSlideUp 39s ease-in-out infinite; animation-delay: 18s; }
    .hero-label-mainwapas { animation: labelSlideUp 39s ease-in-out infinite; animation-delay: 21s; }
    .hero-label-rajashivaji { animation: labelSlideUp 39s ease-in-out infinite; animation-delay: 24s; }
    .hero-label-dedepyaarde2 { animation: labelSlideUp 39s ease-in-out infinite; animation-delay: 27s; }
    .hero-label-daadikishaadi { animation: labelSlideUp 39s ease-in-out infinite; animation-delay: 30s; }
    .hero-label-toaster { animation: labelSlideUp 39s ease-in-out infinite; animation-delay: 33s; }
    .hero-label-peddit { animation: labelSlideUp 39s ease-in-out infinite; animation-delay: 36s; }

    .hero-show-name { display: none; }

    .visual-glow {
      position: absolute;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: rgba(255,20,55,.15);
      filter: blur(75px);
      animation: visualGlow 4s ease-in-out infinite alternate;
    }

    @keyframes visualGlow {
      from { transform: scale(.9); opacity: .6; }
      to { transform: scale(1.15); opacity: 1; }
    }

    @media(max-width:900px) {
      .hero { min-height: auto; }
      .hero-container {
        grid-template-columns: 1fr;
        padding: 70px 20px 100px;
        text-align: center;
      }
      .hero-content { margin: auto; }
      .description { margin-left: auto; margin-right: auto; }
      .buttons { justify-content: center; }
      .visual { height: 470px; margin-top: -10px; }
      .hero-person-slider { width: min(500px, 92%); height: 470px; }
      .hero-person { max-height: 72%; max-width: 75%; }
      .hero-label { font-size: clamp(11px, 2vw, 16px); bottom: 10px; }
      .hero-label-tarak,
      .hero-label-samay { font-size: clamp(10px, 1.6vw, 14px); }
    }
    @media(max-width:550px) {
      .hero-container { padding-top: 55px; }
      .hero h1 { font-size: 46px; letter-spacing: -2.5px; }
      .description { font-size: 15px; line-height: 1.6; }
      .buttons { flex-direction: column; align-items: center; }
      .btn { width: 100%; max-width: 320px; }
      .visual { height: 350px; }
      .hero-person-slider { width: 94%; height: 350px; }
      .hero-person { max-height: 65%; max-width: 70%; }
      .hero-label { font-size: clamp(11px, 3.2vw, 14px); bottom: 10px; padding: 5px 10px; white-space: normal; line-height: 1.25; width: 92%; }
      .hero-label-tarak,
      .hero-label-samay { font-size: 9px; }
    }

    /* ===== COMBO PLANS ===== */
    .otr-combo-section,
    .otr-combo-section * {
      box-sizing: border-box;
    }

    .otr-combo-section {
      width: 100%;
      max-width: 1500px;
      margin: 0 auto;
      padding: 50px 24px 60px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 15% 20%, rgba(230, 26, 60, 0.10), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(90, 70, 255, 0.10), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(20, 120, 255, 0.08), transparent 35%),
        #090a10;
      border-radius: 42px;
      font-family: 'Segoe UI', system-ui, Arial, sans-serif;
    }

    .otr-combo-glow {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(110px);
      opacity: .45;
      z-index: 0;
      animation: otrGlowMove 12s ease-in-out infinite;
    }

    .otr-glow-one {
      width: 500px;
      height: 500px;
      background: rgba(230, 26, 60, .14);
      top: -220px;
      left: -150px;
    }
    .otr-glow-two {
      width: 550px;
      height: 550px;
      background: rgba(80, 70, 255, .13);
      right: -180px;
      top: 80px;
      animation-delay: -4s;
    }
    .otr-glow-three {
      width: 450px;
      height: 450px;
      background: rgba(0, 170, 255, .08);
      bottom: -250px;
      left: 40%;
      animation-delay: -7s;
    }

    @keyframes otrGlowMove {
      0%,100% { transform: translate3d(0,0,0) scale(1); }
      50% { transform: translate3d(30px,-25px,0) scale(1.12); }
    }

    .otr-particle {
      position: absolute;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255,255,255,.5);
      pointer-events: none;
      opacity: .25;
      animation: otrParticle 12s ease-in-out infinite;
    }
    .otr-p1 { top: 15%; left: 10%; }
    .otr-p2 { top: 30%; right: 12%; animation-delay: -3s; }
    .otr-p3 { bottom: 20%; left: 22%; animation-delay: -6s; }
    .otr-p4 { bottom: 15%; right: 20%; animation-delay: -9s; }

    @keyframes otrParticle {
      0%,100% { transform: translate(0,0); opacity: .15; }
      50% { transform: translate(35px,-45px); opacity: .45; }
    }

    .otr-combo-wrapper {
      width: 100%;
      max-width: 1250px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .otr-combo-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .otr-combo-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 22px;
      border-radius: 50px;
      background: rgba(230,26,60,.10);
      border: 1px solid rgba(230,26,60,.25);
      color: #ff5570;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      box-shadow: 0 10px 35px rgba(230,26,60,.12);
      animation: otrBadgePulse 3s ease-in-out infinite;
    }

    @keyframes otrBadgePulse {
      0%,100% { box-shadow: 0 10px 35px rgba(230,26,60,.10); }
      50% { box-shadow: 0 12px 45px rgba(230,26,60,.25); }
    }

    .otr-combo-title {
      margin: 20px 0 12px;
      font-size: clamp(2.4rem, 5vw, 4.3rem);
      line-height: 1.05;
      font-weight: 900;
      letter-spacing: -2px;
      color: #ffffff;
    }

    .otr-combo-subtitle {
      max-width: 760px;
      margin: 0 auto;
      color: #aeb5c9;
      font-size: 16px;
      line-height: 1.8;
    }

    .otr-combo-highlight {
      color: #ff4968;
      font-weight: 800;
    }

    .otr-combo-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
      align-items: stretch;
    }

    .otr-plan-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-width: 0;
      padding: 30px;
      border-radius: 34px;
      background: linear-gradient(145deg, rgba(28,30,42,.98), rgba(15,16,24,.98));
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: 0 25px 70px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
      overflow: hidden;
      transition: transform .45s cubic-bezier(.22,1,.36,1), border-color .45s, box-shadow .45s;
      animation: otrCardEnter .8s ease both;
    }
    .otr-plan-card:nth-child(2) { animation-delay: .15s; }

    @keyframes otrCardEnter {
      from { opacity: 0; transform: translateY(35px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .otr-plan-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 0%, rgba(230,26,60,.12), transparent 35%);
      pointer-events: none;
    }
    .otr-plan-card::after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      right: -150px;
      bottom: -150px;
      border-radius: 50%;
      background: rgba(80,70,255,.08);
      filter: blur(60px);
      pointer-events: none;
    }

    .otr-plan-card:hover {
      transform: translateY(-9px);
      border-color: rgba(255,73,104,.32);
      box-shadow: 0 35px 90px rgba(0,0,0,.45), 0 0 50px rgba(230,26,60,.08);
    }

    .otr-plan-name {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 0;
      color: #f7f8ff;
      font-size: 25px;
      font-weight: 850;
    }
    .otr-plan-name i {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 13px;
      background: rgba(230,26,60,.12);
      border: 1px solid rgba(230,26,60,.20);
      color: #ff4968;
      transition: .4s;
    }
    .otr-plan-card:hover .otr-plan-name i { transform: rotate(10deg) scale(1.08); }

    .otr-plan-duration {
      position: relative;
      z-index: 2;
      width: fit-content;
      margin: 12px auto 24px;
      padding: 7px 18px;
      border-radius: 50px;
      color: #ff6079;
      background: rgba(230,26,60,.08);
      border: 1px solid rgba(230,26,60,.18);
      font-size: 13px;
      font-weight: 800;
    }

    .otr-ott-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px 14px;
      padding: 20px 0;
      border-top: 1px solid rgba(255,255,255,.07);
      border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .otr-ott-item {
      min-height: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 10px;
      border-radius: 18px;
      background: rgba(255,255,255,.035);
      border: none;
      transition: transform .35s, background .35s;
      text-align: center;
    }
    .otr-ott-item:hover {
      transform: translateY(-4px) scale(1.04);
      background: rgba(255,255,255,.075);
    }
    .otr-ott-item img {
      width: 100%;
      max-width: 120px;
      height: 90px;
      object-fit: contain;
      filter: drop-shadow(0 5px 12px rgba(0,0,0,.35));
      transition: transform .35s;
      background: transparent;
      border-radius: 0;
    }
    .otr-ott-item:hover img { transform: scale(1.08); }
    .ott-label {
      font-size: 13px;
      font-weight: 800;
      color: #22c55e;
      letter-spacing: 0.3px;
      line-height: 1.2;
      max-width: 120px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      text-shadow: 0 0 20px rgba(34,197,94,0.15), 0 0 40px rgba(34,197,94,0.05);
    }

    .otr-combo-count {
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      color: #D4AF37;
      margin-top: -6px;
      margin-bottom: 10px;
      letter-spacing: 1px;
      text-shadow: 0 0 20px rgba(212,175,55,0.15);
    }

    .otr-device-section {
      position: relative;
      z-index: 2;
      margin-top: 18px;
      padding: 18px;
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.20), rgba(22, 163, 74, 0.15));
      border: 1px solid rgba(34, 197, 94, 0.35);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 12px 35px rgba(34, 197, 94, 0.10);
      text-align: center;
      transition: .35s;
    }
    .otr-device-section:hover {
      transform: translateY(-2px);
      border-color: rgba(34, 197, 94, 0.55);
      box-shadow: 0 15px 40px rgba(34, 197, 94, 0.20), inset 0 1px 0 rgba(255,255,255,.06);
    }
    .otr-device-title {
      margin-bottom: 13px;
      color: #ffffff;
      font-size: 14px;
      font-weight: 800;
    }
    .otr-device-icons {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 18px;
    }
    .otr-device-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      color: #ffffff;
      font-size: 11px;
      font-weight: 600;
      transition: .3s;
    }
    .otr-device-item i { font-size: 20px; color: #ffffff; }
    .otr-device-item:hover { color: #ffffff; transform: translateY(-3px); }
    .otr-device-item:hover i { color: #86efac; transform: scale(1.12); }
    .otr-device-more { color: #86efac; font-size: 12px; font-weight: 800; }

    .otr-benefits-box {
      position: relative;
      z-index: 2;
      margin-top: 18px;
      padding: 20px;
      border-radius: 22px;
      background: rgba(255,255,255,.035);
      border: 1px solid rgba(255,255,255,.07);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
      transition: .35s;
    }
    .otr-benefits-box:hover { border-color: rgba(255,255,255,.12); }
    .otr-benefits-title {
      margin-bottom: 15px;
      color: #ffffff;
      text-align: center;
      font-size: 14px;
      font-weight: 850;
    }
    .otr-benefits-list {
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .otr-benefits-list li {
      display: flex;
      align-items: center;
      gap: 11px;
      color: #ffffff;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.4;
    }
    .otr-benefit-number {
      width: 27px; height: 27px;
      flex: 0 0 27px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #e61a3c;
      color: #ffffff;
      font-size: 11px;
      font-weight: 900;
      box-shadow: 0 6px 18px rgba(230,26,60,.30);
      transition: .35s;
    }
    .otr-benefits-list li:hover .otr-benefit-number {
      transform: scale(1.12) rotate(8deg);
      box-shadow: 0 8px 25px rgba(230,26,60,.45);
    }
    .otr-benefit-text { color: #ffffff; }

    .otr-yearly-extra {
      margin: 18px 0;
      min-height: 112px;
      padding: 18px 16px;
      border-radius: 16px;
      background: rgba(255,255,255,.035);
      border: 1px solid rgba(255,255,255,.10);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      box-sizing: border-box;
    }
    .otr-yearly-save {
      font-size: 17px;
      font-weight: 900;
      color: #f5c451;
      line-height: 1.35;
      letter-spacing: .1px;
    }
    .otr-yearly-save-sub {
      margin-top: 7px;
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,.78);
      line-height: 1.45;
    }
    .otr-yearly-perks {
      margin-top: 9px;
      font-size: 11px;
      font-weight: 800;
      color: rgba(255,255,255,.65);
      line-height: 1.5;
    }
    @media (max-width: 600px) {
      .otr-yearly-extra { min-height: 108px; padding: 15px 12px; }
      .otr-yearly-save { font-size: 15px; }
      .otr-yearly-save-sub { font-size: 11px; }
      .otr-yearly-perks { font-size: 10px; }
    }

    .otr-price-section {
      position: relative;
      z-index: 2;
      margin-top: 18px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
      border: 1px solid rgba(255,255,255,.08);
      overflow: hidden;
    }
    .otr-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      padding: 19px 20px;
    }
    .otr-price-duration {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .otr-duration-main {
      color: #ffffff;
      font-size: 17px;
      font-weight: 850;
    }
    .otr-duration-main i {
      margin-right: 7px;
      color: #D4AF37;
      font-size: 1.1rem;
    }
    .otr-duration-sub {
      color: #ff3048;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    .otr-price {
      color: #ffffff;
      font-size: 32px;
      font-weight: 950;
      letter-spacing: -1px;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    .otr-price::before {
      content: "₹";
      font-size: 18px;
      margin-right: 2px;
      color: #ffffff;
    }

    .otr-subscribe-btn {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: calc(100% - 24px);
      margin: 0 12px 12px;
      padding: 15px 20px;
      border-radius: 16px;
      background: linear-gradient(135deg, #e61a3c, #b90f2d);
      color: #ffffff;
      font-size: 14px;
      font-weight: 850;
      text-decoration: none;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(230,26,60,.20);
      transition: transform .35s, box-shadow .35s, filter .35s;
    }
    .otr-subscribe-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -120%;
      width: 80%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
      transform: skewX(-20deg);
      transition: left .7s;
    }
    .otr-subscribe-btn:hover::before { left: 140%; }
    .otr-subscribe-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(230,26,60,.35);
      filter: brightness(1.08);
    }
    .otr-subscribe-btn i { transition: transform .3s; }
    .otr-subscribe-btn:hover i { transform: translateX(6px); }

    @media (max-width: 900px) {
      .otr-yearly-extra { margin-top: 16px; }
      .otr-yearly-save { font-size: 16px; }
      .otr-yearly-perks { font-size: 10.5px; }

      .otr-combo-section { padding: 55px 18px; border-radius: 30px; }
      .otr-combo-grid { grid-template-columns: 1fr; max-width: 650px; margin: 0 auto; }
      .otr-plan-card { padding: 26px; }
      .otr-combo-title { font-size: 3rem; }
      .otr-ott-item img { max-width: 100px; height: 76px; }
      .ott-label { font-size: 12px; max-width: 100px; }
    }
    @media (max-width: 600px) {
      .otr-yearly-extra { padding: 12px 10px; border-radius: 14px; }
      .otr-yearly-save { font-size: 15px; }
      .otr-yearly-save-sub { font-size: 11px; }
      .otr-yearly-perks { font-size: 10px; }

      .otr-combo-section { padding: 40px 10px; border-radius: 22px; }
      .otr-combo-header { margin-bottom: 32px; }
      .otr-combo-badge { font-size: 10px; letter-spacing: 1.5px; padding: 8px 15px; }
      .otr-combo-title { font-size: 2.35rem; letter-spacing: -1.2px; }
      .otr-combo-subtitle { font-size: 13px; line-height: 1.7; padding: 0 8px; }
      .otr-combo-grid { gap: 18px; }
      .otr-plan-card { padding: 20px 14px; border-radius: 27px; }
      .otr-plan-name { font-size: 20px; }
      .otr-plan-name i { width: 36px; height: 36px; }
      .otr-ott-grid { gap: 12px 10px; }
      .otr-ott-item { min-height: 100px; padding: 10px 6px; border-radius: 14px; }
      .otr-ott-item img { max-width: 80px; height: 60px; }
      .ott-label { font-size: 11px; max-width: 80px; }
      .otr-device-section { padding: 15px 10px; }
      .otr-device-icons { gap: 13px; }
      .otr-device-item i { font-size: 18px; }
      .otr-benefits-box { padding: 16px 13px; }
      .otr-benefits-list li { font-size: 12px; }
      .otr-benefit-number { width: 25px; height: 25px; flex-basis: 25px; }
      .otr-price-row { padding: 16px 14px; }
      .otr-duration-main { font-size: 14px; }
      .otr-price { font-size: 27px; }
      .otr-subscribe-btn { padding: 13px 15px; font-size: 13px; }
      .otr-combo-count { font-size: 12px; }
    }
    @media (max-width: 380px) {
      .otr-combo-title { font-size: 2rem; }
      .otr-plan-card { padding: 17px 10px; }
      .otr-ott-grid { gap: 8px 6px; }
      .otr-ott-item { min-height: 85px; }
      .otr-ott-item img { max-width: 65px; height: 50px; }
      .ott-label { font-size: 9px; max-width: 65px; }
      .otr-device-icons { gap: 9px; }
      .otr-benefits-list li { font-size: 11px; }
      .otr-combo-count { font-size: 10px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .otr-combo-section *,
      .otr-combo-section *::before,
      .otr-combo-section *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }
    }

    /* ===== SERVICES ===== */
    .services-section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px;
      border-radius: 30px;
      background: linear-gradient(180deg, #111111 0%, #050505 100%);
      border: 1px solid rgba(255,255,255,.08);
      border-bottom: none;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }

    .section-title {
      text-align: center;
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 50px;
      color: #D4AF37;
      text-shadow: 0 0 20px rgba(212,175,55,0.3), 0 0 40px rgba(212,175,55,0.15), 0 0 80px rgba(212,175,55,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      font-family: 'Poppins', sans-serif;
    }

    .section-title .title-icon {
      font-size: 2.8rem;
      animation: iconPulse 2s ease-in-out infinite;
    }

    @keyframes iconPulse {
      0%,100% { transform: scale(1) rotate(0deg); opacity: 1; }
      50% { transform: scale(1.1) rotate(10deg); opacity: 0.8; }
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 22px;
    }

    .service-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 24px;
      padding: 25px 15px;
      text-decoration: none;
      text-align: center;
      transition: .35s ease;
      backdrop-filter: blur(20px);
      position: relative;
      overflow: hidden;
    }
    .service-card:hover {
      transform: translateY(-10px);
      border-color: #D4AF37;
      box-shadow: 0 0 25px rgba(212,175,55,.35), 0 0 60px rgba(212,175,55,.15);
    }

    .icon-wrapper {
      width: 80px;
      height: 80px;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
    }
    .icon-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform .4s ease;
    }
    .service-card:hover .icon-wrapper img {
      transform: scale(1.08) rotate(-3deg);
      filter: drop-shadow(0 0 20px rgba(212,175,55,0.3));
    }
    .service-card h3 {
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      position: relative;
      z-index: 2;
      font-family: 'Poppins', sans-serif;
    }

    @media(max-width:768px) {
      .services-grid { grid-template-columns: repeat(3,1fr); }
      .section-title { font-size: 2rem; gap: 10px; }
      .section-title .title-icon { font-size: 2rem; }
    }
    @media(max-width:480px) {
      .services-grid { grid-template-columns: repeat(2,1fr); gap: 15px; }
      .services-section { padding: 20px; border-radius: 20px; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
      .icon-wrapper { width: 65px; height: 65px; }
      .service-card { padding: 18px 10px; }
      .section-title { font-size: 1.5rem; gap: 8px; }
      .section-title .title-icon { font-size: 1.6rem; }
    }

    /* ===== REFER & EARN ===== */
    .refer-earn-section {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      background: linear-gradient(145deg, #0a0a0f 0%, #12121a 100%);
      padding: 4rem 2rem;
      border-radius: 48px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    }

    .refer-wrapper {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .refer-earn-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -30%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(230, 26, 60, 0.06), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      animation: glowFloatRef 12s ease-in-out infinite;
    }

    .refer-earn-section::after {
      content: '';
      position: absolute;
      bottom: -40%;
      left: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(249, 168, 37, 0.05), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      animation: glowFloatRef 15s ease-in-out infinite reverse;
    }

    @keyframes glowFloatRef {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(30px, -20px) scale(1.1); }
    }

    .refer-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, #e61a3c, #8a0a1e);
      padding: 8px 24px 8px 20px;
      border-radius: 60px;
      box-shadow: 0 8px 30px rgba(230, 26, 60, 0.2);
      margin-bottom: 1.5rem;
      animation: pulseBadgeRef 3s ease-in-out infinite;
    }

    @keyframes pulseBadgeRef {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.03); }
    }

    .refer-badge i { color: #ffd54f; font-size: 1.2rem; }
    .refer-badge span { color: white; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px; }

    .refer-title {
      font-size: 3rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 0.8rem;
      line-height: 1.1;
    }
    .refer-title .highlight {
      background: linear-gradient(135deg, #e61a3c, #f9a825);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .refer-title .highlight-percent {
      background: linear-gradient(135deg, #10B981, #f9a825);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 3.2rem;
    }

    .refer-subtitle {
      font-size: 1.2rem;
      color: #8a8a9a;
      max-width: 650px;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }
    .refer-subtitle strong { color: #e61a3c; }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 3rem;
    }

    .stat-card {
      background: #12121a;
      border-radius: 20px;
      padding: 1.5rem 1.2rem;
      text-align: center;
      border: 1px solid #2a2a3a;
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    .stat-card:hover {
      transform: translateY(-6px);
      border-color: #e61a3c;
      box-shadow: 0 16px 40px rgba(230, 26, 60, 0.08);
    }
    .stat-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
    .stat-number { font-size: 2rem; font-weight: 800; color: #ffffff; display: block; }
    .stat-number .percent { color: #10B981; }
    .stat-number .currency { font-size: 1.2rem; color: #e61a3c; }
    .stat-label { color: #8a8a9a; font-weight: 500; font-size: 0.95rem; margin-top: 0.2rem; }

    .steps-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #ffffff;
      text-align: center;
      margin-bottom: 2rem;
    }
    .steps-title span { color: #e61a3c; }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      margin-bottom: 3rem;
    }

    .step-card {
      background: #12121a;
      border-radius: 24px;
      padding: 2rem 1.5rem;
      text-align: center;
      border: 1px solid #2a2a3a;
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    .step-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #e61a3c, #f9a825, #10B981);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .step-card:hover::before { opacity: 1; }
    .step-card:hover {
      transform: translateY(-8px);
      border-color: #e61a3c;
      box-shadow: 0 20px 50px rgba(230, 26, 60, 0.08);
    }
    .step-number {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #e61a3c, #8a0a1e);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      color: white;
      font-size: 1.6rem;
      font-weight: 800;
      box-shadow: 0 8px 25px rgba(230, 26, 60, 0.15);
      transition: transform 0.4s;
    }
    .step-card:hover .step-number { transform: scale(1.1) rotate(-5deg); }
    .step-icon { font-size: 2.8rem; margin-bottom: 0.8rem; display: block; }
    .step-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 0.5rem;
    }
    .step-card p { color: #8a8a9a; line-height: 1.6; font-size: 0.95rem; }

    .upi-benefits {
      background: linear-gradient(135deg, #12121a, #0a0a0f);
      border-radius: 28px;
      padding: 2.5rem;
      border: 1px solid #2a2a3a;
      margin-bottom: 2.5rem;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
    .upi-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 2rem;
    }
    .upi-header i {
      font-size: 2.2rem;
      color: #e61a3c;
      background: rgba(230, 26, 60, 0.08);
      padding: 14px;
      border-radius: 16px;
    }
    .upi-header h3 { font-size: 1.8rem; font-weight: 700; color: #ffffff; }

    .upi-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .upi-item {
      text-align: center;
      padding: 1.2rem;
      background: #12121a;
      border-radius: 18px;
      border: 1px solid #2a2a3a;
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .upi-item:hover {
      transform: translateY(-4px);
      border-color: #e61a3c;
      box-shadow: 0 12px 30px rgba(230, 26, 60, 0.08);
    }
    .upi-item i { font-size: 2.2rem; margin-bottom: 0.5rem; display: block; }
    .upi-item:nth-child(1) i { color: #10B981; }
    .upi-item:nth-child(2) i { color: #e61a3c; }
    .upi-item:nth-child(3) i { color: #f59e0b; }
    .upi-item:nth-child(4) i { color: #2a7de1; }
    .upi-item h4 { font-weight: 700; color: #ffffff; font-size: 1rem; margin-bottom: 0.2rem; }
    .upi-item p { color: #8a8a9a; font-size: 0.85rem; }

    .refer-cta {
      background: linear-gradient(135deg, #e61a3c, #8a0a1e);
      border-radius: 28px;
      padding: 3rem 2.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 50px rgba(230, 26, 60, 0.15);
    }
    .refer-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 70%);
      border-radius: 50%;
    }
    .refer-cta::after {
      content: '';
      position: absolute;
      bottom: -40%;
      left: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.06), transparent 70%);
      border-radius: 50%;
    }
    .refer-cta-content { position: relative; z-index: 1; }
    .refer-cta .cta-icon {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      display: inline-block;
      animation: floatRef 3s ease-in-out infinite;
    }
    @keyframes floatRef {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .refer-cta h2 {
      color: white;
      font-size: 2.4rem;
      font-weight: 800;
      margin-bottom: 0.8rem;
    }
    .refer-cta p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.1rem;
      max-width: 550px;
      margin: 0 auto;
      line-height: 1.6;
    }

    @media (max-width: 820px) {
      .refer-earn-section { padding: 2.5rem 1.5rem; border-radius: 32px; }
      .refer-title { font-size: 2.4rem; }
      .refer-title .highlight-percent { font-size: 2.6rem; }
      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: 1fr; }
      .upi-grid { grid-template-columns: repeat(2, 1fr); }
      .refer-cta h2 { font-size: 2rem; }
    }

    @media (max-width: 600px) {
      .refer-earn-section { padding: 2rem 1rem; border-radius: 24px; }
      .refer-title { font-size: 1.8rem; }
      .refer-title .highlight-percent { font-size: 2rem; }
      .refer-subtitle { font-size: 1rem; }
      .stats-row { grid-template-columns: 1fr; gap: 12px; }
      .steps-grid { gap: 16px; }
      .upi-grid { grid-template-columns: 1fr; gap: 12px; }
      .refer-cta { padding: 2rem 1.5rem; }
      .refer-cta h2 { font-size: 1.6rem; }
      .refer-cta p { font-size: 1rem; }
      .upi-benefits { padding: 1.5rem; }
      .upi-header h3 { font-size: 1.4rem; }
      .step-card { padding: 1.5rem 1rem; }
      .refer-badge { padding: 6px 16px 6px 14px; font-size: 0.8rem; }
      .refer-badge span { font-size: 0.8rem; }
    }

    @media (max-width: 400px) {
      .refer-title { font-size: 1.5rem; }
      .refer-title .highlight-percent { font-size: 1.6rem; }
      .stat-number { font-size: 1.5rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      .refer-earn-section::before,
      .refer-earn-section::after { animation: none; }
      .refer-badge { animation: none; }
      .refer-cta .cta-icon { animation: none; }
      .stat-card:hover { transform: none; }
      .step-card:hover { transform: none; }
      .step-card:hover .step-number { transform: none; }
      .upi-item:hover { transform: none; }
    }

    /* =========================================================
       HOW TO BUY
    ========================================================= */
    .how-ott-section {
      position: relative;
      width: 100%;
      padding: 100px 20px;
      background:
        radial-gradient(circle at 50% 45%, rgba(255, 35, 55, 0.055), transparent 45%),
        #050505;
      overflow: hidden;
    }

    .how-ott-section::before {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      right: -220px;
      top: 15%;
      border-radius: 50%;
      background: rgba(255, 35, 55, 0.05);
      filter: blur(100px);
      pointer-events: none;
    }

    .how-ott-container {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1150px;
      margin: 0 auto;
    }

    .how-ott-header {
      max-width: 850px;
      margin: 0 auto 60px;
      text-align: center;
    }

    .how-ott-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 17px;
      margin-bottom: 22px;
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: 50px;
      background: rgba(255,255,255,0.035);
      color: #ff3048;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.5px;
    }

    .how-ott-badge span {
      font-size: 8px;
      animation: howPulse 1.5s infinite;
    }

    .how-ott-header h2 {
      margin-bottom: 22px;
      font-size: clamp(35px, 5vw, 60px);
      line-height: 1.06;
      letter-spacing: -2px;
      font-weight: 900;
    }

    .how-ott-header h2 span {
      color: #ff3048;
    }

    .how-ott-header p {
      max-width: 760px;
      margin: 0 auto;
      color: #a5a5a5;
      font-size: 16px;
      line-height: 1.8;
    }

    .how-ott-header strong {
      color: #f4f4f4;
    }

    .how-ott-steps {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .how-ott-steps::before {
      content: "";
      position: absolute;
      top: 45px;
      left: 16%;
      right: 16%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,48,72,0.5), rgba(255,48,72,0.5), transparent);
      z-index: 0;
    }

    .how-ott-card {
      position: relative;
      z-index: 1;
      padding: 32px 27px;
      min-height: 270px;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 18px;
      background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
      text-align: center;
      transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    }

    .how-ott-card:hover {
      transform: translateY(-7px);
      border-color: rgba(255,48,72,0.35);
      background: linear-gradient(145deg, rgba(255,48,72,0.075), rgba(255,255,255,0.018));
    }

    .how-ott-number {
      width: 58px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      border-radius: 50%;
      background: #ff3048;
      color: #fff;
      font-size: 21px;
      font-weight: 900;
      box-shadow: 0 0 0 7px rgba(255,48,72,0.07), 0 10px 30px rgba(255,48,72,0.18);
      transition: transform 0.3s ease;
    }

    .how-ott-card:hover .how-ott-number {
      transform: scale(1.08);
    }

    .how-ott-card h3 {
      margin-bottom: 13px;
      color: #fff;
      font-size: 20px;
      font-weight: 800;
    }

    .how-ott-card p {
      color: #8f8f8f;
      font-size: 14px;
      line-height: 1.75;
    }

    .how-ott-bottom {
      display: flex;
      justify-content: center;
      margin-top: 38px;
    }

    .how-ott-bottom span {
      padding: 10px 18px;
      border: 1px solid rgba(255,48,72,0.18);
      border-radius: 50px;
      background: rgba(255,48,72,0.05);
      color: #ff3048;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.8px;
    }

    @keyframes howPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    @media (max-width: 850px) {
      .how-ott-section { padding: 75px 20px; }
      .how-ott-steps { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
      .how-ott-steps::before { display: none; }
    }

    @media (max-width: 600px) {
      .how-ott-section { padding: 65px 16px; }
      .how-ott-header { margin-bottom: 40px; }
      .how-ott-header h2 { font-size: 35px; letter-spacing: -1.5px; }
      .how-ott-header p { font-size: 14px; line-height: 1.7; }
      .how-ott-card { min-height: auto; padding: 27px 22px; }
      .how-ott-card h3 { font-size: 18px; }
    }

    /* =========================================================
       CHEAP OTT PLANS
    ========================================================= */
    .cheap-ott-section {
      width: 100%;
      padding: 95px 20px;
      background:
        radial-gradient(circle at 50% 10%, rgba(255, 35, 55, 0.10), transparent 38%),
        #050505;
      overflow: hidden;
    }

    .cheap-ott-container {
      width: 100%;
      max-width: 1050px;
      margin: 0 auto;
    }

    .cheap-ott-content {
      text-align: center;
    }

    .cheap-ott-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 17px;
      margin-bottom: 24px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50px;
      background: rgba(255,255,255,0.035);
      color: #ff3048;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.5px;
    }

    .cheap-ott-badge span {
      font-size: 8px;
      animation: pulseDot 1.5s infinite;
    }

    .cheap-ott-content h2 {
      max-width: 950px;
      margin: 0 auto 25px;
      font-size: clamp(38px, 5vw, 64px);
      line-height: 1.05;
      letter-spacing: -2px;
      font-weight: 900;
    }

    .cheap-ott-content h2 span {
      color: #ff3048;
    }

    .cheap-ott-content p {
      max-width: 800px;
      margin: 0 auto 17px;
      color: #a5a5a5;
      font-size: 16px;
      line-height: 1.8;
    }

    .cheap-ott-content strong {
      color: #f5f5f5;
      font-weight: 700;
    }

    .cheap-ott-price {
      display: inline-block;
      margin: 13px 0 20px;
      padding: 18px 30px;
      border-left: 3px solid #ff3048;
      background: linear-gradient(90deg, rgba(255,48,72,0.13), rgba(255,48,72,0.02));
      text-align: left;
    }

    .cheap-ott-price small {
      display: block;
      margin-bottom: 5px;
      color: #777;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
    }

    .cheap-ott-price strong {
      color: #ffffff;
      font-size: 46px;
      line-height: 1;
      font-weight: 900;
    }

    .cheap-ott-price span {
      margin-left: 5px;
      color: #ff3048;
      font-size: 14px;
      font-weight: 700;
    }

    .cheap-ott-trust {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      margin: 32px auto 28px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 180px;
      padding: 15px 18px;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 14px;
      background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
      text-align: left;
      transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }

    .trust-item:hover {
      transform: translateY(-4px);
      border-color: rgba(255,48,72,0.4);
      background: linear-gradient(145deg, rgba(255,48,72,0.08), rgba(255,255,255,0.02));
    }

    .trust-item > span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 900;
    }

    .trust-item .green-tick {
      background: rgba(34,197,94,0.12);
      color: #22c55e;
    }
    .trust-item .red-icon {
      background: rgba(255,48,72,0.12);
      color: #ff3048;
    }

    .trust-item strong {
      display: block;
      color: #ffffff;
      font-size: 13px;
      font-weight: 800;
    }

    .trust-item small {
      display: block;
      margin-top: 4px;
      color: #777;
      font-size: 10px;
    }

    .cheap-ott-final {
      font-size: 14px !important;
      color: #777 !important;
    }

    .cheap-ott-final strong {
      color: #bdbdbd;
    }

    @keyframes pulseDot {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    @media (max-width: 800px) {
      .cheap-ott-section { padding: 75px 20px; }
      .cheap-ott-content h2 { font-size: 46px; }
    }

    @media (max-width: 600px) {
      .cheap-ott-section { padding: 60px 16px; }
      .cheap-ott-content h2 { font-size: 36px; letter-spacing: -1.5px; }
      .cheap-ott-content p { font-size: 14px; line-height: 1.7; }
      .cheap-ott-price { padding: 16px 24px; }
      .cheap-ott-price strong { font-size: 40px; }
      .cheap-ott-trust { display: grid; grid-template-columns: 1fr; max-width: 380px; }
      .trust-item { width: 100%; }
    }

    @media (max-width: 380px) {
      .cheap-ott-content h2 { font-size: 32px; }
      .cheap-ott-price strong { font-size: 36px; }
    }

    /* =========================================================
       OTT DEALS
    ========================================================= */
    .ott-deals-section {
      width: 100%;
      padding: 100px 20px;
      background:
        radial-gradient(circle at 50% 0%, rgba(255, 35, 55, 0.08), transparent 45%),
        #050505;
      overflow: hidden;
    }

    .ott-deals-container {
      width: 100%;
      max-width: 1200px;
      margin: auto;
    }

    .ott-deals-heading {
      text-align: center;
      margin-bottom: 65px;
    }

    .ott-deals-heading h2 {
      max-width: 950px;
      margin: 0 auto;
      font-size: clamp(38px, 5.5vw, 70px);
      line-height: 1.02;
      font-weight: 900;
      letter-spacing: -2.5px;
      color: #fff;
    }

    .ott-deals-heading h2 .red {
      color: #ff3048;
    }

    .ott-deals-heading p {
      max-width: 650px;
      margin: 22px auto 0;
      color: #777;
      font-size: 15px;
      line-height: 1.8;
    }

    .ott-features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .ott-feature-card {
      position: relative;
      min-height: 275px;
      padding: 32px 26px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012));
      overflow: hidden;
      transition: transform .35s ease, border-color .35s ease, background .35s ease;
    }

    .ott-feature-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 30px;
      right: 30px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,48,72,0.9), transparent);
    }

    .ott-feature-card::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      top: -70px;
      right: -70px;
      background: rgba(255,48,72,0.10);
      border-radius: 50%;
      filter: blur(25px);
    }

    .ott-feature-card:hover {
      transform: translateY(-8px);
      border-color: rgba(255,48,72,0.35);
      background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015));
    }

    .ott-feature-icon {
      width: 65px;
      height: 65px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      border-radius: 16px;
      background: rgba(255,48,72,0.10);
      border: 1px solid rgba(255,48,72,0.18);
      color: #ff3048;
      font-size: 28px;
      box-shadow: 0 8px 30px rgba(255,48,72,0.08);
      position: relative;
      overflow: hidden;
      isolation: isolate;
      transition: all 0.4s ease;
    }

    .ott-feature-icon.green-icon {
      background: rgba(34,197,94,0.10);
      border-color: rgba(34,197,94,0.25);
      color: #22c55e;
      box-shadow: 0 8px 30px rgba(34,197,94,0.08);
    }
    .ott-feature-card:hover .ott-feature-icon.green-icon {
      background: rgba(34,197,94,0.18);
      border-color: rgba(34,197,94,0.4);
      box-shadow: 0 8px 40px rgba(34,197,94,0.2);
    }
    .ott-feature-icon.green-icon::before {
      background: radial-gradient(circle, rgba(34,197,94,0.35) 0%, transparent 65%);
    }

    .ott-feature-card:hover .ott-feature-icon {
      background: rgba(255,48,72,0.18);
      border-color: rgba(255,48,72,0.4);
      box-shadow: 0 8px 40px rgba(255,48,72,0.2);
    }
    .ott-feature-card:hover .ott-feature-icon.green-icon {
      background: rgba(34,197,94,0.18);
      border-color: rgba(34,197,94,0.4);
      box-shadow: 0 8px 40px rgba(34,197,94,0.2);
    }

    .ott-feature-icon::before {
      content: "";
      position: absolute;
      inset: -40%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,48,72,0.35) 0%, transparent 65%);
      animation: featureIconGlow 2.4s ease-in-out infinite;
      z-index: -1;
    }
    .ott-feature-icon.green-icon::before {
      background: radial-gradient(circle, rgba(34,197,94,0.35) 0%, transparent 65%);
    }

    @keyframes featureIconGlow {
      0%,100% { transform: scale(0.8); opacity: 0.4; }
      50% { transform: scale(1.2); opacity: 1; }
    }

    .ott-feature-icon span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transform-origin: center;
      will-change: transform, filter;
      transition: all 0.3s ease;
    }
    .ott-feature-card:hover .ott-feature-icon span { transform: scale(1.1); }

    .feature-icon-fast span { animation: iconBolt 1.2s ease-in-out infinite; }
    .feature-icon-safe span { animation: iconCheck 1.8s ease-in-out infinite; }
    .feature-icon-support span { animation: iconBolt 1.2s ease-in-out infinite; }
    .feature-icon-price span { animation: iconPrice 1.7s ease-in-out infinite; }

    @keyframes iconBolt {
      0%,100% { transform: translateY(0) rotate(-5deg) scale(1); filter: drop-shadow(0 0 3px rgba(255,48,72,0.2)); }
      35% { transform: translateY(-6px) rotate(8deg) scale(1.2); filter: drop-shadow(0 0 20px rgba(255,48,72,0.9)); }
      55% { transform: translateY(1px) rotate(-3deg) scale(0.95); filter: drop-shadow(0 0 10px rgba(255,48,72,0.5)); }
    }
    @keyframes iconCheck {
      0%,100% { transform: scale(1) rotate(0); filter: drop-shadow(0 0 3px rgba(34,197,94,0.2)); }
      20% { transform: scale(0.8); }
      45% { transform: scale(1.25) rotate(-10deg); filter: drop-shadow(0 0 20px rgba(34,197,94,0.9)); }
      65% { transform: scale(1) rotate(0); filter: drop-shadow(0 0 10px rgba(34,197,94,0.4)); }
    }
    @keyframes iconPrice {
      0%,100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 3px rgba(255,48,72,0.2)); }
      30% { transform: translateY(-5px) scale(1.1); filter: drop-shadow(0 0 20px rgba(255,48,72,0.9)); }
      55% { transform: translateY(0) scale(0.95); filter: drop-shadow(0 0 10px rgba(255,48,72,0.5)); }
    }

    @media (prefers-reduced-motion: reduce) {
      .ott-feature-icon::before,
      .ott-feature-icon span { animation: none !important; }
    }

    .ott-feature-card h3 {
      margin-bottom: 14px;
      color: #fff;
      font-size: 19px;
      line-height: 1.25;
      font-weight: 850;
      letter-spacing: -0.3px;
    }

    .ott-feature-card p {
      color: #888;
      font-size: 13px;
      line-height: 1.75;
    }

    .ott-feature-bottom {
      position: absolute;
      bottom: 24px;
      left: 26px;
      width: 35px;
      height: 2px;
      border-radius: 10px;
      background: #ff3048;
      opacity: .7;
    }

    @media (max-width: 1000px) {
      .ott-features { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .ott-deals-section { padding: 50px 16px; }
      .ott-deals-heading { margin-bottom: 35px; }
      .ott-deals-heading h2 { font-size: 40px; letter-spacing: -1.8px; }
      .ott-deals-heading p { font-size: 13px; }
      .ott-features { grid-template-columns: 1fr; gap: 14px; }
      .ott-feature-card { min-height: 230px; padding: 27px 23px; }
      .ott-feature-icon { width: 55px; height: 55px; font-size: 22px; }
    }

    /* =========================================================
       OTT GLOBAL SUPPORT
    ========================================================= */
    .ott-global-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 85px 25px 75px;
      background:
        radial-gradient(circle at 5% 10%, rgba(220,0,20,0.16), transparent 30%),
        radial-gradient(circle at 95% 85%, rgba(150,0,15,0.10), transparent 28%),
        #050505;
      color: #fff;
    }

    .ott-global-section:before,.ott-global-section:after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(100px);
    }
    .ott-global-section:before {
      width: 600px; height: 600px;
      left: -300px; top: 20%;
      background: rgba(230,0,20,.07);
      animation: ottBgMove 10s ease-in-out infinite alternate;
    }
    .ott-global-section:after {
      width: 500px; height: 500px;
      right: -250px; bottom: 10%;
      background: rgba(255,0,30,.06);
      animation: ottBgMove2 12s ease-in-out infinite alternate;
    }

    @keyframes ottBgMove {
      from { transform: translate(0,0) scale(1); }
      to { transform: translate(150px,70px) scale(1.25); }
    }
    @keyframes ottBgMove2 {
      from { transform: translate(0,0) scale(1); }
      to { transform: translate(-120px,-80px) scale(1.2); }
    }

    .ott-global-container {
      width: 100%;
      max-width: 1500px;
      margin: auto;
      position: relative;
      z-index: 2;
    }
    .ott-global-hero {
      max-width: 1250px;
      margin: 0 auto 65px;
      text-align: center;
    }
    .ott-eyebrow {
      display: inline-flex;
      padding: 11px 25px;
      border: 1px solid rgba(240,0,20,.55);
      border-radius: 50px;
      color: #ff8b8b;
      background: rgba(100,0,10,.15);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .8px;
      margin-bottom: 25px;
    }
    .ott-global-hero h2 {
      margin: 0;
      font-size: clamp(38px,5vw,68px);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: -2px;
      color: #fff;
    }
    .ott-global-hero h2 span {
      color: #ed0b19;
      text-shadow: 0 0 35px rgba(237,11,25,.2);
    }
    .ott-global-hero p {
      max-width: 1100px;
      margin: 27px auto 0;
      color: #b9b9b9;
      font-size: 18px;
      line-height: 1.8;
    }
    .ott-global-hero p strong { color: #fff; }

    .ott-location-block { margin-bottom: 70px; }
    .ott-section-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-bottom: 27px;
    }
    .ott-section-title i {
      width: 43px;
      height: 4px;
      border-radius: 20px;
      background: #ed0b19;
      box-shadow: 0 0 15px rgba(237,11,25,.55);
    }
    .ott-section-title h3 {
      margin: 0;
      font-size: 28px;
      font-weight: 900;
      color: #fff;
    }

    .ott-location-grid {
      display: grid;
      grid-template-columns: repeat(6,1fr);
      gap: 18px;
    }
    .ott-location-card {
      position: relative;
      min-height: 100px;
      padding: 20px 12px;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(145deg,rgba(28,28,28,.96),rgba(10,10,10,.96));
      border: 1px solid rgba(255,255,255,.09);
      overflow: hidden;
      transition: .4s;
    }
    .ott-location-card:before {
      content: "";
      position: absolute;
      width: 150%;
      height: 150%;
      top: -100%;
      left: -130%;
      background: linear-gradient(115deg,transparent 35%,rgba(255,255,255,.08) 50%,transparent 65%);
      transform: rotate(10deg);
      transition: left .7s;
    }
    .ott-location-card:hover:before { left: 110%; }
    .ott-location-card:after {
      content: "";
      position: absolute;
      top: 0;
      left: 15%;
      width: 70%;
      height: 1px;
      background: #ed0b19;
      opacity: 0;
      box-shadow: 0 0 20px #ed0b19;
      transition: opacity .3s;
    }
    .ott-location-card:hover:after { opacity: 1; }
    .ott-location-card:hover {
      transform: translateY(-9px) scale(1.025);
      border-color: rgba(237,11,25,.55);
      background: linear-gradient(145deg,rgba(45,8,10,.98),rgba(13,5,6,.98));
      box-shadow: 0 15px 40px rgba(0,0,0,.45),0 0 30px rgba(237,11,25,.12);
    }
    .ott-location-card strong {
      position: relative;
      z-index: 2;
      color: #fff;
      font-size: 18px;
      font-weight: 850;
    }
    .ott-location-card span {
      position: relative;
      z-index: 2;
      color: #a7a7a7;
      font-size: 15px;
      margin-top: 7px;
    }
    .ott-location-card.featured {
      border-color: #e60012;
      background: radial-gradient(circle at center,rgba(160,0,15,.30),rgba(20,5,7,.95));
      box-shadow: inset 0 0 35px rgba(220,0,20,.08);
    }

    .ott-support-cta {
      position: relative;
      max-width: 1150px;
      margin: 25px auto 0;
      padding: 38px 45px;
      text-align: center;
      border-radius: 30px;
      background: linear-gradient(145deg,rgba(25,25,25,.95),rgba(8,8,8,.98));
      border: 1px solid rgba(230,0,20,.55);
      box-shadow: 0 0 60px rgba(220,0,20,.06),inset 0 0 50px rgba(220,0,20,.025);
      overflow: hidden;
    }
    .ott-support-cta p {
      position: relative;
      margin: 0 auto 28px;
      max-width: 1000px;
      color: #bdbdbd;
      font-size: 19px;
      line-height: 1.8;
    }
    .ott-support-cta p span {
      color: #ed0b19;
      font-weight: 900;
    }
    .ott-support-cta p strong { color: #fff; }

    .ott-whatsapp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      padding: 16px 30px;
      border-radius: 50px;
      background: #ed0b19;
      color: #fff;
      text-decoration: none;
      font-size: 17px;
      font-weight: 850;
      box-shadow: 0 10px 30px rgba(237,11,25,.22);
      transition: .3s;
    }
    .ott-whatsapp-btn:hover {
      transform: translateY(-5px);
      background: #ff1726;
      box-shadow: 0 15px 45px rgba(237,11,25,.38);
    }
    .ott-whatsapp-btn b { font-size: 23px; }

    .ott-mini-brand {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-top: 48px;
      color: #777;
      font-size: 13px;
      letter-spacing: 3px;
    }
    .ott-mini-brand span { width: 50px; height: 1px; background: #3b3b3b; }
    .ott-mini-brand strong { color: #ed0b19; }

    @media(max-width:1100px) {
      .ott-location-grid { grid-template-columns: repeat(3,1fr); }
    }
    @media(max-width:700px) {
      .ott-global-section { padding: 60px 15px; }
      .ott-global-hero h2 { font-size: 36px; }
      .ott-global-hero p { font-size: 15px; }
      .ott-location-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
      .ott-location-card { min-height: 90px; padding: 15px 8px; }
      .ott-location-card strong { font-size: 15px; }
      .ott-location-card span { font-size: 12px; }
      .ott-support-cta { padding: 30px 18px; border-radius: 22px; }
      .ott-support-cta p { font-size: 15px; }
    }
    @media(max-width:420px) {
      .ott-global-hero h2 { font-size: 30px; }
      .ott-section-title { gap: 10px; }
      .ott-section-title h3 { font-size: 19px; }
    }
    @media(prefers-reduced-motion:reduce) {
      .ott-global-section:before,.ott-global-section:after { animation: none; }
    }

    /* =========================================================
       WHY CHOOSE US
    ========================================================= */
    .why-choose-us-section {
      max-width: 1200px;
      margin: 0 auto;
      background: linear-gradient(180deg, #111, #050505);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 30px;
      padding: 60px 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    }

    .why-choose-us-section .bg-2 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: #e50914;
      border-radius: 50%;
      opacity: .05;
      filter: blur(120px);
      bottom: -250px;
      left: -200px;
      pointer-events: none;
    }

    .why-choose-us-section .section-header {
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      z-index: 2;
    }

    .why-choose-us-section .lightning-text {
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      display: inline-block;
      color: #ffffff;
      text-shadow: 0 0 30px rgba(255, 255, 255, .08);
    }

    .why-choose-us-section .best-seller-text {
      display: block;
      margin-top: 20px;
      font-size: 1.3rem;
      font-weight: 700;
      color: #D4AF37;
      letter-spacing: 0.5px;
      text-shadow: 0 0 30px rgba(212,175,55,0.15);
    }

    .why-choose-us-section .best-seller-text i {
      color: #D4AF37;
      margin-right: 8px;
    }

    .why-choose-us-section .section-header p {
      margin-top: 18px;
      color: #9ca3af;
      font-size: 1.1rem;
    }

    .why-choose-us-section .features-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      position: relative;
      z-index: 2;
      justify-content: center;
      max-width: 1000px;
      margin: 0 auto;
    }

    .why-choose-us-section .feature-card {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .08);
      padding: 30px;
      border-radius: 24px;
      transition: .3s;
      text-align: center;
    }

    .why-choose-us-section .feature-card:hover {
      transform: translateY(-8px);
      border-color: #e50914;
      box-shadow: 0 0 30px rgba(229, 9, 20, .25);
    }

    .why-choose-us-section .feature-icon {
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      font-size: 28px;
      margin: 0 auto 20px;
    }

    .why-choose-us-section .feature-card:nth-child(1) .feature-icon {
      background: linear-gradient(135deg, #f1c40f, #f39c12);
      color: #1a1a1a;
      box-shadow: 0 0 25px rgba(241, 196, 15, 0.3);
    }
    .why-choose-us-section .feature-card:nth-child(2) .feature-icon {
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: #fff;
      box-shadow: 0 0 25px rgba(34, 197, 94, 0.3);
    }
    .why-choose-us-section .feature-card:nth-child(3) .feature-icon {
      background: linear-gradient(135deg, #e50914, #b91c1c);
      color: #fff;
      box-shadow: 0 0 25px rgba(229, 9, 20, 0.3);
    }

    .why-choose-us-section .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
      color: #ffffff;
    }

    .why-choose-us-section .feature-card p {
      color: #bdbdbd;
      line-height: 1.8;
    }

    .why-choose-us-section .highlight-badge {
      display: inline-block;
      margin-top: 18px;
      padding: 8px 18px;
      border-radius: 50px;
      font-size: .85rem;
      font-weight: 700;
    }
    .why-choose-us-section .feature-card:nth-child(1) .highlight-badge {
      background: #f1c40f;
      color: #1a1a1a;
    }
    .why-choose-us-section .feature-card:nth-child(2) .highlight-badge {
      background: #22c55e;
      color: #fff;
    }
    .why-choose-us-section .feature-card:nth-child(3) .highlight-badge {
      background: #e50914;
      color: #fff;
    }

    .why-choose-us-section .payment-methods {
      grid-column: 1 / -1;
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 24px;
      padding: 35px 40px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 20px;
      text-align: center;
    }

    .why-choose-us-section .payment-content {
      flex: 1;
      min-width: 280px;
    }
    .why-choose-us-section .payment-content h3 {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #ffffff;
    }
    .why-choose-us-section .payment-content p {
      color: #bdbdbd;
      line-height: 1.8;
    }

    .why-choose-us-section .easy-payment-highlight {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #e50914;
      padding: 12px 28px;
      border-radius: 50px;
      margin-top: 15px;
      font-weight: 700;
      color: #fff;
    }

    @media (max-width: 768px) {
      .why-choose-us-section { padding: 35px 20px; border-radius: 20px; }
      .why-choose-us-section .lightning-text { font-size: 2rem; }
      .why-choose-us-section .best-seller-text { font-size: 1.1rem; }
      .why-choose-us-section .features-container { grid-template-columns: 1fr; }
      .why-choose-us-section .payment-methods { padding: 25px 20px; }
    }
    @media (max-width: 480px) {
      .why-choose-us-section .best-seller-text { font-size: 1rem; }
      .why-choose-us-section .payment-content h3 { font-size: 1.6rem; }
      .why-choose-us-section .feature-icon { width: 60px; height: 60px; font-size: 24px; }
      .why-choose-us-section .feature-card h3 { font-size: 1.2rem; }
    }

    /* =========================================================
       FAQ
    ========================================================= */
    .ott-faq-wrapper {
      max-width: 820px;
      width: 100%;
      margin: 3rem auto 0;
      padding: 40px 30px;
      background:
        radial-gradient(circle at 50% 20%, rgba(229, 9, 20, 0.06), transparent 40%),
        #0a0a0f;
      border-radius: 30px;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .ott-language-switcher {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 35px;
    }

    .ott-lang-btn {
      padding: 12px 28px;
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,.08);
      background: #111111;
      color: #cfcfcf;
      cursor: pointer;
      font-weight: 700;
      transition: .3s;
      font-size: .95rem;
      letter-spacing: .3px;
    }
    .ott-lang-btn:hover { border-color: #E50914; color: #fff; }
    .ott-lang-btn.active {
      background: linear-gradient(135deg, #E50914, #b20710);
      color: #fff;
      border-color: #E50914;
      box-shadow: 0 0 20px rgba(229,9,20,.3);
    }

    .ott-faq-title {
      text-align: center;
      font-size: 2.8rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .ott-faq-title .ott-english { display: inline; }
    .ott-faq-title .ott-hindi { display: none; }
    .ott-faq-wrapper.hindi-mode .ott-faq-title .ott-english { display: none !important; }
    .ott-faq-wrapper.hindi-mode .ott-faq-title .ott-hindi { display: inline !important; }

    .ott-english { display: inline; }
    .ott-hindi { display: none; }
    .ott-faq-wrapper.hindi-mode .ott-english { display: none !important; }
    .ott-faq-wrapper.hindi-mode .ott-hindi { display: inline !important; }

    .ott-faq-item {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      margin-top: 18px;
      overflow: hidden;
      transition: .3s;
    }
    .ott-faq-item:hover { border-color: #E50914; box-shadow: 0 0 25px rgba(229,9,20,.08); }

    .ott-faq-question {
      padding: 22px 24px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: #fff;
      user-select: none;
      gap: 12px;
    }
    .ott-question-text { flex: 1; min-width: 0; }

    .ott-icon {
      flex: 0 0 auto;
      font-size: 24px;
      color: #E50914;
      font-weight: 700;
      transition: transform .25s ease;
      line-height: 1;
    }
    .ott-faq-item.active .ott-icon { transform: rotate(45deg); }

    .ott-faq-answer {
      display: none;
      padding: 0 24px 22px;
      background: #0d0d0d;
      color: #b8b8b8;
      line-height: 1.8;
      border-top: 1px solid rgba(255,255,255,.04);
    }
    .ott-faq-item.active .ott-faq-answer { display: block; }

    .ott-faq-answer .ott-english { display: block; }
    .ott-faq-answer .ott-hindi { display: none; }
    .ott-faq-wrapper.hindi-mode .ott-faq-answer .ott-english { display: none !important; }
    .ott-faq-wrapper.hindi-mode .ott-faq-answer .ott-hindi { display: block !important; }

    .ott-cta-faq {
      margin-top: 45px;
      background: linear-gradient(135deg, #E50914, #7f0010);
      border-radius: 28px;
      padding: 45px 30px;
      text-align: center;
      box-shadow: 0 15px 40px rgba(229,9,20,.25);
      position: relative;
      overflow: hidden;
    }
    .ott-cta-faq::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      top: -180px;
      right: -100px;
      filter: blur(40px);
      pointer-events: none;
    }
    .ott-cta-faq h3 {
      position: relative;
      z-index: 2;
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
    }
    .ott-cta-faq p {
      position: relative;
      z-index: 2;
      color: rgba(255,255,255,.9);
      margin-bottom: 25px;
      font-size: 1.05rem;
      line-height: 1.7;
    }
    .ott-cta-faq .ott-english { display: inline; }
    .ott-cta-faq .ott-hindi { display: none; }
    .ott-faq-wrapper.hindi-mode .ott-cta-faq .ott-english { display: none !important; }
    .ott-faq-wrapper.hindi-mode .ott-cta-faq .ott-hindi { display: inline !important; }

    .ott-whatsapp-btn-faq {
      position: relative;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 36px;
      border-radius: 50px;
      font-weight: 800;
      text-decoration: none;
      color: #fff;
      background: linear-gradient(135deg, #25D366, #128C7E);
      box-shadow: 0 8px 22px rgba(37,211,102,.35);
      transition: .3s;
      font-size: 1rem;
      border: none;
      cursor: pointer;
    }
    .ott-whatsapp-btn-faq:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 35px rgba(37,211,102,.5);
    }
    .ott-whatsapp-btn-faq .ott-english { display: inline; }
    .ott-whatsapp-btn-faq .ott-hindi { display: none; }
    .ott-faq-wrapper.hindi-mode .ott-whatsapp-btn-faq .ott-english { display: none !important; }
    .ott-faq-wrapper.hindi-mode .ott-whatsapp-btn-faq .ott-hindi { display: inline !important; }

    @media(max-width:768px) {
      .ott-faq-wrapper { padding: 30px 16px; border-radius: 20px; }
      .ott-faq-title { font-size: 2rem; }
      .ott-faq-question { padding: 18px; font-size: .95rem; }
      .ott-faq-answer { padding: 0 18px 20px; font-size: .9rem; }
      .ott-cta-faq { padding: 30px 20px; }
      .ott-cta-faq h3 { font-size: 1.5rem; }
      .ott-cta-faq p { font-size: .9rem; }
      .ott-lang-btn { padding: 10px 20px; font-size: .85rem; }
      .ott-whatsapp-btn-faq { width: 100%; padding: 15px 20px; }
    }
    @media(max-width:420px) {
      .ott-faq-title { font-size: 1.75rem; }
      .ott-language-switcher { gap: 8px; }
      .ott-lang-btn { padding: 9px 17px; }
    }

    /* =========================================================
       FOOTER - Sticky Footer
    ========================================================= */
    .footer-section {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      background: #050508;
      padding: 3rem 2.5rem 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.8);
      position: sticky;
      bottom: 0;
      z-index: 999;
      overflow: hidden;
      border-radius: 20px;
    }

    .footer-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, #e61a3c, #e61a3c, #e61a3c, transparent);
      opacity: 0.6;
      box-shadow: 0 0 20px rgba(230, 26, 60, 0.3);
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px 20px;
      position: relative;
      z-index: 2;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .footer-logo-text {
      font-size: 2rem;
      font-weight: 700;
      color: #D4AF37;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      letter-spacing: -0.3px;
      transition: 0.2s;
      text-shadow: 0 0 20px rgba(212,175,55,0.15);
    }

    .footer-logo-text .brand-name {
      color: #D4AF37;
      font-weight: 800;
      text-shadow: 0 0 30px rgba(212,175,55,0.2);
    }

    .footer-tagline {
      color: #ffffff;
      font-size: 0.95rem;
      font-weight: 400;
      letter-spacing: 0.2px;
      border-left: 2px solid #D4AF37;
      padding-left: 12px;
      opacity: 0.9;
      text-shadow: 0 0 12px rgba(212,175,55,0.10);
    }

    .footer-links {
      display: flex;
      gap: 10px 20px;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: center;
    }

    .footer-link {
      color: #8a8a9e;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      padding: 6px 4px;
      position: relative;
      transition: color 0.2s, transform 0.2s;
      letter-spacing: 0.2px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .footer-link i {
      font-size: 0.8rem;
      opacity: 0.5;
      transition: 0.2s;
    }

    .footer-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: #D4AF37;
      transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border-radius: 4px;
    }

    .footer-link:hover {
      color: #f0f0ff;
      transform: translateY(-1px);
    }
    .footer-link:hover::after { width: 100%; }
    .footer-link:hover i { opacity: 1; color: #D4AF37; }

    .footer-bottom {
      max-width: 1280px;
      margin: 2rem auto 0;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      width: 100%;
    }

    .footer-copy {
      color: #ffffff;
      font-size: 0.9rem;
      letter-spacing: 0.3px;
    }
    .footer-copy i,
    .footer-copy .fa-copyright {
      color: #ffffff;
    }
    .footer-copy span {
      color: #4a4a5e;
      margin: 0 6px;
    }

    .footer-follow {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .footer-follow-title {
      color: #ffffff;
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.5px;
      opacity: 0.7;
    }
    .footer-follow-icons {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .footer-follow-item {
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .footer-follow-item .follow-icon {
      color: #5a5a6e;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.04);
    }
    .footer-follow-item .follow-label {
      color: #8a8a9e;
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.3px;
      transition: color 0.3s ease;
    }

    .footer-follow-item.youtube .follow-icon {
      color: #FF0000;
      border-color: rgba(255, 0, 0, 0.15);
      background: rgba(255, 0, 0, 0.04);
    }
    .footer-follow-item.youtube:hover .follow-icon {
      background: rgba(255, 0, 0, 0.15);
      border-color: #FF0000;
      color: #FF0000;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
    }
    .footer-follow-item.youtube:hover .follow-label { color: #FF0000; }

    .footer-follow-item.instagram .follow-icon {
      color: #E4405F;
      border-color: rgba(228, 64, 95, 0.15);
      background: rgba(228, 64, 95, 0.04);
    }
    .footer-follow-item.instagram:hover .follow-icon {
      background: rgba(228, 64, 95, 0.15);
      border-color: #E4405F;
      color: #E4405F;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(228, 64, 95, 0.2);
    }
    .footer-follow-item.instagram:hover .follow-label { color: #E4405F; }

    @media screen and (max-width: 820px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
      }
      .footer-brand { align-items: center; }
      .footer-tagline { border-left: none; padding-left: 0; }
      .footer-links { justify-content: center; gap: 12px 18px; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
      .footer-follow { flex-direction: column; gap: 10px; }
      .footer-follow-icons { justify-content: center; }
    }

    @media screen and (max-width: 480px) {
      .footer-section { padding: 2rem 1.2rem 1.5rem; border-radius: 12px; }
      .footer-logo-text { font-size: 1.6rem; }
      .footer-link { font-size: 0.85rem; }
      .footer-follow-item .follow-label { font-size: 0.7rem; }
      .footer-follow-item .follow-icon { width: 30px; height: 30px; font-size: 1rem; }
    }

    /* =========================================================
       FULL-WIDTH / CLEAN SECTION OVERRIDE
    ========================================================= */
    html, body {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    .header-wrapper {
      width: 100vw !important;
      max-width: none !important;
      margin: 0 !important;
      border-radius: 0 !important;
      border-left: 0 !important;
      border-right: 0 !important;
      border-top: 0 !important;
      border-bottom: 0 !important;
      box-shadow: 0 4px 22px rgba(0,0,0,.22) !important;
    }

    .header-container {
      width: 100% !important;
      max-width: 1280px !important;
    }

    .otr-combo-section,
    .services-section,
    .why-choose-us-section,
    .refer-earn-section {
      width: 100% !important;
      max-width: none !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      border-radius: 0 !important;
      border-left: 0 !important;
      border-right: 0 !important;
      border-bottom: 0 !important;
      box-shadow: none !important;
    }

    .footer-section {
      border-top: 0 !important;
      box-shadow: none !important;
      margin-top: 0 !important;
      max-width: none !important;
      border-radius: 0 !important;
    }
    .footer-section::before { display: none !important; }

    @media screen and (max-width: 820px) {
      .header-wrapper { padding: .75rem 1rem !important; }
      .header-container { width: 100% !important; max-width: none !important; }
      .mobile-search-wrapper { width: 100% !important; border-top: 0 !important; padding-top: .55rem !important; }
      .otr-combo-section,
      .services-section,
      .why-choose-us-section,
      .refer-earn-section { border-radius: 0 !important; border: 0 !important; }
    }

    @media screen and (max-width: 480px) {
      .header-wrapper { padding: .7rem .85rem !important; }
      .services-section,
      .otr-combo-section,
      .why-choose-us-section,
      .refer-earn-section { border-radius: 0 !important; border: 0 !important; }
    }

    /* =========================================================
       OTTRECHARGE — UNIFIED HERO COLOR SYSTEM
    ========================================================= */
    :root {
      --otr-page-bg: #090a10;
      --otr-page-bg-2: #090a10;
      --otr-card-bg: rgba(255,255,255,.045);
      --otr-card-bg-hover: rgba(255,255,255,.075);
      --otr-border: rgba(255,255,255,.08);
      --otr-red: #e61a3c;
    }

    html, body {
      background: var(--otr-page-bg) !important;
    }

    body {
      color: #e8e8f0;
      background:
        radial-gradient(circle at 15% 10%, rgba(230,26,60,.055), transparent 28%),
        radial-gradient(circle at 85% 5%, rgba(90,70,255,.045), transparent 30%),
        var(--otr-page-bg) !important;
      overflow-x: hidden;
    }

    .otr-combo-section,
    .services-section,
    .refer-earn-section,
    .how-ott-section,
    .ott-trending-section,
    .ott-premium-section,
    .cheap-ott-section,
    .ott-why-section,
    .why-choose-us-section,
    .otr-footer-section,
    footer {
      background: transparent !important;
      background-color: transparent !important;
      border-radius: 0 !important;
      border-left: 0 !important;
      border-right: 0 !important;
    }

    .services-section,
    .why-choose-us-section,
    .refer-earn-section {
      border: 0 !important;
      box-shadow: none !important;
    }

    .header-wrapper {
      background: var(--otr-page-bg) !important;
      border-bottom: 0 !important;
      box-shadow: none !important;
    }

    .header-container {
      background: transparent !important;
    }

    .otr-combo-section {
      max-width: none !important;
    }

    .services-section,
    .refer-earn-section,
    .why-choose-us-section {
      max-width: none !important;
      width: 100% !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    .service-card,
    .ott-card,
    .ott-category-card,
    .ott-why-content,
    .how-ott-card,
    .otr-plan-card,
    .refer-cta,
    .stats-card,
    .step-card {
      background-color: var(--otr-card-bg);
    }

    .service-card:hover,
    .ott-card:hover,
    .ott-category-card:hover,
    .how-ott-card:hover {
      background-color: var(--otr-card-bg-hover);
    }

    @media (max-width: 820px) {
      .header-wrapper {
        width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        border-radius: 0 !important;
      }
    }

    @media (max-width: 600px) {
      .otr-combo-section,
      .services-section,
      .refer-earn-section,
      .why-choose-us-section {
        border-radius: 0 !important;
        padding-left: 16px;
        padding-right: 16px;
      }
    }

    /* ===== TRENDING ITEMS IMAGE SECTION ===== */
    .section-wrapper { width:100%; max-width:1200px; margin:0 auto; padding:40px 20px; box-sizing:border-box; }
    .section-header { text-align:center; margin-bottom:45px; }
    .badge { display:inline-block; padding:8px 18px; border-radius:50px; border:1px solid rgba(229,9,20,.35); background:rgba(229,9,20,.08); color:#ff3945; font-size:11px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:16px; }
    .section-header h1 { font-size:clamp(32px,5vw,57px); line-height:1.08; letter-spacing:-2px; font-weight:900; color:#fff; margin-bottom:12px; }
    .section-header h1 span { color:#e50914; text-shadow:0 0 25px rgba(229,9,20,.3); }
    .section-header p { max-width:760px; margin:0 auto; color:#999; font-size:16px; line-height:1.8; }
    .section-header p strong { color:#fff; }
    .category-heading { display:flex; align-items:center; gap:12px; margin-bottom:30px; font-size:20px; font-weight:800; color:#fff; }
    .category-heading::before { content:""; width:5px; height:27px; border-radius:10px; background:#e50914; box-shadow:0 0 16px rgba(229,9,20,.7); }
    .ott-stack { display:flex; flex-direction:column; gap:20px; }
    .ott-stack a { display:block; transition: transform 0.2s ease, filter 0.2s ease; }
    .ott-stack a:hover { transform: scale(1.01); filter: drop-shadow(0 8px 30px rgba(229,9,20,.12)); }
    .ott-stack img { width:100%; height:auto; display:block; border-radius:0; object-fit:contain; filter:drop-shadow(0 4px 20px rgba(0,0,0,.3)); background:transparent; }
    @media(max-width:768px){ .ott-stack{gap:14px;} }
    @media(max-width:600px){ .section-header h1{font-size:34px;} .section-header p{font-size:14px;} .category-heading{font-size:17px;} .ott-stack{gap:10px;} }

    .image-label {
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      color: #D4AF37;
      margin-top: -8px;
      margin-bottom: 5px;
      letter-spacing: 0.5px;
      text-shadow: 0 0 20px rgba(212,175,55,0.15);
    }
    @media(max-width:600px){ .image-label { font-size: 12px; } }

    /* ===== PREMIUM SECTION ===== */
    .ott-premium-section{position:relative;width:100%;padding:90px 25px;box-sizing:border-box;overflow:hidden;color:#fff;font-family:"Segoe UI",Roboto,Arial,sans-serif;background:radial-gradient(circle at 50% 0%,rgba(255,0,0,.18),transparent 42%),linear-gradient(135deg,#050505 0%,#110000 48%,#050505 100%)}
    .ott-premium-glow{position:absolute;width:450px;height:450px;border-radius:50%;background:rgba(255,0,0,.14);filter:blur(120px);pointer-events:none}.premium-glow-left{left:-280px;top:80px}.premium-glow-right{right:-280px;bottom:-150px}
    .ott-premium-container{position:relative;z-index:2;width:100%;max-width:1200px;margin:0 auto;text-align:center}.ott-premium-brand{display:inline-block;padding:10px 22px;margin-bottom:24px;border-radius:50px;border:1px solid rgba(255,40,40,.35);background:rgba(255,0,0,.08);color:#ff4b4b;font-size:14px;font-weight:800;letter-spacing:2px;box-shadow:0 0 25px rgba(255,0,0,.12)}
    .ott-premium-container h2{max-width:950px;margin:0 auto 24px;font-size:clamp(38px,6vw,70px);line-height:1.05;font-weight:800;letter-spacing:-2px}.ott-premium-container h2 span{display:block;margin-top:10px;background:linear-gradient(90deg,#ff1717,#ff5555,#ff0000);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
    .ott-premium-description{max-width:700px;margin:0 auto;color:#b9b9b9;font-size:19px;line-height:1.8}.ott-premium-description strong{color:#fff;font-weight:700}.ott-premium-images{display:flex;flex-direction:column;align-items:center;gap:35px;width:100%;margin:60px auto 0}.ott-premium-card{position:relative;width:100%;max-width:1100px;overflow:hidden;border-radius:20px;background:#080808;border:1px solid rgba(255,0,0,.20);box-shadow:0 20px 50px rgba(0,0,0,.60),0 0 30px rgba(255,0,0,.07);transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease}.ott-premium-card img{display:block;width:100%;height:auto;max-width:100%;object-fit:contain;transition:transform .45s ease,filter .45s ease}.ott-premium-card:hover{transform:translateY(-6px);border-color:rgba(255,30,30,.75);box-shadow:0 25px 60px rgba(0,0,0,.70),0 0 45px rgba(255,0,0,.20)}.ott-premium-card:hover img{transform:scale(1.015);filter:brightness(1.06)}.ott-premium-card::after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(180deg,transparent 70%,rgba(255,0,0,.10))}
    @media (max-width:600px){.ott-premium-section{padding:65px 15px}.ott-premium-brand{font-size:12px;padding:8px 15px}.ott-premium-container h2{font-size:40px;letter-spacing:-1px}.ott-premium-description{font-size:16px;line-height:1.7}.ott-premium-images{gap:20px;margin-top:40px}.ott-premium-card{border-radius:12px}}

    /* Gold website name in header */
    header .logo,
    header .brand,
    header .brand-name,
    header .site-name,
    header .navbar-brand,
    header a.logo,
    header a.brand,
    header a.site-name {
      color: #D4AF37 !important;
    }

    /* =========================================================
       WHATSAPP POPUP - EXACT REQUESTED STYLE
    ========================================================= */
    .popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 99999;
      display: none;
      justify-content: center;
      align-items: center;
      animation: popFadeIn 0.3s ease;
      padding: 20px;
    }
    .popup-overlay.active { display: flex; }
    @keyframes popFadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes popSlideUp {
      from { transform: translateY(30px) scale(0.95); opacity: 0; }
      to { transform: translateY(0) scale(1); opacity: 1; }
    }
    .popup-wrapper {
      position: relative;
      max-width: 460px;
      width: 90%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .popup-box {
      background: #ffffff;
      border-radius: 24px;
      padding: 40px 35px;
      width: 100%;
      text-align: center;
      animation: popSlideUp 0.4s ease;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5);
      position: relative;
    }
    .popup-close {
      position: absolute;
      top: -10px; right: -10px;
      background: #ffffff;
      border: none;
      color: #ff1744;
      font-size: 2rem;
      cursor: pointer;
      transition: 0.25s ease;
      line-height: 1;
      padding: 0; margin: 0;
      display: flex; align-items: center; justify-content: center;
      width: 36px; height: 36px;
      border-radius: 50%;
      box-shadow: 0 4px 15px rgba(0,0,0,0.15);
      z-index: 5;
    }
    .popup-close:hover {
      color: #d50000; transform: rotate(90deg) scale(1.1);
      box-shadow: 0 6px 25px rgba(255,23,68,0.25);
    }
    .popup-icon { font-size: 3.5rem; margin-bottom: 12px; display: block; }
    .popup-box h2 {
      font-size: 1.8rem; font-weight: 800; color: #25D366;
      margin-bottom: 10px; line-height: 1.2;
    }
    .popup-box .popup-subtitle {
      color: #666; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px;
    }
    .popup-subtitle strong { color: #e61a3c; font-weight: 700; }
    .popup-divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, #25D366, #128C7E);
      margin: 15px auto; border-radius: 10px;
    }
    .popup-features {
      display: flex; justify-content: center; gap: 20px;
      margin-bottom: 25px; flex-wrap: wrap;
    }
    .popup-feature { display: flex; flex-direction: column; align-items: center; gap: 4px; }
    .popup-feature .feature-icon { font-size: 1.8rem; }
    .popup-feature .feature-label {
      font-size: 0.7rem; font-weight: 700; color: #555;
      letter-spacing: 0.3px; text-transform: uppercase;
    }
    .popup-whatsapp-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 12px;
      padding: 16px 32px; border-radius: 12px;
      background: #25D366; color: #ffffff; text-decoration: none;
      font-size: 1rem; font-weight: 700;
      box-shadow: 0 10px 30px rgba(37,211,102,0.25);
      transition: all 0.3s ease; width: 100%; border: none; cursor: pointer;
    }
    .popup-whatsapp-btn:hover {
      transform: translateY(-3px); background: #20bd5a;
      box-shadow: 0 15px 40px rgba(37,211,102,0.4);
    }
    .popup-whatsapp-btn i { font-size: 1.2rem; }
    .popup-whatsapp-btn .arrow-right { transition: transform 0.3s ease; font-size: 1.1rem; }
    .popup-whatsapp-btn:hover .arrow-right { transform: translateX(5px); }
    @media (max-width: 550px) {
      .popup-overlay { padding: 16px; }
      .popup-wrapper { width: 94%; }
      .popup-box { padding: 28px 20px; border-radius: 20px; }
      .popup-box h2 { font-size: 1.4rem; }
      .popup-box .popup-subtitle { font-size: 0.85rem; }
      .popup-whatsapp-btn { padding: 14px 20px; font-size: 0.9rem; }
      .popup-icon { font-size: 2.8rem; }
      .popup-close { font-size: 1.6rem; width: 30px; height: 30px; top: -8px; right: -8px; }
      .popup-features { gap: 14px; }
      .popup-feature .feature-icon { font-size: 1.4rem; }
      .popup-feature .feature-label { font-size: 0.6rem; }
    }
    @media (max-width: 380px) {
      .popup-box { padding: 22px 14px; }
      .popup-box h2 { font-size: 1.2rem; }
      .popup-whatsapp-btn { padding: 12px 16px; font-size: 0.8rem; gap: 8px; }
      .popup-features { gap: 10px; }
      .popup-close { font-size: 1.3rem; width: 24px; height: 24px; top: -6px; right: -6px; }
    }

    /* ===== FLOATING WHATSAPP BUTTON (Right Side) ===== */
    .whatsapp-float {
      position: fixed;
      right: 30px;
      bottom: 30px;
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      transition: transform 0.3s ease;
      padding: 12px 24px 12px 28px;
      border-radius: 60px;
      background: transparent;
      border: none;
      box-shadow: none;
    }

    .whatsapp-float:hover {
      transform: scale(1.05);
    }

    .whatsapp-float .contact-text {
      color: #ffffff;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.5px;
      white-space: nowrap;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
    }

    .whatsapp-float .whatsapp-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25D366, #128C7E);
      box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5), 0 0 60px rgba(37, 211, 102, 0.2);
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .whatsapp-float .whatsapp-icon i {
      font-size: 40px;
      color: #fff;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
    }

    .whatsapp-float:hover .whatsapp-icon {
      box-shadow: 0 10px 45px rgba(37, 211, 102, 0.7), 0 0 80px rgba(37, 211, 102, 0.3);
      transform: scale(1.08);
    }

    @media (max-width: 768px) {
      .whatsapp-float {
        right: 20px;
        bottom: 20px;
        padding: 10px 18px 10px 22px;
        gap: 12px;
      }
      .whatsapp-float .contact-text { font-size: 16px; }
      .whatsapp-float .whatsapp-icon { width: 58px; height: 58px; }
      .whatsapp-float .whatsapp-icon i { font-size: 34px; }
    }

    @media (max-width: 480px) {
      .whatsapp-float {
        right: 16px;
        bottom: 16px;
        padding: 8px 14px 8px 18px;
        gap: 10px;
        border-radius: 50px;
      }
      .whatsapp-float .contact-text { font-size: 14px; }
      .whatsapp-float .whatsapp-icon { width: 48px; height: 48px; }
      .whatsapp-float .whatsapp-icon i { font-size: 28px; }
    }


/* =========================================================
   SINGLE POST / ARTICLE LIGHT MODE
   Homepage stays dark. WordPress single posts become white.
   Works with body.single, body.single-post, body.single-product,
   and the automatic JS fallback added below.
   ========================================================= */
body.single,
body.single-post,
body.single-product,
body.single-post-page {
  background: #ffffff !important;
  color: #202124 !important;
}

body.single .site,
body.single-post .site,
body.single-product .site,
body.single-post-page .site,
body.single #primary,
body.single-post #primary,
body.single-product #primary,
body.single-post-page #primary {
  background: #ffffff !important;
  color: #202124 !important;
}

/* Light header on individual posts */
body.single .header-wrapper,
body.single-post .header-wrapper,
body.single-product .header-wrapper,
body.single-post-page .header-wrapper {
  background: #ffffff !important;
  border-bottom: 1px solid #e8e8e8 !important;
  box-shadow: 0 3px 18px rgba(0,0,0,.06) !important;
}

body.single .search-box,
body.single-post .search-box,
body.single-product .search-box,
body.single-post-page .search-box {
  background: #f4f5f7 !important;
  border-color: #e4e5e8 !important;
}

body.single .search-box input,
body.single-post .search-box input,
body.single-product .search-box input,
body.single-post-page .search-box input {
  color: #202124 !important;
}

body.single .search-box input::placeholder,
body.single-post .search-box input::placeholder,
body.single-product .search-box input::placeholder,
body.single-post-page .search-box input::placeholder {
  color: #777 !important;
}

body.single .search-box i,
body.single-post .search-box i,
body.single-product .search-box i,
body.single-post-page .search-box i {
  color: #666 !important;
}

body.single .menu-icon > a,
body.single-post .menu-icon > a,
body.single-product .menu-icon > a,
body.single-post-page .menu-icon > a {
  background: #f4f5f7 !important;
  border-color: #e4e5e8 !important;
  color: #202124 !important;
}

body.single .menu-icon > a i,
body.single-post .menu-icon > a i,
body.single-product .menu-icon > a i,
body.single-post-page .menu-icon > a i {
  color: #202124 !important;
}

/* Sidebar stays visually consistent with the light post page */
body.single .sidebar-menu,
body.single-post .sidebar-menu,
body.single-product .sidebar-menu,
body.single-post-page .sidebar-menu {
  background: #ffffff !important;
  border-right-color: #e8e8e8 !important;
}

body.single .sidebar-menu-list li a,
body.single-post .sidebar-menu-list li a,
body.single-product .sidebar-menu-list li a,
body.single-post-page .sidebar-menu-list li a {
  color: #202124 !important;
}

body.single .sidebar-menu-list li a:hover,
body.single-post .sidebar-menu-list li a:hover,
body.single-product .sidebar-menu-list li a:hover,
body.single-post-page .sidebar-menu-list li a:hover {
  background: #f4f5f7 !important;
}

body.single .sidebar-divider,
body.single-post .sidebar-divider,
body.single-product .sidebar-divider,
body.single-post-page .sidebar-divider {
  background: #e5e5e5 !important;
}

/* Search suggestions */
body.single .suggestions-box,
body.single-post .suggestions-box,
body.single-product .suggestions-box,
body.single-post-page .suggestions-box {
  background: #ffffff !important;
  border-color: #e3e3e3 !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.12) !important;
}

body.single .suggestions-box .suggestion-item,
body.single-post .suggestions-box .suggestion-item,
body.single-product .suggestions-box .suggestion-item,
body.single-post-page .suggestions-box .suggestion-item {
  color: #202124 !important;
  border-bottom-color: #eeeeee !important;
}

body.single .suggestions-box .suggestion-item:hover,
body.single-post .suggestions-box .suggestion-item:hover,
body.single-product .suggestions-box .suggestion-item:hover,
body.single-post-page .suggestions-box .suggestion-item:hover {
  background: #f5f5f5 !important;
}

/* Common article/content elements */
body.single .site-main,
body.single-post .site-main,
body.single-product .site-main,
body.single-post-page .site-main {
  background: #ffffff !important;
  color: #202124 !important;
}

body.single .site-main h1,
body.single .site-main h2,
body.single .site-main h3,
body.single .site-main h4,
body.single-post .site-main h1,
body.single-post .site-main h2,
body.single-post .site-main h3,
body.single-post .site-main h4,
body.single-product .site-main h1,
body.single-product .site-main h2,
body.single-product .site-main h3,
body.single-product .site-main h4,
body.single-post-page .site-main h1,
body.single-post-page .site-main h2,
body.single-post-page .site-main h3,
body.single-post-page .site-main h4 {
  color: #111111 !important;
}

body.single .site-main p,
body.single .site-main li,
body.single .site-main td,
body.single .site-main label,
body.single-post .site-main p,
body.single-post .site-main li,
body.single-post .site-main td,
body.single-post .site-main label,
body.single-product .site-main p,
body.single-product .site-main li,
body.single-product .site-main td,
body.single-product .site-main label,
body.single-post-page .site-main p,
body.single-post-page .site-main li,
body.single-post-page .site-main td,
body.single-post-page .site-main label {
  color: #444444;
}

body.single .site-main a,
body.single-post .site-main a,
body.single-product .site-main a,
body.single-post-page .site-main a {
  color: #d4142d;
}

/* Images remain clean on white */
body.single .site-main img,
body.single-post .site-main img,
body.single-product .site-main img,
body.single-post-page .site-main img {
  max-width: 100%;
}

/* If the post uses common WordPress content classes */
body.single .entry-content,
body.single-post .entry-content,
body.single-product .entry-content,
body.single-post-page .entry-content,
body.single .post-content,
body.single-post .post-content,
body.single-product .post-content,
body.single-post-page .post-content,
body.single article,
body.single-post article,
body.single-product article,
body.single-post-page article {
  background: #ffffff !important;
  color: #444444 !important;
}

body.single .entry-title,
body.single-post .entry-title,
body.single-product .entry-title,
body.single-post-page .entry-title,
body.single article .post-title,
body.single-post article .post-title,
body.single-product article .post-title,
body.single-post-page article .post-title {
  color: #111111 !important;
}

/* WordPress admin bar: don't recolor it */
#wpadminbar {
  z-index: 100001 !important;
}


/* ===== FINAL RESPONSIVE HEADER REFINEMENT ===== */
.header-wrapper {
  padding: 14px clamp(14px, 3vw, 42px);
}
.header-container {
  width: 100%;
  max-width: 1500px;
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(210px, auto) minmax(280px, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2.5vw, 38px);
  flex-wrap: nowrap;
}
.brand { min-width: 0; }
.brand-name {
  display: inline-block;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  line-height: 1.15;
  padding-bottom: 2px;
  white-space: nowrap;
}
.search-desktop {
  width: 100%;
  max-width: 680px;
  min-width: 0;
  justify-self: center;
}
.search-box { min-height: 50px; }
.search-box input { min-width: 0; }
.menu-icon { justify-self: end; }
.menu-icon > a {
  min-height: 46px;
  padding: 0 18px;
  white-space: nowrap;
}
.mobile-search-wrapper {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

/* Medium screens: keep everything balanced without wrapping */
@media (max-width: 1050px) and (min-width: 821px) {
  .header-wrapper { padding: 12px 18px; }
  .header-container {
    grid-template-columns: auto minmax(260px, 1fr) auto;
    gap: 16px;
  }
  .brand-name { font-size: 1.9rem; }
  .search-box { min-height: 46px; padding-left: 1rem; }
  .search-box input { font-size: 1rem; }
  .search-box button { min-height: 38px; padding: .5rem 1rem; }
  .menu-icon > a { padding: 0 14px; }
}

/* Phones and tablets */
@media (max-width: 820px) {
  .header-wrapper {
    padding: 10px 12px 12px;
  }
  .header-container {
    min-height: 48px;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand-name {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    line-height: 1.15;
    padding-bottom: 2px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .menu-icon { flex: 0 0 auto; }
  .menu-icon > a {
    min-height: 42px;
    min-width: 42px;
    padding: 0 12px;
    justify-content: center;
  }
  .mobile-search-wrapper {
    margin-top: 9px;
    padding-top: 9px;
    border-top: 1px solid #2a2a3a;
  }
  .mobile-search-wrapper .search-box {
    min-height: 46px;
  }
  .mobile-search-wrapper .search-box input {
    font-size: .95rem;
  }
  .mobile-search-wrapper .search-box button {
    min-height: 38px;
    padding: .45rem 1rem;
  }
}

@media (max-width: 480px) {
  .header-wrapper { padding: 8px 9px 10px; }
  .header-container { gap: 8px; }
  .brand-name { font-size: 1.3rem; letter-spacing: -.6px; line-height: 1.18; padding-bottom: 3px; }
  .menu-icon > a { min-height: 40px; min-width: 40px; padding: 0 10px; }
  .mobile-search-wrapper { margin-top: 7px; padding-top: 7px; }
  .mobile-search-wrapper .search-box {
    min-height: 42px;
    padding-left: .75rem;
  }
  .mobile-search-wrapper .search-box i { font-size: .9rem; margin-right: .45rem; }
  .mobile-search-wrapper .search-box input {
    font-size: .82rem;
    padding: .55rem .2rem;
  }
  .mobile-search-wrapper .search-box input::placeholder { font-size: .72rem; }
  .mobile-search-wrapper .search-box button {
    min-height: 34px;
    padding: .35rem .7rem;
    font-size: .65rem;
  }
}

/* ===== SINGLE POST LIGHT HEADER ===== */
body.single-post .header-wrapper,
body.single.single-post .header-wrapper {
  background: #ffffff;
  border-bottom: 1px solid #e9e9ee;
  box-shadow: 0 5px 22px rgba(0,0,0,.07);
}
body.single-post .search-box,
body.single.single-post .search-box {
  background: #f5f6f8;
  border-color: #e4e6eb;
}
body.single-post .search-box input,
body.single.single-post .search-box input { color: #202124; }
body.single-post .search-box input::placeholder,
body.single.single-post .search-box input::placeholder { color: #8a8f98; }
body.single-post .search-box i,
body.single.single-post .search-box i { color: #68707c; }
body.single-post .menu-icon > a,
body.single.single-post .menu-icon > a {
  background: #f5f6f8;
  color: #202124;
  border-color: #e1e3e8;
}
body.single-post .menu-icon > a i,
body.single.single-post .menu-icon > a i { color: #202124; }
body.single-post .mobile-search-wrapper,
body.single.single-post .mobile-search-wrapper { border-top-color: #e7e8ec; }



/* ===== FINAL HERO RESPONSIVE FIX ===== */
.hero .visual{height:clamp(470px,44vw,610px);min-width:0;padding-top:42px;}
.hero-trending-title{position:absolute;top:8px;left:50%;transform:translateX(-50%);z-index:8;width:max-content;max-width:94%;text-align:center;color:#fff;font-size:clamp(12px,1.2vw,17px);font-weight:900;letter-spacing:1.8px;text-transform:uppercase;text-shadow:0 3px 18px rgba(0,0,0,.75);white-space:nowrap;}
.hero-trending-title span{display:inline-block;margin-right:6px;}

.hero .hero-person-slider{width:min(520px,100%);height:100%;min-height:430px;max-height:590px;margin:0 auto;overflow:visible;}
.hero .hero-person{width:auto;height:auto;max-width:min(76%,430px);max-height:82%;left:50%;top:50%;object-fit:contain;object-position:center;}
.hero .hero-label{bottom:8%;max-width:92%;overflow:hidden;text-overflow:ellipsis;}
@media (min-width:901px){
 .hero .hero-container{grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);gap:30px;}
 .hero .visual{justify-self:center;width:100%;}
 .hero .hero-person-slider{transform:translateX(0);}
}
@media (max-width:1100px) and (min-width:901px){
 .hero .hero-person{max-width:72%;max-height:76%;}
 .hero .hero-container{padding-left:24px;padding-right:24px;gap:15px;}
}
@media (max-width:900px){
 .hero .visual{height:clamp(360px,72vw,500px);margin-top:5px;}
 .hero .hero-person-slider{min-height:360px;width:min(500px,96%);}
 .hero .hero-person{max-width:74%;max-height:76%;}
 .hero .hero-label{bottom:4%;}
}
@media (max-width:550px){
 .hero .visual{height:340px;margin-top:0;}
 .hero .hero-person-slider{min-height:340px;width:100%;}
 .hero .hero-person{max-width:72%;max-height:70%;}
 .hero .hero-label{bottom:2%;font-size:10px;}
}
@media (max-width:380px){
 .hero .visual{height:300px;}
 .hero .hero-person-slider{min-height:300px;}
 .hero .hero-person{max-width:68%;max-height:68%;}
}


/* Equal-height combo cards */
.otr-combo-grid{align-items:stretch;}
.otr-plan-card{height:100%;min-height:100%;display:flex;}
.otr-plan-card .otr-price-section{margin-top:auto;}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float{cursor:pointer;touch-action:manipulation;}
.whatsapp-float .whatsapp-icon{pointer-events:none;}
@media(max-width:480px){
 .whatsapp-float{right:14px!important;bottom:14px!important;padding:0!important;}
 .whatsapp-float .contact-text{display:none!important;}
 .whatsapp-float .whatsapp-icon{width:56px!important;height:56px!important;}
 .whatsapp-float .whatsapp-icon i{font-size:31px!important;}
}




/* ===== WhatsApp Popup — design copied from supplied popup ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: popFadeIn .3s ease;
}
@keyframes popFadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes popSlideUp {
  from { transform:translateY(30px) scale(.95); opacity:0 }
  to { transform:translateY(0) scale(1); opacity:1 }
}
.popup-wrapper {
  position: relative;
  max-width: 460px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup-box {
  background:#fff;
  border-radius:24px;
  padding:40px 35px;
  width:100%;
  text-align:center;
  animation:popSlideUp .4s ease;
  box-shadow:0 30px 80px rgba(0,0,0,.5);
  position:relative;
}
.popup-close {
  position:absolute;
  top:-10px;
  right:-10px;
  background:#fff;
  border:none;
  color:#ff1744;
  font-size:2rem;
  cursor:pointer;
  transition:.25s ease;
  line-height:1;
  padding:0;
  width:36px;
  height:36px;
  border-radius:50%;
  box-shadow:0 4px 15px rgba(0,0,0,.15);
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
}
.popup-close:hover {
  color:#d50000;
  transform:rotate(90deg) scale(1.1);
  box-shadow:0 6px 25px rgba(255,23,68,.25);
}
.popup-icon {
  font-size:3.5rem;
  margin-bottom:12px;
  display:block;
}
.popup-box h2 {
  font-size:1.8rem;
  font-weight:800;
  color:#25D366;
  margin:0 0 10px;
  line-height:1.2;
}
.popup-box .popup-desc {
  color:#666;
  font-size:.95rem;
  line-height:1.7;
  margin:0 0 20px;
}
.popup-desc .red-text {
  color:#e61a3c;
  font-weight:700;
}
.popup-features {
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:25px;
  flex-wrap:wrap;
}
.popup-feature {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
}
.popup-feature .feature-icon { font-size:1.8rem; }
.popup-feature .feature-label {
  font-size:.7rem;
  font-weight:700;
  color:#555;
  letter-spacing:.3px;
  text-transform:uppercase;
}
.popup-whatsapp-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:16px 32px;
  border-radius:12px;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  font-size:1rem;
  font-weight:700;
  box-shadow:0 10px 30px rgba(37,211,102,.25);
  transition:all .3s ease;
  width:100%;
  border:none;
  cursor:pointer;
}
.popup-whatsapp-btn:hover {
  transform:translateY(-3px);
  background:#20bd5a;
  box-shadow:0 15px 40px rgba(37,211,102,.4);
}
.popup-whatsapp-btn i { font-size:1.2rem; }
.popup-whatsapp-btn .arrow-right {
  transition:transform .3s ease;
  font-size:1.1rem;
}
.popup-whatsapp-btn:hover .arrow-right { transform:translateX(5px); }

@media (max-width:550px) {
  .popup-box { padding:28px 20px; border-radius:20px; }
  .popup-box h2 { font-size:1.4rem; }
  .popup-box .popup-desc { font-size:.85rem; }
  .popup-whatsapp-btn { padding:14px 20px; font-size:.9rem; }
  .popup-icon { font-size:2.8rem; }
  .popup-close { font-size:1.6rem; width:30px; height:30px; top:-8px; right:-8px; }
  .popup-features { gap:14px; }
  .popup-feature .feature-icon { font-size:1.4rem; }
  .popup-feature .feature-label { font-size:.6rem; }
}
@media (max-width:380px) {
  .popup-box { padding:22px 14px; }
  .popup-box h2 { font-size:1.2rem; }
  .popup-whatsapp-btn { padding:12px 16px; font-size:.8rem; gap:8px; }
  .popup-features { gap:10px; }
  .popup-close { font-size:1.3rem; width:24px; height:24px; top:-6px; right:-6px; }
}




.yearly-value-text{
  color:#fff !important;
  font-weight:700;
  font-size:14px;
  line-height:1.6;
  text-align:center;
  margin:14px auto 0;
  max-width:360px;
  opacity:1;
}



.yearly-value-text{
  color:#fff !important;
  font-weight:700 !important;
  font-size:14px !important;
  line-height:1.65 !important;
  text-align:center !important;
  margin:14px auto 0 !important;
  max-width:380px !important;
  opacity:1 !important;
}
.yearly-value-text::first-line{color:#fff !important;}

.otr-plan-card .yearly-save,
.otr-plan-card .save-text,
.otr-plan-card .saving-text,
.otr-plan-card .otr-save,
.otr-plan-card .otr-savings{
  color:#ffe45c !important;
}

.otr-plan-card .yearly-save strong,
.otr-plan-card .save-text strong,
.otr-plan-card .saving-text strong,
.otr-plan-card .otr-save strong,
.otr-plan-card .otr-savings strong{
  color:#2bd66f !important;
}

/* Exact visual colors for the requested yearly promo text. */
.yearly-promo-save{
  color:#2bd66f !important;
  font-weight:800 !important;
}
.yearly-promo-note{
  color:#ffe45c !important;
  font-weight:700 !important;
}
.dark-promo-icon{filter:brightness(.45) saturate(.7);}
.yearly-promo-benefit{
  color:#fff !important;
  font-weight:700 !important;
}



.yearly-promo-final{
  width:100%;
  margin:18px auto 0;
  padding:0 8px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.yearly-promo-save{
  color:#28d66f !important;
  font-weight:800 !important;
  font-size:15px !important;
  line-height:1.35 !important;
}
.yearly-promo-note{
  color:#ffe45c !important;
  font-weight:700 !important;
  font-size:14px !important;
  line-height:1.45 !important;
}
.yearly-promo-benefit{
  color:#fff !important;
  font-weight:700 !important;
  font-size:13px !important;
  line-height:1.55 !important;
  max-width:370px;
}
.yearly-promo-benefit .promo-icon{
  color:inherit !important;
  filter:none !important;
  opacity:1 !important;
  font-size:1em !important;
  display:inline !important;
}
@media(max-width:480px){
  .yearly-promo-final{margin-top:14px;gap:5px;padding:0 4px}
  .yearly-promo-save{font-size:14px !important}
  .yearly-promo-note{font-size:12.5px !important}
  .yearly-promo-benefit{font-size:12px !important;max-width:300px}
}



.yearly-combo-promo{
  width:100%;
  margin:16px auto 0;
  padding:12px 8px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  background:rgba(255,255,255,.025);
  border-radius:12px;
}
.yearly-save-line{
  color:#28d66f !important;
  font-size:15px !important;
  font-weight:800 !important;
  line-height:1.35 !important;
}
.yearly-saving-line{
  color:#ffe45c !important;
  font-size:14px !important;
  font-weight:700 !important;
  line-height:1.4 !important;
}
.yearly-benefit-line{
  color:#fff !important;
  font-size:13px !important;
  font-weight:700 !important;
  line-height:1.55 !important;
  max-width:380px;
}
.yearly-benefit-line .promo-icon{
  filter:none !important;
  opacity:1 !important;
  color:inherit !important;
}
@media(max-width:480px){
  .yearly-combo-promo{margin-top:12px;padding:10px 5px}
  .yearly-save-line{font-size:14px !important}
  .yearly-saving-line{font-size:12.5px !important}
  .yearly-benefit-line{font-size:12px !important;max-width:300px}
}



.otr-yearly-extra{
  text-align:center;
  padding:30px;
}
.otr-yearly-extra .save-line{
  color:#22c55e;
  font-size:20px;
  font-weight:700;
  margin-bottom:8px;
}
.otr-yearly-extra .value-line{
  color:#facc15;
  font-size:16px;
  font-weight:600;
  margin-bottom:14px;
}
.otr-yearly-extra .entertainment-line{
  color:#fff;
  font-size:15px;
  font-weight:500;
  line-height:1.6;
}
@media(max-width:600px){
  .otr-yearly-extra{padding:20px 12px;}
  .otr-yearly-extra .save-line{font-size:15px;}
  .otr-yearly-extra .value-line{font-size:11px;}
  .otr-yearly-extra .entertainment-line{font-size:10px;}
}


.hero{background:radial-gradient(circle at 78% 45%,rgba(255,20,55,.17),transparent 30%),radial-gradient(circle at 15% 80%,rgba(100,20,255,.09),transparent 30%),#030303!important;overflow:hidden!important}.hero .visual{position:relative;height:560px;min-height:560px;padding-top:52px;display:flex;align-items:center;justify-content:center;overflow:visible}.hero-trending-title{position:absolute!important;top:12px!important;left:50%!important;transform:translateX(-50%)!important;z-index:10!important;width:max-content!important;max-width:94%!important;color:#facc15!important;font-size:clamp(12px,1.2vw,17px)!important;font-weight:900!important;letter-spacing:1.8px!important;text-align:center!important;white-space:nowrap!important;text-shadow:0 3px 18px rgba(0,0,0,.75)!important}.hero .hero-person-slider{position:relative!important;width:min(520px,100%)!important;height:100%!important;min-height:0!important;max-height:none!important;margin:0 auto!important;overflow:visible!important}.hero .hero-person{width:auto!important;height:auto!important;max-width:min(76%,430px)!important;max-height:82%!important;left:50%!important;top:50%!important;transform:translate(-50%,-50%) scale(1)!important;object-fit:contain!important}.hero .hero-label{bottom:3%!important;left:50%!important;transform:translateX(-50%)!important;width:100%!important;max-width:100%!important;padding:0 10px!important;color:#fff!important;font-size:clamp(12px,1.35vw,17px)!important;font-weight:700!important;line-height:1.3!important;text-align:center!important;white-space:normal!important;overflow:visible!important;text-overflow:clip!important;text-shadow:0 2px 12px rgba(0,0,0,.95)!important}@media(max-width:900px){.hero .visual{height:470px;min-height:470px;padding-top:44px;margin-top:0}.hero .hero-person-slider{width:min(500px,92%)!important}.hero .hero-person{max-width:75%!important;max-height:72%!important}.hero .hero-label{bottom:2%!important;width:92%!important;font-size:clamp(11px,2.4vw,15px)!important}}@media(max-width:550px){.hero .visual{height:350px;min-height:350px;padding-top:40px}.hero .hero-person-slider{width:94%!important}.hero .hero-person{max-width:70%!important;max-height:65%!important}.hero .hero-label{bottom:1%!important;width:94%!important;padding:0 6px!important;font-size:clamp(10px,3.2vw,14px)!important}.hero-trending-title{top:7px!important;font-size:11px!important;letter-spacing:1.2px!important}}


/* REMOVE UNWANTED POPUP TEXT */
.popup-features { display: none !important; }



/* ===== FINAL HEADER: FIXED + RESERVED SLOT =====
   The header is fixed to the viewport, while .header-slot remains in normal
   document flow with the exact same height. This prevents the header from
   covering content during scroll without changing the original content layout.
*/
html { scroll-padding-top: 0 !important; }
body { margin: 0 !important; overflow-x: hidden !important; }
#page { overflow: visible !important; transform: none !important; }
#primary, .site-main { overflow: visible !important; transform: none !important; }

.header-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  z-index: 99990 !important;
  box-sizing: border-box !important;
}

.header-slot {
  display: block !important;
  width: 100% !important;
  height: var(--otr-header-height, 83px) !important;
  min-height: var(--otr-header-height, 83px) !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
}

body.admin-bar .header-wrapper { top: 32px !important; }
@media (max-width: 782px) {
  body.admin-bar .header-wrapper { top: 46px !important; }
}

#primary, .site-main { padding-top: 0 !important; margin-top: 0 !important; }
.footer-section { position: relative !important; bottom: auto !important; }
#wpadminbar { z-index: 999999 !important; }
img { max-width: 100%; height: auto; }

/* Header height is measured automatically so desktop/mobile layouts remain exact. */
@media (max-width: 820px) {
  .header-slot { height: var(--otr-header-height, 116px) !important; min-height: var(--otr-header-height, 116px) !important; }
}
@media (max-width: 480px) {
  .header-slot { height: var(--otr-header-height, 104px) !important; min-height: var(--otr-header-height, 104px) !important; }
}


/* ===== FULL-WIDTH WORDPRESS INNER PAGES / MOBILE PERFORMANCE =====
   Keep header/footer full viewport width. Inner pages use the entire available
   width on phones and tablets instead of leaving a boxed/narrow white strip.
*/
.otr-wp-page-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(28px, 4vw, 60px) clamp(12px, 3vw, 40px) !important;
  box-sizing: border-box !important;
  background: #070707 !important;
  min-height: 0;
}
.otr-wp-page-content > article {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}
.otr-wp-page-content .entry-content,
.otr-wp-page-content .post-content {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

/* Don't let WordPress block/editor wrappers create a narrow mobile column. */
.otr-wp-page-content .wp-block-group,
.otr-wp-page-content .wp-block-columns,
.otr-wp-page-content .wp-block-column,
.otr-wp-page-content .alignwide,
.otr-wp-page-content .alignfull {
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.otr-wp-page-content .alignfull {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Inner pages should visually span between the global header and footer. */
body.page .site-main,
body.single .site-main,
body.single-post .site-main,
body.single-product .site-main,
body.single-post-page .site-main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

/* Full-width footer with no side gap on small screens. */
.footer-section,
.footer-container,
.footer-bottom {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: none !important;
}

@media (max-width: 820px) {
  .otr-wp-page-content {
    padding: 24px 0 34px !important;
    overflow-x: hidden !important;
  }
  .otr-wp-page-content > article {
    padding: 0 14px !important;
  }
  .otr-wp-page-content .entry-content,
  .otr-wp-page-content .post-content {
    padding: 0 !important;
  }
  .footer-section {
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
  }
  .footer-container,
  .footer-bottom {
    border-radius: 0 !important;
  }
}

@media (max-width: 480px) {
  .otr-wp-page-content {
    padding-top: 18px !important;
    padding-bottom: 26px !important;
  }
  .otr-wp-page-content > article {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .otr-wp-page-content h1 {
    font-size: clamp(24px, 7vw, 34px) !important;
    line-height: 1.2 !important;
    margin-top: 0 !important;
    overflow-wrap: anywhere;
  }
  .otr-wp-page-content img,
  .otr-wp-page-content video,
  .otr-wp-page-content iframe {
    max-width: 100% !important;
  }
}

/* Prevent accidental horizontal overflow, a common source of mobile lag. */
html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}


/* ===== FINAL DARK INNER-PAGE OVERRIDE ===== */
html, body,
#page,
.site,
.site-main,
main,
.page,
.page-content,
.content-area,
.site-content,
article,
.entry-content,
.entry-header,
.wp-site-blocks,
.wp-block-group,
.wp-block-cover,
.wp-block-columns {
  background: #070707 !important;
  color: #e8e8e8 !important;
}

body {
  background-color: #070707 !important;
  color: #e8e8e8 !important;
}

#page,
.site-main,
.site-content,
.content-area {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

article,
.page-content,
.entry-content {
  box-shadow: none !important;
  border-radius: 0 !important;
}

.entry-title, .page-title,
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6,
.entry-content p, .entry-content li,
.entry-content strong, .entry-content label {
  color: #f1f1f1 !important;
}

.entry-content a { color: #ffb000 !important; }

@media (max-width: 820px) {
  html, body, #page, .site, .site-main, main,
  .page, .page-content, .content-area, .site-content,
  article, .entry-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
  }
}



/* ===== HARD DARK CONTENT AREA — FINAL ===== */
html, body, #page, #page.site, .site, main#primary, #primary.site-main,
body.page, body.single, body.single-post, body.single-product,
body.page .site-main, body.single .site-main, body.single-post .site-main,
body.single-product .site-main,
.otr-wp-page-content, .otr-wp-page-content > article,
.otr-wp-page-content .entry-content, .otr-wp-page-content .post-content,
.otr-wp-page-content .entry-header, .otr-wp-page-content .wp-block-group,
.otr-wp-page-content .wp-block-columns, .otr-wp-page-content .wp-block-column,
.otr-wp-page-content .wp-block-cover, .otr-wp-page-content .wp-block-cover__inner-container {
  background-color: #070707 !important;
  background-image: none;
  color: #e8e8e8 !important;
}
.otr-wp-page-content {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
  min-height: 60vh !important;
}
.otr-wp-page-content > article {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
.otr-wp-page-content .entry-content > * {
  box-sizing: border-box;
}
@media (max-width: 820px) {
  .otr-wp-page-content {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 18px 12px 30px !important;
  }
}

/* ===== FINAL MOBILE FULL-WIDTH + LARGE HEADER ===== */
@media (max-width: 820px) {
  html, body, #page, .site, #primary, .site-main,
  .otr-wp-page-content, .otr-wp-page-content > article,
  .otr-wp-page-content .entry-content, .otr-wp-page-content .post-content,
  .content-area, .site-content, article {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .otr-wp-page-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 0 32px !important;
    margin: 0 !important;
  }

  .otr-wp-page-content > article {
    padding: 0 !important;
    margin: 0 !important;
  }

  .otr-wp-page-content .entry-content,
  .otr-wp-page-content .post-content {
    padding: 0 !important;
    margin: 0 !important;
  }

  .otr-wp-page-content .wp-block-group,
  .otr-wp-page-content .wp-block-columns,
  .otr-wp-page-content .wp-block-column,
  .otr-wp-page-content .wp-block-cover,
  .otr-wp-page-content .alignwide,
  .otr-wp-page-content .alignfull {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* Bigger mobile header */
  .header-wrapper {
    padding: 14px 14px 15px !important;
  }
  .header-container {
    min-height: 64px !important;
    height: auto !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .brand {
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .brand-name {
    font-size: 1.85rem !important;
    line-height: 1.15 !important;
    letter-spacing: -0.5px !important;
    white-space: nowrap !important;
  }
  .menu-icon > a {
    min-width: 52px !important;
    min-height: 52px !important;
    padding: 0 15px !important;
    font-size: 1.05rem !important;
    border-radius: 12px !important;
  }
  .menu-icon > a i {
    font-size: 1.35rem !important;
  }
  .mobile-search-wrapper {
    width: 100% !important;
    margin-top: 10px !important;
    padding-top: 9px !important;
  }
  .mobile-search-wrapper .search-box {
    min-height: 48px !important;
    width: 100% !important;
  }
  .mobile-search-wrapper .search-box input {
    font-size: 1rem !important;
  }
  .mobile-search-wrapper .search-box button {
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: .8rem !important;
  }
  .header-slot {
    height: var(--otr-header-height, 140px) !important;
    min-height: var(--otr-header-height, 140px) !important;
  }
}

@media (max-width: 480px) {
  .header-wrapper {
    padding: 13px 12px 14px !important;
  }
  .header-container {
    min-height: 62px !important;
    gap: 10px !important;
  }
  .brand-name {
    font-size: 1.72rem !important;
  }
  .menu-icon > a {
    min-width: 50px !important;
    min-height: 50px !important;
    padding: 0 13px !important;
  }
  .mobile-search-wrapper {
    margin-top: 9px !important;
  }
  .mobile-search-wrapper .search-box {
    min-height: 47px !important;
  }
  .header-slot {
    height: var(--otr-header-height, 132px) !important;
    min-height: var(--otr-header-height, 132px) !important;
  }
}
