
        :root {
            --gold: #c6a64b;
            --dark-bg: #212020;
            --text-light: #ffffff;
            --text-secondary: #c0c0c0;
            --bg-gradient-start: #3a342a;
            --bg-gradient-end: #1a1a1a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Add this to your style.css */
nav a.active {
    color: var(--gold);
    font-weight: 600;
}

        body {
            font-family: 'Poppins', sans-serif;
            background: radial-gradient(100% 100% at 75% 100%, var(--bg-gradient-start), var(--bg-gradient-end) 60%);
            color: var(--text-light);
            overflow-x: hidden;
            min-height: 100vh;
        }

        .page-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
        }
        /* Default: hide hamburger, show nav */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
}

/* Mobile view: hide nav, show hamburger */
@media (max-width: 768px) {
    nav {
        display: none;
        width: 100%;
        border-top: 1px solid #444;
        border-bottom: 1px solid #444;
        padding: 15px 0;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hamburger {
        display: block;
    }

    header {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}


        /* --- Header --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
       
        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--gold);
        }

        .auth-buttons {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .auth-buttons .login-btn {
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
        }

        .auth-buttons .signup-btn {
            color: var(--text-light);
            text-decoration: none;
            border: 1.5px solid var(--gold);
            padding: 8px 24px;
            border-radius: 8px;
            font-weight: 500;
            transition: background-color 0.3s, color 0.3s;
        }
        
        .auth-buttons .signup-btn:hover {
            background-color: var(--gold);
            color: var(--dark-bg);
        }

        /* --- Main Content --- */
        main {
            display: grid;
            grid-template-columns: 50% 50%;
            align-items: start;
            gap: 20px;
            padding-bottom: 50px;
            position: relative;
        }
        
        .content-column {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            min-height: 600px; /* Ensures space for alignment */
        }

        .hero-text h1 {
            font-size: 64px;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 25px;
            margin-top: 50px;
        }

        .hero-text p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 450px;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
        }
        
        /* MODIFICATION: Made button styles more reusable */
        .btn {
            padding: 14px 30px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 8px;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .primary-btn {
            background-color: var(--gold);
            color: var(--dark-bg);
            border: 1.5px solid var(--gold);
        }
        
        .primary-btn:hover {
            filter: brightness(1.1);
        }

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

        .secondary-btn:hover {
            background-color: var(--gold);
            color: var(--dark-bg);
        }

        .features {
            display: flex;
            gap: 40px;
            margin-top: 60px;
        }

        .feature-item {
            max-width: 220px;
        }

        .feature-item .number {
            font-size: 20px;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .feature-item h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .feature-item p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        
        .hero-visuals {
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: 100%;
            pointer-events: none; /* Allows clicks to pass through container */
        }
        
        .hero-visuals .main-image {
            position: absolute;
            top: 80px; /* Align top with headline */
            right: -25%;
            height: 550px; /* Align bottom with CTA buttons */
            width: auto;
            z-index: 1;
        }
        
        /* --- Decorative & Floating Elements --- */
        .star {
            position: absolute;
            width: 20px;
            height: 20px;
            background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0L13.8485 10.1515L24 12L13.8485 13.8485L12 24L10.1515 13.8485L0 12L10.1515 10.1515L12 0Z' fill='%23c6a64b'/%3E%3C/svg%3E") no-repeat center center;
            background-size: contain;
        }

        .star-1 { top: 15%; left: 45%; width: 25px; height: 25px; }
        .star-2 { top: 25%; right: 5%; }
        .star-3 { bottom: 35%; left: 48%; width: 15px; height: 15px; }
        .star-4 { bottom: 15%; right: 45%; }
        
        .circular-text {
            position: absolute;
            bottom: 20%;
            left: 20%;
            width: 150px;
            height: 150px;
            animation: rotate 20s linear infinite;
            z-index: 2;
        }

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

        .social-proof {
            position: absolute;
            bottom: 5%;
            right: 0;
            display: flex;
            align-items: center;
            gap: 15px;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 10px;
            border-radius: 12px;
            z-index: 2;
            pointer-events: auto;
        }

        .user-count {
            background-color: var(--gold);
            color: var(--dark-bg);
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 18px;
        }

        .user-avatars { display: flex; }
        .user-avatars img, .user-avatars .plus-icon {
            width: 40px; height: 40px; border-radius: 50%;
            border: 2px solid var(--dark-bg); margin-left: -15px;
        }
        .user-avatars img:first-child { margin-left: 0; }
        .user-avatars .plus-icon {
            background-color: var(--gold); color: var(--dark-bg); display: flex;
            justify-content: center; align-items: center; font-size: 24px; font-weight: 600;
        }
        .social-proof-text { color: var(--text-secondary); font-size: 14px; }
        
        /* --- NEW SECTIONS & FOOTER STYLES START HERE --- */

        .section {
            padding: 80px 0;
            opacity: 0; /* Start hidden for animation */
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .section-contained {
            padding: 80px 0;
            opacity: 0; /* Start hidden for animation */
            animation: fadeInUp 0.8s ease-out forwards;
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 40px;
            padding-right: 40px;
        }


        .section-title {
            font-size: 42px;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
        }
        
        .section-title span {
            color: var(--gold);
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 50px auto;
            line-height: 1.6;
            text-align: center;
        }
        
        /* Animation Keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* How It Works Section */
        .how-it-works-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            text-align: left;
        }

        .step-card {
            background-color: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .step-card-icon {
            width: 60px;
            height: 60px;
            background-color: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--dark-bg);
            font-size: 24px;
            font-weight: 700;
        }

        .step-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .step-card p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Generic Two-Column Layout */
        .two-col-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            text-align: left;
        }

        .image-placeholder {
            width: 100%;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--text-secondary);
            font-size: 18px;
            padding: 20px;
            text-align: center;
        }
        .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image covers without distortion */
  display: block; /* removes inline gap under images */
}
        .image-placeholder svg {
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
            stroke: var(--gold);
        }

        .text-content .section-title, .text-content .section-subtitle {
            text-align: left;
            margin-left: 0;
            margin-right: 0;
            max-width: 100%;
        }

        .bullet-list {
            list-style: none;
            margin-top: 30px;
        }

        .bullet-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .bullet-list li::before {
            content: '✓';
            color: var(--gold);
            font-weight: 700;
            font-size: 20px;
            margin-top: -2px;
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            align-items: flex-start;
        }

        .pricing-card {
            background-color: #2a2a2a;
            padding: 40px;
            border-radius: 16px;
            border: 1px solid transparent;
            text-align: left;
            transition: transform 0.3s, border-color 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
        }

        .pricing-card.featured {
            background: linear-gradient(145deg, var(--bg-gradient-start), var(--dark-bg));
            border-color: var(--gold);
            transform: scale(1.05);
        }
        
        .pricing-card-content { flex-grow: 1; }
        .pricing-card-plan { font-size: 18px; font-weight: 500; color: var(--gold); }
        .pricing-card-price { font-size: 48px; font-weight: 700; margin: 10px 0; }
        .pricing-card-price span { font-size: 16px; font-weight: 400; color: var(--text-secondary); }
        .pricing-card-features { list-style: none; margin: 30px 0; color: var(--text-secondary); }
        .pricing-card-features li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .pricing-card-features li::before { content: ''; display: block; width: 8px; height: 8px; background-color: var(--gold); border-radius: 50%;}

        /* Testimonials Section */
        .testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
        .testimonial-card { background-color: rgba(255, 255, 255, 0.03); padding: 30px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1); text-align: left; }
        .testimonial-quote { font-size: 16px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 25px; position: relative; padding-left: 35px; }
        .testimonial-quote::before { content: '"'; position: absolute; left: 0; top: -10px; font-size: 50px; color: var(--gold); font-family: serif; }
        .testimonial-author { display: flex; align-items: center; gap: 15px; }
        .testimonial-author img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--gold); }
        .author-info h4 { font-size: 16px; font-weight: 600; }
        .author-info p { font-size: 14px; color: var(--text-secondary); }
        
        /* NEW: Security Feature Item */
        .security-feature { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; }
        .security-feature-icon { color: var(--gold); width: 30px; flex-shrink: 0; }
        .security-feature-text h4 { font-size: 18px; font-weight: 600; margin-bottom: 5px; }
        .security-feature-text p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        /* NEW: Final CTA Section */
        .cta-section {
            padding: 80px 40px;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(https://images.unsplash.com/photo-1554224155-8d04421cd6a8?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=3600) no-repeat center center;
            background-size: cover;
            border-radius: 20px;
            text-align: center;
        }
        .cta-section .section-title { font-size: 38px; }
        .app-store-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
        .app-store-btn { display: flex; align-items: center; background-color: #111; color: white; padding: 10px 20px; border-radius: 8px; text-decoration: none; transition: background-color 0.3s; border: 1px solid #444;}
        .app-store-btn:hover { background-color: #333; }
        .app-store-btn svg { width: 30px; height: 30px; margin-right: 10px; }
        .app-store-btn div { text-align: left; }
        .app-store-btn .btn-subtitle { font-size: 12px; display: block; }
        .app-store-btn .btn-title { font-size: 18px; font-weight: 500; display: block; }

        /* Footer */
        .site-footer {
            width: 100%; /* FIX: Full width background */
            padding: 60px 0 30px 0;
            background-color: #1a1a1a;
            margin-top: 80px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-about .logo { margin-bottom: 20px; }
        .footer-about p { color: var(--text-secondary); font-size: 14px; max-width: 300px; line-height: 1.6; }
        .footer-column h4 { font-size: 18px; font-weight: 600; margin-bottom: 20px; }
        .footer-column ul { list-style: none; }
        .footer-column ul li { margin-bottom: 12px; }
        .footer-column ul a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s; }
        .footer-column ul a:hover { color: var(--gold); }
        .footer-bottom { border-top: 1px solid #333; padding-top: 30px; text-align: center; font-size: 14px; color: var(--text-secondary); }
        
        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .page-container, .section-contained { padding: 0 20px; }
            nav ul { gap: 25px; }
            .hero-text h1 { font-size: 50px; }
            .hero-visuals .main-image { right: -35%; height: 500px; }
            .content-column { min-height: 550px; }
            .circular-text { left: 15%; bottom: 15%; width: 120px; height: 120px; }
            .social-proof { bottom: 2%; right: 5%; }
            .section, .section-contained { padding: 60px 0; }
            .two-col-layout { gap: 40px; }
            .footer-content { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 768px) {
            header {
    flex-direction: row; /* keep logo and hamburger in a row */
    justify-content: space-between;
    align-items: center;
    gap: 0; /* no extra vertical gap */
}

nav, 
.auth-buttons {
    display: none; /* hide these on mobile */
}

.hamburger {
    display: block;
    margin-left: auto; /* push to far right */
}

            nav { width: 100%; border-top: 1px solid #444; border-bottom: 1px solid #444; padding: 15px 0; }
            nav ul { justify-content: space-around; }
            main { grid-template-columns: 1fr; text-align: center; }
            .content-column { min-height: unset; }
            .hero-text { margin-top: 20px; }
            .hero-text h1 { font-size: 42px; }
            .hero-text p { margin: 0 auto 30px auto; }
            .cta-buttons { justify-content: center; }
            .hero-visuals { position: static; width: 100%; height: auto; margin-top: 40px; pointer-events: auto; }
            .hero-visuals .main-image { position: static; height: auto; width: 100%; max-width: 450px; }
            .features { flex-direction: column; align-items: center; gap: 30px; margin-top: 40px; padding-bottom: 20px; }
            .star, .circular-text, .social-proof { display: none; }
            .section-title { font-size: 34px; }
            .two-col-layout { grid-template-columns: 1fr; text-align: center; }
            .text-content .section-title, .text-content .section-subtitle { text-align: center; margin-left: auto; margin-right: auto;}
            .two-col-layout .image-placeholder { order: -1; } /* Image on top on mobile */
            .bullet-list li { justify-content: center; text-align: left; }
            .pricing-card.featured { transform: scale(1); }
            .testimonials-grid { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
            .footer-about p { margin: 0 auto; }
        }
    /* ================================================== */
/*          NEW: THEMED TABLE STYLES                  */
/* ================================================== */

/* General table styling */
.table {
  width: 100%;
  border-collapse: collapse; /* Cleaner borders */
  color: var(--text-main);   /* Use theme's main text color */
  font-size: 0.9rem;
}

/* Table Header */
.table thead {
  /* Separator using the gold accent color */
  border-bottom: 2px solid var(--accent-primary);
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.table th {
  padding: 0.75rem 1rem;
  font-weight: 600;
  text-align: left; /* Align headers to the left */
}

/* Table Body Cells */
.table td {
  padding: 0.75rem 1rem;
  /* Subtle separator for each row */
  border-bottom: 1px solid var(--border-color);
}

/* Hover effect for rows */
.table tbody tr:hover {
  background-color: var(--accent-secondary-bg);
}

/* Remove border from the last row in a table */
.table tbody tr:last-child td {
  border-bottom: none;
}

/* Fix for your right-aligned quantity column */
.table .text-end {
  text-align: right;
}

/* Animation styles (moved from inline style) */
.scroll-table-container {
  height: 470px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.scroll-table {
  display: inline-block;
  animation: scroll-up 20s linear infinite;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%); /* Assumes duplicate table is same height */
  }
}