* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6C3CE1;
    --primary-dark: #5A2DBA;
    --primary-light: #8B6FE8;
    --secondary: #00C9A7;
    --accent: #FF6B6B;
    --dark: #1A1A2E;
    --dark-secondary: #16213E;
    --text: #2D3436;
    --text-light: #636E72;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
    --gradient: linear-gradient(135deg, #6C3CE1 0%, #00C9A7 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-badge {
    font-size: 0.6rem;
    font-weight: 700;
    background: var(--primary);
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    -webkit-text-fill-color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient);
    color: white !important;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 60, 225, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(108, 60, 225, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(108, 60, 225, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-3px);
}

/* ===== HERO ===== */
.hero {
    padding: 140px 24px 60px;
    background: linear-gradient(180deg, #F8F9FA 0%, white 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108,60,225,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(108, 60, 225, 0.12);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-company {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat span {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    -webkit-text-fill-color: var(--text-light);
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== ABOUT ===== */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.about-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== ROADMAP ===== */
.roadmap {
    padding: 80px 0;
    background: var(--bg-light);
}

.roadmap-phases {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.phase-badge {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phase-1 { background: #E8F5E9; color: #2E7D32; }
.phase-2 { background: #E3F2FD; color: #0D47A1; }
.phase-3 { background: #FFF3E0; color: #E65100; }
.phase-4 { background: #F3E5F5; color: #6A1B9A; }
.phase-5 { background: #FCE4EC; color: #880E4F; }

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.timeline-item {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.timeline-month {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.timeline-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.timeline-tag {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    background: var(--bg-light);
    color: var(--text-light);
}

/* ===== PROCESS ===== */
.process {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.step {
    text-align: center;
    padding: 28px 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 12px;
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.step p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.process-cta {
    text-align: center;
}

/* ===== FEE SECTION ===== */
.fee {
    padding: 80px 0;
    background: var(--bg-light);
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.fee-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.fee-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.fee-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #f8f6ff 0%, white 100%);
}

.fee-header h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.fee-amount {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.fee-body ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.fee-body ul li {
    padding: 6px 0;
    color: var(--text);
    font-size: 0.95rem;
}

.fee-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    padding-top: 12px;
    border-top: 1px solid var(--bg-light);
}

.fee-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.fee-disclaimer h4 {
    color: var(--dark);
    margin-bottom: 12px;
}

.fee-disclaimer ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.fee-disclaimer ul li {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-light);
    background: #FFF3E0;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #FF9800;
}

/* ===== DOCUMENTS ===== */
.documents {
    padding: 80px 0;
    background: var(--white);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.doc-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.doc-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.doc-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.doc-card h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.doc-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.doc-required {
    display: inline-block;
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    background: #E8F5E9;
    color: #2E7D32;
}

.doc-optional {
    display: inline-block;
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    background: #FFF3E0;
    color: #E65100;
}

.docs-note {
    max-width: 700px;
    margin: 32px auto 0;
    text-align: center;
    background: #E3F2FD;
    padding: 16px 24px;
    border-radius: var(--radius);
    border-left: 4px solid #0D47A1;
}

.docs-note p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== QUALITY GATE ===== */
.qualitygate {
    padding: 80px 0;
    background: var(--bg-light);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.quality-item {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-left: 3px solid var(--primary);
}

.quality-item h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.quality-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.quality-outcomes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.outcome {
    padding: 24px;
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.outcome.pass {
    border-left: 4px solid #4CAF50;
}

.outcome.fail {
    border-left: 4px solid #FF9800;
}

.outcome h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.outcome p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.footer-brand .tagline {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: white;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    margin-top: 8px;
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .roadmap-timeline { grid-template-columns: repeat(2, 1fr); }
    .quality-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }
    .nav-links.active { transform: translateY(0); }

    .hero h1 { font-size: 2.2rem; }
    .hero-stats { gap: 30px; }
    .hero-stats .stat span { font-size: 2rem; }

    .section-header h2 { font-size: 2rem; }

    .about-grid { grid-template-columns: 1fr; }
    .roadmap-timeline { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .fee-grid { grid-template-columns: 1fr; }
    .docs-grid { grid-template-columns: 1fr; }
    .quality-grid { grid-template-columns: 1fr; }
    .quality-outcomes { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; }

    .hero-company { flex-direction: column; gap: 8px; }
    .hero-logo { height: 50px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stats .stat span { font-size: 1.8rem; }
    .roadmap-phases { flex-direction: column; align-items: center; }
}