:root {
            --teal: #0d9488;
            --teal-light: #ccfbf1;
            --teal-dark: #0f766e;
            --navy: #1e293b;
            --slate: #475569;
            --accent-orange: #f97316;
            --accent-yellow: #fbbf24;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Outfit', sans-serif;
            background: #f8fffe;
            color: var(--navy);
        }

        /* ── NAVBAR ── */
        .navbar {
            background: #fff;
            border-bottom: 1px solid #e2e8f0;
            padding: 0.75rem 1.5rem;
            display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
            position: sticky; top: 0; z-index: 100;
        }
        .nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
        .nav-logo-icon { font-size: 1.6rem; }
        .nav-logo-text { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
        .nav-logo-text span { color: var(--teal); }
        .nav-logo-sub { font-size: 0.7rem; font-weight: 400; color: var(--slate); display: block; margin-top: -2px; }
        .nav-actions { display: flex; align-items: center; gap: 0.75rem; }
        .nav-back {
            font-size: 0.85rem; color: var(--teal); text-decoration: none; font-weight: 600;
            display: flex; align-items: center; gap: 0.25rem; white-space: nowrap;
            padding: 0.4rem 1rem; border: 1.5px solid var(--teal); border-radius: 999px;
            transition: background 0.2s, color 0.2s;
        }
        .nav-back:hover { background: var(--teal); color: #fff; }
        .nav-cta {
            font-size: 0.85rem; font-weight: 700; color: #fff;
            background: var(--teal); text-decoration: none;
            padding: 0.4rem 1.1rem; border-radius: 999px;
            transition: background 0.2s;
        }
        .nav-cta:hover { background: var(--teal-dark); }

        /* ── PAGE HEADER ── */
        .page-header {
            background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%);
            color: #fff; padding: 4.5rem 1.5rem 6rem;
            text-align: center; position: relative; overflow: hidden;
        }
        .page-header::before {
            content: ''; position: absolute; inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .page-header-icon { font-size: 3.5rem; display: block; margin-bottom: 1rem; position: relative; }
        .page-header h1 {
            font-size: clamp(2rem, 5vw, 3rem); font-weight: 800;
            letter-spacing: -0.02em; margin-bottom: 0.75rem; position: relative;
        }
        .page-header p {
            font-size: 1rem; opacity: 0.88; max-width: 540px;
            margin: 0 auto; line-height: 1.65; position: relative;
        }

        /* ── WAVE ── */
        .wave-divider { margin-top: -3px; line-height: 0; }
        .wave-divider svg { display: block; width: 100%; }

        /* ── MAIN CONTENT ── */
        .content-wrap {
            max-width: 860px;
            margin: 0 auto;
            padding: 3.5rem 1.5rem 5rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        /* ── INTRO CARD ── */
        .intro-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2.25rem;
            box-shadow: 0 4px 24px rgba(13,148,136,0.09);
            border: 1px solid var(--teal-light);
            line-height: 1.75;
            color: var(--slate);
            font-size: 0.97rem;
        }

        /* ── SECTION CARD ── */
        .section-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2.25rem;
            box-shadow: 0 4px 24px rgba(13,148,136,0.09);
            border: 1px solid rgba(13,148,136,0.1);
        }
        .section-card-header {
            display: flex; align-items: center; gap: 0.75rem;
            margin-bottom: 1.25rem;
        }
        .section-card-header-icon {
            width: 42px; height: 42px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; flex-shrink: 0;
        }
        .icon-teal { background: var(--teal-light); }
        .icon-yellow { background: #fef3c7; }
        .icon-blue { background: #dbeafe; }
        .icon-orange { background: #ffedd5; }

        .section-card-header h2 {
            font-size: 1.1rem; font-weight: 700; color: var(--navy);
        }
        .section-card-header .accent-line {
            height: 3px; width: 36px; border-radius: 99px;
            background: linear-gradient(90deg, var(--teal), var(--accent-orange));
            margin-top: 0.25rem;
        }

        /* ── VISI BLOCK ── */
        .visi-block {
            background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
            border-radius: 14px;
            padding: 1.5rem 1.75rem;
            border-left: 4px solid var(--teal);
        }
        .visi-block p {
            font-size: 1rem; font-weight: 600; color: var(--teal-dark);
            line-height: 1.65; text-transform: uppercase; letter-spacing: 0.02em;
        }

        /* ── MISI LIST ── */
        .misi-list {
            list-style: none;
            display: flex; flex-direction: column; gap: 0.85rem;
            padding: 0;
        }
        .misi-list li {
            display: flex; align-items: flex-start; gap: 0.75rem;
            font-size: 0.92rem; color: var(--slate); line-height: 1.6;
        }
        .misi-num {
            width: 26px; height: 26px; min-width: 26px;
            background: var(--teal); color: #fff;
            border-radius: 50%; display: flex; align-items: center;
            justify-content: center; font-size: 0.72rem; font-weight: 700;
            margin-top: 1px;
        }

        /* ── UU LINK ── */
        .uu-link-wrap {
            display: flex; align-items: center; gap: 1rem;
            background: #f8fafc; border-radius: 14px;
            padding: 1.25rem 1.5rem;
            border: 1px solid #e2e8f0;
            text-decoration: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .uu-link-wrap:hover {
            border-color: var(--teal);
            box-shadow: 0 4px 16px rgba(13,148,136,0.12);
        }
        .uu-icon {
            width: 46px; height: 46px; min-width: 46px;
            background: var(--teal-light); border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem;
        }
        .uu-text-title {
            font-size: 0.82rem; font-weight: 700; color: var(--navy);
            margin-bottom: 0.2rem;
        }
        .uu-text-sub {
            font-size: 0.78rem; color: var(--teal); font-weight: 500;
        }
        .uu-arrow { margin-left: auto; color: var(--teal); font-size: 1.1rem; }

        /* ── CTA BLOCK ── */
        .cta-block {
            background: linear-gradient(135deg, #0f766e, #0d9488);
            border-radius: 20px; padding: 2.25rem 2rem;
            text-align: center; color: #fff;
        }
        .cta-block p { opacity: 0.9; margin-bottom: 1.25rem; font-size: 0.95rem; line-height: 1.6; }
        .cta-btn {
            display: inline-block;
            background: #fff; color: var(--teal-dark);
            font-weight: 700; font-size: 0.92rem;
            padding: 0.7rem 1.75rem; border-radius: 999px;
            text-decoration: none;
            transition: background 0.2s, transform 0.2s;
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }
        .cta-btn:hover { background: var(--teal-light); transform: translateY(-2px); }

        /* ── FOOTER ── */
        .footer { background: var(--navy); color: #cbd5e1; padding: 2.5rem 1.5rem 1.5rem; }
        .footer-inner {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid #334155;
        }
        .footer-logo-text { font-size: 1.1rem; font-weight: 700; color: #fff; }
        .footer-logo-text span { color: #5eead4; }
        .footer-desc { font-size: 0.82rem; margin-top: 0.6rem; line-height: 1.6; color: #94a3b8; }
        .footer-heading { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 0.75rem; }
        .footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
        .footer-links-list a { color: #94a3b8; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
        .footer-links-list a:hover { color: #5eead4; }
        .footer-bottom { text-align: center; padding-top: 1.25rem; font-size: 0.8rem; color: #64748b; max-width: 1100px; margin: 0 auto; }

        /* ── RESPONSIVE ADJUSTMENTS ── */
        @media (max-width: 900px) {
            .content-wrap { padding: 2.5rem 1rem 3rem; }
            .page-header { padding: 3.5rem 1rem 4rem; }
            .page-header-icon { font-size: 2.8rem; }
            .page-header p { max-width: 100%; font-size: 0.98rem; }
            .section-card, .intro-card { padding: 1.25rem; border-radius: 14px; }
            .uu-link-wrap { padding: 1rem; }
        }

        @media (max-width: 640px) {
            .nav-logo-text { font-size: 1rem; }
            .nav-logo-sub { display: none; }
            .nav-actions { width: 100%; display: flex; justify-content: flex-end; gap: 0.5rem; }
            .nav-back, .nav-cta { padding: 0.35rem 0.75rem; font-size: 0.82rem; }
            .page-header { text-align: left; padding: 2.25rem 1rem 2.75rem; }
            .page-header h1 { font-size: clamp(1.4rem, 6vw, 2.2rem); text-align: left; }
            .page-header-icon { margin-bottom: 0.5rem; }
            .content-wrap { padding: 1.5rem 1rem; gap: 1rem; }
            .intro-card { padding: 1rem; }
            .visi-block { padding: 1rem; }
            .misi-list li { font-size: 0.9rem; }
            .misi-num { width: 22px; height: 22px; min-width: 22px; font-size: 0.68rem; }
            .uu-link-wrap { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
            .uu-arrow { margin-left: 0; align-self: flex-end; }
            .cta-block { padding: 1.25rem 1rem; }
            .cta-btn { width: 100%; padding: 0.65rem; }
        }

        @media (max-width: 420px) {
            .nav-actions { justify-content: space-between; }
            .nav-back { display: none; }
            .page-header { padding: 1.75rem 0.9rem 2rem; }
            .page-header h1 { font-size: clamp(1.2rem, 7vw, 1.9rem); }
            .page-header p { font-size: 0.92rem; }
            .intro-card, .section-card { padding: 0.85rem; border-radius: 12px; }
            .uu-text-title { font-size: 0.78rem; }
            .uu-text-sub { font-size: 0.72rem; }
        }