/* === VARIABLES === */
:root {
    /* Main Colors - Blue to Purple Gradient Theme (Light Mode) */
    --primary-color: #3b82f6;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --primary-very-light: rgba(59, 130, 246, 0.15);
    --secondary-color: #8b5cf6;
    --accent-color: #a78bfa;

    /* Light Mode Text Colors */
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --text-white: #ffffff;
    --text-muted: #94a3b8;

    /* Light Mode Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    --purple: #8b5cf6;
    --orange: #f97316;

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

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Container Width */
    --container-width: 1200px;

    /* Light Mode Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --glow-sm: 0 0 10px rgba(59, 130, 246, 0.2);
    --glow-md: 0 0 20px rgba(59, 130, 246, 0.3);

    /* Border Colors for Light Mode */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
}

/* Dark Mode Theme */
html.dark-mode {
    /* Main Colors - Blue to Purple Gradient Theme (Dark Mode) */
    --primary-color: #3b82f6;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --primary-very-light: rgba(59, 130, 246, 0.15);
    --secondary-color: #8b5cf6;
    --accent-color: #a78bfa;

    /* Dark Mode Text Colors */
    --text-dark: #e2e8f0;
    --text-medium: #cbd5e1;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    --text-muted: #64748b;

    /* Dark Mode Background Colors */
    --bg-white: #1e293b;
    --bg-light: #0f172a;
    --bg-dark: #020617;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;

    /* Dark Mode Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    --glow-sm: 0 0 10px rgba(59, 130, 246, 0.2);
    --glow-md: 0 0 20px rgba(59, 130, 246, 0.3);

    /* Border Colors for Dark Mode */
    --border-light: #334155;
    --border-medium: #475569;
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    color: var(--text-medium);
    background-color: var(--bg-white);
}

ul, ol {
    list-style: none;
}

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

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

/* === UTILITIES === */
.container {
    max-width: var(--container-width);
    width: 90%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

.btn-secondary:hover {
    opacity: 0.9;
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* === HEADER & NAVIGATION === */
header {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    overflow: hidden;
}

nav {
    padding: var(--spacing-md) 0;
    position: relative;
    z-index: 10;
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-light);
}

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

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(29, 78, 216, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(90deg, var(--text-white) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.hero-image {
    flex-shrink: 0;
    position: relative;
    
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: var(--radius-md);
    z-index: -1;
}

.hero-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* === FEATURES SECTION === */
.features {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background-color: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-very-light);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.feature-card p {
    color: var(--text-light);
}

/* === SECURITY SECTION === */
.security {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-light);
}

.security-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xxl);
}

.security-text {
    flex: 1;
}

.security-image {
    flex: 1;
}

.security-text h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.security-text h3:first-child {
    margin-top: 0;
}

.security-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
}

.security-text ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.security-text ul li {
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: var(--spacing-md);
}

.security-text ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.security-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* === PRICING SECTION === */.monthly-price {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    display: inline-block;
}

/* Free pricing styling */
.free-price {
    background-color: #f0fdf4;
    color: #059669;
    border: 1px solid #bbf7d0;
}

/* Paid pricing styling */
.paid-price {
    background-color: #f0f9ff;
    color: #0369a1;
    border: 1px solid #e0f2fe;
}

/* Custom pricing styling */
.custom-price {
    background-color: #fef3c7;
    color: #d97706;
    border: 1px solid #fde68a;
}

/* Override for popular card */
.pricing-card.popular .monthly-price {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Override for enterprise card */
.pricing-card.enterprise .monthly-price {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.pricing-footer p {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.pricing-footer .btn {
    margin-bottom: 1rem;
}

.pricing {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
    max-width: 1500px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0; /* Prevents flex items from overflowing */
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-card.enterprise {
    border: 2px solid var(--accent-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-header {
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--bg-light);
    text-align: center;
    position: relative;
}

.popular .pricing-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
}

.pricing-card.enterprise .pricing-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0ea5e9 100%);
    color: var(--text-white);
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--accent-color);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: var(--spacing-xs);
}

.popular .badge {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.enterprise-badge {
    background-color: var(--bg-white);
    color: var(--accent-color);
}

.pricing-price {
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: center;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--bg-light);
}

.pricing-price h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.popular .pricing-price h4 {
    color: var(--primary-color);
}

.pricing-card.enterprise .pricing-price h4 {
    color: var(--accent-color);
}

.pricing-price p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-features {
    padding: var(--spacing-md) var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    position: relative;
    font-size: 0.85rem;
    line-height: 1.4;
}

.pricing-features i {
    margin-right: var(--spacing-sm);
    width: 16px;
    text-align: center;
}

.pricing-features .fa-check {
    color: var(--success);
}

.pricing-features .fa-times {
    color: var(--text-light);
}

.pricing-card .btn {
    margin: 0 var(--spacing-md) var(--spacing-md);
    width: calc(100% - (var(--spacing-md) * 2));
}

.pricing-note {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
}

/* === RESPONSIVE STYLES FOR PRICING === */
@media (max-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
    
    /* Make the last two cards span the grid nicely */
    .pricing-card:nth-child(4) {
        grid-column: 1 / 3;
        max-width: 300px;
        justify-self: end;
    }
    
    .pricing-card:nth-child(5) {
        grid-column: 3 / 4;
        max-width: 300px;
        justify-self: start;
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .pricing-card:nth-child(4),
    .pricing-card:nth-child(5) {
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
    }
    
    .pricing-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 400px;
        justify-self: center;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .pricing-card:nth-child(4),
    .pricing-card:nth-child(5) {
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
    }
}
/* === CURRENCIES SECTION === */
.currencies {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-light);
}

.currencies-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.tab-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.currencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--spacing-lg);
}

.currency-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg);
    text-align: center;
    transition: transform 0.3s ease;
}

.currency-card:hover {
    transform: translateY(-5px);
}

.currency-card img {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--radius-full);
}

.currency-card h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.currency-card p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.token-fee-note {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--warning);
}

/* === HOW IT WORKS SECTION === */
.how-it-works {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: var(--spacing-md);
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.step p {
    color: var(--text-light);
}

.step-connector {
    flex-grow: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    width: 100px;
    margin-top: 30px;
}

/* === FAQ SECTION === */
.faq {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-light);
}

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

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.faq-question {
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* === CTA SECTION === */
.cta {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.cta .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

/* === FOOTER === */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.footer-logo h2 {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.footer-col h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col ul li a {
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--text-white);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .security-content {
        flex-direction: column;
    }
    
    .security-image {
        order: -1;
        margin-bottom: var(--spacing-xl);
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: var(--spacing-xl);
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .step-connector {
        display: none;
    }
    
    .steps {
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    .step {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Add these to your existing CSS */
.auth-buttons, .dashboard-button {
    transition: opacity 0.3s ease;
}

/* For when navigating to the dashboard */
.dashboard-button a.btn-primary {
    display: flex;
    align-items: center;
}

.dashboard-button a.btn-primary::before {
    content: '\f015'; /* Home icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
}


/* === THEME TOGGLE === */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    transition: all 0.3s ease;
    z-index: 1000;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.theme-toggle i {
    transition: transform 0.3s ease;
}

.theme-toggle:hover i {
    transform: rotate(20deg);
}

