/*
  Archine Spoofer - Final Stylesheet v2.4
  ---
  This version fixes the mobile nav toggle visibility.
*/

/* 1. Root & Variables */
:root {
  --color-primary: #ff4d4d;
  --color-secondary: #ff9933;
  --color-text: #e0e0e0;
  --color-bg-dark: #020202;
  --color-bg-light: #1a1a1a;
  --color-border: #333;
  --font-primary: 'Raleway', sans-serif;
  --font-secondary: 'Lato', sans-serif;
  --font-nav: 'DM Sans', sans-serif;
  --section-padding: 80px 0;
}


/* 2. Base & Body Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--color-bg-dark); color: var(--color-text); font-family: var(--font-primary); line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { color: #ffffff; font-weight: 600; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-secondary); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.section-padding { padding: var(--section-padding); }
.section-title { margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; position: relative; display: inline-block; padding-bottom: 15px; }
.section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--color-primary); }

/* 3. Preloader */
#loader-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; background-color: var(--color-bg-dark); transition: visibility 0s 1.3s, opacity 0.3s 1s; }
#loader { display: block; position: relative; left: 50%; top: 50%; width: 150px; height: 150px; margin: -75px 0 0 -75px; border-radius: 50%; border: 3px solid transparent; border-top-color: #3498db; animation: spin 2s linear infinite; z-index: 1001; transition: opacity 0.3s; }
body.loaded #loader-wrapper { visibility: hidden; opacity: 0; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* 4. Header & Navigation */
/* --- UPDATED HEADER LAYOUT --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Left, Center, Right columns */
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background 0.3s ease;
}

.header-logo-link {
    justify-self: start; /* Aligns logo to the far left */
}

.nav {
    justify-self: center; /* Centers the nav block */
    display: flex;
    position: relative;
    align-items: center;
    background-color: transparent;
    padding: 0 10px;
    border-radius: 40px;
}

.header-right {
    justify-self: end; /* Aligns content to the far right */
    display: flex;
    align-items: center;
    gap: 1rem; /* Space between Vouches button and hamburger */
}
/* --- END HEADER LAYOUT --- */

.header-logo { height: 50px; width: auto; }

.nav-item { color: #fff; padding: 15px 20px; text-decoration: none; transition: color .3s; margin: 0 5px; z-index: 1; font-family: var(--font-nav); font-weight: 500; position: relative; }
.nav-item:hover, .nav-item.is-active { color: var(--color-primary); }
.nav-indicator { position: absolute; left: 0; bottom: 0; height: 4px; background-color: var(--color-primary); border-radius: 8px 8px 0 0; transition: all .4s ease-out; }

/* Mobile Vouches link is hidden by default */
.vouches-mobile {
    display: none;
}

/* --- CORRECTED NAV TOGGLE VISIBILITY --- */
.nav-toggle { 
    display: none; /* Hide by default on desktop */
    background: transparent; 
    border: none; 
    cursor: pointer; 
    padding: 10px; 
    z-index: 1001; 
}
/* --- END CORRECTION --- */

.hamburger { display: block; width: 25px; height: 3px; background: white; position: relative; transition: all 0.3s ease-in-out; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 25px; height: 3px; background: white; left: 0; transition: all 0.3s ease-in-out; }
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* 5. General / Reusable Components */
.custom-btn { padding: 12px 28px; color: #fff; background: var(--color-primary); border: 2px solid var(--color-primary); border-radius: 8px; font-weight: 700; transition: all 0.3s ease; display: inline-block; text-align: center; }
.custom-btn:hover { background: transparent; color: var(--color-primary); }

/* --- NEW VOUCHES BUTTON STYLE --- */
.vouches-btn {
    background: var(--color-primary);
    padding: 10px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.2);
}
.vouches-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 77, 77, 0.4);
}
/* --- END VOUCHES BUTTON STYLE --- */

.discount-banner { background-color: var(--color-primary); color: white; text-align: center; padding: 10px; border-radius: 8px; margin-bottom: 30px; }
.discount-banner.crypto-banner { background-color: #333; }
.discount-banner p { margin: 0; }
.coupon-code { font-family: monospace; background-color: var(--color-secondary); padding: 3px 6px; border-radius: 5px; color: var(--color-bg-dark); }

/* 6. Section Specific Styles */
#home { padding-top: 150px; }
.gradient-border { --borderWidth: 5px; background: #1d1f20; position: relative; border-radius: var(--borderWidth); padding: 2rem; margin-bottom: 60px; }
.gradient-border:after { content: ''; position: absolute; top: calc(-1 * var(--borderWidth)); left: calc(-1 * var(--borderWidth)); height: calc(100% + var(--borderWidth) * 2); width: calc(100% + var(--borderWidth) * 2); background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82); border-radius: calc(2 * var(--borderWidth)); z-index: -1; animation: animatedgradient 3s ease alternate infinite; background-size: 300% 300%; }
@keyframes animatedgradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
#box { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
#box p { font-size: 1.2rem; margin-bottom: 0; max-width: 720px; }
.button-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.home-grid-container { display: grid; grid-template-columns: 1fr 2fr 1fr; grid-template-areas: "feature1 video feature2" "feature3 video feature4"; gap: 20px; align-items: stretch; }
.home-grid-container .feature-item:nth-child(1) { grid-area: feature1; }
.home-grid-container .feature-item:nth-child(2) { grid-area: feature2; }
.home-grid-container .video-item { grid-area: video; } 
.home-grid-container .feature-item:nth-child(4) { grid-area: feature3; }
.home-grid-container .feature-item:nth-child(5) { grid-area: feature4; }
.feature-item { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; background-color: rgba(40, 40, 40, 0.5); border: 2px solid transparent; border-radius: 10px; }
.border-gradient2 { border-image: linear-gradient(to right, var(--color-primary), var(--color-secondary)) 1; }

.title { z-index: 3; }
.character { z-index: 2; transform: translateZ(10px); }
.cardstatus:hover .character-valorant { transform: translate3d(0%, -15%, 100px); }
.cardstatus:hover .character-fortnite { transform: translate3d(0%, -40%, 100px); }
.video-item { margin: 40px 0; padding: 20px; width: 100%; max-width: 800px; margin-left: auto; margin-right: auto; background: rgba(30, 30, 30, 0.5); border-radius: 12px; }
.video-item iframe { width: 100%; height: 400px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.price-table { display: flex; flex-direction: column; background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 10px; padding: 2rem; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.price-table:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.price-table.recommended { border-color: var(--color-primary); position: relative; overflow: hidden; }
.price-table.recommended::before { content: "POPULAR"; position: absolute; top: 20px; right: -35px; background: var(--color-primary); color: white; padding: 5px 30px; font-size: 0.8rem; font-weight: bold; transform: rotate(45deg); }
.price-header { padding-bottom: 1.5rem; }
.price-header span { display: block; }
.price-header .price-amount { font-size: 3rem; font-weight: bold; color: var(--color-primary); margin: 0.5rem 0; }
.price-table ul { list-style: none; margin: 1.5rem 0; flex-grow: 1; text-align: left; padding-left: 1rem; }
.price-table ul li { padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); }
.purchase-btn { margin-top: auto; }

.vouches-preview { margin-top: 60px; background: rgba(20, 20, 20, 0.75); border: 1px solid var(--color-border); border-radius: 16px; padding: 2.5rem; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35); }
.vouches-header { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.vouches-header h3 { font-size: 1.8rem; margin-bottom: 0; }
.vouches-subtitle { color: #bdbdbd; margin: 0; }
.view-all-vouches { align-self: flex-start; font-weight: 700; color: var(--color-secondary); display: inline-flex; align-items: center; gap: 0.4rem; }
.view-all-vouches::after { content: '\2192'; transition: transform 0.3s ease; }
.view-all-vouches:hover::after { transform: translateX(4px); }
.vouch-cards { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.vouch-card { background: rgba(10, 10, 10, 0.85); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; position: relative; overflow: hidden; }
.vouch-card::before { content: '\201C'; position: absolute; top: -10px; left: 16px; font-size: 5rem; color: rgba(255, 255, 255, 0.03); pointer-events: none; }
.vouch-card-rating { display: flex; align-items: center; gap: 0.25rem; color: #facc15; font-size: 1rem; }
.vouch-card-text { color: #e6e6e6; font-size: 0.95rem; line-height: 1.6; margin: 0; }
.vouch-card-meta { display: flex; align-items: center; justify-content: space-between; color: #9e9e9e; font-size: 0.85rem; }
.vouch-card-verified { display: flex; align-items: center; gap: 0.35rem; font-weight: 600; color: #82ffb4; }
.vouch-card-verified svg { width: 14px; height: 14px; }
.vouches-loading, .vouches-error, .vouches-empty { margin: 0; color: #bdbdbd; }
.vouches-error a { color: var(--color-secondary); font-weight: 600; }

.supported-banner {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(130, 255, 180, 0.15), rgba(46, 204, 113, 0.08) 35%, rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(130, 255, 180, 0.4);
    padding: 26px 32px;
    border-radius: 18px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.supported-banner::before {
    content: "";
    position: absolute;
    inset: -60% auto auto -20%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(130, 255, 180, 0.35), transparent 60%);
    filter: blur(0.5px);
    z-index: 0;
}

.supported-banner::after {
    content: "";
    position: absolute;
    inset: auto -20% -80% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 65%);
    filter: blur(0.5px);
    z-index: 0;
}

.supported-banner > * {
    position: relative;
    z-index: 1;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: rgba(130, 255, 180, 0.12);
    border: 1px solid rgba(130, 255, 180, 0.35);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #82ffb4;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #82ffb4;
    box-shadow: 0 0 0 rgba(130, 255, 180, 0.8);
    animation: pulse-beat 2.2s infinite;
}

.status-label {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
}

.status-details {
    flex: 1 1 260px;
    max-width: 540px;
    color: var(--color-text);
}

.status-details h3 {
    margin-bottom: 0.35rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #eafff3;
}

.status-details p {
    margin: 0;
    color: #d0f7e2;
    line-height: 1.6;
}

.status-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.4rem;
    border-radius: 12px;
    font-weight: 600;
    color: #0f172a;
    background: linear-gradient(135deg, #82ffb4, #5eead4);
    box-shadow: 0 15px 35px rgba(94, 234, 212, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.status-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.status-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 45px rgba(94, 234, 212, 0.55);
}

.status-link:hover svg {
    transform: translateX(4px);
}

@keyframes pulse-beat {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(130, 255, 180, 0.7);
    }
    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 10px rgba(130, 255, 180, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(130, 255, 180, 0);
    }
}
.status-card-container { display: flex; overflow-x: auto; gap: 20px; padding: 60px 10px; scrollbar-width: thin; scrollbar-color: var(--color-primary) var(--color-bg-light); }
.status-card-container::-webkit-scrollbar { height: 8px; }
.status-card-container::-webkit-scrollbar-track { background: var(--color-bg-light); border-radius: 6px; }
.status-card-container::-webkit-scrollbar-thumb { background-color: var(--color-primary); border-radius: 6px; }
.cardstatus { --card-height: 300px; --card-width: calc(var(--card-height) / 1.5); width: var(--card-width); height: var(--card-height); position: relative; display: flex; justify-content: center; align-items: flex-end; padding: 0 36px; perspective: 2500px; flex-shrink: 0; }
.cardstatus .wrapper { transition: all 0.5s; position: absolute; width: 100%; height: 100%; z-index: -1; border-radius: 15px; overflow: hidden; }
.cardstatus:hover .wrapper { transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0); box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75); }
.cover-image { width: 100%; height: 100%; object-fit: cover; }
.cardstatus .title { width: 80%; transition: transform 0.5s; }
.cardstatus:hover .title { transform: translate3d(0%, -50px, 100px); }
.cardstatus .character { width: 100%; opacity: 0; transition: all 0.5s; position: absolute; z-index: 1; bottom: 0; transform-origin: bottom center; }
.cardstatus:hover .character-valorant { opacity: 1; transform: translate3d(0%, -15%, 100px); }
.cardstatus:hover .character-fortnite { opacity: 1; transform: translate3d(0%, -45%, 100px); }
.cardstatus:hover .character-ahri { opacity: 1; transform: translate3d(0%, -20%, 700px); }
.cardstatus:hover .character-gta { opacity: 1; transform: translate3d(0%, -20%, 700px); }
.cardstatus:hover .character-apex { opacity: 1; transform: translate3d(0%, -10%, 300px); }
.cardstatus:hover .character-cod { opacity: 1; transform: translate3d(0%, -15%, 500px); }
.cardstatus:hover .character-pubg { opacity: 1; transform: translate3d(0%, -20%, 100px); }

.comparison-table { width: 100%; border-collapse: collapse; background: var(--color-bg-light); border-radius: 10px; overflow: hidden; }
.comparison-table th, .comparison-table td { padding: 1rem; text-align: center; border-bottom: 1px solid var(--color-border); }
.comparison-table th { background-color: #333; font-size: 1.2rem; }
.comparison-table .feature-column { text-align: left; font-weight: bold; }
.comparison-table .archine-col { color: var(--color-secondary); }
.comparison-table .others-col { color: var(--color-primary); }
.comparison-table .good-val { color: #28a745; }
.comparison-table .bad-val { color: var(--color-primary); }
.tooltip-icon { display: inline-block; width: 20px; height: 20px; background: #555; color: #fff; border-radius: 50%; text-align: center; line-height: 20px; cursor: help; font-size: 0.8rem; }

.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { background-color: var(--color-bg-light); border: 1px solid var(--color-border); margin-bottom: 10px; border-radius: 8px; }
.accordion-button { background: transparent; color: #fff; font-weight: bold; box-shadow: none !important; border: none; }
.accordion-button:not(.collapsed) { color: #fff; background: rgba(255, 77, 77, 0.2); }
.accordion-button .badge { background-color: var(--color-primary); margin-right: 15px; padding: 5px 8px; border-radius: 50%; }
.accordion-body { color: var(--color-text); }
.accordion-body p { margin-bottom: 0; }

/* 7. Footer */
.footer {
  position: relative;
  background: radial-gradient(circle at top, rgba(255, 77, 77, 0.08), transparent 55%),
              linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(5, 5, 5, 0.98));
  padding: 3.5rem 0 2.25rem;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 77, 77, 0), rgba(255, 77, 77, 0.8), rgba(255, 153, 51, 0));
  filter: drop-shadow(0 0 12px rgba(255, 77, 77, 0.4));
  animation: footerPulse 3.5s ease-in-out infinite;
}

.footer::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.18) 0%, rgba(255, 77, 77, 0) 70%);
  filter: blur(6px);
  animation: footerDrift 12s ease-in-out infinite alternate;
}

@keyframes footerPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes footerDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.1); }
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.footer-brand p,
.footer-cta p {
  color: #b3b3b3;
  font-size: 0.95rem;
  margin: 0.5rem 0 0;
  max-width: 320px;
}

.footer-links h4,
.footer-cta h4 {
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  color: #d1d1d1;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-logo {
  display: inline-block;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background-image: url('https://i.ibb.co/vkR2H9g/output-onlinepngtools-2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  isolation: isolate;
}

.footer-logo::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 26px;
  background: radial-gradient(circle, rgba(255, 77, 77, 0.25), transparent 65%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-logo:hover::after {
  opacity: 1;
}

.footer-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, rgba(255, 77, 77, 0.9), rgba(255, 153, 51, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(255, 77, 77, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 153, 51, 0.4);
  color: #fff;
}

.footer-bottom {
  margin-top: 3rem;
  text-align: center;
  color: #7f7f7f;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
}

/* 8. Canvas Background */
#canvas { display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: -1; }

/* 9. Responsive Design (Media Queries) */
@media (max-width: 1200px) {
    .price-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .home-grid-container {
      display: grid;
      grid-template-columns: 300px 1fr 300px;
      grid-template-areas: "feature1 video feature2" "feature3 video feature4";
      gap: 20px;
      align-items: stretch;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .supported-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .status-indicator {
        width: 100%;
        justify-content: center;
    }

    .status-details {
        max-width: 100%;
    }

    .status-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.feature-item { padding: 2rem 1.5rem; }
.feature-item img { width: 60px; height: 60px; margin-bottom: 1.5rem; }
.feature-item h2 { font-size: 1.25rem; margin-bottom: 0.5rem; color: #ffffff; }
.feature-item p { font-size: 0.9rem; color: #bbbbbb; line-height: 1.5; }

/* === Purchase Modal Styles === */
.modal-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); z-index: 2000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); backdrop-filter: blur(5px); }
.modal-backdrop:not(.hidden) { opacity: 1; visibility: visible; }
.modal-content { background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%); padding: 2rem; border-radius: 16px; border: 1px solid rgba(255, 77, 77, 0.2); width: 90%; max-width: 500px; text-align: center; position: relative; transform: translateY(20px) scale(0.95); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 0 20px rgba(255, 77, 77, 0.1); overflow: hidden; }
.modal-backdrop:not(.hidden) .modal-content { transform: translateY(0) scale(1); }
.modal-content::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,77,77,0.1) 0%, rgba(255,77,77,0) 70%); z-index: -1; animation: pulse 8s infinite alternate; }
@keyframes pulse { 0% { transform: translate(0, 0); } 50% { transform: translate(25%, 25%); } 100% { transform: translate(0, 0); } }
.modal-close { position: absolute; top: 15px; right: 15px; background: none; border: none; color: #aaa; font-size: 1.5rem; cursor: pointer; transition: all 0.2s ease; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.modal-close:hover { color: #fff; background: rgba(255, 77, 77, 0.2); transform: rotate(90deg); }
.modal-step { color: #fff; transition: all 0.3s ease; }
.modal-step.hidden { display: none; }
.modal-step-content { padding: 1rem; }
.product-header { position: relative; margin-bottom: 2rem; }
.product-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, #ff4d4d, #ff9933); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3); animation: pulse-glow 2s infinite alternate; }
@keyframes pulse-glow { 0% { box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3); } 100% { box-shadow: 0 4px 25px rgba(255, 77, 77, 0.5); } }
.product-header h2 { font-size: 1.5rem; margin-bottom: 0.5rem; background: linear-gradient(90deg, #fff, #ddd); -webkit-background-clip: text; background-clip: text; color: transparent; }
.product-stats { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; color: #aaa; font-size: 0.9rem; }
.stat-item { display: flex; align-items: center; gap: 0.5rem; }
.stat-item svg { color: #ff4d4d; }
.form-group { position: relative; margin: 2rem 0; text-align: left; }
.floating-label { position: relative; }
.floating-label input { width: 100%; padding: 12px 0; border: none; border-bottom: 1px solid #444; background: transparent; color: #fff; font-size: 1rem; transition: all 0.3s ease; }
.floating-label input:focus { outline: none; border-bottom-color: #ff4d4d; }
.floating-label label { position: absolute; top: 12px; left: 0; color: #888; pointer-events: none; transition: all 0.3s ease; }
.floating-label input:focus + label, .floating-label input:not(:placeholder-shown) + label { top: -15px; font-size: 0.8rem; color: #ff4d4d; }
.underline { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, #ff4d4d, #ff9933); transition: width 0.3s ease; }
.floating-label input:focus ~ .underline { width: 100%; }
.coupon-group { position: relative; margin-bottom: 1.5rem; }
.apply-coupon-btn { position: absolute; right: 0; top: 0; background: transparent; border: none; color: #ff4d4d; font-weight: bold; cursor: pointer; padding: 12px 0; transition: all 0.2s ease; }
.apply-coupon-btn:hover { color: #ff9933; }
.coupon-applied { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: rgba(40, 167, 69, 0.1); border: 1px solid rgba(40, 167, 69, 0.3); border-radius: 6px; padding: 0.75rem; margin: 1rem 0; color: #28a745; font-size: 0.9rem; }
.coupon-applied svg { flex-shrink: 0; }
.coupon-applied.hidden { display: none; }
.modal-actions { margin-top: 2rem; }
.btn-glow { position: relative; overflow: hidden; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; padding: 12px 24px; }
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4); }
.btn-glow::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient( to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.3) 45%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100% ); transform: translateX(-100%) rotate(30deg); transition: all 0.6s ease; }
.btn-glow:hover::before { transform: translateX(100%) rotate(30deg); }
.text-btn { background: transparent; border: none; color: #aaa; display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; transition: color 0.2s ease; padding: 0.5rem 1rem; }
.text-btn:hover { color: #ff4d4d; }
.text-btn svg { transition: transform 0.2s ease; }
.text-btn:hover svg { transform: translateX(-3px); }
.step-indicator { display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; }
.step { width: 30px; height: 30px; border-radius: 50%; background: #333; color: #888; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.9rem; transition: all 0.3s ease; }
.step.active { background: linear-gradient(135deg, #ff4d4d, #ff9933); color: white; box-shadow: 0 0 10px rgba(255, 77, 77, 0.5); }
.connector { width: 40px; height: 2px; background: #333; position: relative; }
.connector.active::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, #ff4d4d, #ff9933); }
.subtitle { color: #aaa; margin-bottom: 1.5rem; font-size: 0.9rem; }
.payment-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.payment-card { background: rgba(30, 30, 30, 0.7); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; cursor: pointer; border: 1px solid #333; }
.payment-card:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); border-color: rgba(255, 77, 77, 0.5); }
.payment-card-inner { display: flex; align-items: center; padding: 1rem; position: relative; overflow: hidden; }
.payment-card-inner::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(255, 77, 77, 0.1) 0%, rgba(255, 77, 77, 0) 100%); opacity: 0; transition: opacity 0.3s ease; }
.payment-card:hover .payment-card-inner::before { opacity: 1; }
.payment-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(255, 77, 77, 0.1); display: flex; align-items: center; justify-content: center; margin-right: 1rem; flex-shrink: 0; }
.payment-icon svg { color: #ff4d4d; width: 24px; height: 24px; }
.payment-details { flex-grow: 1; text-align: left; }
.payment-details h3 { font-size: 1rem; margin-bottom: 0.25rem; color: #fff; }
.payment-details p { font-size: 0.8rem; color: #aaa; margin: 0; }
.payment-arrow svg { color: #666; transition: all 0.3s ease; }
.payment-card:hover .payment-arrow svg { color: #ff4d4d; transform: translateX(3px); }
.security-badge { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.8rem; color: #aaa; margin-top: 1.5rem; }
.security-badge svg { color: #ff4d4d; }
.loading-content { padding: 2rem 0; }
.spinner-container { margin: 0 auto 2rem; width: 80px; height: 80px; position: relative; }
.spinner { position: relative; width: 100%; height: 100%; }
.spinner-circle { position: absolute; width: 100%; height: 100%; border: 4px solid transparent; border-radius: 50%; animation: spinner-rotate 2s linear infinite; border-top-color: #ff4d4d; }
.spinner-circle:nth-child(1) { animation-delay: 0.15s; border-top-color: #ff9933; }
.spinner-circle:nth-child(2) { animation-delay: 0.3s; border-top-color: #ffcc33; }
.spinner-circle:nth-child(3) { animation-delay: 0.45s; border-top-color: #ff4d4d; }
@keyframes spinner-rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.loading-text { color: #aaa; margin-bottom: 1.5rem; }
.progress-bar { width: 100%; height: 4px; background: #333; border-radius: 2px; overflow: hidden; margin-top: 1rem; }
.progress { height: 100%; width: 0; background: linear-gradient(90deg, #ff4d4d, #ff9933); animation: progress-loading 2s infinite ease-in-out; }
@keyframes progress-loading { 0% { width: 0; margin-left: 0; } 50% { width: 100%; margin-left: 0; } 100% { width: 0; margin-left: 100%; } }
#modal-error-msg { color: #ff4d4d; font-size: 0.9rem; margin-top: 0.5rem; display: none; }
#modal-error-msg.is-visible { display: block; }

/* --- UPDATED RESPONSIVE STYLES --- */
@media (max-width: 768px) {
    .section-padding { padding: 50px 0; }
    
    /* Revert header to flexbox for simple mobile layout */
    .header {
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }

    /* Hide the main nav and desktop Vouches button */
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background: #111;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    .vouches-btn {
        display: none;
    }

    /* Show mobile Vouches link inside the nav menu */
    .vouches-mobile {
        display: block;
    }
    
    /* --- CORRECTED NAV TOGGLE VISIBILITY --- */
    .nav-toggle {
        display: block; /* Show on mobile */
    }
    /* --- END CORRECTION --- */
    
    .nav.active { transform: translateX(0); }
    .nav-item { padding: 20px; font-size: 1.2rem; }
    .nav-indicator { display: none; }
    
    .nav-toggle.active .hamburger { background: transparent; }
    .nav-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
    .nav-toggle.active .hamburger::after { transform: rotate(-45deg); bottom: 0; }
    
    .home-grid-container, .price-grid {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }
    .home-grid-container .feature-item,
    .home-grid-container .video-item {
        grid-area: auto !important;
    }

    .vouches-preview { padding: 2rem 1.5rem; }
    .vouches-header { align-items: flex-start; }
    .view-all-vouches { align-self: stretch; justify-content: space-between; }

    .status-card-container {
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-cta {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-links ul {
        justify-items: center;
    }

    .footer-links a::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        margin-top: 2.5rem;
    }
}
