/* === THEME CONFIGURATION === */
:root {
    /* Purple accent color - NEVER CHANGES */
    --accent-color: #927ED3;
    --accent-hover: #7a6bc2;
    
    /* Dark theme colors */
    --bg-primary-dark: #181818;
    --bg-secondary-dark: #222222;
    --text-primary-dark: #ffffff;
    --text-secondary-dark: rgba(255, 255, 255, 0.9);
    --text-tertiary-dark: rgba(255, 255, 255, 0.7);
    --border-dark: rgba(255, 255, 255, 0.1);
    --glass-bg-dark: rgba(24, 24, 24, 0.1);
    
    /* Light theme colors */
    --bg-primary-light: #ffffff;
    --bg-secondary-light: #f8f9fa;
    --text-primary-light: #181818;
    --text-secondary-light: rgba(24, 24, 24, 0.9);
    --text-tertiary-light: rgba(24, 24, 24, 0.7);
    --border-light: rgba(24, 24, 24, 0.1);
    --glass-bg-light: rgba(255, 255, 255, 0.1);
}

/* Dark mode (default) */
.dark-mode {
    --bg-primary: var(--bg-primary-dark);
    --bg-secondary: var(--bg-secondary-dark);
    --text-primary: var(--text-primary-dark);
    --text-secondary: var(--text-secondary-dark);
    --text-tertiary: var(--text-tertiary-dark);
    --border-color: var(--border-dark);
    --glass-bg: var(--glass-bg-dark);
    --circle-color: rgba(146, 126, 211, .75);
    --dust-color: rgba(146, 126, 211, 0.2);
}

/* Light mode */
.light-mode {
    --bg-primary: var(--bg-primary-light);
    --bg-secondary: var(--bg-secondary-light);
    --text-primary: var(--text-primary-light);
    --text-secondary: var(--text-secondary-light);
    --text-tertiary: var(--text-tertiary-light);
    --border-color: var(--border-light);
    --glass-bg: var(--glass-bg-light);
    --circle-color: rgba(146, 126, 211, 0.2);
    --dust-color: rgba(146, 126, 211, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Circles Animation */
.background-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border: 4px solid var(--circle-color);
    border-radius: 50%;
    animation: floatUp linear infinite;
    transition: border-color 0.3s ease;
}

.circle-1 {
    width: 80px;
    height: 80px;
    left: 70%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    left: 75%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    left: 80%;
    animation-duration: 12s;
    animation-delay: 4s;
}

.circle-4 {
    width: 40px;
    height: 40px;
    left: 85%;
    animation-duration: 9s;
    animation-delay: 1s;
}

.circle-5 {
    width: 120px;
    height: 120px;
    left: 65%;
    animation-duration: 15s;
    animation-delay: 3s;
}

.dust {
    position: absolute;
    background-color: var(--dust-color);
    border-radius: 50%;
    animation: floatUp linear infinite;
    transition: background-color 0.3s ease;
}

.dust-1 {
    width: 4px;
    height: 4px;
    left: 72%;
    animation-duration: 6s;
    animation-delay: 1.5s;
}

.dust-2 {
    width: 6px;
    height: 6px;
    left: 78%;
    animation-duration: 8s;
    animation-delay: 3.5s;
}

.dust-3 {
    width: 3px;
    height: 3px;
    left: 82%;
    animation-duration: 7s;
    animation-delay: 5s;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

/* Theme Toggle Styles */
.theme-toggle {
    cursor: pointer;
    margin-right: 10px;
}

.theme-toggle-track {
    width: 60px;
    height: 32px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.theme-toggle:hover .theme-toggle-track {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(146, 126, 211, 0.3);
}

.theme-toggle-thumb {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Light mode - move thumb to right */
.light-mode .theme-toggle-thumb {
    transform: translateX(28px);
}

/* Sun Icon */
.sun-icon {
    position: absolute;
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: rotate(0deg) scale(0.8);
    transition: all 0.4s ease;
}

.light-mode .sun-icon {
    opacity: 1;
    transform: rotate(180deg) scale(1);
}

.sun-center {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sun-ray {
    position: absolute;
    width: 2px;
    height: 4px;
    background: white;
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transform-origin: 0 6px;
}

.sun-ray-1 { transform: translate(-50%, -50%) rotate(0deg); }
.sun-ray-2 { transform: translate(-50%, -50%) rotate(45deg); }
.sun-ray-3 { transform: translate(-50%, -50%) rotate(90deg); }
.sun-ray-4 { transform: translate(-50%, -50%) rotate(135deg); }
.sun-ray-5 { transform: translate(-50%, -50%) rotate(180deg); }
.sun-ray-6 { transform: translate(-50%, -50%) rotate(225deg); }
.sun-ray-7 { transform: translate(-50%, -50%) rotate(270deg); }
.sun-ray-8 { transform: translate(-50%, -50%) rotate(315deg); }

/* Moon Icon */
.moon-icon {
    position: absolute;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    opacity: 1;
    transform: rotate(0deg) scale(1);
    transition: all 0.4s ease;
    box-shadow: inset 2px -1px 0 rgba(146, 126, 211, 0.3);
}

.light-mode .moon-icon {
    opacity: 0;
    transform: rotate(-180deg) scale(0.8);
}

.moon-crater {
    position: absolute;
    background: rgba(146, 126, 211, 0.2);
    border-radius: 50%;
}

.moon-crater-1 {
    width: 2px;
    height: 2px;
    top: 3px;
    left: 4px;
}

.moon-crater-2 {
    width: 1.5px;
    height: 1.5px;
    top: 8px;
    left: 3px;
}

.moon-crater-3 {
    width: 1px;
    height: 1px;
    top: 6px;
    left: 8px;
}

/* Header Styles - Glass Effect */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 48px;
    border-radius: 8px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(146, 126, 211, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    height: 60vh; /* Reduced from 80vh to 60vh */
    min-height: 500px; /* Added minimum height for very small screens */
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Reduced from 60px to 40px */
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.hero-content {
    z-index: 3;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1; /* Reduced from 1.2 to 1.1 for tighter spacing */
    margin-bottom: 16px; /* Reduced from 20px to 16px */
}

.hero-line {
    display: block;
    white-space: nowrap;
}

.hero-accent {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 6px; /* Reduced from 8px to 6px */
    color: var(--text-secondary);
}

.hero-disclaimer {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 32px; /* Reduced from 40px to 32px */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    height: 100%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 85%; /* Reduced from 90% to 85% */
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: 70vh; /* Slightly larger on mobile for better proportion */
        min-height: 450px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .triangulated-bar {
        height: 80px; /* Smaller on mobile */
        clip-path: polygon(0 70%, 100% 30%, 100% 100%, 0% 100%);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    text-decoration: none;
}

.btn-text {
    transition: transform 0.3s ease;
}

.btn-arrow {
    position: absolute;
    right: 16px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.btn:hover .btn-text {
    transform: translateX(-8px);
}

.btn:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0);
}

.btn:hover {
    transform: translateY(-2px);
    padding-right: 40px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

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

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 10px 25px rgba(146, 126, 211, 0.3);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(146, 126, 211, 0.1);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 5px 15px rgba(146, 126, 211, 0.3);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    height: 100%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 90%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Triangulated Bar */
.triangulated-bar {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 360px;
    background: var(--bg-secondary);
    clip-path: polygon(
    0% 0%,     /* top-left */
    50% 100%,  /* bottom-center (tip of the triangle) */
    100% 0%,   /* top-right */
    100% 100%, /* bottom-right */
    0% 100%    /* bottom-left */
  );
    z-index: 2;
    transition: background 0.3s ease;
}

/* What We Do Section */
.what-we-do {
    background-color: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
    z-index: 3;
    transition: background-color 0.3s ease;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-primary);
}

.content p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-primary);
    padding: 100px 0;
    position: relative;
    z-index: 3;
    transition: background-color 0.3s ease;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(146, 126, 211, 0.1);
}

.pricing-card.popular {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

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

/* Pricing Toggle Switch */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin: 30px -14px 40px;
    width: 100%;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.pricing-toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-tertiary);
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.pricing-toggle-label:hover {
    color: var(--text-secondary);
}

.pricing-toggle-label.active {
    color: var(--accent-color);
    font-weight: 600;
}

.pricing-toggle-switch {
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.pricing-toggle-track {
    width: 60px;
    height: 32px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-toggle-switch:hover .pricing-toggle-track {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(146, 126, 211, 0.3);
}

.pricing-toggle-thumb {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-toggle-switch.onetime .pricing-toggle-thumb {
    transform: translateX(28px);
}

/* Pricing card transition */
.pricing-card .amount,
.pricing-card .period {
    transition: all 0.3s ease;
}

/* Mobile adjustments for toggle */
@media (max-width: 768px) {
    .pricing-toggle {
        gap: 16px;
    }
    
    .pricing-toggle-label {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .pricing-toggle {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pricing-toggle-label {
        font-size: 14px;
    }
    
    .pricing-toggle-track {
        width: 50px;
        height: 28px;
    }
    
    .pricing-toggle-thumb {
        width: 20px;
        height: 20px;
    }
    
    .pricing-toggle-switch.onetime .pricing-toggle-thumb {
        transform: translateX(22px);
    }
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
}

.period {
    font-size: 16px;
    color: var(--text-tertiary);
}

.features {
    list-style: none;
    margin-bottom: 20px;
}

.features li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.features li:last-child {
    border-bottom: none;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-primary);
        backdrop-filter: blur(20px);
        transition: left 0.3s ease;
        padding: 40px 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .theme-toggle {
        margin-right: 15px;
    }

    .hero {
        height: 90vh;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-line {
        white-space: normal;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.popular {
        transform: none;
    }

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

    .triangulated-bar {
        height: 100px;
        clip-path: polygon(0 70%, 100% 30%, 100% 100%, 0% 100%);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 24px;
    }

    .content p {
        font-size: 16px;
    }
}

/* Theme Notification Styles */
.theme-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    max-width: 300px;
}

.theme-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.theme-notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.theme-notification-icon {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.theme-notification-text {
    flex: 1;
}

.theme-notification-close {
    background: none;
    border: none;
    color: var(--text-tertiary);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.theme-notification-close:hover {
    background-color: var(--accent-color);
    color: white;
}

.theme-notification.auto-theme {
    border-left: 4px solid var(--accent-color);
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .theme-notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .theme-notification.show {
        transform: translateY(0);
    }
}

/* === ROADMAP SECTION === */
.roadmap {
    background-color: var(--bg-primary);
    padding: 120px 0;
    position: relative;
    z-index: 3;
    transition: background-color 0.3s ease;
}

.roadmap-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--bg-secondary);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: background-color 0.3s ease;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--accent-color), var(--accent-hover));
    border-radius: 2px;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-line.progress-1::before { height: 25%; }
.timeline-line.progress-2::before { height: 50%; }
.timeline-line.progress-3::before { height: 75%; }
.timeline-line.progress-4::before { height: 100%; }

.roadmap-step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0.4;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-step.active {
    opacity: 1;
    transform: translateX(0);
}

.roadmap-step:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(20px);
}

.roadmap-step:nth-child(even).active {
    transform: translateX(0);
}

.step-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 4px solid var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(146, 126, 211, 0.5);
}

.step-dot .step-number {
    color: var(--text-tertiary);
    font-weight: 700;
    font-size: 20px;
    transition: color 0.3s ease;
}

.step-dot.active .step-number {
    color: white;
}

.step-content {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 30px;
    margin: 0 40px;
    flex: 1;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.roadmap-step.active .step-content {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(146, 126, 211, 0.15);
}

.step-content h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.roadmap-final {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
    opacity: 0.4;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-final.active {
    opacity: 1;
    transform: translateY(0);
}

.final-dot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 4px solid var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.final-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 0 40px rgba(146, 126, 211, 0.6);
}

.checkmark {
    width: 32px;
    height: 32px;
    color: var(--text-tertiary);
    transition: color 0.3s ease;
}

.final-dot.active .checkmark {
    color: white;
}

.final-content h3 {
    color: var(--accent-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.final-content p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

/* === CONTACT SECTION === */
.contact {
    background-color: var(--bg-secondary);
    padding: 120px 0;
    position: relative;
    z-index: 3;
    transition: background-color 0.3s ease;
}

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

.contact-header {
    margin-bottom: 60px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.form-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(146, 126, 211, 0.2);
    background: var(--bg-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-btn {
    align-self: center;
    margin-top: 20px;
    min-width: 200px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .roadmap-step {
        flex-direction: column !important;
        text-align: center;
        transform: translateY(20px);
        margin-bottom: 60px;
    }

    .roadmap-step.active {
        transform: translateY(0);
    }

    .step-content {
        margin: 30px 0 0 0;
    }

    .timeline-line {
        left: 30px;
    }

    .step-dot {
        position: relative;
        left: -25px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-input {
        padding: 14px 18px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .roadmap {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-title {
        font-size: 28px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .step-content p {
        font-size: 15px;
    }

    .final-content h3 {
        font-size: 26px;
    }

    .final-content p {
        font-size: 16px;
    }
}

/* === ROADMAP SECTION === */
.roadmap {
    background-color: var(--bg-primary);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.roadmap-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-color);
    transform: translateX(-50%);
    z-index: 1;
}

.roadmap-step {
    position: relative;
    margin: 150px 0;
    z-index: 2;
}

.roadmap-number {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--bg-secondary);
    border: 3px solid transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-tertiary);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

/* Left positioning - box on left side */
.roadmap-step:nth-child(2) .roadmap-number {
    right: calc(50% + 50px);
}

/* Right positioning - box on right side */
.roadmap-step:nth-child(3) .roadmap-number {
    left: calc(50% + 50px);
}

/* Left positioning - box on left side */
.roadmap-step:nth-child(4) .roadmap-number {
    right: calc(50% + 50px);
}

/* Right positioning - box on right side */
.roadmap-step:nth-child(5) .roadmap-number {
    left: calc(50% + 50px);
}

/* Final step - center */
.roadmap-step:nth-child(6) .roadmap-number {
    left: 50%;
    transform: translateX(-50%);
}

.roadmap-number::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 3px;
    background-color: var(--border-color);
    transition: all 0.6s ease;
    z-index: -1;
}

/* Left positioning - connecting line goes right to center line */
.roadmap-step:nth-child(2) .roadmap-number::after {
    left: 100%;
    transform: translateY(-50%);
}

/* Right positioning - connecting line goes left to center line */
.roadmap-step:nth-child(3) .roadmap-number::after {
    right: 100%;
    transform: translateY(-50%);
}

/* Left positioning - connecting line goes right to center line */
.roadmap-step:nth-child(4) .roadmap-number::after {
    left: 100%;
    transform: translateY(-50%);
}

/* Right positioning - connecting line goes left to center line */
.roadmap-step:nth-child(5) .roadmap-number::after {
    right: 100%;
    transform: translateY(-50%);
}

/* Final step - no connecting line */
.roadmap-step:nth-child(6) .roadmap-number::after {
    display: none;
}

.roadmap-number span {
    transition: color 0.3s ease;
}

.roadmap-number svg {
    width: 24px;
    height: 24px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.roadmap-step.final .roadmap-number {
    background-color: var(--accent-color);
}

.roadmap-step.final.active .roadmap-number svg {
    opacity: 1;
    transform: scale(1);
}

.roadmap-step.active .roadmap-number {
    border-color: var(--accent-color);
    color: var(--text-primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(146, 126, 211, 0.3);
}

.roadmap-step:nth-child(6).active .roadmap-number {
    transform: translateX(-50%) scale(1.1);
}

.roadmap-step.active .roadmap-number::after {
    background-color: var(--accent-color);
}

.roadmap-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.roadmap-step.active .roadmap-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Left side positioning (steps 1, 3) */
.roadmap-step:nth-child(2) .roadmap-content,
.roadmap-step:nth-child(4) .roadmap-content {
    position: absolute;
    right: calc(50% + 130px);
    top: 0;
    width: calc(50vw - 200px);
    max-width: 300px;
    text-align: right;
    padding-right: 20px;
}

/* Right side positioning (steps 2, 4) */
.roadmap-step:nth-child(3) .roadmap-content,
.roadmap-step:nth-child(5) .roadmap-content {
    position: absolute;
    left: calc(50% + 130px);
    top: 0;
    width: calc(50vw - 200px);
    max-width: 300px;
    text-align: left;
    padding-left: 20px;
}

/* Center positioning (final step) */
.roadmap-step:nth-child(6) .roadmap-content {
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.roadmap-step:nth-child(6).active .roadmap-content {
    transform: translateX(-50%) translateY(0);
}

.roadmap-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.roadmap-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive Design for Roadmap */
@media (max-width: 768px) {
    .roadmap-container {
        padding: 0 40px;
    }

    .roadmap-step {
        margin: 120px 0;
    }

    .roadmap-number {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    .roadmap-step.active .roadmap-number {
        transform: translateX(-50%) scale(1.1) !important;
    }

    .roadmap-number::after {
        display: none;
    }

    .roadmap-step:nth-child(2) .roadmap-content,
    .roadmap-step:nth-child(3) .roadmap-content,
    .roadmap-step:nth-child(4) .roadmap-content,
    .roadmap-step:nth-child(5) .roadmap-content {
        position: static;
        width: 100%;
        max-width: none;
        text-align: center;
        padding: 20px 0 0 0;
        margin-top: 80px;
    }

    .roadmap-step:nth-child(6) .roadmap-content {
        position: static;
        width: 100%;
        max-width: none;
        text-align: center;
        padding: 20px 0 0 0;
    }

    .roadmap-step:nth-child(6).active .roadmap-content {
        transform: none;
    }

    .roadmap-title {
        font-size: 18px;
    }

    .roadmap-description {
        font-size: 14px;
    }
}

.bottom-cta-content {
  display: flex;
  justify-content: center; /* centers horizontally */
}

.bottom-cta{
    position: relative;
    z-index: 3;
}

/* === FOOTER === */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    position: relative;
    z-index: 3;
    margin-top: 60px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Light mode - dark footer */
.light-mode .footer {
    background-color: var(--bg-primary-dark);
    border-top-color: var(--border-dark);
}

/* Dark mode - uses existing secondary background */
.dark-mode .footer {
    background-color: var(--bg-secondary-dark);
    border-top-color: var(--border-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 32px;
    border-radius: 6px;
}

.footer-text {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
}

/* Light mode - dark text on light footer */
.light-mode .footer-text {
    color: var(--text-primary-dark);
}

/* Dark mode - light text on dark footer */
.dark-mode .footer-text {
    color: var(--text-primary-dark);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-social:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(146, 126, 211, 0.3);
}

.footer-social svg {
    transition: transform 0.3s ease;
}

.footer-social:hover svg {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
        margin-top: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-section {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0;
    }

    .footer-content {
        gap: 15px;
    }

    .footer-logo img {
        height: 28px;
    }

    .footer-text {
        font-size: 13px;
    }

    .footer-social {
        width: 40px;
        height: 40px;
    }
}

/* === CONTACT PAGE STYLES === */
.contact-hero {
    background-color: var(--bg-primary);
    padding: 140px 0 60px;
    text-align: center;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-main {
    background-color: var(--bg-primary);
    padding: 40px 0 100px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Info Sidebar */
.contact-info {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.contact-card-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-card-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.accent-text {
    color: var(--accent-color);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-text p {
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-note {
    font-size: 13px;
    color: var(--text-tertiary);
}

.contact-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid var(--accent-color);
}

.highlight-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.highlight-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(146, 126, 211, 0.8) 100%);
    color: white;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 16px;
    opacity: 0.9;
}

.contact-form {
    padding: 40px;
}

.form-section {
    margin-bottom: 8px;
}

.form-section:last-of-type {
    margin-bottom: 30px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.optional-badge {
    background-color: var(--accent-color);
    color: white;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-section-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(146, 126, 211, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.checkbox-item {
    position: relative;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-item label {
    display: block;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
}

.checkbox-item input[type="checkbox"]:checked + label {
    border-color: var(--accent-color);
    background: rgba(146, 126, 211, 0.1);
}

.checkbox-item label:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(146, 126, 211, 0.1);
}

.checkbox-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.checkbox-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.form-submit {
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
    padding: 18px 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        position: static;
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 32px;
    }

    .contact-hero {
        padding: 120px 0 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .form-header,
    .contact-form {
        padding: 30px 20px;
    }

    .contact-card {
        padding: 25px;
    }

    .contact-layout {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 28px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .form-section-title {
        font-size: 18px;
    }

    .contact-detail {
        align-items: center;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0;
    z-index: 10000;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    background: #10b981;
    color: white;
}

.notification-error .notification-icon {
    background: #ef4444;
    color: white;
}

.notification-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: var(--glass-border);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}

/* Add these mobile-specific styles at the end of your styles.css */

/* === MOBILE OPTIMIZATIONS === */

/* Base mobile fixes */
@media (max-width: 768px) {

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Container padding adjustment */
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    /* Header adjustments */
    .header {
        padding: 12px 0;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo img {
        height: 40px;
    }

    /* Mobile menu improvements */
    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background-color: var(--bg-primary);
        backdrop-filter: blur(20px);
        transition: left 0.3s ease;
        padding: 30px 16px;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .nav-link {
        font-size: 18px;
        padding: 12px 0;
        display: block;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    /* Theme toggle and CTA adjustments */
    .nav-actions {
        gap: 12px;
    }

    .theme-toggle-track {
        width: 50px;
        height: 28px;
    }

    .theme-toggle-thumb {
        width: 20px;
        height: 20px;
    }

    .light-mode .theme-toggle-thumb {
        transform: translateX(22px);
    }

    .cta-button {
        display: none;
    }

    /* Hero section mobile optimization */
    .hero {
        height: auto;
        min-height: 600px;
        padding: 100px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 16px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        height: 300px;
        margin-top: 20px;
    }

    .hero-image img {
        max-height: 280px;
        width: auto;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-line {
        white-space: normal;
        display: block;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .hero-disclaimer {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Triangulated bar mobile fix */
    .triangulated-bar {
        height: 80px;
        clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0% 100%);
    }

    /* Section spacing */
    .what-we-do,
    .roadmap,
    .pricing,
    .contact {
        padding: 60px 0;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 30px;
        padding: 0 16px;
    }

    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
        padding: 0 8px;
    }

    .content p {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 16px;
    }

    /* Button mobile optimization */
    .btn {
        padding: 14px 20px;
        font-size: 15px;
        min-width: 140px;
    }

    .btn:hover {
        padding-right: 36px;
    }

    /* Roadmap mobile optimization */
    .roadmap-container {
        padding: 0 20px;
    }

    .roadmap-line {
        left: 30px;
        width: 3px;
    }

    .roadmap-step {
        margin: 100px 0;
        padding-left: 0;
    }

    .roadmap-number {
        left: 0 !important;
        right: auto !important;
        transform: translateX(0) !important;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .roadmap-step.active .roadmap-number {
        transform: translateX(0) scale(1.1) !important;
    }

    .roadmap-number::after {
        display: none;
    }

    .roadmap-step:nth-child(2) .roadmap-content,
    .roadmap-step:nth-child(3) .roadmap-content,
    .roadmap-step:nth-child(4) .roadmap-content,
    .roadmap-step:nth-child(5) .roadmap-content {
        position: static;
        width: 100%;
        max-width: none;
        text-align: left;
        padding: 0 0 0 70px;
        margin-top: 0;
    }

    .roadmap-step:nth-child(6) .roadmap-content {
        position: static;
        width: 100%;
        max-width: none;
        text-align: left;
        padding: 0 0 0 70px;
        margin-top: 0;
    }

    .roadmap-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .roadmap-description {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Pricing mobile optimization */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .pricing-card {
        padding: 30px 20px;
        transform: none !important;
    }

    .pricing-card.popular {
        transform: none !important;
        order: -1;
    }

    .pricing-card:hover {
        transform: translateY(-5px) !important;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px) !important;
    }

    .pricing-header h3 {
        font-size: 22px;
    }

    .amount {
        font-size: 40px;
    }

    .features {
        margin-bottom: 30px;
        height: 50%;
    }

    .features li {
        padding: 10px 0;
        font-size: 15px;
    }

    /* Contact page mobile optimization */
    .contact-hero {
        padding: 100px 0 40px;
    }

    .contact-hero-title {
        font-size: 28px;
        padding: 0 16px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
        padding: 0 16px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }

    .contact-info {
        position: static;
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .contact-detail {
        gap: 12px;
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .form-header {
        padding: 30px 20px 24px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .form-header p {
        font-size: 15px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px;
        font-size: 15px;
    }

    .form-section {
        margin-bottom: 24px;
    }

    .form-section-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .form-section-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .checkbox-item label {
        padding: 16px;
    }

    .checkbox-content h4 {
        font-size: 15px;
    }

    .checkbox-content p {
        font-size: 13px;
    }

    /* Footer mobile optimization */
    .footer {
        padding: 30px 0;
        margin-top: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .footer-logo img {
        height: 28px;
    }

    .footer-text {
        font-size: 13px;
        text-align: center;
    }

    /* Background circles mobile adjustment */
    .circle-1,
    .circle-2,
    .circle-3,
    .circle-4,
    .circle-5 {
        display: none;
    }

    /* Keep only dust particles on mobile for performance */
    .dust {
        display: block;
    }

    /* Notification mobile adjustment */
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }

    .theme-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-disclaimer {
        font-size: 12px;
    }

    .section-title {
        font-size: 20px;
    }

    .content p {
        font-size: 15px;
    }

    .btn {
        padding: 12px 18px;
        font-size: 14px;
    }

    .amount {
        font-size: 36px;
    }

    .roadmap-title {
        font-size: 16px;
    }

    .roadmap-description {
        font-size: 13px;
    }

    .contact-hero-title {
        font-size: 24px;
    }

    .form-header h2 {
        font-size: 20px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Disable canvas trail on touch devices for performance */
    #trail-canvas {
        display: none;
    }

    /* Increase tap targets */
    .btn,
    .nav-link,
    .theme-toggle,
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .btn:hover,
    .pricing-card:hover,
    .nav-link:hover {
        transform: none;
    }

    /* Simplify animations for better performance */
    .circle,
    .dust {
        animation: none;
    }
}

.features li.pricing-highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.setup-cost{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.industry-option {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary, #fff);
}

