/* =========================
   RESET + GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #212121;
    font-size: 16px;
    line-height: 1.6;
  }
  a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s ease;
  }
  ul {
    list-style: none;
  }
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }  
  
  .site-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 130px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: visible;
  }
  
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.2rem;
  
    /* âœ… Ð¿Ð¾Ð´Ð½Ð¸Ð¼Ð°ÐµÐ¼ Ñ€Ð¾Ð²Ð½Ð¾ Ð½Ð° 32px */
    transform: translateY(-32px);
  }
  
  /* Logo */
  .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .logo-icon {
    height: 180px;
    max-height: 190px;
    width: auto;
    object-fit: contain;
  }
  
  /* Navigation */
  .main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
  }
  .main-nav a,
  .main-nav button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    color: #212121;
    line-height: 1;
    text-decoration: none;
  }
  .main-nav a:hover,
  .main-nav button:hover {
    color: #0066cc;
  }
  
  /* Call Now Button */
  .call-now {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    background: #2ecc71;
    color: #fff;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    gap: 0.4rem;
    transition: background 0.2s ease;
  }
  .call-now:hover {
    background: #27ae60;
  }

/* — Mobile toggle (hidden on desktop) — */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.fomo-bar {
  background: #d32f2f;
  color: white;
  padding: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;      /* align left so marquee runs correctly */
  position: sticky;
  top: 64px;
  z-index: 999;
  overflow: hidden;       /* hide the overflow */
  white-space: nowrap;    /* keep it on one line */
}

/* moving text */
.fomo-bar .marquee {
  display: inline-block;
  padding-left: 50%;           /* start just off the right edge */
  animation: marquee 12s linear infinite;
}

/* pause on hover (optional) */
.fomo-bar:hover .marquee {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}




/* =========================
   DROPDOWN + SERVICES MENU
========================= */
.dropdown {
    position: relative;
}
.dropdown button {
    background: none;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: #212121;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    min-width: 260px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

    /* чуть выше хедера, чтобы не пряталось за ним */
    z-index: 1001;

    max-height: 60vh;
    overflow-y: auto;
}
.dropdown-menu.open {
    display: flex;
}
/* Optional: smooth scrolling feel */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}
.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}
/* Specific Services Dropdown (Styled for Conversion) */
.services-menu a {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    display: block;
    color: #222;
    border-left: 4px solid transparent;
    transition: background 0.2s ease, border-left 0.2s ease, color 0.2s ease;
}
.services-menu a:hover {
    background: #f5faff;
    border-left: 4px solid #0066cc;
    color: #0066cc;
}

  
  /* =========================
     HERO + TYPING
  ========================= */
  .hero {
    background: linear-gradient(to right, #f4f9ff, #ffffff);
    text-align: center;
    padding: 5rem 1rem 3rem;
  }
  .hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0b355d;
    margin-bottom: 0.5rem;
  }
  .hero h2 {
    font-size: 1.7rem;
    color: #2ecc71;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid;
    width: 0;
    animation: typing 3.5s steps(40, end) forwards;
    margin-bottom: 1.5rem;
  }
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  .hero p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  /* CTA BUTTON */
  .cta-button {
    display: inline-block;
    width: auto;
    max-width: 300px;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    background-color: #ff4757;
    color: white;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    margin: 0 auto;
  }
  
  .cta-button:hover {
    background: #005bb5;
    transform: translateY(-2px);
  }
  .cta-button.pulse {
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 rgba(0,102,204,0.4); }
    50% { box-shadow: 0 0 20px rgba(0,102,204,0.6); }
    100% { box-shadow: 0 0 0 rgba(0,102,204,0.4); }
  }
  .cta-button.green {
    background: #2ecc71;
  }
  .cta-button.green:hover {
    background: #26b364;
  }
  
  /* =========================
     STATUS + TRUST BAR
  ========================= */
  .status-bar {
    background: #f3f7fb;
    padding: 1rem 0;
    font-size: 0.95rem;
  }
  .status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    text-align: center;
    color: #333;
    font-weight: 500;
  }
  
  /* =========================
     COUNTDOWN BANNER
  ========================= */
  .limited-offer {
    background: #fff4e5;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: #d35400;
  }
  
  /* =========================
     SERVICE CARDS
  ========================= */
  .service-cards {
    padding: 3rem 0;
  }
  .service-cards h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #0b355d;
    margin-bottom: 2rem;
  }
  .grid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  
  
  .card {
    background: #fff;
    border: 1px solid #eee;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  }
  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #0066cc;
  }
  
  /* =========================
     HOW IT WORKS
  ========================= */
  .how-it-works {
    background: #f9f9f9;
    padding: 2rem 0;
    text-align: center;
  }
  .how-it-works h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    font-weight: 600;
    color: #333;
  }
  
  /* =========================
     SCAM ALERT + CALL EXAMPLE
  ========================= */
  .scam-alert, .call-transcript {
    padding: 3rem 1rem;
  }
  .scam-alert h2, .call-transcript h2 {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .scam-alert ul {
    margin-top: 1rem;
    padding-left: 1rem;
  }
  .scam-alert li {
    margin-bottom: 0.5rem;
    list-style: disc;
    color: #333;
  }
  .call-transcript p {
    background: #f5f5f5;
    padding: 1rem;
    border-left: 4px solid #2ecc71;
  }

  /* =========================
     REVIEWS
  ========================= */

  .review-highlight {
    background: #f9f9f9;
    padding: 2rem 1rem;
    text-align: center;
    font-style: italic;
    color: #333;
  }
  .review-highlight blockquote {
    max-width: 600px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  .review-highlight footer {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #777;
  }
  

  /* =========================
     CTA GLOW SECTION
  ========================= */
  .cta-glow {
    background: #f2fff7;
    padding: 3rem 1.5rem;
    text-align: center;
  }
  .cta-glow h2 {
    color: #2ecc71;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  .cta-glow p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #444;
  }
  .alt-link {
    font-weight: 600;
    color: #0066cc;
  }
  
 /* =============================
   📍 Floating Button (LEFT SIDE)
============================= */
.floating-call-widget {
    position: fixed;
    bottom: 20px;
    left: 20px; /* LEFT instead of right */
    z-index: 1001;
  }
  .floating-toggle {
    background: #b22234;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
  }
  .floating-toggle:hover {
    background: #800000;
  }
  
  /* =============================
     📦 Dialog Box Popup (LEFT)
  ============================= */
  .floating-dialog {
    display: none;
    background: white;
    border: 2px solid #3c3b6e;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 280px;
    animation: fadeInUp 0.3s ease;
  }
  .floating-dialog h4 {
    margin-bottom: 0.5rem;
    color: #b22234;
    font-size: 1.1rem;
  }
  .floating-dialog p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .dialog-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .dialog-btn {
    flex: 1;
    padding: 0.6rem;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  .dialog-btn.call {
    background: #3c3b6e;
    color: white;
  }
  .dialog-btn.message {
    background: #f39c12;
    color: white;
  }
  .dialog-full {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: #b22234;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s ease;
  }
  .dialog-full:hover {
    background: #800000;
  }
  
  /* =============================
     📩 Modal Form (Full Screen)
  ============================= */
  .form-modal {
    display: none;
    position: fixed;
    z-index: 1002;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }
  
  /* =============================
     💬 Form Content Box
  ============================= */
  .form-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.3s ease;
    box-sizing: border-box;
  }
  .form-content h3 {
    margin-bottom: 1rem;
    color: #3c3b6e;
    font-size: 1.3rem;
    text-align: center;
  }
  .form-content label {
    display: block;
    margin: 0.8rem 0 0.3rem;
    font-weight: 600;
    color: #333;
  }
  .form-content input,
  .form-content textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
  }
  .form-content button[type="submit"] {
    margin-top: 1rem;
    background: #3c3b6e;
    color: white;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .form-content button[type="submit"]:hover {
    background: #2a2956;
  }
  
  /* =============================
     ❌ Close Button
  ============================= */
  .form-content .close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }
  
  /* =============================
     ✨ Animation
  ============================= */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  

  /* =========================
     FOOTER
  ========================= */
  footer {
    background: #fafafa;
    padding: 2rem 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #eee;
  }
  .payment-icons {
    margin-top: 0.5rem;
    color: #555;
    font-size: 1rem;
  }
  
  /* =========================
     FLOATING BADGE
  ========================= */
  .floating-fee-card {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #2ecc71;
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-weight: 600;
    z-index: 999;
  }

/* ✅ Floating Services Button */
.floating-services-toggle {
  position: fixed;
  bottom: 67px;
  left: 24px;
  z-index: 1001;
  text-align: left;
}

.floating-services-btn {
  background: #0066cc;
  color: #fff;
  border: none;
  padding: 0.60rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.floating-services-btn:hover {
  background: #004999;
}

.floating-services-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-height: 280px;
  overflow-y: auto;
  padding: 0.5rem 0;
  width: 260px;
}

.floating-services-menu.open {
  display: flex;
}

.floating-services-menu a {
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  color: #222;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 0.2s ease;
}
.floating-services-menu a:hover {
  background: #f4f9ff;
  border-left: 4px solid #0066cc;
  color: #0066cc;
}


 /* =========================
   EXIT POPUP
========================= */
.exit-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
  }
  
  .popup-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 320px;
    width: 90%;
    box-sizing: border-box;
  
    /* flow items vertically */
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Remove absolute positioning – now a normal flow item */
  .close-popup {
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: 600;
    color: #0066cc;
    cursor: pointer;
  
    /* align to right */
    align-self: flex-end;
    margin-bottom: 1rem; /* space under the message */
  }
  
  /* if you want a text button at the bottom instead: */
  .close-popup.bottom {
    align-self: center;
    margin-top: 1.5rem;
    background: #e74c3c;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
  }
  
  /* inputs & submit */
  .exit-popup input {
    width: 100%;
    padding: 0.7rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  .exit-popup button:not(.close-popup) {
    background: #0066cc;
    color: #fff;
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
  }
  
  .exit-popup button:not(.close-popup):hover {
    background: #005bb5;
  }

  /* =========================
   SUCCESS BANNER
========================= */
.success-banner {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: #2ecc71;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10001;
    transform: translateY(-100%);
    animation: slideDown 0.5s ease forwards;
  }
  
  @keyframes slideDown {
    to { transform: translateY(0); }
  }
  
  

  /* =========================
   MARKETING NOTIFICATION
   (middle right, fixed)
========================= */
.marketing-notification {
    position: fixed;
    top: 57%;
    right: 1rem;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: 1px solid #ccc;
    border-left: 4px solid #0066cc;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    color: #333;
    display: none;
    z-index: 10000;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .marketing-notification.show {
    display: block;
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
  .marketing-notification.hide {
    opacity: 0;
    transform: translateY(-50%) translateX(10px); /* slide slightly right on hide */
  }
  
 /* Round‐square gift button */
 .gift-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

  
  .gift-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  
  
  /* =========================
     SPIN MODAL & INPUT
  ========================= */
  .spin-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; justify-content: center; align-items: center;
    z-index: 10001;
  }
  .spin-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 360px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  .close-spin {
    position: absolute; top: 12px; right: 12px;
    background: none; border: none;
    font-size: 1.5rem; cursor: pointer;
  }
  .spin-content h3 {
    margin-bottom: 0.5rem;
    color: #0b355d;
  }
  .spin-info {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #555;
  }
  .spin-input {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .spin-input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 6px rgba(0, 102, 204, 0.3);
  }
  .spin-submit {
    background: #2ecc71;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .spin-submit:disabled {
    background: #a0d9a5;
    cursor: not-allowed;
  }
  .spin-submit:hover:not(:disabled) {
    background: #27ae60;
    transform: translateY(-2px);
  }


  /* FAQ Section Styling */
.faq h2 {
  font-size: 1.8rem;
  color: #0b355d;
  margin-bottom: 1.5rem;
  text-align: center;
}
.faq details {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
.faq details:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Summary as the clickable header */
.faq summary {
  list-style: none;               /* remove default marker */
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 1rem;
  color: #0b355d;
  position: relative;
  transition: background 0.2s ease;
}
.faq summary:hover {
  background: #f4f9ff;
}

/* Custom expand/collapse icon */
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq details[open] summary::after {
  content: "–";
}

/* The panel content */
.faq details p {
  padding: 0 1.2rem 1rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

  
  /* =========================
     RESULT & TERMS
  ========================= */
  .spin-result {
    margin-top: 1.5rem;
    color: #333;
  }
  .spin-result p {
    margin: 0.5rem 0;
  }
  .terms {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.5rem;
  }
  
  /* =========================
     SPINNER ANIMATION
  ========================= */
  .spinner {
    margin: 1.5rem auto;
    width: 140px; height: 140px;
    border: 8px solid #eee;
    border-top-color: #0066cc;
    border-radius: 50%;
    animation: spinWheel 2s cubic-bezier(.17,.67,.83,.67) forwards;
    display: none;
  }
  @keyframes spinWheel {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  
  /* =========================
     RESPONSIVE TWEAKS
  ========================= */
  @media (max-width: 480px) {
    .spin-content { padding: 1.5rem; }
    .gift-btn { padding: 0.8rem; font-size: 1.5rem; bottom: 8rem; right: 1rem;}
    .spinner { width: 120px; height: 120px; border-width: 6px; }
  }
  
/* ================================
   📱 FULL MOBILE + TABLET STYLES
================================ */
@media (max-width: 768px) {
  /* Header structure */
  .site-header {
    height: auto;
    padding: 0.75rem 1rem;
    padding-bottom: 2.2rem !important;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .mobile-toggle {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    background: none;
    border: none;
    color: #212121;
    z-index: 2002;
    padding: 0.5rem;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 2001;
    max-width: 160px;
  }

  .logo-icon {
    height: 100px;
    max-height: none;
    width: auto;
  }

  .call-now {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    margin: 0;
    background: #2ecc71;
    border-radius: 6px;
    color: #fff;
  }

  /* Main nav */
  .main-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 0rem;
    width: 100%;
    height: 100vh;
    z-index: 1999;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .main-nav button {
    font-size: 1.1rem;
    padding: 1rem;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
    color: #212121;
  }

  body.nav-open {
    overflow: hidden;
  }
.services-toggle {
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.1rem;
  border: none;
  background: none;
  color: #212121;
  cursor: pointer;
}

.services-menu {
  display: none;
  flex-direction: column;
  top: 100%;
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 999;
  border-radius: 0;
  rgba(0,0,0,0.1);
  padding: 0.5rem 0;
}

.services-menu.open {
  display: flex;
}

.services-menu a {
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  color: #222;
  border-left: 4px solid transparent;
  transition: all 0.2s ease;
}

.services-menu a:hover {
  background: #f5faff;
  border-left: 4px solid #0066cc;
  color: #0066cc;
}

  .services-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    display: none;
  }

  .services-menu.open {
    display: flex;
  }
}
  /* Hero Section */
  .hero {
    padding: 3rem 1rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-button,
  .cta-glow .cta-button {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
  }

  /* Grid and Cards */
  .grid-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .status-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .card h3 {
    font-size: 1rem;
  }

  /* Dialog buttons */
  .dialog-buttons {
    flex-direction: column;
  }

  .dialog-btn,
  .dialog-full {
    width: 100%;
    font-size: 0.95rem;
  }

  /* Form modal and content */
  .form-content {
    max-width: 95%;
    padding: 1.5rem;
  }

  .form-content h3 {
    font-size: 1.2rem;
  }

  .form-content input,
  .form-content textarea {
    font-size: 0.95rem;
  }

  /* Floating widget and dialog */
  .floating-toggle {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .floating-dialog {
    width: 90vw;
    left: -10px;
  }

  .floating-fee-card {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .gift-btn {
  position: fixed; /* ← обязательно! */
  bottom: 120px;     /* ← теперь будет работать */
  right: 1rem;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  z-index: 9999;
}

  /* Marketing notification */
  .marketing-notification {
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    font-size: 0.8rem;
    max-width: 80%;
    padding: 0.75rem 1rem;
  }

  /* Fomo bar */
  .fomo-bar {
    position: relative;
    top: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    margin-top: -0.5rem !important;
  }

  .fomo-bar .marquee {
    display: inline-block;
    padding-left: 0;
    animation: marqueeMobile 18s linear infinite;
  }

  /* Scam Alert / Review / How It Works Titles */
  .service-cards h2,
  .how-it-works h2,
  .scam-alert h2,
  .review-highlight h2,
  .cta-glow h2,
  .faq h2 {
    font-size: 1.3rem;
  }

  /* Popup & modal content */
  .popup-content {
    max-width: 95%;
    padding: 1rem;
  }

  .spin-content {
    padding: 1rem;
  }

  .spin-input {
    font-size: 0.9rem;
  }

  .spin-submit {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  .spinner {
    width: 120px;
    height: 120px;
    border-width: 6px;
  }
}

/* ===== Mobile Marquee Animation ===== */
@keyframes marqueeMobile {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}}

@media (max-width: 768px) {
  .call-now {
    font-size: 1.4rem;
    padding: 0.6rem 0.8rem;
  }

  .call-now {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .call-now::before {
    content: "📞";
  }

  .call-now {
    color: white;
  }

  .call-now span {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  .status-grid {
    grid-template-columns: 1fr;
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .service-cards h2,
  .how-it-works h2,
  .scam-alert h2,
  .review-highlight h2,
  .cta-glow h2,
  .faq h2 {
    font-size: 1.3rem;
  }

  .card h3 {
    font-size: 1rem;
  }

  .form-content h3 {
    font-size: 1.1rem;
  }

  .popup-content {
    max-width: 95%;
    padding: 1rem;
  }

  .gift-btn {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    bottom: 5rem;
    right: 1rem;
  }

  .spin-submit {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  .floating-fee-card {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .spinner {
    width: 120px;
    height: 120px;
    border-width: 6px;
  }
}

@keyframes marqueeMobile {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}


/* 🔔 Minimal Call Now Style */
.call-now {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  background: none;
  border: none;
  padding: 0.4rem 0.6rem;
  text-decoration: none;
}

.call-now:hover {
  text-decoration: underline;
}

/* 📱 On mobile: show only 📞 */
@media (max-width: 768px) {
  .call-now span {
    display: none;
  }
}

/* ✨ Add more space near logo for FOMO effect */
.site-header {
  padding-top: 4.7rem !important; /* Increase top space */
}


@media (max-width: 768px) {

  .header-inner {
    padding-top: 0;
    transform: none;
    align-items: center;
    gap: 0;
}
  .mobile-toggle {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: -10.5px; /* приподнимаем иконки */
  }
  
   .call-now {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: -5.0px; /* приподнимаем иконки */
  }

  @media (max-width: 768px) {
  .logo {
    width: auto;
    max-width: none;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3.2rem;
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo img,
  .logo-icon {
    height: 130px;
    max-height: 150px;
    width: 220px;
    transform: none;
    margin: 0 auto;
}

  .site-header {
    padding-top: 1rem !important;
    padding-bottom: 2.5rem !important;
  }

  
}


@media (max-width: 768px) {
  footer {
    padding-bottom: 7.5rem; /* отступ под кнопками */
  }
}

@media (max-width: 768px) {
  /* 🔵 SERVICES — прижимаем вниз ближе к красной */
  .floating-services-toggle {
    bottom: 68px !important; /* ← ключевая строчка */
    left: 20px;
    right: 20px;
    position: fixed;
    z-index: 1001;
  }

  .floating-services-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    background: #0066cc;
    color: white;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    border: none;
  }


