/* ============================================
   GJ3Algo Landing Page - Main Styles
   Bold & Vibrant Dark Theme
   ============================================ */

/* CSS Variables - Theme Colors */
:root {
    --primary: #1E90FF;           /* Bright Electric Blue */
    --secondary: #FF00FF;          /* Vibrant Magenta/Purple */
    --accent: #00FF7F;             /* Neon Green */
    --dark: #0a0e27;               /* Very Dark Navy */
    --darker: #050810;             /* Almost Black */
    --light: #ffffff;              /* White */
    --light-gray: #e8f0ff;         /* Light Blue-White */
    --card-bg: #1a1f3a;            /* Dark Card Background */
    --border: #2a3f6f;             /* Border Color */
    --success: #00FF7F;            /* Success Green */
    --error: #FF4444;              /* Error Red */

    /* Typography */
    --font-title: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============= Reset & Base Styles ============= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============= Navigation Bar ============= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 8, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-title);
    cursor: pointer;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    color: var(--light) !important;
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* ============= Hero Section ============= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    top: -200px;
    right: -100px;
    animation: blob-motion 8s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    bottom: -150px;
    left: -50px;
    animation: blob-motion 10s ease-in-out infinite reverse;
}

@keyframes blob-motion {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--spacing-md);
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fade-in-up 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fade-in-up 0.8s ease-out 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--light);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.8rem 1.5rem;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    text-align: center;
    animation: fade-in-up 0.8s ease-out 0.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: 0.5rem;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============= Section Base Styles ============= */

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--light);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--light-gray);
    margin-bottom: 3rem;
}

/* ============= How It Works Section ============= */

.how-it-works {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05), rgba(255, 0, 255, 0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.workflow-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
}

.workflow-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.workflow-step h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.workflow-step p {
    color: var(--light-gray);
    line-height: 1.7;
}

.workflow-arrow {
    font-size: 2rem;
    color: var(--primary);
    animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

@media (max-width: 900px) {
    .workflow-container {
        flex-direction: column;
    }
    .workflow-arrow {
        transform: rotate(90deg);
    }
}

.architecture-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--accent);
}

.info-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-card i {
    margin-right: 0.5rem;
}

.info-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* ============= Features Section ============= */

.features {
    background: var(--darker);
}

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

.feature-card {
    padding: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* ============= Pricing Section ============= */

.pricing {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05), rgba(255, 0, 255, 0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.pricing-card {
    padding: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(255, 0, 255, 0.1));
    box-shadow: 0 20px 50px rgba(30, 144, 255, 0.3);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price sup {
    font-size: 1rem;
}

.plan-offer {
    margin-top: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--light-gray);
    text-align: left;
}

.plan-features li i {
    color: var(--accent);
    margin-right: 0.8rem;
}

.plan-features li.unavailable {
    opacity: 0.5;
    color: var(--light-gray);
}

.plan-features li.unavailable i {
    color: var(--error);
}

/* ============= FAQ Section ============= */

.faq {
    background: var(--darker);
}

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

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 1.1rem;
    font-family: var(--font-title);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--light-gray);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    max-height: none;
}

/* ============= Demo/Sign Up Section ============= */

.demo {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05), rgba(255, 0, 255, 0.05));
    border-top: 1px solid var(--border);
}

.demo-content {
    max-width: 600px;
    margin: 0 auto;
}

.demo-form-container {
    margin-top: 3rem;
}

.contact-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.contact-highlight h3 {
    font-family: var(--font-title);
    color: var(--light);
    margin-bottom: 0.6rem;
}

.contact-highlight p,
.contact-meta p {
    color: var(--light-gray);
}

.contact-actions {
    display: flex;
    gap: 1rem;
}

.contact-meta a {
    color: var(--primary);
    text-decoration: none;
}

.contact-meta a:hover {
    color: var(--accent);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(232, 240, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-group.checkbox label {
    cursor: pointer;
    color: var(--light-gray);
}

.form-error {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: none;
}

.form-error.show {
    display: block;
}

.form-note {
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.success-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.1), rgba(0, 255, 127, 0.05));
    border: 1px solid var(--accent);
    border-radius: 12px;
    color: var(--success);
}

.success-message h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.success-message i {
    color: var(--accent);
    margin-right: 0.5rem;
}

/* ============= Footer ============= */

.footer {
    background: var(--darker);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

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

.footer-column h4 {
    font-family: var(--font-title);
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 0.8rem;
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--primary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

/* ============= Payment Page ============= */

.payment-page {
    padding: 8rem 0 5rem;
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(30, 144, 255, 0.16), transparent 30%),
        radial-gradient(circle at bottom left, rgba(0, 255, 127, 0.12), transparent 28%),
        var(--dark);
}

.payment-hero {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.eyebrow {
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.payment-grid {
    display: grid;
    grid-template-columns: minmax(320px, 460px) minmax(340px, 1fr);
    gap: 2.25rem;
    align-items: start;
}

.payment-qr-card,
.payment-plan-card,
.payment-steps {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.98), rgba(17, 22, 44, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.payment-qr-card h3,
.payment-plan-card h3,
.payment-steps h4 {
    font-family: var(--font-title);
    color: var(--light);
    margin-bottom: 1rem;
}

.payment-trustbar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--light);
    font-weight: 600;
}

.trust-pill i {
    color: var(--accent);
}

.payment-qr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.qr-label {
    margin-bottom: 0.35rem;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.qr-badge {
    white-space: nowrap;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(30, 144, 255, 0.12);
    border: 1px solid rgba(30, 144, 255, 0.24);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
}

.payment-qr-stage {
    padding: 1.4rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 1.25rem;
}

.payment-qr-frame {
    max-width: 320px;
    margin: 0 auto;
    padding: 0.85rem;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.payment-qr-frame img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 18px;
}

.upi-box {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.upi-label {
    color: rgba(232, 240, 255, 0.68);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.upi-box strong {
    color: var(--light);
    font-size: 1.15rem;
    word-break: break-all;
}

.payment-note,
.payment-steps p,
.payment-steps li {
    color: var(--light-gray);
}

.payment-help {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-help a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.payment-help a:hover {
    color: var(--primary);
}

.payment-plan-stack {
    display: grid;
    gap: 1.5rem;
}

.payment-plan-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.plan-tag {
    margin-bottom: 0.5rem;
    color: rgba(232, 240, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.8rem;
}

.payment-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.35rem;
}

.payment-price span {
    font-size: 1rem;
    color: rgba(232, 240, 255, 0.72);
    font-weight: 600;
}

.payment-offer {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.payment-offer-chip {
    white-space: nowrap;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 255, 127, 0.09);
    border: 1px solid rgba(0, 255, 127, 0.18);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
}

.featured-payment {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 255, 127, 0.12);
}

.payment-feature-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    margin: 0 0 1.4rem;
}

.payment-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--light-gray);
}

.payment-feature-list i {
    color: var(--accent);
    margin-top: 0.2rem;
}

.payment-steps ol {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.payment-contact-grid {
    display: grid;
    gap: 0.5rem;
    margin-top: 1rem;
}

.payment-steps a {
    color: var(--primary);
    text-decoration: none;
}

.payment-steps a:hover {
    color: var(--accent);
}

/* ============= Floating WhatsApp ============= */

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
}

.floating-whatsapp a {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.28);
    transition: var(--transition);
}

.floating-whatsapp a:hover {
    transform: translateY(-4px) scale(1.03);
    background: #1ebe5d;
}

/* ============= Legal Pages ============= */

.legal-page {
    padding: 8rem 0 5rem;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(30, 144, 255, 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 0, 255, 0.10), transparent 24%),
        var(--dark);
}

.legal-shell {
    max-width: 980px;
    margin: 0 auto;
}

.legal-card {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.98), rgba(12, 16, 35, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    padding: 2.5rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.legal-pill {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
}

.legal-intro {
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    color: var(--light);
    margin-bottom: 0.85rem;
}

.legal-section p,
.legal-section li {
    color: var(--light-gray);
    line-height: 1.8;
}

.legal-section ul {
    padding-left: 1.2rem;
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
}

.legal-section a:hover {
    color: var(--accent);
}

.legal-note {
    margin-top: 2rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--light-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--light-gray);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============= Loading & Animations ============= */

.loading {
    pointer-events: none;
    opacity: 0.7;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
