:root {
    --bg: #0b0f1a;
    --surface: #11162a;
    --card: #151b36;
    --primary: #7c7cff;
    --secondary: #a78bfa;
    --accent: #22d3ee;
    --text: #e5e7eb;
    --muted: #9ca3af;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100vw;
    overflow-x: hidden; /* Shmang horizontal scroll */
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
}

/* Siguro që të gjitha sections janë 100vw */
section {
    width: 100%;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;

}

.navbar {
    background: rgba(11, 15, 26, .75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    color: var(--muted)
}

.nav-link:hover {
    color: var(--primary)
}

.btn-primary {
    border: none;
    border-radius: 50px;
    padding: .75rem 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #0b0f1a;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    width: 100vw;
    height: 100vh;
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 124, 255, .35), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(34, 211, 238, .25), transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(167, 139, 250, .30), transparent 40%);
    filter: blur(80px);
    animation: move 15s linear infinite;
}

@keyframes move {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--muted)
}

.hero img {
    border-radius: 32px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-25px)
    }
}

.stats {
    padding: 5rem 0
}

.stat-card {
    background: var(--card);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .06);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features {
    padding: 8rem 0
}

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

.section-title h2 {
    font-size: 3rem;
    font-weight: 900
}

.feature-card {
    background: var(--card);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .06);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin-bottom: 1.5rem;
}

.how {
    padding: 8rem 0
}

.step {
    text-align: center;
    padding: 2rem
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.pricing {
    padding: 8rem 0;
    background: var(--surface)
}

.pricing-card {
    background: var(--card);
    border-radius: 30px;
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
}

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

.pricing-price {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-features {
    list-style: none;
    padding: 2rem 0
}

.pricing-features li {
    padding: .5rem 0;
    color: var(--muted)
}

.cta {
    padding: 8rem 0;
    background: var(--card);
    text-align: center;
}

footer {
    background: #060812;
    color: var(--muted);
    padding: 4rem 0 2rem
}

.who-we-are {
    padding: 8rem 0;
    background: var(--surface);
}

.info-card {
    background: var(--card);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, .06);
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.info-list li {
    padding: 0.75rem 0;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

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

.info-list strong {
    color: var(--text);
    font-weight: 600;
}

.capability-card {
    background: var(--card);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.capability-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin-bottom: 1.5rem;
}

.mission-card {
    background: linear-gradient(135deg, rgba(124, 124, 255, 0.1), rgba(34, 211, 238, 0.1));
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, .08);
}

.mission-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Dataset Showcase Section */
.dataset-showcase {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Coverage Stats */
.coverage-stat {
    background: rgba(21, 27, 54, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .3s;
}

.coverage-stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(124, 124, 255, .3);
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary);
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

/* Coverage Cards */
.coverage-card {
    background: rgba(21, 27, 54, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.coverage-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coverage-card .lead {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Accordion Styling */
.accordion-item {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    padding: 18px 22px;
    border: none;
    transition: .3s;
}

.accordion-button:not(.collapsed) {
    background: rgba(124, 124, 255, .12);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: rgba(0, 0, 0, .2);
    padding: 25px;
}

/* Region Grid */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.region-item {
    background: rgba(124, 124, 255, .08);
    padding: 12px 16px;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: .3s;
}

.region-item:hover {
    background: rgba(124, 124, 255, .15);
    border-color: var(--primary);
}

.region-code {
    display: inline-block;
    background: var(--primary);
    color: var(--bg);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11px;
    margin-right: 8px;
}

/* Product Grid */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-tag {
    background: rgba(167, 139, 250, .12);
    color: var(--secondary);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(167, 139, 250, .2);
    transition: .3s;
}

.product-tag:hover {
    background: rgba(167, 139, 250, .2);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* Coverage CTA */
.coverage-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 124, 255, .15), rgba(34, 211, 238, .15));
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.coverage-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 15px;
}

.coverage-cta p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 25px;
}

.coverage-cta .btn-primary {
    padding: 16px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    font-weight: 700;
    font-size: 17px;
    color: var(--bg);
    transition: .3s;
    box-shadow: 0 10px 40px rgba(124, 124, 255, .4);
}

.coverage-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(124, 124, 255, .6);
}

/* Features Section */
.features {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(21, 27, 54, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(124, 124, 255, .3);
}

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

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Accordion Styling - Premium Version */
.accordion-item {
    background: linear-gradient(135deg, rgba(21, 27, 54, 0.6), rgba(17, 22, 42, 0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 124, 255, .15);
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
    transition: .3s;
}

.accordion-item:hover {
    border-color: rgba(124, 124, 255, .3);
    box-shadow: 0 8px 32px rgba(124, 124, 255, .2);
}

.accordion-button {
    background: linear-gradient(135deg, rgba(124, 124, 255, .08), rgba(167, 139, 250, .06));
    color: var(--text);
    font-weight: 700;
    font-size: 16px;
    padding: 20px 28px;
    border: none;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.accordion-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: .3s;
}

.accordion-button:hover::before {
    opacity: 1;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(124, 124, 255, .18), rgba(167, 139, 250, .12));
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:not(.collapsed)::before {
    opacity: 1;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(124, 124, 255, .2);
    border-color: transparent;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
    transition: .3s;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(220deg);
}

.accordion-body {
    background: rgba(11, 15, 26, .4);
    padding: 0;
    border-top: 1px solid rgba(124, 124, 255, .1);
}

/* Table Layout for Regions */
.region-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.region-table thead {
    background: linear-gradient(135deg, rgba(124, 124, 255, .15), rgba(167, 139, 250, .1));
}

.region-table th {
    padding: 16px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    border-bottom: 2px solid rgba(124, 124, 255, .2);
}

.region-table tbody tr {
    transition: .2s;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.region-table tbody tr:hover {
    background: rgba(124, 124, 255, .08);
}

.region-table tbody tr:last-child {
    border-bottom: none;
}

.region-table td {
    padding: 14px 24px;
    font-size: 14px;
    color: var(--text);
}

.region-table .region-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.5px;
    min-width: 45px;
    box-shadow: 0 4px 12px rgba(124, 124, 255, .3);
}

/* Grid Layout for Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    padding: 24px;
}

.product-tag {
    background: linear-gradient(135deg, rgba(167, 139, 250, .12), rgba(124, 124, 255, .08));
    color: var(--text);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(167, 139, 250, .2);
    transition: .3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    transition: .5s;
}

.product-tag:hover::before {
    left: 100%;
}

.product-tag:hover {
    background: linear-gradient(135deg, rgba(167, 139, 250, .2), rgba(124, 124, 255, .15));
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(167, 139, 250, .3);
    color: var(--secondary);
}

/* Category Count Badge */
.category-count {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(34, 211, 238, .15), rgba(34, 211, 238, .08));
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 10px;
    border: 1px solid rgba(34, 211, 238, .2);
}

/* Responsive Table for Mobile */
@media (max-width: 768px) {
    .region-table {
        display: block;
        overflow-x: auto;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
        padding: 16px;
    }

    .accordion-button {
        font-size: 14px;
        padding: 16px 20px;
    }
}