@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..900&display=swap');

/* ===================== CSS VARIABLES ===================== */
:root {
    --primary:       #1E88E5;
    --primary-dark:  #0D47A1;
    --primary-light: #E3F2FD;
    --green:         #43A047;
    --green-dark:    #2E7D32;
    --green-light:   #E8F5E9;
    --orange:        #FB8C00;
    --orange-dark:   #E65100;
    --orange-light:  #FFF3E0;
    --dark:          #0D1B2A;
    --dark2:         #1A2B3C;
    --text:          #333333;
    --text-muted:    #6B7280;
    --white:         #FFFFFF;
    --bg:            #F8FAFC;
    --border:        #E2E8F0;
    --shadow:        0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg:     0 12px 40px rgba(0,0,0,0.14);
    --radius:        12px;
    --radius-lg:     20px;
    --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Afacad Flux', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 15px;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ===================== TOP BAR ===================== */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.96rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar a { color: rgba(255,255,255,0.8); }
.topbar a:hover { color: var(--orange); }
.topbar .divider { margin: 0 12px; opacity: 0.3; }

/* ===================== NAVBAR ===================== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 0;
    transition: var(--transition);
    z-index: 1000;
}
.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}
.navbar-brand img { height: 52px; width: auto; }
.navbar-brand span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.3px;
}
.navbar-brand span em {
    font-style: normal;
    color: var(--orange);
}
.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    font-size: 1.12rem;
    padding: 28px 16px !important;
    position: relative;
    transition: var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 16px; right: 16px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}
.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}
.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    margin-left: 10px;
    font-weight: 700;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--orange-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(251,140,0,0.35);
}

/* ===================== HERO SLIDER ===================== */
.hero-slider {
    position: relative;
    overflow: hidden;
}
.carousel-item {
    height: 620px;
    position: relative;
}
.carousel-item .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.carousel-item.active .slide-bg {
    transform: scale(1);
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13,71,161,0.82) 0%, rgba(13,71,161,0.55) 50%, rgba(67,160,71,0.35) 100%);
}
.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}
.slide-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.slide-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.slide-title span { color: var(--orange); }
.slide-desc {
    font-size: 1.18rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.7;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    top: 50%; transform: translateY(-50%);
    bottom: auto;
    backdrop-filter: blur(4px);
    transition: var(--transition);
    margin: 0 20px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--orange);
    border-color: var(--orange);
}
.carousel-indicators {
    bottom: 24px;
}
.carousel-indicators button {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
    transition: var(--transition);
}
.carousel-indicators button.active {
    background: var(--orange);
    width: 28px;
    border-radius: 5px;
}

/* ===================== BUTTONS ===================== */
.btn-primary-custom {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.12rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Afacad Flux', sans-serif;
}
.btn-primary-custom:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251,140,0,0.35);
    color: var(--white);
}
.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
    padding: 11px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.12rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Afacad Flux', sans-serif;
}
.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-blue {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.12rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Afacad Flux', sans-serif;
}
.btn-blue:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30,136,229,0.35);
    color: var(--white);
}
.btn-green {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.12rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Afacad Flux', sans-serif;
}
.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67,160,71,0.35);
    color: var(--white);
}

/* ===================== SECTION COMMONS ===================== */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 1.07rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-tag.blue { background: var(--primary-light); color: var(--primary-dark); }
.section-tag.green { background: var(--green-light); color: var(--green-dark); }

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-title.white { color: var(--white); }
.section-title.white span { color: var(--orange); }

.section-subtitle {
    font-size: 1.12rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 600px;
}
.section-divider {
    width: 56px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--orange));
    border-radius: 2px;
    margin: 16px 0 32px;
}
.section-divider.center { margin: 16px auto 32px; }

/* ===================== STATS BAR ===================== */
.stats-bar {
    background: var(--dark);
    padding: 0;
}
.stat-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-number span { color: var(--orange); }
.stat-label {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ===================== CARDS ===================== */
.card-service {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.card-service::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--green));
    transform: scaleX(0);
    transition: var(--transition);
}
.card-service:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.card-service:hover::before { transform: scaleX(1); }
.card-service.orange::before { background: linear-gradient(90deg, var(--orange), var(--orange-dark)); }
.card-service.green::before { background: linear-gradient(90deg, var(--green), var(--green-dark)); }

.service-icon {
    width: 70px; height: 70px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 22px;
    transition: var(--transition);
}
.service-icon.blue { background: var(--primary-light); color: var(--primary); }
.service-icon.green { background: var(--green-light); color: var(--green); }
.service-icon.orange { background: var(--orange-light); color: var(--orange); }
.card-service:hover .service-icon.blue { background: var(--primary); color: var(--white); }
.card-service:hover .service-icon.green { background: var(--green); color: var(--white); }
.card-service:hover .service-icon.orange { background: var(--orange); color: var(--white); }

.card-service h3 {
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.card-service p {
    color: var(--text-muted);
    font-size: 1.12rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.card-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.07rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.card-link:hover { color: var(--orange); gap: 10px; }

/* ===================== ABOUT SECTION ===================== */
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.about-badge {
    position: absolute;
    bottom: 28px; left: -20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 24px;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 14px;
    min-width: 200px;
}
.about-badge-icon {
    width: 48px; height: 48px;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.about-badge-text strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}
.about-badge-text span {
    font-size: 1.02rem;
    color: var(--text-muted);
}
.about-check-list { list-style: none; padding: 0; margin: 24px 0; }
.about-check-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px;
    font-size: 1.07rem;
    color: var(--text);
}
.about-check-list li i {
    color: var(--green);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===================== IMAGE + TEXT BLOCKS ===================== */
.feature-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.feature-icon-box {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* ===================== OBJECTIVES SECTION ===================== */
.objectives-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    position: relative;
    overflow: hidden;
}
.objectives-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(30,136,229,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.objectives-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(251,140,0,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.obj-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.obj-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.2);
}
.obj-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    margin-bottom: 12px;
}
.obj-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 20px;
}
.obj-card h3 {
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.obj-card p {
    color: rgba(255,255,255,0.65);
    font-size: 1.12rem;
    line-height: 1.7;
}

/* ===================== PROCESS STEPS ===================== */
.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 36px; right: -50%;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--green));
    z-index: 0;
}
.process-step:last-child::after { display: none; }
.step-circle {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.process-step h4 {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.process-step p {
    font-size: 1.07rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--green) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.cta-section .cta-inner { position: relative; z-index: 1; }

/* ===================== CONTACT CARDS ===================== */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.contact-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}
.contact-icon.blue { background: var(--primary-light); color: var(--primary); }
.contact-icon.green { background: var(--green-light); color: var(--green); }
.contact-icon.orange { background: var(--orange-light); color: var(--orange); }
.contact-card h4 {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.contact-card p, .contact-card a {
    color: var(--text-muted);
    font-size: 1.12rem;
    line-height: 1.7;
}
.contact-card a:hover { color: var(--primary); }

/* ===================== FORM ===================== */
.form-control, .form-select {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: 'Afacad Flux', sans-serif;
    font-size: 1.07rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30,136,229,0.12);
    outline: none;
}
.form-label {
    font-weight: 700;
    font-size: 1.07rem;
    color: var(--dark);
    margin-bottom: 8px;
}
textarea.form-control { min-height: 140px; resize: vertical; }

/* ===================== ACCORDION ===================== */
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.accordion-button {
    font-family: 'Afacad Flux', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    padding: 18px 22px;
}
.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--primary-light);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-body {
    background: var(--bg);
    color: var(--text-muted);
    font-size: 1.07rem;
    line-height: 1.75;
    padding: 18px 22px;
}

/* ===================== FOOTER ===================== */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 0;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-about p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 1.12rem;
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-heading {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.07);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 1.02rem;
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a i { font-size: 0.75rem; color: var(--orange); }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px;
}
.footer-contact-item i {
    color: var(--orange);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact-item a, .footer-contact-item span {
    color: rgba(255,255,255,0.65);
    font-size: 1.02rem;
    line-height: 1.6;
}
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 0.98rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--orange); }

/* ===================== SCROLL TO TOP ===================== */
#scrollTop {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 46px; height: 46px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    display: none;
    align-items: center; justify-content: center;
    font-size: 1.18rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(251,140,0,0.4);
    transition: var(--transition);
}
#scrollTop:hover { background: var(--orange-dark); transform: translateY(-3px); }
#scrollTop.show { display: flex; }

/* ===================== ANIMATIONS ===================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ===================== UTILITIES ===================== */
.bg-white { background: var(--white); }
.bg-light-blue { background: var(--primary-light); }
.bg-light-green { background: var(--green-light); }
.bg-dark { background: var(--dark); }
.text-orange { color: var(--orange); }
.text-blue { color: var(--primary); }
.text-green { color: var(--green); }
.rounded-xl { border-radius: var(--radius-lg); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .carousel-item { height: 500px; }
    .nav-link { padding: 12px 16px !important; }
    .nav-link::after { display: none; }
    .about-badge { left: 10px; }
    .process-step::after { display: none; }
}
@media (max-width: 767px) {
    .carousel-item { height: 420px; }
    .slide-title { font-size: 1.8rem; }
    .section { padding: 60px 0; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .about-badge { position: static; margin-top: 20px; }
    .topbar { display: none; }
}
