/* ================================================================
   PAKAR WC PASURUAN — BLUE PROFESSIONAL PREMIUM THEME
   Modern, clean, corporate-grade design
   ================================================================ */

/* ===== Root & Reset ===== */
:root {
    --white: #ffffff;
    --bg: #f4f8fe;
    --bg-gray: #eaeff8;
    --bg-subtle: #f8faff;
    --text: #0c1e35;
    --text-2: #3d5272;
    --text-3: #7e95b0;
    --border: #dfe7f2;
    --border-light: #ecf0f8;

    --primary: #1a6fc4;
    --primary-dark: #0f4c81;
    --primary-deeper: #0a3560;
    --primary-light: #e8f2fc;
    --primary-100: #d0e4f9;
    --primary-50: #f4f8fe;
    --accent: #0ea5e9;
    --accent-light: #e0f4fe;

    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --h1: clamp(2.6rem, 6vw, 4.4rem);
    --h2: clamp(1.8rem, 4vw, 2.8rem);
    --h3: 1.25rem;
    --body: 1rem;
    --sm: 0.875rem;

    --max-w: 1180px;
    --sec-pad: 100px;
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 100px;

    --shadow-xs: 0 1px 2px rgba(15, 76, 129, .04);
    --shadow-sm: 0 2px 8px rgba(15, 76, 129, .06);
    --shadow: 0 4px 20px rgba(15, 76, 129, .07);
    --shadow-lg: 0 12px 40px rgba(15, 76, 129, .09);
    --shadow-xl: 0 20px 60px rgba(15, 76, 129, .12);
    --shadow-primary: 0 10px 40px rgba(26, 111, 196, .2);
    --shadow-primary-lg: 0 16px 48px rgba(26, 111, 196, .25);

    --ease: cubic-bezier(.22, 1, .36, 1);
    --spring: cubic-bezier(.175, .885, .32, 1.275);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}


/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

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

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(26, 111, 196, .45);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(26, 111, 196, 0);
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

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

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

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

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

@keyframes geoFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

.anim-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    transition-delay: var(--d, 0s);
}

.anim-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===== HEADER — Floating Glassmorphic Design ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .4s var(--ease);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 rgba(15, 76, 129, .06), 0 8px 32px rgba(15, 76, 129, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .6);
}

.header.menu-open {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon-wrap {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform .3s var(--spring);
}

.logo-icon-wrap svg {
    width: 18px;
    height: 18px;
    color: #fff;
    stroke: #fff;
}

.logo:hover .logo-icon-wrap {
    transform: rotate(-8deg) scale(1.1);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}

.logo-text strong {
    color: var(--primary);
    font-weight: 800;
}

.logo-badge {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid var(--primary-100);
}

/* Navigation — Centered Pill */
.nav {
    display: flex;
    justify-content: center;
    flex: 1;
    margin: 0 16px;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(244, 248, 254, .9);
    backdrop-filter: blur(12px);
    padding: 5px;
    border-radius: var(--r-full);
    border: 1px solid rgba(223, 231, 242, .6);
}

.nav-link {
    position: relative;
    padding: 9px 18px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-3);
    border-radius: var(--r-full);
    transition: all .3s var(--ease);
    white-space: nowrap;
    overflow: hidden;
}

.nav-link-text {
    position: relative;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    background: var(--white);
    opacity: 0;
    transform: scale(.9);
    transition: all .3s var(--ease);
    box-shadow: 0 2px 8px rgba(15, 76, 129, .06);
}

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

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

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

.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
    background: var(--white);
    box-shadow: 0 2px 12px rgba(26, 111, 196, .1);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-3);
    transition: all .3s var(--ease);
    padding: 8px 14px;
    border-radius: var(--r-full);
}

.nav-phone:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-phone svg {
    color: var(--primary);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--primary), #2d8ae0);
    color: #fff;
    font-family: var(--font);
    font-weight: 700;
    font-size: .82rem;
    border-radius: var(--r-full);
    transition: all .3s var(--spring);
    box-shadow: 0 4px 15px rgba(26, 111, 196, .2);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    width: 100%;
    transition: left .6s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26, 111, 196, .3);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--r-sm);
    cursor: pointer;
    gap: 5px;
    padding: 0;
    transition: all .3s var(--ease);
}

.burger:hover {
    background: var(--primary-light);
    border-color: var(--primary-100);
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-2);
    border-radius: 2px;
    transition: all .35s var(--ease);
    transform-origin: center;
}

.burger.active {
    background: var(--primary-light);
    border-color: var(--primary-100);
}

.burger.active span {
    background: var(--primary);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
}

/* ===== Mobile Overlay Menu ===== */
.mobile-overlay {
    display: none;
}

.nav-mobile-head {
    display: none;
}


/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font);
    font-weight: 700;
    font-size: var(--body);
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: all .3s var(--spring);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-primary-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-white {
    background: var(--white);
    color: var(--text);
}

.btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .25);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
}

.w-full {
    width: 100%;
    justify-content: center;
}


/* ===== HERO — Fresh Modern Design ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--white);
    overflow: hidden;
}

/* Decorative Elements */
.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    opacity: 0.8;
}

.hero-shape-1 {
    top: -100px;
    right: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(26, 111, 196, 0.08) 0%, rgba(26, 111, 196, 0) 70%);
    animation: flowPulse 8s infinite alternate;
}

.hero-shape-2 {
    bottom: 5%;
    left: 2%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0) 70%);
    animation: flowPulse 10s infinite alternate-reverse;
}

.hero-shape-3 {
    top: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(26, 111, 196, 0.15);
    border-radius: 20px;
    animation: geoSpin 30s linear infinite;
}

.hero-shape-4 {
    bottom: 25%;
    left: 10%;
    width: 70px;
    height: 70px;
    background: rgba(26, 111, 196, 0.03);
    border: 1px solid rgba(26, 111, 196, 0.1);
    border-radius: 16px;
    animation: geoFloat 6s ease-in-out infinite;
}

.hero-shape-5 {
    top: 30%;
    left: 45%;
    width: 16px;
    height: 16px;
    background: var(--primary-100);
    border-radius: 50%;
    animation: floatImage 4s ease-in-out infinite;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 24px;
    box-shadow: var(--shadow-xs);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .4);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--text);
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(90deg, var(--primary-100), transparent);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.8;
}

.hero-title {
    text-shadow: 0 10px 30px rgba(15, 76, 129, 0.05);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font);
    font-weight: 700;
    font-size: .95rem;
    border-radius: var(--r-md);
    transition: all .3s var(--spring);
    box-shadow: 0 4px 20px rgba(26, 111, 196, .25);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(26, 111, 196, .35);
}

.btn-hero-primary svg {
    transition: transform .3s var(--spring);
}

.btn-hero-primary:hover svg {
    transform: rotate(10deg) scale(1.1);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-weight: 700;
    font-size: .95rem;
    border-radius: var(--r-md);
    transition: all .3s var(--ease);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary-100);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-plus {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.stat-label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 6px;
}

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

/* Hero Visual — Fresh Premium Design */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 2;
    padding: 20px;
}

.frame-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at center, var(--primary-light) 0%, transparent 70%);
    opacity: 0.6;
    z-index: -1;
    filter: blur(40px);
    animation: flowPulse 6s ease-in-out infinite alternate;
}

@keyframes flowPulse {
    0% {
        transform: scale(1) translate(0);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.1) translate(10px, -10px);
        opacity: 0.7;
    }
}

.frame-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(26, 111, 196, 0.1);
    border-radius: var(--r-xl);
    pointer-events: none;
    z-index: 3;
}

.frame-inner {
    position: relative;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px;
    box-shadow: 0 20px 40px rgba(15, 76, 129, 0.08);
    transition: all .5s var(--ease);
}

.hero-visual:hover .frame-inner {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(15, 76, 129, 0.12);
    border-color: rgba(26, 111, 196, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Corner Accents */
.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary);
    z-index: 4;
}

.frame-corner-tl {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: var(--r-md);
}

.frame-corner-br {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: var(--r-md);
}

/* Info Pills — Fresh Glassmorphism */
.hero-pill {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--r-full);
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.1);
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    animation: floatPill 5s ease-in-out infinite;
}

@keyframes floatPill {

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

    50% {
        transform: translateY(-10px);
    }
}

.pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.pill-icon.blue {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
}

.pill-icon.green {
    background: linear-gradient(135deg, #059669, #10b981);
}

.pill-icon.orange {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.pill-icon svg {
    width: 16px;
    height: 16px;
}

.hero-pill-1 {
    top: 15%;
    left: -40px;
    animation-delay: 0s;
}

.hero-pill-2 {
    bottom: 25%;
    right: -50px;
    animation-delay: 1.5s;
}

.hero-pill-3 {
    top: 40%;
    right: -80px;
    animation-delay: 0.8s;
}

@media (max-width: 991px) {
    .hero-pill-1 {
        left: 0;
    }

    .hero-pill-2 {
        right: 0;
    }

    .hero-pill-3 {
        display: none;
    }
}

/* Decorative Background Elements */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.shape-blob {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(14, 165, 233, 0.1) 100%);
    filter: blur(60px);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation: morphShape 10s linear infinite;
}

@keyframes morphShape {

    0%,
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: translate(0, 0);
    }

    34% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        transform: translate(-20px, 30px);
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        transform: translate(20px, -20px);
    }
}

/* Legacy classes for compatibility */
.text-primary {
    color: var(--primary);
}

/* Trust Row (legacy fallback) */
.trust-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-md);
    padding: 18px 24px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: all .3s var(--ease);
    flex: 1;
    min-width: 120px;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-100);
}

.trust-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.trust-suffix {
    font-size: .9rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.trust-label {
    display: block;
    margin-top: 6px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .8px;
}


/* ===== SECTIONS ===== */
.section {
    padding: var(--sec-pad) 0;
}

.section-gray {
    background: var(--bg);
}

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

.tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-light);
    border: 1px solid var(--primary-100);
    border-radius: var(--r-full);
    font-size: var(--sm);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}

.section-head h2 {
    font-size: var(--h2);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}

.section-head p {
    font-size: 1.05rem;
    color: var(--text-2);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ===== SERVICE CARDS — Bento Grid ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 40px 32px;
    transition: all .4s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.orange-bg {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.blue-bg {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.red-bg {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.green-bg {
    background: linear-gradient(135deg, #059669, #10b981);
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.card p {
    font-size: .92rem;
    color: var(--text-2);
    line-height: 1.75;
    flex-grow: 1;
    margin-bottom: 22px;
}

.card-action {
    font-weight: 700;
    font-size: var(--sm);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .3s var(--ease);
}

.card-action:hover {
    color: var(--primary-dark);
    gap: 10px;
}


/* ===== STEPS — Vertical Timeline ===== */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.steps-grid::before {
    display: none;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    position: relative;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    margin-bottom: 8px;
}

.step-num {
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--sm);
    z-index: 2;
    flex-shrink: 0;
    transition: all .3s var(--ease);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border: 1px solid var(--primary-100);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all .3s var(--ease);
    flex-shrink: 0;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step:hover .step-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}

.step:hover .step-num {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px var(--primary-light), var(--shadow-primary);
}

.step-content {
    padding-top: 4px;
}

.step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.step p {
    font-size: .92rem;
    color: var(--text-2);
    line-height: 1.7;
}

.step-line {
    display: none;
}


/* ===== PRICING ===== */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    perspective: 800px;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 40px 32px;
    transition: all .4s var(--ease);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.price-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.price-card.featured {
    border-color: var(--primary);
    background: var(--primary-50);
    box-shadow: var(--shadow-primary);
    position: relative;
}

.price-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--r-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.price-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--r-full);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    background: var(--bg);
    color: var(--text-2);
    margin-bottom: 22px;
    width: fit-content;
}

.featured-badge {
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary-100);
}

.price-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}

.currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-2);
}

.value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.unit {
    font-size: var(--body);
    color: var(--text-3);
    font-weight: 500;
}

.price-list {
    flex-grow: 1;
    margin-bottom: 28px;
}

.price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: .9rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--bg);
}

.price-list li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}


/* ===== TESTIMONIALS ===== */
.testi-wrapper {
    overflow: hidden;
    border-radius: var(--r-xl);
}

.testi-track {
    display: flex;
    transition: transform .6s var(--ease);
}

.testi-slide {
    min-width: 100%;
    padding: 0 8px;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 52px 48px;
    text-align: center;
    max-width: 660px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.testi-stars {
    font-size: 1.4rem;
    color: #f59e0b;
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.testi-card p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: italic;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: var(--sm);
}

.testi-avatar.alt {
    background: var(--bg);
    color: var(--primary);
}

.testi-footer strong {
    display: block;
    font-size: var(--sm);
    text-align: left;
}

.testi-footer span {
    font-size: .8rem;
    color: var(--text-3);
}

.testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.testi-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    cursor: pointer;
    transition: all .3s var(--ease);
}

.testi-btn svg {
    width: 18px;
    height: 18px;
}

.testi-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
}

.testi-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s;
}

.dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 4px;
}


/* ===== KEUNGGULAN — Fresh Horizontal Cards ===== */
.keunggulan-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.keunggulan-card {
    position: relative;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    overflow: hidden;
    transition: all .4s var(--ease);
    border: 1px solid var(--border-light);
}

.keunggulan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.keunggulan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 76, 129, .12);
    border-color: transparent;
}

.keunggulan-card:hover::before {
    transform: scaleX(1);
}

.keunggulan-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary);
    transition: all .3s var(--ease);
}

.keunggulan-icon svg {
    width: 24px;
    height: 24px;
}

.keunggulan-card:hover .keunggulan-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.keunggulan-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.keunggulan-content p {
    font-size: .85rem;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 16px;
}

.keunggulan-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 12px;
    border-radius: var(--r-full);
    letter-spacing: .03em;
}


/* ===== LAYANAN — Modern Cards with Numbers ===== */
.layanan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.layanan-card {
    position: relative;
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: all .4s var(--ease);
    border: 1px solid var(--border-light);
}

.layanan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(15, 76, 129, .15);
    border-color: var(--primary-100);
}

.layanan-card-inner {
    padding: 36px 32px;
    position: relative;
    z-index: 1;
}

.layanan-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    transition: all .3s var(--ease);
}

.layanan-icon svg {
    width: 26px;
    height: 26px;
}

.layanan-card:hover .layanan-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(26, 111, 196, .3);
}

.layanan-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-light);
    opacity: .3;
    line-height: 1;
    font-family: var(--font);
}

.layanan-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.layanan-card p {
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.layanan-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--primary);
    transition: all .3s var(--ease);
}

.layanan-link svg {
    width: 18px;
    height: 18px;
    transition: transform .3s var(--ease);
}

.layanan-link:hover {
    gap: 14px;
    color: var(--primary-dark);
}

.layanan-link:hover svg {
    transform: translateX(4px);
}


/* ===== FLAGSHIP — Fresh Bento Grid ===== */
.flagship-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.flagship-card-new {
    position: relative;
    background: var(--white);
    border-radius: var(--r-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all .4s var(--ease);
}

.flagship-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(15, 76, 129, .12);
    border-color: transparent;
}

/* Main Card - spans full width */
.flagship-card-main {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #0a3560 0%, #0f4c81 40%, #1a6fc4 80%, #2d8ae0 100%);
    border-color: transparent;
    color: #fff;
}

.flagship-card-main:hover {
    box-shadow: 0 24px 56px rgba(10, 53, 96, .25);
}

.flagship-card-decor {
    position: absolute;
    top: -60%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.flagship-card-body {
    position: relative;
    z-index: 1;
    padding: 40px 36px;
}

.flagship-card-main .flagship-card-body {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0 24px;
}

.flagship-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all .4s var(--spring);
    grid-row: 1 / 3;
    align-self: start;
}

.flagship-card-new:hover .flagship-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.flagship-icon-wrap svg {
    width: 26px;
    height: 26px;
}

.flagship-icon-blue {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    color: #fff;
}

.flagship-icon-blue svg {
    stroke: #fff;
}

.flagship-icon-orange {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #fff;
    box-shadow: 0 8px 24px rgba(249, 115, 22, .2);
}

.flagship-icon-orange svg {
    stroke: #fff;
}

.flagship-icon-green {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    box-shadow: 0 8px 24px rgba(16, 185, 129, .2);
}

.flagship-icon-green svg {
    stroke: #fff;
}

.flagship-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 10px;
    grid-column: 2;
}

.flagship-card-main .flagship-tag {
    color: rgba(255, 255, 255, .6);
}

.flagship-card-new:not(.flagship-card-main) .flagship-tag {
    color: var(--text-3);
}

.flagship-card-new h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.flagship-card-main h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    grid-column: 1 / -1;
}

.flagship-card-new:not(.flagship-card-main) h3 {
    color: var(--text);
}

.flagship-card-new p {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    grid-column: 1 / -1;
}

.flagship-card-main p {
    color: rgba(255, 255, 255, .75);
    max-width: 550px;
}

.flagship-card-new:not(.flagship-card-main) p {
    color: var(--text-2);
}

/* Features list in main card */
.flagship-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    grid-column: 1 / -1;
}

.flagship-feat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .1);
    padding: 6px 14px;
    border-radius: var(--r-full);
}

.flagship-feat svg {
    width: 14px;
    height: 14px;
    color: #4ade80;
}

/* CTA in main card */
.flagship-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #fff;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: .9rem;
    border-radius: var(--r-md);
    transition: all .3s var(--spring);
    grid-column: 1 / -1;
    width: fit-content;
}

.flagship-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
}

.flagship-cta svg {
    width: 18px;
    height: 18px;
    transition: transform .3s var(--ease);
}

.flagship-cta:hover svg {
    transform: translateX(4px);
}

/* Link in side cards */
.flagship-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--primary);
    transition: all .3s var(--ease);
}

.flagship-link svg {
    width: 16px;
    height: 16px;
    transition: transform .3s var(--ease);
}

.flagship-link:hover {
    gap: 14px;
    color: var(--primary-dark);
}

.flagship-link:hover svg {
    transform: translateX(4px);
}

/* Non-main card icon layout */
.flagship-card-new:not(.flagship-card-main) .flagship-card-body {
    padding: 32px 28px;
}

.flagship-card-new:not(.flagship-card-main) .flagship-icon-wrap {
    grid-row: auto;
    margin-bottom: 18px;
}


/* Legacy classes for compatibility */
.features-grid {
    display: none;
}

.flagship-grid {
    display: none;
}


/* ===== SECTIONS ===== */
.section {
    padding: var(--sec-pad) 0;
}

.section-gray {
    background: var(--bg);
}

.flagship-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg);
}

.flagship-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.flagship-card:hover .flagship-img img {
    transform: scale(1.08);
}

.flagship-content {
    padding: 28px;
}

.flagship-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.flagship-content p {
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.7;
}


/* ===== FAQ ===== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all .3s var(--ease);
}

.faq-item:hover {
    border-color: var(--primary-100);
}

.faq-item.open {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    font-size: var(--body);
    font-weight: 600;
    color: var(--text);
    transition: all .3s var(--ease);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-3);
    transition: transform .3s var(--ease);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: .95rem;
    color: var(--text-2);
    line-height: 1.75;
}


/* ===== AREA LAYANAN ===== */
.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.area-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 28px;
    transition: all .3s var(--ease);
}

.area-card:hover {
    border-color: var(--primary-100);
    box-shadow: var(--shadow);
}

.area-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.area-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.area-card li {
    font-size: .88rem;
    color: var(--text-2);
    padding-left: 16px;
    position: relative;
}

.area-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}


/* Footer Logo Icon */
.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
    stroke: #fff;
}

/* ===== FOOTER SOCIAL ===== */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    transition: all .3s var(--ease);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-col a svg {
    display: inline;
    vertical-align: middle;
    margin-right: 8px;
}


/* ===== CTA ===== */
.cta {
    padding: var(--sec-pad) 0;
    background: var(--white);
}

.cta-inner {
    background: linear-gradient(135deg, #0a3560 0%, #0f4c81 35%, #1a6fc4 65%, #3b82f6 100%);
    border-radius: var(--r-xl);
    padding: 76px 48px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, .1), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -8%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, .06), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner h2 {
    font-size: var(--h2);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    position: relative;
}

.text-white-accent {
    color: #93c5fd;
}

.cta-inner p {
    font-size: 1.05rem;
    opacity: .88;
    margin-bottom: 40px;
    line-height: 1.75;
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}


/* ===== FOOTER ===== */
.footer {
    padding: 72px 0 0;
    background: #0c1e35;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(59, 130, 246, .08);
}

.footer-brand {
    margin-bottom: 16px;
}

.logo-light {
    color: #fff;
}

.logo-light .logo-icon {
    background: var(--primary);
}

.footer-col p {
    color: rgba(255, 255, 255, .45);
    font-size: var(--sm);
    line-height: 1.75;
    max-width: 300px;
}

.footer-col h4 {
    font-size: var(--body);
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}

.footer-col a {
    display: block;
    padding: 5px 0;
    font-size: var(--sm);
    color: rgba(255, 255, 255, .45);
    transition: color .3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: var(--sm);
    color: rgba(255, 255, 255, .25);
}


/* ===== FLOATING WA ===== */
.fab-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 999;
    box-shadow: 0 8px 28px rgba(37, 211, 102, .35), 0 2px 8px rgba(26, 111, 196, .15);
    animation: float 3s ease-in-out infinite;
    transition: transform .3s var(--spring);
}

.fab-wa:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 36px rgba(37, 211, 102, .45);
}


/* ===== NOTIFICATION POPUP ===== */
.notif-popup {
    position: fixed;
    bottom: 100px;
    left: 24px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary);
    border-radius: var(--r-lg);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    opacity: 0;
    transform: translateX(-100px);
    transition: all .5s var(--ease);
    pointer-events: none;
    max-width: 360px;
}

.notif-popup.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.notif-img {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.notif-text strong {
    display: block;
    font-size: var(--sm);
    color: var(--text);
}

.notif-text span {
    font-size: .8rem;
    color: var(--text-3);
}

.notif-time {
    font-size: .72rem;
    color: var(--primary);
    font-weight: 600;
    white-space: nowrap;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .nav {
        position: static;
        transform: none;
    }

    .nav-wrapper {
        flex-wrap: wrap;
    }

    .nav-inner {
        gap: 2px;
        padding: 4px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: .8rem;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-image {
        max-height: 400px;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card:last-child {
        grid-column: span 2;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        max-width: none;
    }

    .step-icon {
        width: 56px;
        height: 56px;
    }

    .step-icon svg {
        width: 24px;
        height: 24px;
    }

    .keunggulan-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .flagship-grid-new {
        grid-template-columns: 1fr;
    }

    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --sec-pad: 72px;
    }

    /* Mobile Overlay */
    .mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 998;
        background: rgba(12, 30, 53, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        transition: all .4s var(--ease);
    }

    .mobile-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(.92);
        width: calc(100% - 48px);
        max-width: 380px;
        background: var(--white);
        border-radius: var(--r-xl);
        padding: 36px 28px 28px;
        box-shadow: 0 32px 80px rgba(12, 30, 53, 0.25);
        opacity: 0;
        transition: all .45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-overlay.open .mobile-menu-content {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 28px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-light);
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 24px;
    }

    .mobile-nav-link {
        display: block;
        text-align: center;
        padding: 14px 20px;
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-2);
        background: var(--bg-subtle);
        border-radius: var(--r-md);
        transition: all .3s var(--ease);
        opacity: 0;
        transform: translateY(12px);
    }

    .mobile-overlay.open .mobile-nav-link {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(var(--i) * .06s + .15s);
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        background: var(--primary-light);
        color: var(--primary);
    }

    .mobile-nav-link.active {
        background: var(--primary);
        color: var(--white);
        box-shadow: 0 4px 16px rgba(26, 111, 196, .2);
    }

    .mobile-nav-footer {
        display: flex;
        flex-direction: column;
        gap: 10px;
        opacity: 0;
        transform: translateY(12px);
        transition: all .4s var(--ease);
    }

    .mobile-overlay.open .mobile-nav-footer {
        opacity: 1;
        transform: translateY(0);
        transition-delay: .5s;
    }

    .mobile-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px 24px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: #fff;
        font-weight: 700;
        font-size: .95rem;
        border-radius: var(--r-md);
        transition: all .3s var(--spring);
        box-shadow: 0 4px 16px rgba(37, 211, 102, .25);
    }

    .mobile-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
    }

    .mobile-phone-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 24px;
        background: var(--bg);
        color: var(--text);
        font-weight: 700;
        font-size: .9rem;
        border-radius: var(--r-md);
        border: 1px solid var(--border);
        transition: all .3s var(--ease);
    }

    .mobile-phone-btn:hover {
        background: var(--primary-light);
        color: var(--primary);
        border-color: var(--primary-100);
    }

    /* Desktop nav hidden on mobile */
    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hide-mobile {
        display: none !important;
    }

    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-content {
        text-align: center;
        max-width: none;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image {
        max-height: 320px;
    }

    .hero-pill {
        display: none;
    }

    .frame-corner {
        display: none;
    }

    .frame-border {
        display: none;
    }

    .frame-inner {
        padding: 4px;
    }

    .hero-frame {
        padding: 8px;
    }

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

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

    .price-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .keunggulan-wrapper {
        grid-template-columns: 1fr;
    }

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

    .flagship-grid-new {
        grid-template-columns: 1fr;
    }

    .flagship-card-main h3 {
        font-size: 1.3rem;
    }

    .flagship-card-body {
        padding: 28px 24px;
    }

    .flagship-features {
        gap: 8px;
    }

    .steps-grid::before {
        left: 19px;
    }

    .step-num {
        left: 4px;
        width: 32px;
        height: 32px;
        font-size: .75rem;
    }

    .step-icon {
        margin-left: 38px;
        width: 50px;
        height: 50px;
    }

    .step-icon svg {
        width: 22px;
        height: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-col p {
        max-width: none;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-inner {
        padding: 48px 24px;
    }

    .testi-card {
        padding: 32px 20px;
    }

    .notif-popup {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: 96px;
    }

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

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

    .flagship-grid .flagship-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

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

    .faq-question {
        padding: 16px 20px;
        font-size: .95rem;
    }

    .faq-answer p {
        padding: 0 20px 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 1 80px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-num {
        font-size: 1.8rem;
    }

    .value {
        font-size: 2.5rem;
    }

    .step {
        flex-direction: column;
        gap: 12px;
    }

    .step-icon {
        margin-left: 0;
    }

    .steps-grid::before {
        display: none;
    }

    .step-num {
        position: static;
        width: 32px;
        height: 32px;
    }

    .logo-badge {
        display: none;
    }
}


/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

::selection {
    background: rgba(26, 111, 196, .12);
    color: var(--text);
}

/* ===== MOBILE CTA BAR (Global) ===== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--primary);
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .15);
}

.mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    width: 100%;
}

.mobile-cta-bar a:hover {
    color: #fff;
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: block;
    }

    .fab-wa {
        display: none;
    }
}

@media print {
    .mobile-cta-bar {
        display: none !important;
    }
}