:root {
    --bg: #f6f8fb;
    --bg2: #ffffff;
    --ink: #0b1220;
    --ink2: rgba(11, 18, 32, 0.70);
    --muted: rgba(11, 18, 32, 0.50);
    --accent: #1d4ed8;
    --accent-s: rgba(29, 78, 216, 0.09);
    --accent-l: rgba(29, 78, 216, 0.16);
    --line: rgba(11, 18, 32, 0.09);
    --line2: rgba(11, 18, 32, 0.055);
    --shadow: 0 16px 56px rgba(11, 18, 32, 0.09);
    --shadowS: 0 10px 32px rgba(11, 18, 32, 0.07);
    --r: 14px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    background:
        radial-gradient(900px 600px at 20% 10%, rgba(29, 78, 216, 0.055), transparent 60%),
        radial-gradient(800px 550px at 82% 28%, rgba(29, 78, 216, 0.035), transparent 65%),
        var(--bg);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9990;
    opacity: 0.10;
}

/* ---- CURSOR ---- */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    mix-blend-mode: multiply;
}

.cursor-follower {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(29, 78, 216, 0.28);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.2s;
    box-shadow: 0 0 16px rgba(29, 78, 216, 0.07);
}

/* ---- NAV ---- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(246, 248, 251, 0.80);
    border-bottom: 1px solid var(--line2);
    backdrop-filter: blur(14px);
    z-index: -1;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 34px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: color 0.22s;
    position: relative;
    padding: 5px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.22s;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Desktop */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    min-width: 220px;
    box-shadow: 0 16px 40px rgba(11, 18, 32, 0.08);
    border: 1px solid var(--line2);
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.nav-dropdown-menu a {
    padding: 10px 20px;
    color: var(--ink2);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    text-transform: none;
    letter-spacing: 0;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    color: var(--accent);
    background: var(--accent-s);
    padding-left: 24px;
}

/* Dropdown Mobile */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-content {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
    padding-left: 16px;
    border-left: 2px solid var(--line2);
    gap: 16px;
}

.mobile-dropdown-content a {
    font-size: 1.1rem;
    color: var(--ink2);
    font-weight: 400;
}

.mobile-dropdown-content a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 9px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.16);
    transition: transform 0.18s, box-shadow 0.18s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(29, 78, 216, 0.22);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--ink);
    transition: 0.3s;
}

/* ---- HERO SLIDER ---- */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-rows: 1fr auto;
}

.slides-wrapper {
    position: absolute;
    inset: 0;
    bottom: 112px;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;

    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    background:
        radial-gradient(860px 500px at 22% 32%, rgba(29, 78, 216, 0.055), transparent 60%),
        radial-gradient(860px 500px at 78% 68%, rgba(29, 78, 216, 0.035), transparent 60%),
        var(--bg2) !important;
}

.slide.active {
    opacity: 1;
    pointer-events: all;
}

.slide-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 18, 32, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 18, 32, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

/* Slide animations */
.slide-content .hero-title .word {
    animation: none;
    opacity: 1;
    transform: none;
}

.slide.active .hero-title .word {
    animation: slideUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.slide.active .hero-badge {
    animation: fadeUp 0.5s 0.18s both;
}

.slide.active .hero-sub {
    animation: fadeUp 0.5s 0.44s both;
}

.slide.active .hero-actions {
    animation: fadeUp 0.5s 0.60s both;
}

@keyframes slideUp {
    from {
        transform: translateY(105%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--accent-s);
    border: 1px solid var(--accent-l);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    width: fit-content;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

/* Hero title — smaller, readable */
.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    color: var(--ink);
}

.hero-title .line {
    overflow: hidden;
    display: block;
}

.hero-title .word {
    display: inline-block;
}

.hero-title .accent-text {
    color: var(--accent);
}

.hero-title .outline-text {
    -webkit-text-stroke: 1.5px rgba(11, 18, 32, 0.45);
    color: transparent;
}

.hero-sub {
    font-size: 0.975rem;
    color: var(--ink2);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 12px 26px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 10px;
    cursor: none;
    box-shadow: 0 14px 44px rgba(29, 78, 216, 0.17);
    transition: transform 0.18s, box-shadow 0.18s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 60px rgba(29, 78, 216, 0.22);
}

.btn-primary .arrow {
    transition: transform 0.18s;
}

.btn-primary:hover .arrow {
    transform: translate(3px, -3px);
}

.btn-ghost {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(11, 18, 32, 0.20);
    padding-bottom: 2px;
    cursor: none;
    transition: border-color 0.22s;
}

.btn-ghost:hover {
    border-color: rgba(11, 18, 32, 0.50);
}

/* Slider controls */
.slider-controls {
    position: absolute;
    bottom: 130px;
    right: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
}

.slider-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    font-size: 0.95rem;
    cursor: none;
    border-radius: 10px;
    box-shadow: var(--shadowS);
    backdrop-filter: blur(10px);
    transition: background 0.22s, border-color 0.22s, transform 0.18s;
}

.slider-btn:hover {
    background: var(--accent-s);
    border-color: rgba(29, 78, 216, 0.30);
    color: var(--accent);
    transform: translateY(-1px);
}

.slider-dots {
    display: flex;
    gap: 7px;
}

.dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(11, 18, 32, 0.22);
    background: transparent;
    cursor: none;
    transition: background 0.22s, transform 0.22s;
}

.dot-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.3);
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(11, 18, 32, 0.07);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: none;
}

.slider-progress-bar.animating {
    transition: width 5s linear;
}

/* Hero bottom bar */
.hero-scroll {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(246, 248, 251, 0.94) 0%, transparent 100%);
    border-top: 1px solid var(--line2);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.55rem;
    color: var(--ink);
}

.hero-stat-num span {
    color: var(--accent);
}

.hero-stat-label {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-family: 'Inter', sans-serif;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.scroll-line {
    width: 2px;
    height: 52px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollAnim 2s infinite;
    border-radius: 2px;
}

@keyframes scrollAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ---- MARQUEE ---- */
.marquee-section {
    overflow: hidden;
    border-top: 1px solid var(--line2);
    border-bottom: 1px solid var(--line2);
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
}

.marquee-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, 0.55);
    padding: 0 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.marquee-item .dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---- SECTION COMMON ---- */
.section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.section-tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    color: var(--ink);
}

/* ---- ABOUT ---- */
.about-section {
    padding: 100px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    background: var(--bg2);
}

.about-text {
    font-size: 0.975rem;
    color: var(--ink2);
    line-height: 1.82;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
}

.about-visual {
    position: relative;
}

.about-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    border-radius: var(--r);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
}

.about-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(11, 18, 32, 0.18);
    margin-bottom: 12px;
}

.about-card-text {
    font-size: 1.1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}

.floating-badge {
    position: absolute;
    bottom: 4px;
    right: 32px;
    background: var(--accent);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 9px 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 14px 44px rgba(29, 78, 216, 0.18);
}

/* ---- STATS ---- */
.stats-section {
    padding: 70px 48px;
    background: rgba(255, 255, 255, 0.76);
    border-top: 1px solid var(--line2);
    border-bottom: 1px solid var(--line2);
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.stat-item {
    padding: 40px;
    border-right: 1px solid var(--line2);
    position: relative;
}

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

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.stat-number .unit {
    color: var(--accent);
}

.stat-desc {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-family: 'Inter', sans-serif;
}

.stat-line {
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 3px;
}

.stat-item.visible .stat-line {
    width: calc(100% - 80px);
}

/* ---- SERVICES ---- */
.services-section {
    padding: 100px 48px;
    background: var(--bg);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadowS);
    border-radius: var(--r);
    overflow: hidden;
}

.service-card {
    padding: 48px 40px;
    border-right: 1px solid var(--line2);
    position: relative;
    overflow: hidden;
    transition: background 0.22s;
    cursor: none;
}

.service-card:last-child {
    border-right: none;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 320px at 28% 22%, rgba(29, 78, 216, 0.055), transparent 60%);
    opacity: 0;
    transition: opacity 0.22s;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.95);
}

.service-num {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.13em;
    margin-bottom: 22px;
}

.service-icon {
    font-size: 2.1rem;
    margin-bottom: 18px;
    display: block;
    color: rgba(11, 18, 32, 0.80);
}

.service-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--ink);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--ink2);
    line-height: 1.72;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.service-tag {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid rgba(11, 18, 32, 0.09);
    color: rgba(11, 18, 32, 0.62);
    background: rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
}

.service-arrow {
    position: absolute;
    bottom: 38px;
    right: 38px;
    font-size: 1.3rem;
    color: rgba(11, 18, 32, 0.40);
    transition: color 0.22s, transform 0.22s;
}

.service-card:hover .service-arrow {
    color: var(--accent);
    transform: translate(3px, -3px);
}

/* ---- TESTIMONIALS ---- */
.testi-section {
    padding: 100px 48px;
    background: rgba(255, 255, 255, 0.78);
    border-top: 1px solid var(--line2);
    backdrop-filter: blur(10px);
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 56px;
}

.testi-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 48px;
    position: relative;
    transition: border-color 0.22s, box-shadow 0.22s;
    cursor: none;
    box-shadow: var(--shadowS);
    border-radius: var(--r);
}

.testi-card:hover {
    border-color: rgba(29, 78, 216, 0.20);
    box-shadow: 0 16px 56px rgba(11, 18, 32, 0.09);
}

.testi-quote {
    font-size: 2.6rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: rgba(29, 78, 216, 0.40);
    line-height: 1;
    margin-bottom: 18px;
}

.testi-text {
    font-size: 0.975rem;
    line-height: 1.82;
    color: rgba(11, 18, 32, 0.75);
    margin-bottom: 32px;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.testi-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--ink);
}

.testi-role {
    font-size: 0.73rem;
    color: var(--muted);
    margin-top: 3px;
    font-family: 'Inter', sans-serif;
}

/* ---- PARTNERS ---- */
.partners-section {
    padding: 68px 48px;
    border-top: 1px solid var(--line2);
    background: var(--bg);
}

.partners-label {
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.partners-row {
    display: flex;
    justify-content: center;
    gap: 56px;
    align-items: center;
}

.partner-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: rgba(11, 18, 32, 0.20);
    letter-spacing: -0.01em;
    transition: color 0.22s;
    cursor: none;
}

.partner-name:hover {
    color: var(--ink);
}

/* ---- CONTACT ---- */
.contact-section {
    padding: 100px 48px;
    background: rgba(255, 255, 255, 0.78);
    border-top: 1px solid var(--line2);
    backdrop-filter: blur(10px);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.contact-info-item {
    padding: 26px 0;
    border-bottom: 1px solid var(--line2);
}

.contact-info-label {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 7px;
    font-family: 'Inter', sans-serif;
}

.contact-info-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(11, 18, 32, 0.16);
    padding: 13px 0;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 0.975rem;
    outline: none;
    transition: border-color 0.22s;
    cursor: none;
}

.form-input:focus {
    border-color: rgba(29, 78, 216, 0.50);
}

.form-input::placeholder {
    color: rgba(11, 18, 32, 0.30);
}

textarea.form-input {
    resize: none;
    height: 110px;
}

.submit-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: none;
    margin-top: 14px;
    transition: transform 0.18s, box-shadow 0.18s;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 16px 56px rgba(29, 78, 216, 0.17);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 70px rgba(29, 78, 216, 0.22);
}

/* ---- BERITA ---- */
.berita-section {
    padding: 100px 48px;
    background: var(--bg);
    border-top: 1px solid var(--line2);
}

.berita-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.berita-link-all {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(29, 78, 216, 0.20);
    padding-bottom: 2px;
    transition: border-color 0.22s;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.berita-link-all:hover {
    border-color: rgba(29, 78, 216, 0.45);
}

.berita-featured {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    border: 1px solid var(--line);
    margin-bottom: 20px;
    cursor: none;
    transition: border-color 0.22s;
    background: #fff;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadowS);
    border-radius: var(--r);
    overflow: hidden;
}

.berita-featured:hover {
    border-color: rgba(29, 78, 216, 0.18);
}

.berita-featured-img {
    background:
        radial-gradient(640px 420px at 28% 28%, rgba(29, 78, 216, 0.09), transparent 60%),
        rgba(240, 244, 255, 0.70);
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.berita-featured-img::before {
    content: '◈';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7rem;
    color: rgba(11, 18, 32, 0.04);
    pointer-events: none;
}

.berita-img-tag {
    background: var(--accent);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.68rem;
    padding: 5px 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
}

.berita-featured-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}

.berita-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.berita-category {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.berita-date {
    font-size: 0.72rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

.berita-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.22rem;
    line-height: 1.30;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: var(--ink);
}

.berita-excerpt {
    font-size: 0.9rem;
    color: var(--ink2);
    line-height: 1.72;
    margin-bottom: 26px;
    font-family: 'Inter', sans-serif;
}

.berita-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    transition: gap 0.18s;
}

.berita-read-more:hover {
    gap: 12px;
}

.berita-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-top: none;
    background: #fff;
    box-shadow: var(--shadowS);
    border-radius: 0 0 var(--r) var(--r);
    overflow: hidden;
}

.berita-card {
    padding: 34px;
    border-right: 1px solid var(--line2);
    cursor: none;
    transition: background 0.22s;
    position: relative;
}

.berita-card:last-child {
    border-right: none;
}

.berita-card:hover {
    background: rgba(248, 250, 255, 0.95);
}

.berita-card-img {
    width: 100%;
    height: 148px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    border: 1px solid var(--line2);
    border-radius: 10px;
    overflow: hidden;
    color: rgba(11, 18, 32, 0.70);
    background: radial-gradient(circle at 30% 30%, rgba(29, 78, 216, 0.09), transparent 60%), rgba(240, 244, 255, 0.55);
}

.berita-card-meta {
    margin-bottom: 10px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

.berita-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.97rem;
    line-height: 1.42;
    margin-bottom: 10px;
    color: var(--ink);
}

.berita-card-excerpt {
    font-size: 0.845rem;
    color: var(--ink2);
    line-height: 1.64;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.berita-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--line2);
}

.berita-author-info {
    display: flex;
    align-items: center;
    gap: 9px;
}

.berita-avatar-sm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 0.72rem;
}

.berita-author-name {
    font-size: 0.78rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: var(--ink);
}

.berita-read-time {
    font-size: 0.72rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

/* ---- FOOTER ---- */
footer {
    background: rgba(255, 255, 255, 0.84);
    padding: 40px 48px;
    border-top: 1px solid var(--line2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.footer-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
}

.footer-logo span {
    color: var(--accent);
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

/* ---- REVEAL ---- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 999;
    padding: 100px 40px;
    flex-direction: column;
    align-items: center;
    /* Center items for modern look */
    gap: 32px;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    /* Slightly lighter for modern look */
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    /* Slightly smaller font */
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.2s, transform 0.2s;
}

.mobile-menu a:hover {
    color: var(--accent);
    transform: scale(1.05);
    /* Slight bounce on hover */
}

.mobile-menu .mobile-login-btn {
    margin-top: 16px;
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 99px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.25);
}

.mobile-menu .mobile-login-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(29, 78, 216, 0.3);
}

.hamburger-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(11, 18, 32, 0.05);
    font-size: 1.2rem;
    cursor: none;
    color: var(--ink);
    border: none;
    transition: background 0.2s, transform 0.2s;
}

.hamburger-close:hover {
    background: rgba(11, 18, 32, 0.1);
    transform: rotate(90deg);
}

/* ---- RESPONSIVE ---- */
@media (max-width:768px) {
    nav {
        padding: 16px 20px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .slide {
        padding: 0 20px;
        padding-top: 76px;
    }

    .hero-stats {
        display: none;
    }

    .slider-controls {
        right: 20px;
        bottom: 124px;
    }

    .about-section {
        grid-template-columns: 1fr;
        padding: 72px 20px;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--line2);
    }

    .services-section {
        padding: 72px 20px;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        border-right: none;
        border-bottom: 1px solid var(--line2);
    }

    .testi-section {
        padding: 72px 20px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        padding: 36px;
    }

    .partners-row {
        gap: 24px;
        flex-wrap: wrap;
    }

    .contact-section {
        padding: 72px 20px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partners-section {
        padding: 56px 20px;
    }

    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 28px 20px;
    }

    .hero-scroll {
        padding: 18px 20px;
    }

    .berita-section {
        padding: 72px 20px;
    }

    .berita-featured {
        grid-template-columns: 1fr;
    }

    .berita-featured-img {
        min-height: 200px;
    }

    .berita-featured-body {
        padding: 28px;
    }

    .berita-grid {
        grid-template-columns: 1fr;
    }

    .berita-card {
        border-right: none;
        border-bottom: 1px solid var(--line2);
    }

    .berita-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .services-header .btn-primary {
        display: none;
    }

    /* Justify text content on mobile */
    .about-text,
    .service-desc,
    .testi-body,
    .berita-excerpt,
    .berita-card-excerpt {
        text-align: justify;
        text-justify: inter-word;
    }
}

/* ---- NEW CONTACT CARDS ---- */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.contact-card-modern {
    background: #ffffff;
    border: 1px solid var(--line2);
    border-radius: var(--r);
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(11, 18, 32, 0.03);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(29, 78, 216, 0.12);
    border-color: transparent;
}

.contact-card-modern:hover::before {
    opacity: 1;
}

.contact-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.contact-card-modern:hover .contact-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.contact-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    margin: 0;
    transition: color 0.3s ease;
}

.contact-card-modern:hover .contact-card-title {
    color: #ffffff;
}

.contact-card-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--ink2);
    margin: 0;
    word-break: break-all;
    transition: color 0.3s ease;
}

.contact-card-modern:hover .contact-card-value {
    color: rgba(255, 255, 255, 0.9);
}