/* ===== CSS Variables ===== */
:root {
    --primary-gold: #e2c044;
    --primary-gold-dark: #c5a33d;
    --primary-gold-light: #f0d366;
    --black: #000000;
    --black-light: #1A1A1A;
    --black-medium: #333333;
    --white: #FFFFFF;
    --white-off: #FAFAFA;
    --gray-light: #F5F5F5;
    --gray-medium: #E5E5E5;
    --gray-dark: #666666;
    --gradient-gold: linear-gradient(135deg, #e2c044 0%, #c5a33d 100%);
    --gradient-black: linear-gradient(135deg, #000000 0%, #333333 100%);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --border-radius-large: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary-gold);
}

.bg-black {
    background: var(--black);
    color: var(--white);
}

.bg-gold {
    background: var(--primary-gold);
    color: var(--black);
}

.bg-gradient-gold {
    background: var(--gradient-gold);
    color: var(--black);
}

/* ===== Header Styles ===== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-medium);
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.05);
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.site-nav a {
    font-weight: 500;
    color: var(--black);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.site-nav a:hover::after {
    width: 100%;
}

.site-nav a:hover {
    color: var(--primary-gold-dark);
}

.register-btn {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--primary-gold-dark);
}

/* ===== Mobile Menu Styles ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-medium);
    box-shadow: var(--shadow-medium);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav ul li {
    margin: 0;
}

.mobile-nav ul li a {
    display: block;
    padding: 1rem 2rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.mobile-cta {
    background: var(--gray-light);
    color: var(--primary-gold-dark);
}

.mobile-nav ul li a.mobile-cta {
    margin: 0.5rem 2rem;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 25px;
    text-align: center;
}

body.menu-open {
    overflow: hidden;
}

/* ===== Button Styles ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: var(--primary-gold-dark);
}

.btn-secondary {
    background: var(--black);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: var(--black-light);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2c044" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.badge {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--gray-medium);
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.badge span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.badge h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.badge p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 0;
}

/* ===== Hero Visual ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dashboard-preview {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--gray-medium);
    max-width: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--gradient-gold);
    opacity: 0.1;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.preview-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black);
}

.preview-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.preview-info p {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.wealth-summary {
    background: var(--gray-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.wealth-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.wealth-change {
    color: #10B981;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.asset-breakdown {
    space-y: 0.75rem;
}

.asset-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-medium);
}

.asset-item:last-child {
    border-bottom: none;
}

.asset-name {
    font-weight: 500;
    color: var(--black);
}

.asset-value {
    font-weight: 600;
    color: var(--gray-dark);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Features Grid ===== */
.features-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--gray-medium);
}

.features-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.features-list li::before {
    content: '✨';
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Journey Table ===== */
.journey-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.journey-table th,
.journey-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-medium);
}

.journey-table th {
    background: var(--gradient-gold);
    color: var(--black);
    font-weight: 600;
}

.journey-table tr:hover {
    background: var(--gray-light);
}

.journey-table tr:last-child td {
    border-bottom: none;
}

/* ===== Blockquotes ===== */
blockquote {
    background: var(--gray-light);
    border-left: 4px solid var(--primary-gold);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-gold);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-family: Georgia, serif;
}

/* ===== Checkup Widget ===== */
.checkup-widget {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    max-width: 600px;
    margin: 2rem auto;
    border: 1px solid var(--gray-medium);
}

.checkup-widget h2 {
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkup-widget form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkup-widget textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: var(--transition);
}

.checkup-widget textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(226, 192, 68, 0.1);
}

.checkup-widget .result {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-gold);
}

.checkup-widget .result h4 {
    color: var(--black);
    margin-bottom: 1rem;
}

/* ===== How It Works ===== */
.how-it-works ol {
    counter-reset: step-counter;
    list-style: none;
    max-width: 600px;
    margin: 2rem auto;
}

.how-it-works li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.how-it-works li::before {
    content: counter(step-counter);
    background: var(--gradient-gold);
    color: var(--black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== App Section ===== */
.app-section {
    background: var(--gray-light);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-text h2 {
    margin-bottom: 1.5rem;
}

.app-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.app-image {
    text-align: center;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* ===== Share Section ===== */
.share-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.share-text {
    order: 1;
}

.share-img {
    order: 2;
    text-align: center;
}
.legacy-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.legacy-section .legacy-text {
    order: 2;
}

.legacy-section .legacy-img {
    order: 1;
}

.bg-black .section-title {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-black .legacy-text h2 {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.bg-black .legacy-text p {
    color: var(--gray-light);
}

/* ===== Blog Redirect ===== */
.blog-redirect-section {
    background: var(--black);
    color: var(--white);
    border-radius: var(--border-radius-large);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.blog-redirect-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.blog-redirect-section p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

/* ===== Testimonials ===== */
.testimonials-section {
    background: var(--gray-light);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.test-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-medium);
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.test-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.test-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.test-card h5 {
    color: var(--black);
    font-weight: 600;
}

/* ===== FAQ Section ===== */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--gray-medium);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: var(--white);
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--gray-medium);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.social-list {
    display: flex;
    gap: 1rem;
}

.social-list a {
    width: 40px;
    height: 40px;
    background: var(--gray-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-list a:hover {
    background: var(--primary-gold);
    color: var(--black);
}

.footer-bottom {
    border-top: 1px solid var(--gray-dark);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-medium);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .site-nav ul {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .register-btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .app-content,
    .share-section,
    .legacy-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .share-img,
    .legacy-img,
    .share-text,
    .legacy-text {
        order: unset !important;
        text-align: center;
    }

    .test-grid {
        grid-template-columns: 1fr;
    }

    .journey-table {
        font-size: 0.9rem;
    }

    .journey-table th,
    .journey-table td {
        padding: 1rem;
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .checkup-widget {
        padding: 2rem;
        margin: 1rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* ===== Scroll Animations ===== */
@media (prefers-reduced-motion: no-preference) {
    .badge,
    .test-card,
    .features-list li {
        opacity: 0;
        animation: fadeInUp 0.6s ease forwards;
    }

    .badge:nth-child(1) { animation-delay: 0.1s; }
    .badge:nth-child(2) { animation-delay: 0.2s; }
    .badge:nth-child(3) { animation-delay: 0.3s; }
}

/* ===== Focus States for Accessibility ===== */
*:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

button:focus,
.btn:focus {
    box-shadow: 0 0 0 3px rgba(226, 192, 68, 0.3);
}