/* Custom Properties - Visual Identity */
:root {
    --bg-dark: #090014;
    --bg-secondary: #13002a;
    --primary-purple: #7000FF;
    --dark-purple: #4B0082;
    --neon-orange: #FF9900;
    --neon-yellow: #FFCC00;
    --neon-purple: #a855f7;
    --cta-green: #00E676;
    --cta-green-hover: #00C853;
    --text-main: #F3E8FF;
    --text-muted: #A899C8;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --shadow-soft: 0 8px 32px rgba(112, 0, 255, 0.15);
    --shadow-glow: 0 0 40px rgba(112, 0, 255, 0.3);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--white), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title.left-align {
    text-align: left;
}

/* Common Components */
.cta-button {
    display: inline-block;
    background: var(--cta-green);
    color: #003311;
    font-size: 1.125rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: var(--cta-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 230, 118, 0.3);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating-mockup {
    animation: float 6s ease-in-out infinite;
}

.delay-anim {
    animation-delay: 1s;
}

/* ================= Hero Section ================= */
.hero-section {
    position: relative;
    padding: 6rem 0 4rem;
    background: radial-gradient(circle at top right, var(--bg-secondary), var(--bg-dark));
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(112, 0, 255, 0.2);
    border: 1px solid var(--primary-purple);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-purple);
}

.badge i {
    width: 16px;
    height: 16px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-bullets {
    margin-bottom: 2.5rem;
}

.hero-bullets li {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-bullets svg {
    width: 24px;
    height: 24px;
    color: var(--neon-orange);
}

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

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-purple);
    filter: blur(100px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    z-index: 0;
}

.hero-image-wrapper img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
}

/* ================= Pain Section ================= */
.pain-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.pain-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    transition: transform 0.3s;
}

.pain-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.icon-danger {
    color: #FF4444;
    flex-shrink: 0;
}

.pain-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-orange);
    margin-bottom: 0.5rem;
}

.big-statement {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.2), rgba(255, 153, 0, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(112, 0, 255, 0.3);
}

.big-statement h3 {
    font-size: 2rem;
    color: var(--white);
}

/* ================= Method Section ================= */
.method-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.method-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.method-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.method-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border-radius: 50px;
    border: 1px solid rgba(112, 0, 255, 0.3);
    font-weight: 600;
    color: var(--neon-purple);
}

.method-image-wrapper {
    position: relative;
}

.glow-effect-secondary {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--neon-orange);
    filter: blur(120px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    z-index: 0;
}

/* ================= Modules Section ================= */
.modules-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.module-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
}

.module-card:hover {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.module-header {
    background: rgba(112, 0, 255, 0.1);
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.module-num {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--neon-orange);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.module-header h3 {
    font-size: 1.5rem;
}

.module-body {
    padding: 2rem;
}

.module-items {
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.module-items li {
    margin-bottom: 0.5rem;
}

.module-details {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.module-details li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.module-details i {
    width: 18px;
    height: 18px;
    color: var(--primary-purple);
}

.module-highlight {
    font-style: italic;
    color: var(--neon-yellow);
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 204, 0, 0.05);
    border-radius: 12px;
}

/* ================= Differential Section ================= */
.differential-section {
    padding: 6rem 0;
    background: radial-gradient(circle at center, var(--bg-secondary), var(--bg-dark));
}

.comparison-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.comp-box {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    padding: 3rem 2rem;
    border-radius: 24px;
}

.comp-box.bad {
    background: rgba(255, 68, 68, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.comp-box.good {
    background: rgba(0, 230, 118, 0.05);
    border: 2px solid var(--cta-green);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.1);
    position: relative;
    transform: scale(1.05);
}

.comp-box h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.comp-box.bad h3 { color: #FF4444; }
.comp-box.good h3 { color: var(--cta-green); }

.comp-box ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comp-box li {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1.125rem;
    text-align: center;
}

.comp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-muted);
}

.diff-conclusion {
    text-align: center;
    font-size: 1.5rem;
    color: var(--white);
}

.diff-conclusion strong {
    font-size: 2.5rem;
    color: var(--neon-orange);
    display: block;
    margin-top: 0.5rem;
}

/* ================= Bonus Section ================= */
.bonus-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: linear-gradient(145deg, rgba(112, 0, 255, 0.1), transparent);
    border: 1px solid var(--primary-purple);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.bonus-card:hover {
    transform: translateY(-10px);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-card h4 {
    font-size: 1.25rem;
    color: var(--white);
}

/* ================= Transformation Section ================= */
.transformation-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.transf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.transf-col {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 2.5rem;
}

.transf-col h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.transf-col.before h3 { color: #A899C8; }
.transf-col.after h3 { color: var(--neon-orange); }

.transf-col ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transf-col li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.transf-col.before li { color: #A899C8; }
.transf-col.before i { color: #FF4444; }
.transf-col.after i { color: var(--cta-green); }

.final-phrase {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* ================= Testimonials ================= */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.test-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
}

.test-stars {
    color: var(--neon-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.test-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.test-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.author-info strong {
    display: block;
    color: white;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ================= Offer Section ================= */
.offer-section {
    padding: 6rem 0;
    background: #05000a;
}

.offer-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-dark));
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
}

.glow-border {
    border: 2px solid var(--primary-purple);
    box-shadow: 0 0 50px rgba(112, 0, 255, 0.2), inset 0 0 30px rgba(112, 0, 255, 0.1);
}

.offer-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.price-container {
    margin-bottom: 3rem;
}

.old-price {
    display: block;
    color: #FF4444;
    text-decoration: line-through;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.new-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-right: 0.5rem;
}

.value {
    font-size: 6rem;
    font-weight: 900;
    color: var(--neon-orange);
    text-shadow: 0 0 20px rgba(255, 153, 0, 0.3);
}

.cash-price {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.offer-benefits {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.offer-benefits li {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.offer-benefits i {
    color: var(--cta-green);
}

.large-pulse {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    width: 100%;
    max-width: 500px;
    margin-bottom: 2rem;
    border-radius: 50px;
}

.guarantee-security {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.gs-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ================= FAQ ================= */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-purple);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ================= Footer ================= */
.footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-logo strong {
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    color: var(--text-muted);
}

.disclaimer {
    font-size: 0.75rem;
    color: #666;
    max-width: 800px;
}

/* ================= Media Queries ================= */
@media (max-width: 992px) {
    .hero-container, .method-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .badges {
        justify-content: center;
    }

    .hero-bullets {
        display: inline-block;
        text-align: left;
    }

    .comp-box.good {
        transform: scale(1);
    }
    
    .transf-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .comp-divider {
        width: 100%;
        margin: 1rem 0;
    }

    .value {
        font-size: 4rem;
    }

    .offer-card {
        padding: 2rem 1.5rem;
    }
    
    .large-pulse {
        font-size: 1.25rem;
        padding: 1.2rem 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .badge {
        font-size: 0.75rem;
    }
    .value {
        font-size: 3rem;
    }
    .currency {
        font-size: 1.5rem;
    }
}

/* Clickable Mockups (Hero and Method) */
.clickable-mockup {
    display: block;
    cursor: pointer;
    text-decoration: none;
    z-index: 2;
    position: relative;
}

.clickable-mockup img {
    transition: filter 0.3s ease, transform 0.3s ease;
}

.clickable-mockup:hover img {
    filter: brightness(1.1);
}

/* Floating CTA Button */
.floating-cta-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--cta-green);
    color: #003311;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.floating-cta-button.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-cta-button:hover {
    background: var(--cta-green-hover);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 230, 118, 0.5);
    color: #003311;
}

.floating-cta-button i {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .floating-cta-button {
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: center;
        padding: 1.1rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ================= Terms of Use Layout ================= */
.nav-simple {
    padding: 1.5rem 0;
    background: rgba(9, 0, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-simple-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo strong {
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: var(--glass-bg);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.875rem;
    text-decoration: none;
}

.back-link:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.5);
    transform: translateX(-3px);
    color: var(--white);
}

.back-link i {
    width: 16px;
    height: 16px;
}

.terms-section {
    padding: 5rem 0;
    background: radial-gradient(circle at bottom center, var(--bg-secondary), var(--bg-dark));
}

.terms-card {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(19, 0, 42, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: var(--shadow-soft);
}

.terms-card h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--white), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.terms-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.terms-group h2 {
    font-size: 1.5rem;
    color: var(--neon-orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.terms-group h2 i {
    color: var(--primary-purple);
    width: 20px;
    height: 20px;
}

.terms-group p {
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-group ul {
    list-style: none;
    padding-left: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.terms-group li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.terms-group li i {
    color: var(--neon-purple);
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.terms-contact-info {
    background: rgba(112, 0, 255, 0.05);
    border: 1px solid rgba(112, 0, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1rem;
}

.terms-contact-info p {
    margin-bottom: 0.75rem;
}

.terms-contact-info strong {
    color: var(--white);
}

.terms-contact-info a {
    color: var(--neon-orange);
    transition: color 0.3s;
}

.terms-contact-info a:hover {
    color: var(--white);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .terms-card h1 {
        font-size: 2.2rem;
    }
    
    .terms-section {
        padding: 3rem 0;
    }
}

/* ================= Contact and Support Layout ================= */
.contact-section {
    padding: 5rem 0;
    background: radial-gradient(circle at bottom center, var(--bg-secondary), var(--bg-dark));
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card-item {
    background: rgba(19, 0, 42, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.contact-card-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-soft);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(112, 0, 255, 0.1);
    border: 1px solid var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-orange);
    margin-bottom: 0.5rem;
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.2);
}

.contact-icon-wrapper i {
    width: 28px;
    height: 28px;
}

.contact-card-item h3 {
    font-size: 1.35rem;
    color: var(--white);
}

.contact-card-item p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-card-item strong {
    color: var(--white);
    font-size: 1.1rem;
}

.contact-card-item a {
    color: var(--neon-orange);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.1rem;
    word-break: break-all;
}

.contact-card-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-box-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
}

.info-box-icon {
    color: var(--primary-purple);
    flex-shrink: 0;
}

.info-box-icon i {
    width: 24px;
    height: 24px;
}

.info-box-content h4 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.info-box-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-cards-grid, .contact-info-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card-item, .info-box-item {
        padding: 2rem 1.5rem;
    }
    
    .contact-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
}
