:root {
    --bg-dark: #120b24;
    --navy-blue: #183466;
    --navy-dark: #1e293b;
    --neon-green: #3cd070;
    --neon-green-hover: #22c55e;
    --text-main: #1e293b; /* Darkened for higher contrast */
    --text-dark: #0f172a;
    --text-gray: #475569; /* Darkened for better readability on light bg */
    --text-light: #f8fafc; /* Brightened for better readability on dark bg */
    --purple: #8b5cf6;
    --purple-dark: #4c1d95;
    --orange: #f97316;
    --red: #ef4444;
    --bg-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.9);
}

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

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

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; }
.text-center { text-align: center; }
.justify-center { justify-content: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-4 { margin-right: 1rem; }

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--neon-green), #84cc16);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-animated {
    background: linear-gradient(270deg, #60a5fa, #c084fc, #f87171, #fde047, #4ade80, #60a5fa);
    background-size: 500% 500%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s linear infinite;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Added subtle shadow for contrast on dark bg */
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.text-white { color: #fff !important; }
.text-dark { color: var(--text-dark) !important; }
.text-gray { color: var(--text-gray) !important; }
.text-light { color: #cbd5e1 !important; }
.text-purple { color: var(--purple) !important; }
.text-purple-dark { color: var(--purple-dark) !important; }
.text-green { color: var(--neon-green) !important; }
.text-orange { color: var(--orange) !important; }
.text-lime { color: #bef264 !important; }
.hide-mobile { display: inline-block; }
.section-padding { padding: 80px 0; }

.bg-white { background-color: #fff; }
.bg-light-gray { background-color: #f1f5f9; }
.dark-purple-bg { background-color: #3b286d; }
.bg-dark-blue { background-color: #0f172a; }
.gradient-bg { background: linear-gradient(135deg, #84cc16, #eab308, #f97316); }
.dark-section { background-color: var(--bg-dark); color: #fff; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 1rem;
    cursor: pointer; text-decoration: none; transition: all 0.3s;
    border: none; outline: none; font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--navy-blue); color: #fff; }
.btn-primary:hover { background: #1e3a8a; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2); }
.btn-whatsapp { background: #22c55e; color: #fff; border-radius: 30px; }
.btn-whatsapp:hover { background: #16a34a; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }
.btn-purple { background: var(--purple); color: #fff; }
.btn-green { background: #10b981; color: #fff; }
.btn-orange { background: var(--red); color: #fff; }
.btn-orange-grad { background: linear-gradient(135deg, #f59e0b, #f97316); color: #fff; border-radius: 30px;}
.btn-purple-grad { background: linear-gradient(135deg, #6366f1, #a855f7); color: #fff; border-radius: 30px;}
.btn-white { background: #fff; border-radius: 30px;}
.btn:hover { transform: translateY(-2px); opacity: 0.95; }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
    outline: 3px solid var(--neon-green);
    outline-offset: 2px;
}

/* Header */
.header {
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0; position: sticky; top: 0; z-index: 1000;
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo h2 { font-size: 1.5rem; margin: 0; color: var(--navy-blue); }
.logo span { color: var(--neon-green); }
.site-logo { max-height: 45px; width: auto; display: block; }
.sebi-tag { font-size: 0.75rem; color: #16a34a; font-weight: 600; }
.header-contact { display: flex; align-items: center; gap: 20px; }
.contact-link {
    color: var(--text-gray); text-decoration: none; font-weight: 500; font-size: 0.9rem;
    display: flex; align-items: center; gap: 6px; background: #f1f5f9; padding: 6px 12px; border-radius: 20px;
}

/* Hero Section */
.hero { padding: 40px 0; position: relative; overflow: hidden; min-height: calc(100vh - 75px); display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero h1 { color: #fff; font-size: 3rem; letter-spacing: -1px; margin-bottom: 15px; }
.pill-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 12px; border-radius: 50px; font-size: 0.85rem; font-weight: 500;
    margin-bottom: 15px; color: #e2e8f0;
}
.pulse-dot {
    width: 8px; height: 8px; background: var(--neon-green); border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green); animation: pulse 2s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(60, 208, 112, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(60, 208, 112, 0); } 100% { box-shadow: 0 0 0 0 rgba(60, 208, 112, 0); } }
.hero-subtitle { font-size: 1rem; color: #cbd5e1; margin-bottom: 25px; line-height: 1.5; }
.bg-shape { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 1; pointer-events: none; animation: shapeFloat 15s ease-in-out infinite alternate; }
@keyframes shapeFloat { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(50px, 30px) scale(1.1); } }
.bg-shape-1 { top: -100px; left: -100px; width: 400px; height: 400px; background: rgba(59, 130, 246, 0.4); }
.bg-shape-2 { bottom: -100px; right: -100px; width: 500px; height: 500px; background: rgba(16, 185, 129, 0.3); animation-delay: -5s; }

/* Form Panel 3D Effect */
.form-panel { 
    background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 16px; padding: 25px 30px; 
    transform: perspective(1200px) rotateY(-8deg) rotateX(5deg); 
    box-shadow: -20px 30px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1); 
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    transform-style: preserve-3d;
}
.form-panel:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-10px); }
.form-panel h3, .form-panel p, .form-panel form { transform: translateZ(30px); }
.form-panel h3 { color: #fff; font-size: 1.5rem; margin-bottom: 5px; }
.form-panel p { color: #cbd5e1; margin-bottom: 15px; font-size: 0.9rem; }
.modern-form .input-group { margin-bottom: 12px; }
.modern-form input {
    width: 100%; padding: 10px; background: #fff; border: 1px solid #e2e8f0; border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: all 0.3s;
}

/* Pricing Section */
.section-title { font-size: 2.5rem; margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 50px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pricing-card { background: #fff; border-radius: 16px; padding: 40px 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-top: 4px solid transparent; transition: all 0.3s; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.card-purple { border-top-color: var(--purple); }
.card-green { border-top-color: #10b981; background: #f0fdf4; }
.card-orange { border-top-color: var(--red); background: #fffaf5; }
.card-icon-top { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 20px; color: #fff; }
.icon-purple { background: var(--purple); }
.icon-green { background: #10b981; }
.icon-orange { background: var(--red); }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.pricing-card .price { font-size: 2.5rem; font-weight: 800; font-family: 'Outfit'; margin-bottom: 10px; }
.plan-desc { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 20px; min-height: 48px; }
.plan-features { list-style: none; margin-bottom: 30px; text-align: left; }
.plan-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.95rem; font-weight: 500; }
.check { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: #fff; }
.purple-check { background: var(--purple); }
.green-check { background: #10b981; }
.orange-check { background: var(--red); }

/* Who We Are */
.split-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.flex-title { display: flex; align-items: center; gap: 12px; }
.features-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.f-box { background: #f8fafc; padding: 20px; border-radius: 12px; border: 1px solid #e2e8f0; }
.f-icon { font-size: 1.8rem; margin-bottom: 10px; }
.f-box h4 { font-size: 1.1rem; margin-bottom: 5px; }
.f-box p { font-size: 0.85rem; color: var(--text-gray); }

.who-card-wrapper { position: relative; }
.commitment-card { background: var(--navy-dark); color: #fff; border-radius: 20px; padding: 40px; position: relative; z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.commitment-card h3 { color: #fff; margin-bottom: 24px; font-size: 1.5rem; }
.commit-list { list-style: none; }
.commit-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; font-size: 0.95rem; }
.c-check { background: #22c55e; color: #fff; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; }
.bg-circle { position: absolute; border-radius: 50%; z-index: 1; }
.green-circle-1 { top: -20px; right: -20px; width: 100px; height: 100px; background: rgba(34, 197, 94, 0.2); }
.blue-circle-1 { bottom: -20px; left: -20px; width: 80px; height: 80px; background: rgba(59, 130, 246, 0.2); }

/* Different Section */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.diff-box { background: #fff; padding: 30px 20px; border-radius: 16px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: all 0.3s; }
.diff-box:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.d-icon { width: 50px; height: 50px; background: #f0fdf4; color: #22c55e; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 15px; }
.diff-box h4 { font-size: 1rem; margin-bottom: 10px; color: var(--navy-dark); }
.diff-box p { font-size: 0.85rem; color: var(--text-gray); }

/* Ready to Try */
.strategy-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.s-card { background: #fff; padding: 40px; border-radius: 16px; border: 1px solid #e2e8f0; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: left; transition: all 0.3s; }
.s-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); background: #fff; }
.s-icon { font-size: 2rem; margin-bottom: 20px; }
.s-card h4 { color: var(--navy-dark); font-size: 1.25rem; margin-bottom: 10px; }
.s-card p { color: var(--text-gray); font-size: 1rem; opacity: 1; }
.s-green { border-bottom: 4px solid #4ade80; }
.s-blue { border-bottom: 4px solid #60a5fa; }
.s-orange { border-bottom: 4px solid #fb923c; }
.cta-banner { display: flex; align-items: center; justify-content: center; gap: 20px; }
.trust-tags { display: flex; gap: 15px; background: #e2e8f0; padding: 10px 20px; border-radius: 30px; font-size: 0.85rem; color: var(--navy-dark); font-weight: 500; }

/* Trading Journey */
.journey-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.j-card { background: #fff; padding: 40px 30px; border-radius: 16px; border: 1px solid #e2e8f0; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.3s; }
.j-icon { font-size: 2.5rem; margin-bottom: 20px; }
.j-card h4 { color: var(--navy-dark); font-size: 1.25rem; margin-bottom: 12px; }
.j-card p { color: var(--text-main); font-size: 0.95rem; font-weight: 500; opacity: 1; }
.transform-banner { background: #fff; padding: 40px; border-radius: 20px; border: 1px solid #e2e8f0; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.transform-banner h4 { color: var(--navy-dark); font-size: 1.6rem; margin-bottom: 12px; }
.transform-banner p { color: var(--text-main); opacity: 1; font-weight: 500; margin-bottom: 24px; font-size: 1.05rem; }
.btn-group { display: flex; justify-content: center; gap: 20px; }

/* Footer */
.footer { padding: 60px 0 30px; color: #94a3b8; background: #0f172a; }
.footer-main { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; gap: 40px; }
.footer-logo-wrapper { background: #fff; padding: 12px 20px; border-radius: 8px; display: inline-block; }
.footer-col h4 { font-size: 1.15rem; font-weight: 600; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #cbd5e1; text-decoration: none; transition: color 0.3s; font-size: 0.95rem; }
.footer-links a:hover { color: var(--neon-green); }
.border-top { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; text-align: center; font-size: 0.9rem; gap: 15px; }
.footer-bottom p { margin-bottom: 0; }
.font-bold { font-weight: 700; }

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid, .diff-grid { grid-template-columns: repeat(2, 1fr); }
    .split-grid { grid-template-columns: 1fr; gap: 40px; }
    .features-2x2 { grid-template-columns: 1fr 1fr; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-actions, .hero-points { justify-content: center; }
    .hero-form-container { max-width: 500px; margin: 40px auto 0; }
    .footer-main { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hide-mobile { display: none; }
    .header-container { flex-direction: column; gap: 15px; padding: 10px 0; text-align: center; }
    .site-logo { max-height: 35px; margin: 0 auto; }
    .header-contact { justify-content: center; width: 100%; }
    .pricing-grid, .diff-grid, .strategy-cards, .journey-cards { grid-template-columns: 1fr; }
    .features-2x2 { grid-template-columns: 1fr; }
    .cta-banner, .btn-group { flex-direction: column; text-align: center; }
    .trust-tags { flex-wrap: wrap; justify-content: center; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content .hero-subtitle { font-size: 1.05rem; }
    .section-title { font-size: 2rem; }
    .section-padding { padding: 50px 0; }
    .footer-main { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .hero-actions .btn-orange-grad::before { top: -30px; font-size: 0.75rem; }
    .form-panel { padding: 25px 20px; }
    .pricing-card { padding: 30px 20px; }
    .s-card, .j-card { padding: 30px 20px; }
    .commitment-card { padding: 30px 20px; }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Irresistible Button Animations */
.hero-actions .btn-orange-grad {
    position: relative;
    animation: pulse-attention 2s infinite;
    overflow: visible;
}
.hero-actions .btn-orange-grad::before {
    content: "🔥 100% Free!";
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(60, 208, 112, 0.4);
    animation: bounce 2s infinite;
    pointer-events: none;
}
.hero-actions .btn-orange-grad::after {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--neon-green) transparent transparent transparent;
    animation: bounce 2s infinite;
    pointer-events: none;
}
.hero-actions .btn-whatsapp {
    animation: wiggle 4s infinite;
    transform-origin: center;
}

@keyframes pulse-attention {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}
@keyframes wiggle {
    0%, 85%, 100% { transform: rotate(0); }
    88% { transform: rotate(-5deg); }
    91% { transform: rotate(5deg); }
    94% { transform: rotate(-5deg); }
    97% { transform: rotate(5deg); }
}


/* Hero Actions & Points */
.hero-actions { display: flex; gap: 16px; margin-top: 45px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 20px; font-size: 0.95rem; color: #cbd5e1; flex-wrap: wrap; }
.point-item { display: flex; align-items: center; gap: 8px; }

/* Modal & Select */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); z-index: 2000; justify-content: center; align-items: center;
    backdrop-filter: blur(5px);
}
.modal-content {
    background: #fff; border-radius: 16px; padding: 25px 30px; width: 100%; max-width: 400px;
    position: relative; box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    transform-style: preserve-3d;
    perspective: 1500px;
    animation: modal3DPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.modal-content::before {
    content: "🚀"; position: absolute; top: -20px; left: -20px; font-size: 2.5rem;
    animation: floatEmoji1 3s ease-in-out infinite; z-index: 10; filter: drop-shadow(0 10px 10px rgba(0,0,0,0.2));
}
.modal-content::after {
    content: "💰"; position: absolute; bottom: -20px; right: -20px; font-size: 2.5rem;
    animation: floatEmoji2 4s ease-in-out infinite; z-index: 10; filter: drop-shadow(0 10px 10px rgba(0,0,0,0.2));
}
.modal-content h3 { font-size: 1.5rem !important; margin-bottom: 5px !important; }
.modal-content p { margin-bottom: 15px !important; }
#modal-form .input-group { margin-bottom: 12px; }
#modal-form input, #modal-form select { padding: 10px; }
#modal-form .btn { padding: 12px; margin-top: 15px; }

@keyframes modal3DPop {
    0% { transform: scale(0.6) rotateX(20deg) rotateY(-30deg) translateY(100px); opacity: 0; }
    100% { transform: scale(1) rotateX(0deg) rotateY(0deg) translateY(0); opacity: 1; }
}
@keyframes floatEmoji1 {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-15px) rotate(15deg); }
}
@keyframes floatEmoji2 {
    0%, 100% { transform: translateY(0) rotate(15deg); }
    50% { transform: translateY(-15px) rotate(-15deg); }
}
.close-modal {
    position: absolute; top: 15px; right: 20px; font-size: 1.5rem; color: var(--text-gray);
    cursor: pointer; transition: color 0.3s;
    z-index: 100;
    transform: translateZ(40px);
}
.close-modal:hover { color: var(--text-dark); }
.modern-select {
    width: 100%; padding: 10px; background: #fff; border: 1px solid #e2e8f0; border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text-main); cursor: pointer;
    appearance: none;
}
