/* Base Styles */
.container {
    max-width: 1280px;
    width: 100%;
}

a {
    color: #2a2a2a;
    text-decoration: none;
}

a:hover {
    color: #555;
}

/* Navbar */
.navbar {
    background: white;
    display: flex;
    filter: drop-shadow(rgba(0, 8, 36, 0.05) 0px 4px 8px);
    padding: 3px 0px;
}

.navbar-brand {
    height: inherit;
    padding: 0;
    display: inline-block;
    line-height: 0;
    margin: 0 !important;
}

.navbar-brand svg {
    height: 30px;
    width: 120px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

#header .navbar-nav li + li {
    margin-left: 5px;
}

#header .navbar-nav li a {
    padding: 10px 15px !important;
    font-size: 16px;
    border: 0 !important;
    border-radius: 5px;
    transition: .15s ease-in-out all;
}

#header .navbar-nav li a:hover {
    background: #f5f5f5;
    color: #2a2a2a;
}

/* Utility Classes */
.flex {
    display: flex;
}

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

.flex-grow {
    flex-grow: 1;
}

.flex-none {
    flex: none;
}

.flex-justify-center {
    justify-content: center;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-gap {
    gap: 10px;
}

.margin-less {
    margin: 0 !important;
}

.border-less {
    border: 0 !important;
}

.tblue {
    color: #2a2a2a;
}

/* Buttons */
.btn-default {
    background: #e5e5e5 !important;
    color: #2a2a2a !important;
}

.btn-primary {
    background-color: #2a2a2a !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #444 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Section - New Design */
.hero-new {
    background: #2a2a2a;
    color: #fff;
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    position: relative;
}

.hero-features {
    margin-bottom: 32px;
    position: relative;
}

.hero-check {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 4px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

.btn-hero-primary {
    background: #fff !important;
    color: #2a2a2a !important;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    background: #f0f0f0 !important;
    color: #2a2a2a !important;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2) !important;
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

.hero-image-placeholder {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 20px;
    color: #666;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #fff;
}

.feature-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: #2a2a2a;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #fafafa;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #2a2a2a;
}

.pricing-card-featured {
    border-color: #2a2a2a;
    border-width: 3px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #2a2a2a;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-tier {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: #2a2a2a;
    margin-bottom: 24px;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 600;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 15px;
    color: #4b5563;
}

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

.btn-pricing, .btn-pricing-featured {
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.btn-pricing {
    background: #f3f4f6;
    color: #1a1a1a;
}

.btn-pricing:hover {
    background: #e5e7eb;
    transform: scale(1.02);
}

.btn-pricing-featured {
    background: #2a2a2a !important;
    color: #fff !important;
}

.btn-pricing-featured:hover {
    background: #444 !important;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pricing-note {
    font-size: 16px;
    color: #666;
    margin-top: 24px;
}

/* Apps Section */
.apps-section {
    padding: 100px 0;
    background: #fff;
}

.app-category {
    margin-bottom: 48px;
}

.app-category h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    text-align: center;
}

.app-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.app-item:hover {
    background: #fff;
    border-color: #2a2a2a;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.app-icon {
    font-size: 48px;
    margin-bottom: 12px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-icon svg {
    width: 48px;
    height: 48px;
}

.app-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Domain Section */
.domain-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: #fff;
}

.domain-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.domain-section .lead {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
}

.feature-list {
    margin-top: 32px;
}

.feature-list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-list-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-list-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-list-item p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.domain-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.domain-feature-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.domain-feature-box h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.domain-feature-box p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* OS Section */
.os-section {
    padding: 100px 0;
    background: #f9fafb;
}

.os-item {
    background: #fff;
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.os-item:hover {
    border-color: #2a2a2a;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.os-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.os-icon svg {
    width: 48px;
    height: 48px;
}

.os-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-item {
    padding: 32px 0;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section .lead {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-cta-primary {
    background: #fff !important;
    color: #2a2a2a !important;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    color: #2a2a2a !important;
}

.btn-cta-secondary {
    background: transparent !important;
    color: #fff !important;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #fff !important;
    color: #2a2a2a !important;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
div#footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
}

div#footer a {
    color: #fff;
    text-decoration: underline;
}

div#footer a:hover {
    color: #999;
}

/* Legacy styles for backward compatibility */
.section {
    padding: 80px 0;
}

h2 {
    font-size: 40px;
    font-weight: bold;
}

.distribution-item {
    align-items: center;
    background: rgb(255, 255, 255);
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 40px;
    transition: all 0.3s ease;
}

.distribution-item:hover {
    border-color: #2a2a2a;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.distribution-item a {
    font-size: 14px;
    padding: 8px 16px;
    margin-top: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    .pricing-price {
        font-size: 36px;
    }

    .domain-features-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-new {
        padding: 60px 0 40px;
    }

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

    .features-section,
    .pricing-section,
    .apps-section,
    .domain-section,
    .os-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }

    .section {
        padding: 50px 0;
    }

    .distribution-item {
        padding: 25px 20px;
    }

    .navbar-brand svg {
        height: 50px;
        width: 50px;
    }
}
