    :root {
      /* Three sites, three colours: macccam.com is cyan, buycccam.net is
         emerald, this one is crimson. They must never be mistaken for one
         another in a screenshot or an inbox, because a customer who sees
         two of them should read two suppliers, not one shop with a bug.
         Everything else about the design is deliberately identical. */
      --primary:   #dc2626;
      --secondary: #f0a500;
      --dark:      #f4f8fd;   /* page background   */
      --dark2:     #ffffff;   /* alternate section */
      --dark3:     #eaf1fa;   /* inputs            */
      --card-bg:   #ffffff;   /* cards             */
      --text:      #17233a;   /* ink               */
      --ink-soft:  #55688a;
      --border:    rgba(220,38,38,0.15);
    }

    * { box-sizing: border-box; }

    body {
      background: var(--dark);
      color: var(--text);
      font-family: 'Exo 2', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark2); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

    /* ── NAVBAR ── */
    #mainNav {
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(10px) saturate(160%);
      border-bottom: 1px solid var(--border);
      padding: 0.75rem 0;
      transition: all .3s;
    }
    #mainNav.scrolled {
      box-shadow: 0 4px 30px rgba(220,38,38,.12);
    }
    /* ── ANIMATED LOGO ── */
    .navbar-brand {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.1rem;
      color: #10192b !important;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .logo-svg-wrap {
      position: relative;
      width: 52px;
      height: 52px;
      flex-shrink: 0;
    }
    .logo-svg-wrap svg { width: 100%; height: 100%; }
    /* satellite dish spin */
    .dish-arm { transform-origin: 26px 36px; animation: dishSpin 4s ease-in-out infinite; }
    @keyframes dishSpin {
      0%,100%{transform:rotate(-8deg)} 50%{transform:rotate(8deg)}
    }
    /* signal rings pulse */
    .sig1 { animation: sigPulse 1.4s ease-out infinite; }
    .sig2 { animation: sigPulse 1.4s ease-out infinite .35s; }
    .sig3 { animation: sigPulse 1.4s ease-out infinite .7s; }
    @keyframes sigPulse {
      0%   { opacity:0; stroke-width:2; }
      40%  { opacity:1; }
      100% { opacity:0; stroke-width:.5; }
    }
    /* glow dot */
    .sig-dot { animation: dotBlink 1.4s ease-in-out infinite; }
    @keyframes dotBlink {
      0%,100%{opacity:1;r:3} 50%{opacity:.3;r:1.5}
    }
    /* logo text */
    .logo-text-wrap {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .logo-www {
      font-size: .62rem;
      color: #6a7c99;
      letter-spacing: 2px;
      font-weight: 600;
      margin-bottom: 2px;
    }
    .logo-name {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 1px;
      white-space: nowrap;
    }
    .logo-name .Ma  { color: #10192b; }
    .logo-name .CCC { color: var(--primary); }
    .logo-name .aM  { color: #10192b; }
    .logo-name .dot { color: var(--secondary); }
    .logo-name .com { color: #5b6e8f; font-size: .8rem; }

    /* ── LANGUAGE SWITCHER ── */
    .lang-switcher .dropdown-toggle {
      background: rgba(220,38,38,.07);
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--text) !important;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: 1px;
      padding: .35rem .75rem !important;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: .4rem;
    }
    .lang-switcher .dropdown-toggle:hover { border-color: var(--primary); color: var(--primary) !important; }
    .lang-switcher .dropdown-menu { min-width: 130px; }
    .lang-switcher .dropdown-item { display: flex; align-items: center; gap: .5rem; }
    .lang-flag { font-size: 1rem; }
    .nav-link {
      color: var(--text) !important;
      font-weight: 600;
      font-size: .9rem;
      text-transform: uppercase;
      letter-spacing: .5px;
      padding: .5rem 1rem !important;
      transition: color .2s;
    }
    .nav-link:hover, .nav-link.active { color: var(--primary) !important; }
    .dropdown-menu {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: .5rem;
    }
    .dropdown-item {
      color: var(--text);
      border-radius: 6px;
      font-size: .88rem;
      padding: .45rem .9rem;
      transition: all .2s;
    }
    .dropdown-item:hover { background: rgba(220,38,38,.1); color: var(--primary); }
    .btn-nav {
      background: linear-gradient(90deg, var(--primary), #991b1b);
      color: #fff !important;
      border-radius: 25px;
      padding: .45rem 1.3rem !important;
      font-weight: 700;
      font-size: .85rem;
      box-shadow: 0 0 14px rgba(220,38,38,.3);
      transition: box-shadow .3s, transform .2s;
    }
    .btn-nav:hover { box-shadow: 0 0 24px rgba(220,38,38,.6); transform: translateY(-1px); }
    .navbar-toggler { border-color: var(--border); }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23dc2626' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background: radial-gradient(ellipse at 60% 40%, rgba(153,27,27,.18) 0%, transparent 60%),
                  radial-gradient(ellipse at 20% 80%, rgba(220,38,38,.12) 0%, transparent 50%),
                  var(--dark);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 120px 0 80px;
    }
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      /* A decorative layer that covers the whole hero. Without this line
         it sits ON TOP of the buttons and swallows every click — which is
         exactly what stopped "View Plans" and "Free 24h Test" working. */
      pointer-events: none;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dc2626' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: .5;
    }
    #hero > .container { position: relative; z-index: 1; }   /* above the pattern */

    .hero-badge {
      display: inline-block;
      background: rgba(220,38,38,.1);
      border: 1px solid rgba(220,38,38,.3);
      color: var(--primary);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: .35rem 1rem;
      border-radius: 50px;
      margin-bottom: 1.2rem;
    }
    .hero-badge i { margin-right: .4rem; }
    .hero h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(2rem, 5vw, 3.6rem);
      font-weight: 800;
      line-height: 1.15;
      color: #10192b;
      margin-bottom: 1.2rem;
    }
    .hero h1 .highlight {
      background: linear-gradient(90deg, var(--primary), #991b1b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero p.lead {
      font-size: 1.05rem;
      color: #55688a;
      max-width: 520px;
      line-height: 1.8;
      margin-bottom: 2rem;
    }
    .btn-primary-glow {
      background: linear-gradient(90deg, var(--primary), #991b1b);
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: .75rem 2rem;
      font-weight: 700;
      font-size: .95rem;
      box-shadow: 0 0 20px rgba(220,38,38,.4);
      transition: all .3s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-primary-glow:hover {
      color: #10192b;
      box-shadow: 0 0 36px rgba(220,38,38,.7);
      transform: translateY(-2px);
    }
    .btn-outline-glow {
      background: transparent;
      color: var(--primary);
      border: 1px solid rgba(220,38,38,.5);
      border-radius: 30px;
      padding: .73rem 2rem;
      font-weight: 700;
      font-size: .95rem;
      transition: all .3s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-outline-glow:hover {
      background: rgba(220,38,38,.1);
      color: var(--primary);
      box-shadow: 0 0 20px rgba(220,38,38,.2);
    }
    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }
    .hero-stat span {
      display: block;
      font-family: 'Orbitron', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--primary);
    }
    .hero-stat small { font-size: .78rem; color: #5b6e8f; text-transform: uppercase; letter-spacing: 1px; }
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .tv-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem;
      width: 100%;
      max-width: 420px;
      box-shadow: 0 0 60px rgba(220,38,38,.12), 0 20px 60px rgba(16,30,60,.12);
      position: relative;
    }
    .tv-screen {
      background: linear-gradient(135deg, #ffffff, #eef4fb);
      border-radius: 12px;
      aspect-ratio: 16/9;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      margin-bottom: 1.2rem;
    }
    .tv-screen::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(220,38,38,.05), transparent 60%);
    }
    .tv-screen .play-btn {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, var(--primary), #991b1b);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 30px rgba(220,38,38,.5);
      font-size: 1.4rem;
      color: #fff;
      z-index: 1;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 30px rgba(220,38,38,.5); }
      50%       { box-shadow: 0 0 50px rgba(220,38,38,.9); }
    }
    .tv-info { display: flex; justify-content: space-between; align-items: center; }
    .tv-info .badge-live {
      background: #ff3b3b;
      color: #fff;
      font-size: .7rem;
      font-weight: 700;
      padding: .25rem .6rem;
      border-radius: 4px;
      letter-spacing: 1px;
      animation: blink 1.4s infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.5} }
    .tv-info small { color: #5b6e8f; font-size: .78rem; }
    .floating-badge {
      position: absolute;
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: .6rem 1rem;
      display: flex;
      align-items: center;
      gap: .6rem;
      font-size: .82rem;
      font-weight: 600;
      box-shadow: 0 8px 32px rgba(16,30,60,.10);
      white-space: nowrap;
    }
    .floating-badge i { color: var(--primary); font-size: 1rem; }
    .fb-1 { top: -18px; right: -20px; animation: floatY 3s ease-in-out infinite; }
    .fb-2 { bottom: -18px; left: -20px; animation: floatY 3s ease-in-out infinite .8s; }
    @keyframes floatY {
      0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)}
    }

    /* ── SECTION GENERIC ── */
    section { padding: 90px 0; }
    .section-label {
      display: inline-block;
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--primary);
      margin-bottom: .6rem;
    }
    .section-title {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(1.5rem, 3vw, 2.3rem);
      font-weight: 800;
      color: #10192b;
      margin-bottom: 1rem;
    }
    .section-title span { color: var(--primary); }
    .section-desc { color: #5b6e8f; max-width: 580px; margin: 0 auto 3rem; line-height: 1.8; }
    .divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--primary), #991b1b);
      border-radius: 2px;
      margin: 1rem 0 1.5rem;
    }
    .divider.mx-auto { margin-left: auto; margin-right: auto; }

    /* ── FEATURES ── */
    #features { background: var(--dark2); }
    .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      height: 100%;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), #991b1b);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }
    .feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(16,30,60,.10); border-color: rgba(220,38,38,.3); }
    .feature-card:hover::before { transform: scaleX(1); }
    .feature-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(220,38,38,.15), rgba(153,27,27,.1));
      border: 1px solid rgba(220,38,38,.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--primary);
      margin-bottom: 1.2rem;
    }
    .feature-card h5 { color: #10192b; font-weight: 700; margin-bottom: .6rem; }
    .feature-card p { color: #5b6e8f; font-size: .9rem; line-height: 1.7; margin: 0; }

    /* ── SERVICES ── */
    #services { background: var(--dark); }
    .service-tab-btn {
      background: var(--card-bg);
      border: 1px solid var(--border);
      color: var(--text);
      border-radius: 10px;
      padding: .75rem 1.5rem;
      font-weight: 700;
      font-size: .9rem;
      cursor: pointer;
      transition: all .3s;
      display: flex;
      align-items: center;
      gap: .6rem;
    }
    .service-tab-btn.active, .service-tab-btn:hover {
      background: linear-gradient(90deg, rgba(220,38,38,.15), rgba(153,27,27,.1));
      border-color: var(--primary);
      color: var(--primary);
    }
    .service-panel { display: none; }
    .service-panel.active { display: block; }
    .service-img-box {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 260px;
      position: relative;
    }
    /* Was a gradient clipped to the glyph — when a browser does not do
       background-clip:text the fill stays transparent and the icon is
       simply invisible. A real badge cannot disappear. */
    .service-icon-big {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 148px;
      height: 148px;
      border-radius: 50%;
      font-size: 4.2rem;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), #991b1b);
      box-shadow: 0 18px 44px rgba(153,27,27,.22);
    }
    @media (max-width: 991.98px) {
      .service-icon-big { width: 112px; height: 112px; font-size: 3.2rem; }
    }
    .service-list li {
      display: flex;
      align-items: flex-start;
      gap: .8rem;
      padding: .7rem 0;
      border-bottom: 1px solid rgba(12,40,80,.035);
      color: #55688a;
      font-size: .93rem;
    }
    .service-list li:last-child { border-bottom: none; }
    .service-list li i { color: var(--primary); margin-top: .15rem; flex-shrink: 0; }

    /* ── DECIDE (CCcam or IPTV) ── */
    #decide {
      background: radial-gradient(ellipse at 50% 0%, rgba(153,27,27,.10) 0%, transparent 55%), var(--dark2);
      border-top: 1px solid var(--border);
    }
    .decide-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.2rem;
      height: 100%;
      position: relative;
      transition: all .3s;
      overflow: hidden;
    }
    .decide-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), #991b1b);
    }
    .decide-card.iptv::before { background: linear-gradient(90deg, var(--secondary), #ff7b00); }
    .decide-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(16,30,60,.10); border-color: rgba(220,38,38,.3); }
    .decide-card.iptv:hover { border-color: rgba(240,165,0,.4); }
    .decide-icon {
      width: 60px; height: 60px;
      border-radius: 15px;
      background: linear-gradient(135deg, rgba(220,38,38,.15), rgba(153,27,27,.1));
      border: 1px solid rgba(220,38,38,.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--primary);
      margin-bottom: 1.2rem;
    }
    .decide-card.iptv .decide-icon {
      background: linear-gradient(135deg, rgba(240,165,0,.15), rgba(255,123,0,.1));
      border-color: rgba(240,165,0,.25);
      color: var(--secondary);
    }
    .decide-card h4 { font-family: 'Orbitron', sans-serif; color: #10192b; font-weight: 800; font-size: 1.25rem; margin-bottom: .4rem; }
    .decide-card .decide-sub { color: #5b6e8f; font-size: .85rem; margin-bottom: 1.3rem; }
    .decide-card ul { list-style: none; padding: 0; margin: 0; }
    .decide-card ul li {
      display: flex;
      align-items: flex-start;
      gap: .7rem;
      padding: .55rem 0;
      border-bottom: 1px solid rgba(12,40,80,.035);
      color: #55688a;
      font-size: .9rem;
      line-height: 1.6;
    }
    .decide-card ul li:last-child { border-bottom: none; }
    .decide-card ul li i { color: var(--primary); margin-top: .18rem; flex-shrink: 0; }
    .decide-card.iptv ul li i { color: var(--secondary); }
    .vs-badge {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #991b1b);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Orbitron', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: #fff;
      box-shadow: 0 0 30px rgba(220,38,38,.45);
      margin: 0 auto;
      animation: pulse 2s infinite;
    }
    .decide-table-wrap {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      margin-top: 3rem;
    }
    .decide-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
    .decide-table th, .decide-table td { padding: .85rem 1.2rem; border-bottom: 1px solid rgba(255,255,255,.05); }
    .decide-table thead th {
      background: rgba(220,38,38,.06);
      color: #10192b;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: .75rem;
    }
    .decide-table thead th:nth-child(2) { color: var(--primary); }
    .decide-table thead th:nth-child(3) { color: var(--secondary); }
    .decide-table tbody tr:last-child td { border-bottom: none; }
    .decide-table td:first-child { color: #10192b; font-weight: 600; }
    .decide-table td { color: #55688a; }
    .decide-cta {
      margin-top: 3rem;
      background: linear-gradient(135deg, rgba(153,27,27,.12), rgba(220,38,38,.06));
      border: 1px solid rgba(220,38,38,.25);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
    }
    .decide-cta h5 { font-family: 'Orbitron', sans-serif; color: #10192b; font-weight: 800; margin-bottom: .5rem; }
    .decide-cta p { color: #5b6e8f; font-size: .9rem; margin-bottom: 1.3rem; }
    @media(max-width:991px) {
      .vs-badge { margin: 1.5rem auto; }
      .decide-table { font-size: .8rem; }
      .decide-table th, .decide-table td { padding: .65rem .7rem; }
    }

    /* ── PRICING ── */
    #pricing { background: var(--dark2); }
    .pricing-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3rem;
    }
    .toggle-label { font-weight: 600; font-size: .9rem; }
    .form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
    .form-check-input { cursor: pointer; }
    .pricing-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.2rem;
      height: 100%;
      position: relative;
      transition: all .3s;
      overflow: hidden;
    }
    .pricing-card.featured {
      border-color: var(--primary);
      box-shadow: 0 0 40px rgba(220,38,38,.15);
    }
    .pricing-card:hover { transform: translateY(-6px); }
    .pricing-badge {
      position: absolute;
      top: 18px; right: 18px;
      background: linear-gradient(90deg, var(--primary), #991b1b);
      color: #fff;
      font-size: .7rem;
      font-weight: 700;
      padding: .3rem .8rem;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .pricing-name { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: .5rem; }
    .pricing-price {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.6rem;
      font-weight: 800;
      color: #10192b;
      line-height: 1;
      margin-bottom: .2rem;
    }
    .pricing-price sup { font-size: 1.1rem; vertical-align: super; }
    .pricing-period { color: #5b6e8f; font-size: .82rem; margin-bottom: 1.5rem; }
    .pricing-features { list-style: none; padding: 0; margin: 0 0 1.8rem; }
    .pricing-features li {
      padding: .55rem 0;
      border-bottom: 1px solid rgba(12,40,80,.035);
      color: #55688a;
      font-size: .88rem;
      display: flex;
      align-items: center;
      /* No gap here: it would fall between every inline tag inside the
         text as well, not just after the icon. The icon carries the
         spacing instead, so a bullet containing <b> or <s> still reads
         as one sentence. */
      gap: 0;
    }
    .pricing-features li:last-child { border-bottom: none; }
    .pricing-features li i { color: #00e676; margin-right: .7rem; flex: none; }
    .pricing-features li.na { opacity: .4; }
    .pricing-features li.na i { color: #ff5252; }
    .btn-pricing {
      display: block;
      text-align: center;
      background: linear-gradient(90deg, var(--primary), #991b1b);
      color: #fff;
      border-radius: 30px;
      padding: .75rem 1.5rem;
      font-weight: 700;
      font-size: .9rem;
      text-decoration: none;
      box-shadow: 0 0 20px rgba(220,38,38,.25);
      transition: all .3s;
    }
    .btn-pricing:hover { color: #10192b; box-shadow: 0 0 36px rgba(220,38,38,.5); transform: translateY(-1px); }
    .btn-pricing.outline {
      background: transparent;
      border: 1px solid rgba(220,38,38,.4);
      color: var(--primary);
      box-shadow: none;
    }
    .btn-pricing.outline:hover { background: rgba(220,38,38,.08); box-shadow: none; }

    /* ── WHY US ── */
    #whyus { background: var(--dark); }
    .why-item {
      display: flex;
      gap: 1.2rem;
      margin-bottom: 2rem;
    }
    .why-num {
      flex-shrink: 0;
      width: 48px; height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(220,38,38,.2), rgba(153,27,27,.1));
      border: 1px solid rgba(220,38,38,.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Orbitron', sans-serif;
      font-size: .85rem;
      font-weight: 800;
      color: var(--primary);
    }
    .why-item h6 { color: #10192b; font-weight: 700; margin-bottom: .3rem; }
    .why-item p { color: #5b6e8f; font-size: .88rem; line-height: 1.7; margin: 0; }
    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }
    .stat-box {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.5rem;
      text-align: center;
      transition: all .3s;
    }
    .stat-box:hover { border-color: rgba(220,38,38,.3); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
    .stat-box .val {
      font-family: 'Orbitron', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      background: linear-gradient(90deg, var(--primary), #991b1b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: block;
      line-height: 1;
      margin-bottom: .4rem;
    }
    .stat-box small { color: #5b6e8f; font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--dark2); }
    .testi-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.8rem;
      height: 100%;
      transition: all .3s;
    }
    .testi-card:hover { border-color: rgba(220,38,38,.3); transform: translateY(-4px); }
    .stars { color: var(--secondary); font-size: .9rem; margin-bottom: .8rem; }
    .testi-card p { color: #55688a; font-size: .9rem; line-height: 1.8; margin-bottom: 1.2rem; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: .8rem; }
    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #991b1b);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #fff;
      font-size: .95rem;
      flex-shrink: 0;
    }
    .testi-author strong { display: block; color: #10192b; font-size: .88rem; }
    .testi-author small { color: #5b6e8f; font-size: .78rem; }

    /* ── FREE TRIAL ── */
    #trial {
      background: linear-gradient(135deg, rgba(153,27,27,.15), rgba(220,38,38,.08));
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 80px 0;
    }
    .trial-box {
      background: var(--card-bg);
      border: 1px solid rgba(220,38,38,.25);
      border-radius: 24px;
      padding: 3rem;
      text-align: center;
      box-shadow: 0 0 60px rgba(220,38,38,.08);
    }
    .trial-box h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      color: #10192b;
      font-weight: 800;
      margin-bottom: 1rem;
    }
    .trial-box p { color: #5b6e8f; margin-bottom: 2rem; }
    .input-group-trial { max-width: 480px; margin: 0 auto; }
    .input-group-trial .form-control {
      background: var(--dark3);
      border: 1px solid var(--border);
      color: #10192b;
      border-radius: 30px 0 0 30px;
      padding: .75rem 1.5rem;
      font-size: .9rem;
    }
    .input-group-trial .form-control::placeholder { color: #6a7c99; }
    .input-group-trial .form-control:focus {
      background: var(--dark3);
      border-color: var(--primary);
      box-shadow: 0 0 0 .2rem rgba(220,38,38,.15);
      color: #10192b;
    }
    .input-group-trial .btn {
      background: linear-gradient(90deg, var(--primary), #991b1b);
      color: #fff;
      border: none;
      border-radius: 0 30px 30px 0;
      padding: .75rem 1.6rem;
      font-weight: 700;
      font-size: .9rem;
    }

    /* ── FAQ ── */
    #faq { background: var(--dark); }
    .accordion-item {
      background: var(--card-bg) !important;
      border: 1px solid var(--border) !important;
      border-radius: 12px !important;
      margin-bottom: .75rem;
      overflow: hidden;
    }
    .accordion-button {
      background: var(--card-bg) !important;
      color: #10192b !important;
      font-weight: 600;
      font-size: .95rem;
      border: none;
      box-shadow: none !important;
    }
    .accordion-button:not(.collapsed) { color: var(--primary) !important; }
    .accordion-button::after {
      filter: invert(1) sepia(1) saturate(5) hue-rotate(180deg);
    }
    .accordion-body { background: var(--card-bg); color: #5b6e8f; font-size: .9rem; line-height: 1.8; }

    /* ── FOOTER ── */
    footer {
      background: #e4ecf7;
      border-top: 1px solid var(--border);
      padding: 70px 0 30px;
    }
    footer .footer-brand {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.2rem;
      color: #10192b;
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: .7rem;
      margin-bottom: 1rem;
    }
    footer .footer-brand .logo-icon {
      width: 38px; height: 38px;
      background: linear-gradient(135deg, var(--primary), #991b1b);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    footer .footer-brand .logo-icon i { color: #10192b; font-size: 1.1rem; }
    footer p.footer-desc { color: #6a7c99; font-size: .87rem; line-height: 1.8; max-width: 280px; }
    footer h6 { color: #10192b; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: .78rem; margin-bottom: 1.2rem; }
    footer ul { list-style: none; padding: 0; margin: 0; }
    footer ul li { margin-bottom: .6rem; }
    footer ul li a { color: #6a7c99; text-decoration: none; font-size: .87rem; transition: color .2s; }
    footer ul li a:hover { color: var(--primary); }
    footer .social-links { display: flex; gap: .7rem; margin-top: 1rem; }
    footer .social-links a {
      width: 36px; height: 36px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6a7c99;
      text-decoration: none;
      font-size: .95rem;
      transition: all .3s;
    }
    footer .social-links a:hover { background: rgba(220,38,38,.1); border-color: var(--primary); color: var(--primary); }
    .footer-bottom {
      border-top: 1px solid rgba(12,40,80,.035);
      padding-top: 1.5rem;
      margin-top: 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: .5rem;
    }
    .footer-bottom p { margin: 0; color: #93a3bd; font-size: .8rem; }
    .footer-bottom a { color: var(--primary); text-decoration: none; }

    /* ── BACK TO TOP ── */
    #backToTop {
      position: fixed;
      bottom: 30px; right: 30px;
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--primary), #991b1b);
      color: #fff;
      border-radius: 12px;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 9999;
      box-shadow: 0 4px 20px rgba(220,38,38,.4);
      transition: all .3s;
      border: none;
    }
    #backToTop:hover { transform: translateY(-3px); }
    #backToTop.show { display: flex; }

    /* ── TICKER ── */
    .ticker-wrap {
      background: rgba(220,38,38,.06);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: .5rem 0;
      overflow: hidden;
    }
    .ticker {
      display: flex;
      gap: 3rem;
      animation: ticker 30s linear infinite;
      white-space: nowrap;
    }
    .ticker span { font-size: .8rem; color: #6a7c99; }
    .ticker span i { color: var(--primary); margin-right: .4rem; }
    @keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

    /* ── RESPONSIVE ── */
    @media(max-width:768px) {
      .hero-stat span { font-size: 1.3rem; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .fb-1, .fb-2 { display: none; }
      .trial-box { padding: 2rem 1.5rem; }
    }
/* ================= pages added on top of the original design ========== */
.pay-section, .page-section { padding: 140px 0 90px; }
.pay-detail{display:flex;align-items:center;gap:10px;flex-wrap:wrap;
  background:rgba(12,40,80,.03);border:1px solid rgba(12,40,80,.09);
  border-radius:12px;padding:10px 14px;margin-bottom:8px}
.pay-detail-label{font-weight:700;min-width:120px}
.pay-detail-amt{color:var(--primary);font-weight:700}
.pay-detail code{word-break:break-all;font-size:.82rem;color:#24344f}
.mini{background:rgba(220,38,38,.12);border:1px solid rgba(220,38,38,.35);color:#dc2626;
  border-radius:8px;padding:3px 10px;font-size:.74rem;cursor:pointer}
.mini:hover{background:rgba(220,38,38,.22)}
.drop{display:flex;align-items:center;gap:12px;cursor:pointer;width:100%;
  border:1px dashed rgba(12,40,80,.22);border-radius:14px;padding:14px 16px;margin-bottom:14px}
.drop:hover{border-color:rgba(220,38,38,.5)}
.drop i{font-size:1.4rem;color:#dc2626}
.drop span{font-size:.82rem;color:#55688a}
.drop .drop-file{margin-left:auto;font-weight:600;color:#24344f;font-size:.78rem}
.sticky-side{position:sticky;top:96px}
.pricing-features li b.ms-auto{margin-left:auto}
.pricing-features li{display:flex;align-items:center;gap:.5rem}
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.mail-link img{vertical-align:middle;max-height:18px}
.foot-mail img{max-height:16px}
.article-body h3{margin-top:1.6rem;font-size:1.05rem}
.article-body p, .article-body li{color:#55688a;line-height:1.85;font-size:.94rem}
.article-body pre{background:rgba(0,0,0,.35);border:1px solid rgba(12,40,80,.09);
  border-radius:12px;padding:14px;overflow:auto;color:#24344f;font-size:.82rem}

/* =====================================================================
   Light theme — the finishing touches the search-and-replace cannot do.
   The brand blue is kept; only the surfaces changed, so buttons, the
   logo and the gradients look exactly as they were designed.
   ===================================================================== */
body { background: #f4f8fd; color: #17233a; }

#mainNav { border-bottom: 1px solid rgba(12,40,80,.10); box-shadow: 0 2px 20px rgba(16,30,60,.05); }
#mainNav .nav-link { color: #33455f !important; }
#mainNav .nav-link:hover, #mainNav .nav-link.active { color: #991b1b !important; }
.navbar-brand, .logo-name .Ma, .logo-name .aM { color: #10192b !important; }
.logo-www { color: #93a3bd !important; }
.navbar-toggler { border-color: rgba(12,40,80,.18); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(23,35,58,.8)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.dropdown-menu {
  background: #fff; border: 1px solid rgba(12,40,80,.10);
  box-shadow: 0 18px 44px rgba(16,30,60,.14);
}
.dropdown-item { color: #33455f; }
.dropdown-item:hover, .dropdown-item.active { background: #eaf1fa; color: #991b1b; }

/* cards and boxes get a real edge now that they are white on light grey */
.feature-card, .pricing-card, .decide-card, .testi-card, .trial-box, .stat-box, .service-panel {
  background: #fff;
  border: 1px solid rgba(12,40,80,.09);
  box-shadow: 0 8px 26px rgba(16,30,60,.06);
}
.feature-card:hover, .decide-card:hover, .pricing-card:hover, .testi-card:hover {
  box-shadow: 0 18px 44px rgba(16,30,60,.12);
  border-color: rgba(220,38,38,.45);
}
.pricing-card.featured { border-color: rgba(220,38,38,.55); box-shadow: 0 18px 46px rgba(220,38,38,.16); }

/* section backgrounds alternate white / very light blue */
#features, #pricing, #testimonials { background: #ffffff; }
#services, #decide, #whyus, #faq, .page-section, .pay-section { background: #f4f8fd; }
#hero {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(153,27,27,.10) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}
#trial { background: linear-gradient(180deg, #eef4fb 0%, #ffffff 100%); }

.section-desc, .feature-card p, .decide-card p, .testi-card p, .why-item p, .pricing-period,
footer .footer-desc, footer ul a, .hero .lead { color: #55688a; }
.section-label { color: #991b1b; }
.pricing-features li { color: #3d5070; }
.pricing-features li.na { color: #9fb0c8; }

/* form controls */
.form-control {
  background: #fff; border: 1px solid rgba(12,40,80,.16); color: #17233a;
}
.form-control:focus {
  background: #fff; border-color: var(--primary); color: #17233a;
  box-shadow: 0 0 0 .2rem rgba(220,38,38,.18);
}
.form-control::placeholder { color: #9fb0c8; }
.input-group-trial .form-control { background: #fff; color: #17233a; }

/* accordion */
.accordion-item { background: #fff; border: 1px solid rgba(12,40,80,.09); }
.accordion-button { background: #fff !important; color: #10192b !important; }
.accordion-button:not(.collapsed) { background: #eef4fb !important; color: #991b1b !important; }
.accordion-body { color: #55688a; }

/* footer */
footer { background: #0d1b35; }                     /* one dark band, on purpose */
footer, footer p, footer .footer-desc, footer ul a { color: #9fb0c8; }
footer h6, footer .footer-brand, footer .logo-name .Ma, footer .logo-name .aM { color: #fff !important; }
footer ul a:hover { color: #dc2626; }
footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }

/* tabs and pills */
.service-tab-btn {
  background: #fff; color: #33455f; border: 1px solid rgba(12,40,80,.14);
}
.service-tab-btn.active {
  background: linear-gradient(90deg, var(--primary), #991b1b); color: #fff; border-color: transparent;
}

/* payment page bits */
.pay-detail { background: #fff; border: 1px solid rgba(12,40,80,.10); }
.pay-detail code { color: #24344f; }
.drop { border-color: rgba(12,40,80,.22); background: #fff; }
.drop span { color: #55688a; }
.article-body p, .article-body li { color: #4b5f80; }
.article-body pre { background: #0d1b35; color: #cfe0f5; border: 0; }
.hero-badge { background: rgba(220,38,38,.10); color: #991b1b; border: 1px solid rgba(220,38,38,.28); }
::-webkit-scrollbar-track { background: #e8eef7; }

/* the header of the chosen payment method */
.pay-head{display:flex;align-items:center;gap:14px;background:#eef4fb;
  border:1px solid rgba(12,40,80,.10);border-radius:14px;padding:12px 16px;margin-bottom:14px}
.pay-head-ic{font-size:1.6rem;line-height:1}
.pay-head-amt{margin-left:auto;font-family:'Orbitron',sans-serif;font-weight:800;
  font-size:1.15rem;color:#991b1b;white-space:nowrap}
.pay-steps{padding-left:1.1rem;margin:0 0 6px}
.pay-steps li{color:#4b5f80;line-height:1.9;font-size:.92rem}
.pay-steps b{color:#991b1b}

/* the "how to" video link — a real button, never an empty outline */
.pay-howto{display:inline-flex;align-items:center;gap:.55rem;margin-top:.6rem;
  background:#fff5e6;border:1px solid rgba(240,165,0,.45);color:#8a5a00;
  border-radius:12px;padding:.6rem 1rem;font-weight:600;font-size:.88rem;
  text-decoration:none}
.pay-howto:hover{background:#ffe9c7;color:#6d4700}
.pay-howto i{font-size:1.15rem;color:#f0a500}

/* =====================================================================
   The hero TV — German channels zapping and a C-line typing itself.
   All CSS, no images and no JavaScript: it costs nothing to load and
   it shows a customer exactly what he is buying.
   ===================================================================== */
.tv-screen{background:linear-gradient(160deg,#0d1b35,#132a52);border-color:rgba(220,38,38,.25);
  align-items:stretch;justify-content:flex-start;padding:14px 16px;flex-direction:column}
.tv-screen::after{background:
  repeating-linear-gradient(0deg,rgba(255,255,255,.035) 0 1px,transparent 1px 3px);
  pointer-events:none}

/* the flags, top right — drawn, so they look the same on every device */
.tv-flags{position:absolute;top:12px;right:14px;z-index:2;display:flex;gap:5px}
.tv-flag{width:26px;border-radius:3px;overflow:hidden;display:block;
  box-shadow:0 2px 8px rgba(0,0,0,.35)}
.tv-flag > span{display:block;height:6px}
/* Germany */
.tv-flag-de > span:nth-child(1){background:#000}
.tv-flag-de > span:nth-child(2){background:#d00}
.tv-flag-de > span:nth-child(3){background:#ffce00}
/* Austria */
.tv-flag-at > span:nth-child(1){background:#ed2939}
.tv-flag-at > span:nth-child(2){background:#fff}
.tv-flag-at > span:nth-child(3){background:#ed2939}
/* Switzerland — square, white cross */
.tv-flag-ch{width:18px;height:18px;position:relative;background:#d52b1e;border-radius:2px}
.tv-flag-ch > span{display:none}
.tv-flag-ch::before,.tv-flag-ch::after{content:'';position:absolute;background:#fff}
.tv-flag-ch::before{left:7.5px;top:3.5px;width:3px;height:11px}
.tv-flag-ch::after{top:7.5px;left:3.5px;height:3px;width:11px}
/* Italy — vertical bands */
.tv-flag-it{display:flex;height:18px}
.tv-flag-it > span{height:100%;width:33.34%}
.tv-flag-it > span:nth-child(1){background:#008c45}
.tv-flag-it > span:nth-child(2){background:#fff}
.tv-flag-it > span:nth-child(3){background:#cd212a}

/* one channel at a time, each fading in as the previous leaves */
.zap{position:relative;flex:1;z-index:1}
.zap-item{position:absolute;inset:auto 0 0 0;opacity:0;transform:translateY(6px);
  animation:zapCycle 15s linear infinite;animation-delay:var(--d)}
.zap-name{display:block;font-family:'Orbitron',sans-serif;font-weight:800;
  font-size:1.02rem;color:#fff;letter-spacing:.4px}
.zap-meta{display:block;margin-top:.25rem;font-size:.74rem;color:#8fb6dd}
.zap-meta b{color:#dc2626}
@keyframes zapCycle{
  0%      {opacity:0;transform:translateY(6px)}
  2%,15%  {opacity:1;transform:translateY(0)}
  17%,100%{opacity:0;transform:translateY(-6px)}
}

/* the zap timer, bottom right of the screen */
.zap-time{position:absolute;right:14px;bottom:12px;z-index:2;
  font-family:'Orbitron',sans-serif;font-size:.72rem;color:#dc2626;opacity:.9}
.zap-ms{animation:zapMs 15s steps(1) infinite}
@keyframes zapMs{
  0%{content:'0.19'} 16%{opacity:.55} 18%{opacity:1}
  33%{opacity:.55} 35%{opacity:1} 50%{opacity:.55} 52%{opacity:1}
  67%{opacity:.55} 69%{opacity:1} 84%{opacity:.55} 86%{opacity:1}
}

/* the C-line, typed out then held */
.tv-line{display:flex;align-items:center;gap:.55rem;background:#0b1730;
  border:1px solid rgba(220,38,38,.22);border-radius:10px;
  padding:.6rem .8rem;margin-bottom:1rem;overflow:hidden}
.tv-line code{font-family:'SFMono-Regular',Menlo,Consolas,monospace;font-size:.76rem;
  color:#7ee0ff;white-space:nowrap;overflow:hidden;
  border-right:2px solid rgba(126,224,255,.8);
  width:0;animation:typeLine 15s steps(34) infinite, caret .8s step-end infinite}
@keyframes typeLine{
  0%{width:0} 20%,92%{width:100%} 100%{width:0}
}
@keyframes caret{50%{border-color:transparent}}
.tv-line-dot{width:8px;height:8px;border-radius:50%;background:#00e676;flex:none;
  box-shadow:0 0 10px rgba(0,230,118,.8);animation:blink 1.4s infinite}

.tv-info{gap:.9rem}
.tv-info small{color:#5b6e8f;display:inline-flex;align-items:center}

@media (prefers-reduced-motion: reduce){
  .zap-item,.tv-line code,.tv-line-dot,.zap-ms{animation:none}
  .zap-item{opacity:0} .zap-item.on{opacity:1;transform:none}
  .tv-line code{width:100%;border-right:0}
}


/* .pricing-card is a tall pricing column by design; on the payment page
   it is only a container, so it must not stretch or hover-lift */
.pay-section .pricing-card{height:auto;padding:1.4rem 1.5rem;overflow:visible}
.pay-section .pricing-card:hover{transform:none}
.pay-section .pricing-card.sticky-side{padding:1.6rem}
.pay-section .pricing-features li{padding:.3rem 0}
.pay-section .service-tab-btn{padding:.5rem 1rem;font-size:.85rem}

/* ── LINKS ────────────────────────────────────────────────────────────
   Bootstrap's .link-light paints text almost white: right on the old
   dark design, invisible on this one. These two are ours and follow the
   palette, so a theme change can never make a link disappear again. */
.link-soft {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dotted rgba(220,38,38,.5);
  transition: color .2s, border-color .2s;
}
.link-soft:hover { color: #991b1b; border-bottom-color: #991b1b; }

.link-ink { color: var(--text); text-decoration: none; transition: color .2s; }
.link-ink:hover { color: var(--primary); }

/* ── PRICING: five plans on one line ──────────────────────────────────
   Bootstrap's col-lg-3 gives four per row, so Lifetime — the most
   profitable one — was pushed onto a line of its own and read like an
   afterthought. Equal-width columns put all five side by side from the
   large breakpoint up, with the padding tightened so the price still
   breathes. */
@media (min-width: 992px) {
  .pricing-row > [class*="col-"] { flex: 1 0 0%; max-width: 20%; }
  .pricing-row .pricing-card { padding: 1.9rem 1.1rem; }
  .pricing-row .pricing-price { font-size: 2.5rem; }
  .pricing-row .pricing-features li { font-size: .82rem; }
  .pricing-row .btn-pricing { padding: .7rem .6rem; font-size: .85rem; }
}
@media (min-width: 1200px) {
  .pricing-row .pricing-card { padding: 2.1rem 1.4rem; }
  .pricing-row .pricing-features li { font-size: .86rem; }
}

/* ── HERO: something up there, moving ────────────────────────────────
   A satellite drifting across the hero with its signal pulsing down at
   the reader. Everything animates transform and opacity only, so it
   stays on the compositor and costs nothing on a phone; the whole layer
   ignores the mouse, and it stops dead for anyone who has asked their
   system for less motion. */
.sat-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;          /* never steal a click from the buttons */
  z-index: 0;
  color: var(--primary);
}

/* the two faint rings it travels along */
.sat-field .orbit {
  position: absolute;
  border: 1px solid rgba(220,38,38,.13);
  border-radius: 50%;
  opacity: .8;
}
.sat-field .orbit-1 {
  width: 780px; height: 780px;
  right: -180px; top: -190px;
  animation: orbitSpin 90s linear infinite;
  border-style: dashed;
}
.sat-field .orbit-2 {
  width: 1120px; height: 1120px;
  right: -330px; top: -330px;
  border-color: rgba(153,27,27,.08);
  animation: orbitSpin 140s linear infinite reverse;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* the big satellite: a slow pass from left to right, tilting as it goes */
.sat-field .sat { position: absolute; opacity: .5; will-change: transform; }
.sat-field .sat svg { display: block; }

.sat-field .sat-a {
  top: 16%;
  left: -220px;
  animation: satCross 46s linear infinite;
}
.sat-field .sat-b {
  top: 62%;
  left: -140px;
  opacity: .28;
  animation: satCross 78s linear infinite;
  animation-delay: -30s;
}
@keyframes satCross {
  0%   { transform: translate3d(0, 0, 0) rotate(-8deg); }
  50%  { transform: translate3d(52vw, 26px, 0) rotate(6deg); }
  100% { transform: translate3d(112vw, -10px, 0) rotate(-4deg); }
}

/* the signal leaving the dish, one arc after the other */
.sat-field .beam { opacity: 0; transform-origin: 100px 86px; }
.sat-field .b1 { animation: beam 2.4s ease-out infinite; }
.sat-field .b2 { animation: beam 2.4s ease-out infinite .35s; }
.sat-field .b3 { animation: beam 2.4s ease-out infinite .7s; }
@keyframes beam {
  0%   { opacity: 0;   transform: scale(.55); }
  35%  { opacity: .95; }
  100% { opacity: 0;   transform: scale(1.25); }
}

/* a few slow points of light, so the sky is not empty */
.sat-field .star {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .35;
  animation: twinkle 5s ease-in-out infinite;
}
.sat-field .s1 { top: 18%; left: 12%; animation-delay: 0s;   }
.sat-field .s2 { top: 34%; left: 46%; animation-delay: 1.1s; width: 3px; height: 3px; }
.sat-field .s3 { top: 66%; left: 22%; animation-delay: 2.2s; }
.sat-field .s4 { top: 78%; left: 62%; animation-delay: 3.1s; width: 3px; height: 3px; }
.sat-field .s5 { top: 26%; left: 78%; animation-delay: 1.7s; }
.sat-field .s6 { top: 52%; left: 88%; animation-delay: 3.8s; width: 3px; height: 3px; }
@keyframes twinkle {
  0%, 100% { opacity: .15; transform: scale(.8); }
  50%      { opacity: .55; transform: scale(1.15); }
}

/* on a phone the hero is mostly text — keep one satellite, drop the rest */
@media (max-width: 767.98px) {
  .sat-field .sat-b, .sat-field .orbit-2, .sat-field .star { display: none; }
  .sat-field .sat-a { top: 8%; opacity: .3; }
}

/* respect the system setting: no motion means no motion */
@media (prefers-reduced-motion: reduce) {
  .sat-field .sat, .sat-field .orbit, .sat-field .star, .sat-field .beam {
    animation: none !important;
  }
  .sat-field .sat-a { left: 8%; }
  .sat-field .beam  { opacity: .5; }
}


/* =====================================================================
   A written payment block (bank transfer, cash transfer). The panel
   sends it as formatted HTML so the important line can be red; here it
   only needs a readable container. Colours set in the panel win, which
   is why nothing below sets a text colour on the children.
   ===================================================================== */
.pay-note{margin:0 0 14px;padding:14px 16px;border-radius:12px;
  background:rgba(14,116,144,.06);border:1px solid rgba(14,116,144,.18);
  font-size:.92rem;line-height:1.75;overflow-wrap:anywhere}
.pay-note p{margin:0 0 .55em}
.pay-note p:last-child{margin-bottom:0}
.pay-note ul,.pay-note ol{margin:0 0 .55em;padding-left:1.25rem}
.pay-note code{background:rgba(0,0,0,.06);padding:1px 6px;border-radius:5px;font-size:.86em}
.pay-note a{text-decoration:underline}
