:root {
    --bg-color: #050914;
    --text-primary: #f0f4f8;
    --text-secondary: #a0aec0;
    --accent-gold: #d4af37;
    --accent-gold-glow: rgba(212, 175, 55, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --blob-1: #1e3a8a;
    --blob-2: #854d0e;
    --blob-3: #0f172a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Noto Sans SC', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.hidden {
    display: none !important;
}

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    filter: blur(120px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 60vw;
    height: 60vw;
    background: var(--blob-1);
    top: -10vw;
    left: -10vw;
}

.blob-2 {
    width: 50vw;
    height: 50vw;
    background: var(--blob-2);
    bottom: -10vw;
    right: -10vw;
    animation-delay: -5s;
}

.blob-3 {
    width: 40vw;
    height: 40vw;
    background: var(--blob-3);
    top: 40vh;
    left: 30vw;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 5vh) scale(1.1); }
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

/* Buttons */
.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    background: var(--glass-bg);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #aa842c 100%);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--accent-gold-glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-gold-glow);
}

/* Layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero {
    text-align: center;
    padding: 6rem 0 4rem;
}

.hero-label {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.highlight {
    background: linear-gradient(135deg, #d4af37, #fdf5a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 850px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Credibility Section */
.credibility-section {
    padding-bottom: 6rem;
}

.credibility-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, rgba(212,175,55,0.05) 50%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--glass-border);
}

.stat-box {
    text-align: left;
    padding: 0.8rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
}

.stat-icon {
    color: var(--accent-gold);
    width: 28px;
    height: 28px;
    opacity: 1;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-box h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.stat-box p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding-bottom: 6rem;
}

.service-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.card-icon {
    flex-shrink: 0;
    color: var(--accent-gold);
    width: 32px;
    height: 32px;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.glass-card p {
    color: var(--text-secondary);
}

/* Capacity Section */
.capacity-section {
    padding-bottom: 6rem;
}

.capacity-banner {
    background: radial-gradient(circle at right, rgba(212, 175, 55, 0.08) 0%, var(--glass-bg) 80%);
}

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

.capacity-text {
    flex: 1.2;
}

.capacity-text h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.capacity-numbers {
    flex: 0.8;
    text-align: right;
    border-left: 1px solid var(--glass-border);
    padding-left: 3rem;
}

.range-highlight {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px var(--accent-gold-glow);
}

.range-sub {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.capacity-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

/* Contact */
.contact-section {
    padding-bottom: 6rem;
}

.secure-icon {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.contact-card {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--glass-bg), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-card p {
    color: var(--text-secondary);
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    max-width: 600px;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Navigation Links */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-gold);
}

/* Page Headers */
.page-header {
    text-align: center;
    padding: 6rem 0 3rem;
}

/* Specific Sections */
.text-card {
    margin-bottom: 4rem;
    padding: 3rem 4rem;
}

.text-card p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.text-card h2 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-gold);
    opacity: 0.8;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.step-divider {
    width: 2px;
    height: 60px;
    background: var(--glass-border);
    margin: 1rem 0 1rem 1.5rem;
}

.contact-page-section {
    max-width: 700px;
    margin: 0 auto 6rem;
}

/* Responsive */
@media (max-width: 900px) {
    .container-flex {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .capacity-numbers {
        border-left: none;
        border-top: 1px solid var(--glass-border);
        padding-left: 0;
        padding-top: 2rem;
        text-align: center;
    }
    .credibility-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    .stat-box {
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero {
        padding: 3rem 0 2rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .glass-card {
        padding: 1.5rem;
    }
    .capacity-banner {
        padding: 2.5rem 1.5rem;
    }
    .range-highlight {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .service-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.8rem;
    }
    .stat-box {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .stat-box {
        gap: 0.8rem;
    }
    .stat-box h4 {
        font-size: 1.05rem;
    }
    .stat-box p {
        font-size: 0.8rem;
    }
    .nav-links {
        gap: 0.8rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    .logo img {
        height: 28px !important;
    }
    .nav-links {
        font-size: 0.8rem;
        gap: 0.6rem;
    }
    .range-highlight {
        font-size: 1.8rem;
    }
}
