:root {
    --primary-color: #0F2E64;
    --primary-dark: #092249;
    --secondary-color: #64748b;
    --accent-color: #3B6EB9;
    --text-color: #1e293b;
    --text-light: #64748b;
    --background-color: #F5F5F5;
    --background-alt: #EFEFEF;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --gradient-primary: linear-gradient(135deg, #0F2E64 0%, #0F4C8B 100%);
    --gradient-secondary: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--background-color);
    font-feature-settings: "kern" 1;
    font-display: swap;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.875rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 46, 100, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

#main-header.scrolled {
    background-color: rgba(15, 46, 100, 0.95);
    box-shadow: var(--shadow-sm);
}

#main-header.scrolled #main-nav a {
    color: white;
}

#main-header.scrolled .logo a {
    color: white;
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

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

#main-header .logo a {
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#main-header .logo a:hover {
    color: white;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

#main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

#main-nav a {
    color: white;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.5rem 0;
}

#main-nav a:hover {
    color: white;
    opacity: 0.9;
}

#main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

#main-nav a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1001;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a, 
.dropdown-content span {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: var(--background-alt);
    color: var(--primary-color);
}

.dropdown-content a:last-child,
.dropdown-content span:last-child {
    border-bottom: none;
}

.coming-soon {
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.7;
}

.coming-soon-footer {
    color: var(--text-light);
    opacity: 0.7;
}

#main-nav .btn-primary {
    background: var(--primary-color);
    color: white;
    text-shadow: none;
    border-radius: var(--radius-md);
    padding: 0.5rem 1.25rem;
    margin-left: 0.5rem;
}

#main-nav .btn-secondary {
    color: white;
    text-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    padding: 0.5rem 1.25rem;
}

#main-nav .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

#main-nav .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

#main-nav .btn-primary::after,
#main-nav .btn-secondary::after {
    display: none;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--background-alt);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    background: radial-gradient(circle at center, #0F2E64 0%, #0A1A38 100%);
    background-color: var(--primary-color);
    color: white;
    padding: 9rem 0 5rem;
    text-align: left;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuMDMiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=');
    opacity: 0.6;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #c4d6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.features {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.stats-section {
    padding: 6rem 0;
    background: white;
    color: var(--text-color);
}

.stats-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-section .section-header h2 {
    color: var(--text-color);
    font-size: 3rem;
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

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

.stat-number-large {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-label-large {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.025em;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 4rem 0;
    }
    
    .stats-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number-large {
        font-size: 3rem;
    }
    
    .stat-label-large {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .stats-section .section-header h2 {
        font-size: 2rem;
    }
    
    .stat-number-large {
        font-size: 2.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
}

.pricing {
    padding: 6rem 0;
    background: var(--background-alt);
}

.pricing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 500;
    color: var(--text-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: var(--transition);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

input:checked + .slider {
    background: var(--gradient-primary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.save-badge {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--background-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-md);
}

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

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: normal;
}

.features-list {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list li i {
    color: var(--success-color);
}

.testimonials {
    padding: 6rem 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.cta-content .btn-primary:hover {
    background: var(--background-alt);
}

footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.footer-logo p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-logo a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-right: 1.5rem;
}

.footer-logo a::after {
    content: "→";
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-0.5rem);
    transition: all 0.3s ease;
}

.footer-logo a:hover {
    color: #ffffff;
}

.footer-logo a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 0.5rem;
    }
}

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

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

    .hero h1 {
        font-size: 2.5rem;
    }

    #main-nav {
        display: none;
    }

    #mobile-menu-toggle {
        display: block;
    }
}

#mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

#mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

#mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

#mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
    
    #mobile-menu-toggle {
        display: flex;
    }
    
    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        gap: 1rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }
    
    #main-nav.active {
        right: 0;
    }
    
    #main-nav li {
        width: 100%;
    }
    
    #main-nav a {
        padding: 0.75rem 0;
        font-size: 1rem;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    #main-nav a::after {
        display: none;
    }
    
    #main-nav .btn-primary,
    #main-nav .btn-secondary {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-content {
        max-height: 200px;
    }
    
    .dropdown-content a, 
    .dropdown-content span {
        color: var(--text-color);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 1.5rem;
    }
    
    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--primary-color);
    }
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.plan-builder {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.option-group {
    background: var(--background-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.option-group h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.macbook-options,
.payment-options,
.security-options {
    display: grid;
    gap: 1rem;
}

.macbook-options {
    grid-template-columns: repeat(3, 1fr);
}

.payment-options,
.security-options {
    grid-template-columns: repeat(2, 1fr);
}

.option-card {
    position: relative;
    cursor: pointer;
}

.option-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-content {
    display: block;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.option-card input:checked + .option-content {
    border-color: var(--primary-color);
    background: var(--background-alt);
}

.option-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.option-content p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.price-summary {
    background: var(--background-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.price-summary h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-light);
}

.price-row.total {
    border-top: 2px solid var(--border-color);
    margin-top: 1rem;
    padding-top: 1rem;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.25rem;
}

.subscription-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .plan-builder {
        grid-template-columns: 1fr;
    }

    .price-summary {
        position: static;
    }

    .macbook-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .macbook-options,
    .payment-options,
    .security-options {
        grid-template-columns: 1fr;
    }
}

.privacy-section {
    padding: 8rem 0 4rem;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-height: 80vh;
    overflow-y: auto;
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.privacy-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.effective-date {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.privacy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 6rem 0 3rem;
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }
    
    .privacy-content h2 {
        font-size: 1.25rem;
    }
}

.privacy-guarantee {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.guarantee-header {
    text-align: center;
    margin-bottom: 30px;
}

.guarantee-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.toggle-guarantee {
    margin-top: 10px;
    transition: all 0.3s ease;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.guarantee-content.active {
    display: block;
    opacity: 1;
}

.guarantee-intro {
    text-align: center;
    margin-bottom: 40px;
}

.guarantee-intro p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.guarantee-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.guarantee-point {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.guarantee-point h3 {
    color: #007bff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.guarantee-point p {
    color: #495057;
    line-height: 1.6;
}

.guarantee-footer {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

@media (min-width: 768px) {
    .guarantee-points {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .guarantee-points {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.auth-section {
    padding: 9rem 0 5rem;
    background: radial-gradient(circle at center, #0F2E64 0%, #0A1A38 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuMDMiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=');
    opacity: 0.6;
    pointer-events: none;
}

.auth-card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.auth-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.business-note {
    background: rgba(15, 46, 100, 0.05);
    border: 1px solid rgba(15, 46, 100, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.business-note p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
}

.business-note strong {
    color: var(--primary-color);
}

.business-note a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.business-note a:hover {
    color: var(--primary-dark);
}

.register-subheading {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(15, 46, 100, 0.2);
}

.password-requirements {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember {
    display: flex;
    align-items: center;
}

.remember input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.terms {
    display: flex;
    align-items: flex-start;
}

.terms input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.terms label {
    font-size: 0.875rem;
    margin: 0;
}

.terms a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

.radio-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding-left: 28px;
    margin-right: 1.5rem;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label input[type="radio"] + span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.radio-label input[type="radio"]:checked + span::before {
    border-color: var(--primary-color);
}

.radio-label input[type="radio"]:checked + span::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.radio-label span {
    font-size: 0.925rem;
    color: var(--text-color);
    font-weight: 500;
}

.info-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    background-color: var(--text-light);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    margin-left: 0.25rem;
    cursor: help;
}

.info-icon:hover {
    background-color: var(--primary-color);
}

.email-requirements {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

#business-fields,
#individual-fields {
    transition: all 0.3s ease;
    max-height: 600px;
    overflow: hidden;
}

#business-fields.visible,
#individual-fields.visible {
    opacity: 1;
    max-height: 600px;
}

#business-fields.hidden,
#individual-fields.hidden {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
}

.btn-full {
    width: 100%;
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.auth-footer p {
    margin: 0;
    font-size: 0.875rem;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.legal-section {
    padding: 8rem 0 4rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-height: 80vh;
    overflow-y: auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-nav {
    position: sticky;
    top: 100px;
    width: 250px;
    background-color: var(--background-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    margin-right: 2rem;
}

.legal-nav h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-nav ul li {
    margin-bottom: 0.75rem;
}

.legal-nav ul li a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    padding-left: 0.5rem;
}

.legal-nav ul li a:hover {
    color: var(--primary-color);
    background-color: var(--background-alt);
}

.legal-nav ul li a.active {
    color: var(--primary-color);
    font-weight: 500;
    background-color: var(--background-alt);
    padding-left: 0.75rem;
    border-left: 3px solid var(--primary-color);
}

.legal-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 992px) {
    .legal-container {
        flex-direction: column;
    }
    
    .legal-nav {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .legal-section {
        padding: 6rem 0 3rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 7rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 1rem;
    }
    
    .plan-builder {
        flex-direction: column;
    }
    
    .auth-section {
        padding: 6rem 1rem 3rem;
    }
    
    .auth-card {
        padding: 1.5rem;
    }
    
    .auth-card h2 {
        font-size: 1.5rem;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .stat {
        text-align: center;
    }
}

.radio-label.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.radio-label.disabled input[type="radio"] {
    cursor: not-allowed;
}

.radio-label.disabled span {
    color: var(--text-light);
}

.contact-section {
    padding: 5rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background-color: var(--background-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    color: white;
    font-size: 1.25rem;
}

.method-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.method-details p {
    margin-bottom: 0;
    color: var(--text-light);
}

.contact-form h2 {
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: var(--transition);
    font-family: inherit;
}

textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(15, 46, 100, 0.2);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-container {
        padding: 2rem;
    }
}

.dropdown-link {
    color: #000000 !important;
    font-weight: 500;
}

@media (max-width: 768px) {
    .dropdown-link {
        color: #000000 !important;
    }
}

#main-nav .dropdown-link {
    color: #0F2E64 !important;
    font-weight: 500;
    display: block;
    padding: 0.75rem 1rem;
    text-align: left;
}

/* For mobile navbar only */
@media (max-width: 768px) {
    #main-nav .dropdown-link {
        color: #0F2E64 !important;
        padding-left: 1.5rem; /* Keep the mobile padding consistent */
    }
}

.hero .btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: none;
    font-weight: 500;
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.how-it-works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-content {
    padding: 0 0.5rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .how-it-works {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-it-works::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.use-case {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.use-case-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.use-case-icon i {
    color: white;
    font-size: 1.5rem;
}

.use-case-content {
    flex: 1;
}

.use-case-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.use-case-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .use-cases {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .use-case {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .use-case-icon {
        margin-bottom: 1rem;
    }
}

.contact-method.hidden {
    display: none;
    visibility: hidden;
}

body.blue-bg {
    background: #0a174e;
    color: #fff;
    min-height: 100vh;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.dashboard-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.greeting {
    font-size: 1.1rem;
    color: #fff;
}
.user-avatar img {
    border-radius: 50%;
    border: 2px solid #fff;
    width: 40px;
    height: 40px;
}

.dashboard-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.card {
    background: #11235a;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    min-width: 300px;
    flex: 1 1 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #7ec4fa;
}
.card-footer {
    margin-top: 1.5rem;
}
.btn-text {
    color: #7ec4fa;
    text-decoration: underline;
    font-weight: 500;
}

.stat-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}
.stat-label {
    font-size: 1rem;
    color: #b0c4de;
}

.status-indicator.secure {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.security-details p {
    margin: 0.2rem 0;
    color: #b0c4de;
}

.subscription-summary {
    margin-top: 2rem;
}
.plan-details h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.plan-features li {
    margin-bottom: 0.3rem;
    color: #b0c4de;
}
.plan-features .check {
    color: #4ade80;
    margin-right: 0.5rem;
}
.plan-upgrade a {
    color: #7ec4fa;
    text-decoration: underline;
}

.recent-activity {
    margin-top: 2rem;
}
.recent-activity h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.activity-item {
    display: flex;
    align-items: center;
    background: #1a2a5a;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    color: #fff;
}
.activity-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}
.activity-description {
    font-weight: 500;
    color: #fff;
}
.activity-time {
    color: #b0c4de;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .dashboard-cards {
        flex-direction: column;
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .dashboard-cards {
        gap: 1rem;
    }
    .card {
        padding: 1.2rem 0.8rem;
        min-width: 0;
    }
}

.sidebar-vertical {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 80px;
    background: #11235a;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    transition: width 0.25s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 2px 0 8px rgba(0,0,0,0.08);
}
.sidebar-vertical:hover {
    width: 220px;
}
.sidebar-logo {
    margin: 2rem 0 2rem 0;
    font-size: 2rem;
    color: #7ec4fa;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.sidebar-nav {
    flex: 1;
    width: 100%;
}
.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.sidebar-nav li {
    width: 100%;
    margin-bottom: 0.2rem;
}
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    transition: background 0.2s, color 0.2s;
    width: 100%;
}
.sidebar-nav a:hover {
    background: rgba(26, 42, 90, 0.6);
    color: #7ec4fa;
}
.sidebar-nav i {
    font-size: 1.4rem;
    min-width: 24px;
    text-align: center;
}
.sidebar-label {
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.2s;
    font-weight: 500;
    font-size: 1.1rem;
}
.sidebar-vertical:hover .sidebar-label {
    opacity: 1;
}
.sidebar-footer {
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-baselock {
    color: #7ec4fa;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.with-sidebar {
    margin-left: 80px;
    transition: margin-left 0.25s cubic-bezier(0.4,0,0.2,1);
}
.sidebar-vertical:hover ~ .with-sidebar,
.sidebar-vertical:focus-within ~ .with-sidebar {
    margin-left: 220px;
}

.dashboard-main {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (max-width: 900px) {
    .sidebar-vertical {
        width: 70px;
    }
    .sidebar-vertical:hover {
        width: 180px;
    }
    .with-sidebar {
        margin-left: 70px;
    }
}
@media (max-width: 600px) {
    .sidebar-vertical {
        position: static;
        width: 100vw;
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        box-shadow: none;
        padding: 0.5rem 0;
    }
    .sidebar-logo, .sidebar-footer {
        margin: 0;
    }
    .sidebar-nav {
        flex: none;
        width: auto;
    }
    .sidebar-nav ul {
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
    .sidebar-nav li {
        margin-bottom: 0;
    }
    .sidebar-label {
        display: none;
    }
    .with-sidebar {
        margin-left: 0;
    }
}

.devices-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: #11235a;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.devices-table th, .devices-table td {
  border: 1px solid #23336a;
  padding: 1rem 0.75rem;
  text-align: left;
}

.devices-table th {
  background: #1a2a5a;
  color: #7ec4fa;
  font-weight: 600;
}

.devices-table tr:nth-child(even) {
  background: #16204a;
}

.devices-table tr:hover {
  background: #22306a;
}

.status-secure {
  color: #4ade80;
  font-weight: 600;
}

.status-warning {
  color: #facc15;
  font-weight: 600;
}

.profile-container {
  background: #11235a;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 2rem;
  margin-top: 2rem;
  color: #fff;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.profile-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.profile-avatar img {
  border-radius: 50%;
  border: 2px solid #7ec4fa;
  width: 100px;
  height: 100px;
}
.change-avatar-btn {
  margin-top: 0.5rem;
  background: #1a2a5a;
  color: #7ec4fa;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.95rem;
}
.profile-details {
  flex: 1;
}
.profile-details h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.profile-details p {
  margin-bottom: 0.5rem;
  color: #b0c4de;
}
.subscription-status .badge.premium {
  background: #4ade80;
  color: #11235a;
  border-radius: 6px;
  padding: 0.2rem 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.profile-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.profile-section {
  background: #1a2a5a;
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  margin-bottom: 0;
  color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.profile-section h3 {
  color: #7ec4fa;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.danger-zone {
  grid-column: span 2;
  background: #2d1a1a;
  color: #facc15;
  border: 1px solid #facc15;
}

@media (max-width: 900px) {
  .profile-sections {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .profile-header {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

.profile-section label {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.2rem;
  display: block;
}

.profile-section .profile-field {
  color: #b0c4de;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #7ec4fa;
  margin: 0;
}

.checkbox-group label {
  color: #fff;
  font-weight: 400;
  margin: 0;
  cursor: pointer;
}

.sidebar-nav .dropdown-trigger {
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative;
}

.sidebar-nav .dropdown-trigger::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s;
    font-size: 0.8rem;
    opacity: 0.8;
}

.sidebar-nav .dropdown.active .dropdown-trigger::after {
    transform: translateY(-50%) rotate(90deg);
}

.sidebar-nav .dropdown-content {
    display: none;
    position: static;
    background: transparent;
    padding: 0;
    margin: 0;
}

.sidebar-nav .dropdown.active .dropdown-content {
    display: block;
}

.sidebar-nav .dropdown-content a {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    opacity: 0.85;
    color: #fff;
    padding-left: 3.6rem;
    background: rgba(26, 42, 90, 0.4);
    text-align: left;
}

.sidebar-nav .dropdown-content a:hover,
.sidebar-nav .dropdown-content a.active {
    opacity: 1;
    background: rgba(26, 42, 90, 0.6);
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sidebar-nav li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.sidebar-nav .dropdown {
    margin: 0;
    padding: 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    transition: background 0.2s, color 0.2s;
    width: 100%;
}

.sidebar-nav a:hover {
    background: rgba(26, 42, 90, 0.6);
    color: #7ec4fa;
}

.sidebar-nav i {
    font-size: 1.4rem;
    min-width: 24px;
    text-align: center;
}

.sidebar-nav li:not(.dropdown) {
    margin-bottom: 0;
}

.sidebar-nav .dropdown {
    margin-bottom: 0.5rem;
}

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

.order-card {
    background: #11235a;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.order-card-header {
    margin-bottom: 1.5rem;
}

.order-card-header i {
    font-size: 3rem;
    color: #7ec4fa;
    margin-bottom: 1rem;
}

.order-card-header h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.order-card-body {
    margin-bottom: 2rem;
}

.order-card-body p {
    color: #b0c4de;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    color: #fff;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list li i {
    color: #4ade80;
}

/* ============================================================================
   GDPR COOKIE CONSENT & PRIVACY CONTROLS
   ============================================================================ */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #11235a 0%, #1a2a5a 100%);
    border-top: 3px solid #7ec4fa;
    color: #fff;
    z-index: 10000;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    animation: slideUpIn 0.5s ease-out;
}

@keyframes slideUpIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text h3 {
    color: #7ec4fa;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-consent-text p {
    margin: 0;
    color: #b0c4de;
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cookie-btn.btn-primary {
    background: #7ec4fa;
    color: #11235a;
}

.cookie-btn.btn-primary:hover {
    background: #5db3f5;
    transform: translateY(-1px);
}

.cookie-btn.btn-secondary {
    background: transparent;
    color: #7ec4fa;
    border: 2px solid #7ec4fa;
}

.cookie-btn.btn-secondary:hover {
    background: #7ec4fa;
    color: #11235a;
}

.cookie-btn.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn.btn-outline:hover {
    background: #fff;
    color: #11235a;
}

.cookie-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #b0c4de;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.cookie-close:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 15000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-modal-content {
    background: #11235a;
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    color: #fff;
    position: relative;
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #2a3a6a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-header h2 {
    color: #7ec4fa;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-close {
    background: none;
    border: none;
    color: #b0c4de;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #1a2a5a;
    border-radius: 12px;
    border: 1px solid #2a3a6a;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cookie-category-header h3 {
    color: #7ec4fa;
    margin: 0;
    font-size: 1.2rem;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2a3a6a;
    transition: 0.3s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #b0c4de;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #7ec4fa;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
    background-color: #fff;
}

input:disabled + .toggle-slider {
    background-color: #4ade80;
    cursor: not-allowed;
}

input:disabled + .toggle-slider:before {
    background-color: #fff;
}

.cookie-category p {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-details {
    background: #11235a;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #7ec4fa;
    font-size: 0.9rem;
    color: #b0c4de;
    line-height: 1.5;
}

.privacy-links {
    background: #1a2a5a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #2a3a6a;
    margin-top: 1rem;
}

.privacy-links h3 {
    color: #7ec4fa;
    margin: 0 0 1rem 0;
}

.privacy-links ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.privacy-links li {
    color: #b0c4de;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.privacy-links li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.privacy-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.privacy-buttons .btn-outline {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #7ec4fa;
    border: 2px solid #7ec4fa;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-buttons .btn-outline:hover {
    background: #7ec4fa;
    color: #11235a;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem 2rem;
    border-top: 1px solid #2a3a6a;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-modal-footer button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-modal-footer .btn-primary {
    background: #7ec4fa;
    color: #11235a;
}

.cookie-modal-footer .btn-primary:hover {
    background: #5db3f5;
}

.cookie-modal-footer .btn-secondary {
    background: #2a3a6a;
    color: #fff;
}

.cookie-modal-footer .btn-secondary:hover {
    background: #3a4a7a;
}

.privacy-control-panel {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9000;
}

.privacy-panel-btn {
    background: #7ec4fa;
    color: #11235a;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(126, 196, 250, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-panel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(126, 196, 250, 0.4);
}

.privacy-panel-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #11235a;
    border-radius: 12px;
    padding: 1rem;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 1px solid #2a3a6a;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-panel-menu h4 {
    color: #7ec4fa;
    margin: 0 0 1rem 0;
    font-size: 1rem;
    text-align: center;
}

.privacy-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem;
    background: none;
    border: none;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.privacy-menu-item:hover {
    background: #1a2a5a;
    color: #7ec4fa;
}

.privacy-menu-item:last-child {
    margin-bottom: 0;
}

.privacy-menu-item i {
    width: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .cookie-consent-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .cookie-modal {
        padding: 1rem;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
    
    .privacy-links ul {
        grid-template-columns: 1fr;
    }
    
    .privacy-buttons {
        flex-direction: column;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .privacy-control-panel {
        bottom: 1rem;
        right: 1rem;
    }
    
    .privacy-panel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .privacy-panel-menu {
        bottom: 60px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 1rem 0;
    }
    
    .cookie-consent-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .cookie-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .privacy-panel-menu {
        min-width: 160px;
    }
}

.cookie-consent-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease-out;
}

.cookie-consent-banner:focus-within,
.privacy-control-panel:focus-within {
    outline: 2px solid #7ec4fa;
    outline-offset: 2px;
}

button:focus,
.privacy-menu-item:focus {
    outline: 2px solid #7ec4fa;
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    .cookie-consent-banner {
        border-top-width: 5px;
    }
    
    .cookie-btn {
        border-width: 2px;
    }
    
    .toggle-slider {
        border: 2px solid #fff;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    background: var(--background-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.team-photo {
    margin-bottom: 1.5rem;
}

.team-photo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    transition: var(--transition);
}

.team-photo img:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.team-member h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-photo img {
        width: 70px;
        height: 70px;
    }
    
    .team-member {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .team-photo img {
        width: 60px;
        height: 60px;
    }
    
    .team-member h3 {
        font-size: 1.3rem;
    }
    
    .team-title {
        font-size: 1rem;
    }
} 