/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #005587;
    --primary-color-light: #2774AE;
    --primary-color-extra-light: #8BB8E8;
    --secondary-color: #FFD100;
    --secondary-color-dark: #FFB81C;
    --text-light: #d1d5db;
    --white: #ffffff;
    --black: #000000;
    --max-width: 1200px;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(at bottom right, var(--primary-color), #000000);
    background-attachment: fixed;
    color: var(--white);
    min-height: 100vh;
    padding-top: 70px;
}
/* ===== REUSABLE COMPONENTS ===== */
.btn {
    width: 200px;
    height: 50px;
    padding: 20px 30px;
    background-color: var(--secondary-color);
    color: var(--black);
    font-weight: bold;
    font-size: 1rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.btn:hover {
    background-color: var(--secondary-color-dark);
}

.icon {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
}

.show {
    display: block;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    height: 70px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.navbar__left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar__left img {
    width: 50px;
}

.navbar__text h1 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2px;
}

.navbar__text p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.navbar__menu {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-grow: 1;
}

.navbar__menu li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.navbar__menu li a:hover {
    color: var(--secondary-color);
}

.navbar__right {
    position: relative;
    display: flex;
    align-items: center;
}

#user-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: bold;
    margin-left: 15px;
    border: 2px solid var(--secondary-color-dark);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

#user-btn:hover {
    background-color: var(--primary-color-light);
    color: var(--white);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 5%;
    top: 60px;
    background-color: var(--primary-color);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 6px;
    z-index: 1001;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a,
.dropdown-content button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    color: var(--white);
    text-decoration: none;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dropdown-content a:hover,
.dropdown-content button:hover {
    background-color: var(--primary-color-light);
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-btn:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 5px;
}

/* ===== HEADER SECTION ===== */
/* ===== HEADER SECTION ===== */
.section__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 5%;
    max-width: 1600px;
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: visible;
    gap: 60px;
}

.header__content {
    flex: 0.8;
    max-width: 500px;
    z-index: 2;
}

.header__content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.header__content h1 {
    font-size: 4rem;
    white-space: nowrap;
    max-width: none;
}

.header__content h1 span {
    color: var(--secondary-color);
}

.header__content p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: var(--text-light);
}

.header__image {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: visible;
    max-width: 800px;
    margin-left: auto;
}

.header__image img {
    width: 600px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.6));
    transform: translateX(50px);
}
/* ===== METHODS SECTION ===== */
.methods {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 10%;
    background: linear-gradient(135deg, rgba(0, 85, 135, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(15px);
    position: relative;
}

.methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 209, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(39, 116, 174, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.methods h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.methods h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color-dark));
    border-radius: 2px;
}

.methods__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    width: 100%;
    margin: 50px auto 40px;
    position: relative;
    z-index: 2;
    justify-items: center;
}

.method {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    padding: 40px 30px;
    border: 2px solid transparent;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 350px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, var(--primary-color-light), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: -1;
}

.method:hover::before {
    opacity: 0.1;
}

.method:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 209, 0, 0.2);
    border-color: var(--secondary-color);
}

.method i {
    font-size: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: block;
    transition: transform 0.3s ease;
}

.method:hover i {
    transform: scale(1.1) rotate(5deg);
}

.method h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.method p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
}

.methods__btn {
    margin-top: 40px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    max-width: 90%;
    height: 50px;
    text-align: center;
}

/* ===== WHY US SECTION ===== */
.why-us {
    min-height: 100vh;
    text-align: center;
    padding: 60px 10%;
    background-color: #080C15;
}

.why-us h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.why-us p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.proof-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.proof {
    text-align: center;
}

.proof h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.proof img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.proof img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.proof p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* ===== MEET IJOEBRUIN SECTION ===== */
.meet-ijoebruin {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 10%;
    background: linear-gradient(135deg, rgba(0, 85, 135, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(15px);
    position: relative;
}

.meet-ijoebruin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 209, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(39, 116, 174, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.meet-ijoebruin h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.meet-ijoebruin h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color-dark));
    border-radius: 2px;
}

.ijoebruin__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin-top: 50px;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.ijoebruin__image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.ijoebruin__image img {
    width: 600px;
    max-width: 90%;
    height: auto;
    border-radius: 25px;
    border: 5px solid var(--primary-color-light);
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
                0 8px 20px rgba(39, 116, 174, 0.3);
    filter: brightness(1.05) contrast(1.1);
}

.ijoebruin__image img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 10px 25px rgba(39, 116, 174, 0.3),
                0 0 30px rgba(255, 209, 0, 0.1);
    border-color: var(--secondary-color);
}

.ijoebruin__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 50px;
}

.ijoebruin__text {
    flex: 1.5;
    max-width: 600px;
    text-align: left;
}

.ijoebruin__text p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.coin-achievements {
    flex: 0.8;
    max-width: 400px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-radius: 20px;
    border: 2px solid var(--primary-color-light);
    backdrop-filter: blur(15px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.coin-achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0.7;
}

.coin-achievements h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 18px;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
}

.coin-achievements h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 1px;
    opacity: 0.8;
}

.coin-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coin-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, rgba(255, 209, 0, 0.12), rgba(255, 209, 0, 0.08));
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coin-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 209, 0, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.coin-item:hover::before {
    transform: translateX(100%);
}

.coin-item:hover {
    background: linear-gradient(90deg, rgba(255, 209, 0, 0.25), rgba(255, 209, 0, 0.15));
    transform: translateX(12px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 209, 0, 0.25), 
                0 4px 15px rgba(0, 0, 0, 0.2);
    border-left-width: 6px;
}

.coin-item:last-child {
    margin-bottom: 0;
}

.coin-item i {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-right: 12px;
    min-width: 18px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 0 8px rgba(255, 209, 0, 0.3));
}

.achievement-text {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.achievement-text strong {
    color: var(--secondary-color);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* ===== PRICING SECTION ===== */
.pricing {
    min-height: 100vh;
    text-align: center;
    padding: 60px 10%;
}

.pricing h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 500;
}

.pricing__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 1180px) {
    .pricing__container { gap: 28px; }
}

@media (max-width: 900px) {
    .pricing__container { grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }
}

@media (max-width: 600px) {
    .pricing__container { grid-template-columns: 1fr; }
}

/* Row grouping enhancements */
.pricing-layout { display:block; }
.pricing-row { display:flex; gap:32px; justify-content:center; align-items:stretch; flex-wrap:wrap; margin-bottom:42px; }
.pricing-row.top-row { margin-top:10px; }
.pricing-row.bottom-row { margin-bottom:0; }
.pricing-row .pricing__box { flex:1 1 260px; max-width:340px; }
.pricing-row .pricing__box.highlight { order:0; }

@media (max-width:1100px){
    .pricing-row { gap:24px; }
    .pricing-row .pricing__box { max-width:360px; }
}

@media (max-width:880px){
    .pricing-row { flex-direction:column; align-items:center; }
    .pricing-row .pricing__box { width:100%; max-width:480px; }
}

.pricing__box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    backdrop-filter: blur(8px);
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out, transform 0.3s ease-in-out;
}

.pricing__box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.pricing__box h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.pricing__box .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
}

.pricing__box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing__box ul li {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.pricing__box .btn {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--black);
    font-weight: bold;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.pricing__box .btn:hover {
    background-color: var(--secondary-color-dark);
}

.pricing__box.highlight {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    border: 4px solid var(--secondary-color);
}

/* New: Premium & Sniper Boxes */
.pricing__box h3 .badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    padding: 3px 6px;
    background: linear-gradient(135deg,#ffd700,#ffb81c);
    color: #222;
    border-radius: 6px;
    margin-left: 6px;
    position: relative;
    top: -2px;
    box-shadow: 0 0 6px rgba(255,216,0,0.4);
}

.pricing__box.premium-tier {
    border-color: #d4af37;
    background: linear-gradient(160deg, rgba(212,175,55,0.15), rgba(0,0,0,0.55));
    box-shadow: 0 0 18px rgba(212,175,55,0.25);
}

.pricing__box.premium-tier h3 {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255,222,89,0.4);
}

.pricing__box.sniper-tier {
    border-style: dashed;
    border-color: #888;
    background: linear-gradient(140deg, rgba(136,136,136,0.18), rgba(0,0,0,0.55));
}

.pricing__box.sniper-tier h3 {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(255,255,255,0.25);
}

.pricing__box.sniper-tier ul li strong,
.pricing__box.premium-tier ul li strong {
    color: #ffd700;
}

.pricing__box.sniper-tier .btn {
    background: #444;
    color: #fff;
}

.pricing__box.sniper-tier .btn:hover {
    background: #555;
}

/* Subtle entry animation for new boxes */
.pricing__box.premium-tier, .pricing__box.sniper-tier {
    animation: popIn 0.6s ease forwards;
}

@keyframes popIn {
    0% { transform: translateY(30px) scale(.95); opacity: 0; }
    60% { transform: translateY(-6px) scale(1.03); opacity: 1; }
    100% { transform: translateY(0) scale(1.0); }
}

/* Price Options Styling */
.price-options {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 15px 0 20px 0;
}

.price-option {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.price-option:hover {
    border-color: var(--secondary-color);
    background: rgba(255, 209, 0, 0.1);
}

.yearly-option {
    position: relative;
    border-color: var(--secondary-color) !important;
    background: rgba(255, 209, 0, 0.15) !important;
}

.price-option .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.price-option .period {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: normal;
}

.price-option .price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 5px 0 0 0;
    font-weight: 500;
}

.discount-badge {
    background: linear-gradient(45deg, #ff4757, #ff3742);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 71, 87, 0.3);
    animation: pulse 2s infinite;
    display: inline-block;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    min-height: 100vh;
    text-align: center;
    padding: 60px 10%;
    background-color: #080C15;
}

.reviews h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.reviews__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: var(--max-width);
    margin: auto;
}

.review {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out, transform 0.3s ease-in-out;
}

.review:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.review span {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--secondary-color);
}

.show-more-btn {
    margin: 40px auto 0 auto;
    display: block;
    width: 220px;
    white-space: nowrap;
}

/* ===== FAQ SECTION ===== */
.faq {
    min-height: 100vh;
    text-align: center;
    padding: 60px 10%;
    background-color: #080C15;
}

.faq h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.faq__container {
    max-width: var(--max-width);
    margin: auto;
}

.faq__item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.faq__item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.faq__question {
    font-size: 1.4rem;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__answer {
    font-size: 1.2rem;
    color: var(--text-light);
    display: none;
    margin-top: 10px;
}

.faq__item.active .faq__answer {
    display: block;
}

/* ===== FOOTER SECTION ===== */
.footer {
    color: var(--white);
    padding: 50px 10%;
    text-align: center;
    position: relative;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: var(--max-width);
    margin: auto;
}

.footer__content {
    max-width: 300px;
    text-align: left;
}

.footer__logo img {
    width: 120px;
    margin-bottom: 15px;
}

.footer__content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.footer__socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer__socials a {
    font-size: 1.8rem;
    color: var(--white);
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer__socials a:hover {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.footer__links {
    display: flex;
    gap: 50px;
}

.footer__col {
    text-align: left;
}

.footer__col h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.footer__col ul {
    list-style: none;
    padding: 0;
}

.footer__col li {
    margin-bottom: 8px;
}

.footer__col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__col a:hover {
    color: var(--secondary-color);
}

.footer__bar {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
    color: var(--text-light);
    width: 100%;
}

/* ===== PAYMENT STYLES ===== */
.stripe-container {
    background: rgba(0, 85, 135, 0.2);
    backdrop-filter: blur(5px);
    padding: 25px;
    border-radius: 10px;
    border: 3px solid #2774AE;
    max-width: 500px;
    margin: 20px auto;
}

#payment-message {
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    margin: 15px 0;
}

#payment-element {
    margin: 20px 0;
}

#submit-payment {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--black);
    font-weight: bold;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

#submit-payment:hover {
    background-color: var(--secondary-color-dark);
}

#submit-payment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet styles (1024px and below) */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        padding: 0 4%;
    }

    .section__container {
        padding: 60px 7%;
        flex-direction: column;
    }

    .header__content h1 {
        font-size: 3.2rem;
        white-space: normal;
    }

    .header__content p {
        font-size: 1.3rem;
    }

    .header__image {
        position: relative;
        width: 100%;
        transform: none;
        top: auto;
        margin-top: 40px;
        padding-left: 0;
    }

    .methods {
        padding: 70px 7%;
        min-height: 90vh;
    }

    .methods h2 {
        font-size: 2.8rem;
    }

    .methods__container {
        gap: 25px;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 45px;
    }

    .method {
        max-width: none;
        padding: 35px 25px;
    }

    .method i {
        font-size: 55px;
    }

    .method h3 {
        font-size: 1.9rem;
    }

    .methods__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 40px auto 0 auto;
        text-align: center;
        width: 200px;
        max-width: 90%;
        height: 50px;
    }

    .why-us {
        padding: 50px 7%;
    }

    .meet-ijoebruin {
        padding: 50px 7%;
    }

    .pricing {
        padding: 50px 7%;
    }

    .reviews {
        padding: 50px 7%;
    }

    .faq {
        padding: 50px 7%;
    }

    .footer {
        padding: 40px 7%;
    }
}

/* Mobile styles (768px and below) */
@media (max-width: 768px) {
    /* Mobile menu styles */
    .menu-btn {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }
    
    .navbar__menu {
        display: none;
    }
    
    .sidebar {
        position: fixed;
        left: 0;
        top: 70px;
        height: calc(100vh - 70px);
        width: 250px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 200;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
    }
    
    .sidebar.mobile-open {
        transform: translateX(0);
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar__menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        z-index: 1002;
    }

    .navbar__menu.show {
        display: flex;
    }

    .navbar__menu li {
        width: 100%;
        text-align: center;
    }

    .navbar__menu li a {
        display: block;
        padding: 10px;
        font-size: 1.1rem;
    }

    /* Enhanced Mobile styles */
    body {
        padding-top: 60px;
    }

    .navbar {
        height: 60px;
        padding: 0 3%;
    }

    .navbar__left {
        gap: 8px;
    }

    .navbar__left img {
        width: 40px;
    }

    .navbar__text h1 {
        font-size: 1.1rem;
    }

    .navbar__text p {
        font-size: 0.7rem;
        display: block;
    }

    #user-btn {
        font-size: 0.9rem;
        padding: 6px 10px;
        margin-left: 10px;
    }

    .dropdown-content {
        right: 3%;
        top: 55px;
        min-width: 150px;
    }

    .section__container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 5%;
        min-height: calc(100vh - 60px);
        justify-content: center;
    }

    .header__content {
        margin-top: 20px;
        order: 2;
    }

    .header__content h1 {
        font-size: 2.5rem;
        white-space: normal;
        line-height: 1.2;
    }

    .header__content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
  
    .header__image {
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 30px;
        transform: translateX(0);
        order: 1;
        width: 100%;
        position: relative;
        padding-left: 0;
    }

    .header__image img {
        width: 80%;
        max-width: 300px;
        transform: scale(1);
    }

    .btn {
        width: 180px;
        height: 45px;
        font-size: 0.9rem;
        padding: 15px 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .methods {
        padding: 60px 5%;
        min-height: 80vh;
    }

    .methods h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .methods__container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .method {
        padding: 30px 20px;
        margin: 0;
        max-width: none;
        min-height: 250px;
    }

    .method i {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .method h3 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .method p {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .why-us {
        padding: 40px 5%;
    }

    .why-us h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .why-us p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .proof-images {
        grid-template-columns: 1fr;
    }

    /* Meet iJoeBruin Mobile Styles */
    .ijoebruin__container {
        gap: 30px;
        margin-top: 30px;
        max-width: 100%;
    }

    .ijoebruin__image img {
        width: 85%;
        max-width: 400px;
    }

    .ijoebruin__bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .ijoebruin__text {
        max-width: 100%;
        text-align: center;
    }

    .ijoebruin__text p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .coin-achievements {
        max-width: 100%;
        padding: 20px 15px;
        align-self: center;
    }
    
    .coin-achievements h3 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .coin-item {
        padding: 12px 15px;
        margin-bottom: 10px;
    }
    
    .coin-item i {
        font-size: 1.1rem;
        margin-right: 12px;
        min-width: 18px;
    }
    
    .achievement-text {
        font-size: 1rem;
    }
    
    .coin-item:hover {
        transform: translateX(8px) translateY(-1px);
    }

    .meet-ijoebruin {
        padding: 40px 5%;
    }

    .meet-ijoebruin h2 {
        font-size: 2rem;
    }

    .pricing {
        padding: 40px 5%;
    }

    .pricing h2 {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .pricing__container {
        grid-template-columns: 1fr;
    }

    /* Mobile Price Options */
    .price-options {
        flex-direction: column;
        gap: 10px;
    }

    .price-option {
        padding: 12px 8px;
    }

    .price-option .price {
        font-size: 1.3rem;
    }

    .price-option .period {
        font-size: 0.8rem;
    }

    .price-option .price-label {
        font-size: 0.8rem;
    }

    .discount-badge {
        font-size: 0.6rem;
        padding: 1px 4px;
    }

    .reviews {
        padding: 40px 5%;
    }

    .reviews h2 {
        font-size: 2rem;
    }

    .reviews__container {
        grid-template-columns: 1fr;
    }

    .faq {
        padding: 40px 5%;
    }

    .faq h2 {
        font-size: 2rem;
    }

    .faq__question {
        font-size: 1.2rem;
    }

    .faq__answer {
        font-size: 1rem;
    }

    .footer {
        padding: 30px 5%;
    }

    .footer__container {
        flex-direction: column;
        text-align: center;
    }

    .footer__content {
        text-align: center;
    }

    .footer__socials {
        justify-content: center;
    }
}

/* Extra responsive adjustments */
@media (max-width: 600px) {
    .header__image img {
        width: 85vw;
        max-width: 85vw;
    }
}

/* Small mobile styles (480px and below) */
@media (max-width: 480px) {
    .navbar {
        height: 55px;
        padding: 0 2%;
    }

    .navbar__left img {
        width: 35px;
    }

    .navbar__text h1 {
        font-size: 1rem;
    }

    .navbar__text p {
        font-size: 0.7rem;
        display: block;
    }

    #user-btn {
        font-size: 0.8rem;
        padding: 5px 8px;
    }

    .header__content h1 {
        font-size: 2rem;
    }

    .header__content p {
        font-size: 1rem;
    }

    .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 40px auto 0 auto;
        text-align: center;
        width: 180px;
        max-width: 90%;
        height: 45px;
        font-size: 0.9rem;
        padding: 15px 20px;
    }

    .methods {
        padding: 50px 3%;
    }

    .methods h2, .why-us h2, .meet-ijoebruin h2, .pricing h2, .reviews h2, .faq h2 {
        font-size: 2rem;
    }

    .methods__container {
        gap: 25px;
        margin-top: 35px;
    }

    .method {
        padding: 25px 15px;
        margin: 0;
        max-width: none;
        min-height: 220px;
    }

    .method i {
        font-size: 45px;
    }

    .method h3, .proof h3 {
        font-size: 1.5rem;
    }

    .method p, .proof p, .why-us p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .methods__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 40px auto 0 auto;
        text-align: center;
        width: 180px;
        max-width: 90%;
        height: 48px;
        font-size: 14px;
    }
}