        /* ==========================================================
   CSS RESET
========================================================== */

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-family-base);
            font-size: var(--font-size-base);
            font-weight: var(--font-weight-normal);
            line-height: var(--line-height-base);
            color: var(--text-primary);
            background: var(--color-background);
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        img,
        picture {
            display: block;
            max-width: 100%;
            height: auto;
        }

        svg {
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-normal);
        }

        button,
        input,
        textarea,
        select {
            font: inherit;
            color: inherit;
            background: none;
            border: none;
            outline: none;
        }

        button {
            cursor: pointer;
        }

        textarea {
            resize: vertical;
        }

        ul,
        ol {
            list-style: none;
        }

        table {
            border-collapse: collapse;
            border-spacing: 0;
        }

        fieldset {
            border: none;
        }

        iframe {
            border: none;
        }

        /* ==========================================================
   TYPOGRAPHY
========================================================== */

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--text-primary);
            font-weight: var(--font-weight-bold);
            line-height: var(--line-height-tight);
        }

        h1 {
            font-size: clamp(2.25rem, 5vw, 4rem);
        }

        h2 {
            font-size: clamp(1.75rem, 4vw, 3rem);
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
        }

        h4 {
            font-size: 1.25rem;
        }

        h5 {
            font-size: 1.125rem;
        }

        h6 {
            font-size: 1rem;
        }

        p {
            color: var(--text-secondary);
            line-height: var(--line-height-loose);
        }

        /* ==========================================================
   LAYOUT
========================================================== */

        section {
            position: relative;
            padding: 6rem 0;
        }

        .container {
            width: min(100% - (var(--container-padding) * 2), var(--container-width));
            margin-inline: auto;
        }

        .container-sm {
            max-width: 900px;
            margin-inline: auto;
        }

        .container-xs {
            max-width: 700px;
            margin-inline: auto;
        }

        /* ==========================================================
   GRID
========================================================== */

        .grid {
            display: grid;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        /* ==========================================================
   FLEX
========================================================== */

        .flex {
            display: flex;
        }

        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flex-between {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .flex-column {
            display: flex;
            flex-direction: column;
        }

        /* ==========================================================
   BUTTONS
========================================================== */

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .75rem;
            min-height: var(--button-height);
            padding: 0 var(--button-padding-x);
            border-radius: var(--radius-pill);
            font-weight: var(--button-font-weight);
            transition: var(--transition-normal);
            cursor: pointer;
            user-select: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--color-primary);
            color: var(--color-white);
        }

        .btn-primary:hover {
            background: var(--color-primary-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: var(--color-secondary);
            color: var(--color-white);
        }

        .btn-secondary:hover {
            background: var(--color-secondary-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 2px solid var(--color-primary);
            color: var(--color-primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--color-primary);
            color: var(--color-white);
        }

        /* ==========================================================
   CARD
========================================================== */

        .card {
            background: var(--color-surface);
            border-radius: var(--card-radius);
            padding: var(--card-padding);
            box-shadow: var(--card-shadow);
        }

        /* ==========================================================
   FORM
========================================================== */

        .input,
        .select,
        .textarea {
            width: 100%;
            border: 1px solid var(--input-border);
            border-radius: var(--input-radius);
            padding: 1rem;
            background: var(--color-white);
            transition: var(--transition-fast);
        }

        .input,
        .select {
            min-height: var(--input-height);
        }

        .input:focus,
        .select:focus,
        .textarea:focus {
            border-color: var(--input-focus);
            box-shadow: 0 0 0 4px rgba(0, 167, 157, .12);
        }

        /* ==========================================================
   UTILITIES
========================================================== */

        .text-center {
            text-align: center;
        }

        .text-left {
            text-align: left;
        }

        .text-right {
            text-align: right;
        }

        .text-primary {
            color: var(--color-primary);
        }

        .text-secondary {
            color: var(--color-secondary);
        }

        .text-success {
            color: var(--color-success);
        }

        .text-danger {
            color: var(--color-danger);
        }

        .bg-primary {
            background: var(--color-primary);
        }

        .bg-secondary {
            background: var(--color-secondary);
        }

        .bg-light {
            background: var(--color-background);
        }

        .rounded {
            border-radius: var(--radius-lg);
        }

        .shadow {
            box-shadow: var(--shadow-md);
        }

        .w-100 {
            width: 100%;
        }

        .d-none {
            display: none;
        }

        /* ==========================================================
   SPACING
========================================================== */

        .mt-1 {
            margin-top: .5rem;
        }

        .mt-2 {
            margin-top: 1rem;
        }

        .mt-3 {
            margin-top: 1.5rem;
        }

        .mt-4 {
            margin-top: 2rem;
        }

        .mt-5 {
            margin-top: 3rem;
        }

        .mb-1 {
            margin-bottom: .5rem;
        }

        .mb-2 {
            margin-bottom: 1rem;
        }

        .mb-3 {
            margin-bottom: 1.5rem;
        }

        .mb-4 {
            margin-bottom: 2rem;
        }

        .mb-5 {
            margin-bottom: 3rem;
        }

        /* ==========================================================
   MEDIA
========================================================== */

        @media (max-width:992px) {

            .grid-4,
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        @media (max-width:768px) {

            section {
                padding: 4rem 1.25rem;
            }

            .grid-2,
            .grid-3,
            .grid-4 {
                grid-template-columns: 1fr;
            }

            .flex-between {
                flex-direction: column;
                align-items: flex-start;
            }

            .btn {
                width: 100%;
                min-height: 56px;
            }

        }

        @media (max-width:576px) {

            .container {
                width: min(100% - 2rem, var(--container-width));
            }

        }

        :root {

            /* ========================================
       BRAND COLOURS
    ======================================== */
            --color-primary: #00A79D;
            --color-primary-dark: #00857D;
            --color-primary-light: #D9F7F4;

            --color-secondary: #8B1E3F;
            --color-secondary-dark: #6F1732;
            --color-secondary-light: #F8E8ED;

            --color-accent: #D4AF37;
            --color-accent-light: #F7E7A1;

            /* ========================================
       SEMANTIC COLOURS
    ======================================== */
            --color-success: #22C55E;
            --color-warning: #F59E0B;
            --color-danger: #EF4444;
            --color-info: #0EA5E9;

            /* ========================================
       NEUTRAL COLOURS
    ======================================== */
            --color-white: #FFFFFF;
            --color-background: #F8FAFC;
            --color-surface: #FFFFFF;

            --color-gray-50: #F9FAFB;
            --color-gray-100: #F3F4F6;
            --color-gray-200: #E5E7EB;
            --color-gray-300: #D1D5DB;
            --color-gray-400: #9CA3AF;
            --color-gray-500: #6B7280;
            --color-gray-600: #4B5563;
            --color-gray-700: #374151;
            --color-gray-800: #1F2937;
            --color-gray-900: #111827;

            /* ========================================
       TEXT COLOURS
    ======================================== */
            --text-primary: var(--color-gray-900);
            --text-secondary: var(--color-gray-600);
            --text-muted: var(--color-gray-500);
            --text-white: var(--color-white);
            --text-link: var(--color-primary);

            /* ========================================
       TYPOGRAPHY
    ======================================== */
            --font-family-base: "Poppins", sans-serif;

            --font-size-xs: 0.75rem;
            --font-size-sm: 0.875rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.125rem;
            --font-size-xl: 1.25rem;
            --font-size-2xl: 1.5rem;
            --font-size-3xl: 2rem;
            --font-size-4xl: 2.5rem;
            --font-size-5xl: 3rem;

            --font-weight-light: 300;
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
            --font-weight-extrabold: 800;

            --line-height-tight: 1.2;
            --line-height-base: 1.6;
            --line-height-loose: 1.8;

            /* ========================================
       SPACING (8PT SYSTEM)
    ======================================== */
            --space-0: 0;
            --space-1: 0.25rem;
            --space-2: 0.5rem;
            --space-3: 0.75rem;
            --space-4: 1rem;
            --space-5: 1.5rem;
            --space-6: 2rem;
            --space-7: 2.5rem;
            --space-8: 3rem;
            --space-9: 4rem;
            --space-10: 5rem;
            --space-11: 6rem;

            /* ========================================
       CONTAINER
    ======================================== */
            --container-width: 1200px;
            --container-padding: 1.25rem;

            /* ========================================
       BORDER RADIUS
    ======================================== */
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
            --radius-pill: 999px;

            /* ========================================
       SHADOWS
    ======================================== */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, .05);
            --shadow-md: 0 10px 25px rgba(0, 0, 0, .08);
            --shadow-lg: 0 20px 50px rgba(0, 0, 0, .12);

            /* ========================================
       BORDERS
    ======================================== */
            --border-color: var(--color-gray-200);
            --border-width: 1px;

            /* ========================================
       TRANSITIONS
    ======================================== */
            --transition-fast: .2s ease;
            --transition-normal: .3s ease;
            --transition-slow: .5s ease;

            /* ========================================
       Z-INDEX
    ======================================== */
            --z-dropdown: 100;
            --z-sticky: 500;
            --z-header: 1000;
            --z-overlay: 2000;
            --z-modal: 3000;
            --z-toast: 4000;

            /* ========================================
       HEADER
    ======================================== */
            --header-height: 80px;

            /* ========================================
       BUTTONS
    ======================================== */
            --button-height: 52px;
            --button-padding-x: 1.75rem;
            --button-font-weight: 600;

            /* ========================================
       FORMS
    ======================================== */
            --input-height: 52px;
            --input-radius: var(--radius-md);
            --input-border: var(--color-gray-300);
            --input-focus: var(--color-primary);

            /* ========================================
       CARDS
    ======================================== */
            --card-radius: var(--radius-lg);
            --card-padding: 2rem;
            --card-shadow: var(--shadow-md);

            /* ========================================
       SECTION
    ======================================== */
            --section-padding-y: 6rem;
            --section-padding-x: 1.5rem;

            /* ========================================
       ANIMATION
    ======================================== */
            --animation-duration: .3s;
            --animation-timing: ease;

            /* ========================================
       BREAKPOINTS (REFERENCE)
    ======================================== */
            --breakpoint-sm: 576px;
            --breakpoint-md: 768px;
            --breakpoint-lg: 992px;
            --breakpoint-xl: 1200px;
            --breakpoint-xxl: 1400px;
        }


        /* ==========================================================
   NAVBAR
========================================================== */

        /* ==========================================================
   NAVBAR
========================================================== */

        .navbar {
            position: fixed;
            top: 0;
            left: 0;

            width: 100%;

            min-height: var(--header-height);

            background: rgba(255, 255, 255, .96);

            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);

            border-bottom: 1px solid var(--border-color);

            z-index: 9999;

            transition: var(--transition-normal);
        }


        /* ==========================================================
   NAVBAR WRAPPER
========================================================== */

        .navbar__wrapper {
            display: flex;
            align-items: center;

            min-height: var(--header-height);

            gap: 2rem;
            padding-inline: 32px;
        }


        /* ==========================================================
   LOGO
========================================================== */

        .navbar__brand {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            gap: 12px;
        }

        .navbar__logo {
            width: auto;
            object-fit: contain;
        }

        .navbar__logo--prubsn {
            height: 48px;
        }

        .navbar__logo--agency {
            height: 52px;
        }

        .navbar__logo-divider {
            width: 1px;
            height: 38px;
            background: var(--border-color);
        }


        /* ==========================================================
   NAVIGATION
========================================================== */

        .navbar__menu {
            display: flex;
            align-items: center;

            gap: 2rem;

            margin-left: auto;
        }

        .navbar__item {
            list-style: none;
        }

        .navbar__link {
            position: relative;

            display: inline-flex;
            align-items: center;

            font-size: .95rem;
            font-weight: 500;

            color: var(--text-primary);

            transition: var(--transition-fast);
        }

        .navbar__link:hover {
            color: var(--color-primary);
        }

        .navbar__link::after {
            content: "";

            position: absolute;

            left: 0;
            bottom: -6px;

            width: 0;
            height: 2px;

            background: var(--color-primary);

            transition: var(--transition-fast);
        }

        .navbar__link:hover::after {
            width: 100%;
        }


        /* ==========================================================
   ACTIONS
========================================================== */

        .navbar__actions {
            display: flex;
            align-items: center;

            gap: 1rem;

            flex-shrink: 0;
        }


        /* ==========================================================
   MOBILE TOGGLE
========================================================== */

        .navbar__toggle {
            display: none;

            width: 48px;
            height: 48px;

            border-radius: var(--radius-md);

            background: var(--color-primary-light);
            color: var(--color-primary);

            font-size: 1.2rem;

            transition: var(--transition-fast);
        }

        .navbar__toggle:hover {
            background: var(--color-primary);
            color: var(--color-white);
        }

        /* ==========================================================
   HERO
========================================================== */

        .hero {
            position: relative;
            overflow: hidden;
            padding-top: calc(var(--header-height) + 4rem);
            padding-bottom: 6rem;
            background: #0f172a;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                var(--hero-bg) center center / cover no-repeat;
            filter: blur(2px);
            transform: scale(1.08);
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(15, 23, 42, .35),
                    rgba(15, 23, 42, .45));
        }

        .hero__content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 4rem;
            border-radius: 24px;
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, .18);
        }

        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            justify-content: center;
            text-align: center;
            padding: 12px 16px;
            border-radius: 999px;
            background: var(--color-primary-light);
            color: #00A79D;
            font-size: .9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero__title {
            max-width: 800px;
            margin: 0 auto 1.5rem;
            color: #FFFFFF;
            text-shadow: 0 3px 18px rgba(0, 0, 0, .35);
        }

        .hero__description {
            margin-bottom: 2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.15rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, .92);
            text-shadow: 0 2px 10px rgba(0, 0, 0, .25);
        }

        .hero__highlights {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .hero__highlight {
            display: flex;
            align-items: center;
            gap: .6rem;
            color: #FFFFFF;
            font-weight: 500;
        }

        .hero__highlight i {
            color: var(--color-success);
        }

        .hero__cta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero__cta .btn-primary {
            background: #ED1C24;
            border-color: #ED1C24;
            color: #FFFFFF;
        }

        .hero__cta .btn-primary:hover {
            background: #C8102E;
            border-color: #C8102E;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(237, 28, 36, .35);
        }

        .hero__cta .btn-primary:active {
            transform: translateY(0);
        }

        .hero__cta .btn {
            padding: 1.15rem 2.5rem;
            font-size: 1.15rem;
            font-weight: 700;
            border-radius: 999px;
            min-width: 260px;
        }

        .hero__trust {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .hero__trust-item {
            display: flex;
            align-items: center;
            gap: .75rem;
            color: #FFFFFF;
        }

        .hero__trust-item i {
            color: var(--color-primary);
            font-size: 1.2rem;
        }

        /* ==========================================================
   TRUST BAR
========================================================== */

        .trust-bar {
            background: var(--color-primary);
            color: #fff;
            padding: 2rem 0;
        }

        .trust-bar__wrapper {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .trust-bar__item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .trust-bar__item i {
            font-size: 2rem;
        }

        .trust-bar__item strong {
            display: block;
            color: #fff;
        }

        .trust-bar__item span {
            color: rgba(255, 255, 255, .9);
            font-size: .9rem;
        }

        /* ==========================================================
   SECTION LAYOUT
========================================================== */

        .section-header {
            max-width: 800px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        .section-badge {
            display: inline-flex;
            padding: .6rem 1rem;
            border-radius: 999px;
            background: var(--color-primary-light);
            color: var(--color-primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            margin-bottom: 1rem;
            color: #d40007;
        }

        .section-description {
            font-size: 1.05rem;
            font-weight: 500;
        }

        /* ==========================================================
WHY PRUBSN
========================================================== */

        .why-prubsn {
            background: #FFFFFF;
        }


        .why-prubsn__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .why-prubsn__card {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem;
            text-align: left;
            border-radius: var(--radius-lg);
            background: #fff;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
        }

        .why-prubsn__card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .why-prubsn__icon {
            width: 64px;
            height: 64px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--color-primary-light);
            color: var(--color-primary);
            font-size: 1.5rem;
        }

        .why-prubsn__content {
            flex: 1;
        }

        .why-prubsn__content h3 {
            margin-bottom: .5rem;
            font-size: 1.15rem;
        }

        .why-prubsn__content p {
            margin: 0;
            line-height: 1.8;
        }

        /* ==========================================================
   INTRO SECTION (Medical + Hibah)
========================================================== */

        .intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .intro__image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .intro__image img {
            width: 100%;
            max-width: 650px;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            display: block;
        }

        .intro__text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .intro__text .section-header {
            text-align: left;
            margin-bottom: 0;
        }

        .intro__text .section-title {
            text-align: left;
        }

        .intro__text .section-description {
            text-align: left;
        }

        .intro__list {
            list-style: none;
            justify-content: center;
            margin: 2rem 0;
            padding: 0;
        }

        .intro__list li {
            display: flex;
            align-items: center;
            gap: .75rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .intro__list i {
            color: #22C55E;
            font-size: 1.2rem;
        }


        /* ==========================================================
   MEDICAL CARD
========================================================== */

        .medical-card {
            background: #FFFFFF;
        }

        .medical-card__content {
            max-width: 900px;
            margin: 0 auto;
        }

        .medical-card__image {
            padding-top: 40px;
            display: flex;
            justify-content: center;
        }

        .medical-card__image img {
            width: 100%;
            max-width: 520px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
        }

        .medical-card__info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .medical-card__icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: var(--color-primary-light);
            color: var(--color-primary);
            font-size: 1.5rem;
        }

        .medical-card__feature {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            background: var(--color-surface);
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
        }

        .medical-card__feature:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .medical-card__feature h3 {
            margin-bottom: .5rem;
            font-size: 1.15rem;
        }

        .medical-card__feature p {
            margin: 0;
        }

        .medical-card__cta {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2.5rem;
        }

        /* ==========================================================
   MEDICAL FACTS
========================================================== */

        .medical-facts {
            background: #F8FAFC;
        }

        .medical-facts__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .medical-facts__card {
            background: #fff;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: .3s;
        }

        .medical-facts__card:hover {
            transform: translateY(-6px);
        }

        .medical-facts__icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            background: var(--color-primary-light);
            color: var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
        }

        .medical-facts__card h3 {
            margin-bottom: .5rem;
            font-size: 1.1rem;
        }

        .medical-facts__amount {
            font-size: 2.4rem;
            font-weight: 800;
            color: #ED1C24;
            margin-bottom: 1rem;
        }

        .medical-facts__card p {
            margin: 0;
        }

        .medical-facts__warning {
            margin-top: 2.5rem;
            padding: 1.4rem 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            background: #FFF6E9;
            border-left: 5px solid #F59E0B;
            border-radius: 16px;
        }

        .medical-facts__warning i {
            color: #F59E0B;
            font-size: 1.5rem;
        }

        .medical-facts__warning p {
            margin: 0;
        }

        .medical-facts__warning strong {
            color: #111827;
        }


        /* ==========================================================
   HIBAH INTRO
========================================================== */

        .hibah {
            background: #FFFFFF;
        }

        .hibah__content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hibah__image {
            padding-top: 40px;
            display: flex;
            justify-content: center;
        }

        .hibah__image img {
            width: 100%;
            max-width: 520px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
        }

        .hibah__info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .hibah__icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: var(--color-secondary-light);
            color: var(--color-secondary);
            font-size: 1.5rem;
        }

        .hibah__feature {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            background: var(--color-surface);
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);

            background: linear-gradient(90deg,
                    #FFF8F8 0%,
                    #FFFFFF 100%);
        }

        .hibah__feature:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .hibah__feature h3 {
            margin-bottom: .5rem;
            font-size: 1.15rem;
        }

        .hibah__feature p {
            margin: 0;
        }

        .hibah__cta {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2.5rem;
        }

        /* ==========================================================
HIBAH FACTS
========================================================== */

        .hibah-facts {
            background: #F8FAFC;
        }

        .hibah-facts__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .hibah-facts__card {
            background: #fff;
            border-radius: 24px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: var(--shadow-md);
        }

        .hibah-facts__icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 1rem;
            background: var(--color-primary-light);
            color: var(--color-primary);
            font-size: 1.8rem;
        }

        .hibah-facts__amount {
            font-size: 2.7rem;
            font-weight: 800;
            color: #ED1C24;
            margin: 1rem 0;
        }

        .hibah-facts__warning {
            margin-top: 2.5rem;
            padding: 1.4rem 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            background: #FFF6E9;
            border-left: 5px solid #F59E0B;
            border-radius: 16px;
        }

        .hibah-facts__warning i {
            color: #F59E0B;
            font-size: 1.5rem;
        }

        .hibah-facts__warning p {
            margin: 0;
        }

        .hibah-facts__warning strong {
            color: #111827;
        }

        /* ==========================================================
   CRITICAL ILLNESS
========================================================== */

        .critical {
            background: #FFFFFF;
        }


        /* FEATURE ICON */

        .critical__icon {
            width: 64px;
            height: 64px;

            border-radius: 50%;

            display: flex;
            align-items: center;
            justify-content: center;

            flex-shrink: 0;

            background: #F3E8FF;
            color: #6B46C1;

            font-size: 1.5rem;
        }


        /* FEATURE CARD */

        .critical__feature {
            display: flex;

            gap: 1rem;

            align-items: flex-start;

            background: linear-gradient(90deg,
                    #FAF7FF 0%,
                    #FFFFFF 100%);

            padding: 1.5rem;

            border-radius: var(--radius-lg);

            box-shadow: var(--shadow-sm);

            transition: var(--transition-normal);
        }

        .critical__feature:hover {
            transform: translateY(-5px);

            box-shadow: var(--shadow-md);
        }


        /* FEATURE TITLE */

        .critical__feature h3 {
            margin-bottom: .5rem;

            font-size: 1.15rem;
        }


        /* FEATURE DESCRIPTION */

        .critical__feature p {
            margin: 0;
        }



        /* ==========================================================
   ABOUT
========================================================== */

        .about {
            background: #F8FAFC;
        }

        .about__content {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 4rem;
            align-items: start;
        }

        .about__image {
            padding-top: 20px;
            display: flex;
            justify-content: center;
        }

        .about__image img {
            width: 100%;
            max-width: 460px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
        }

        .about__info {
            display: flex;
            flex-direction: column;
        }

        .about__position {
            display: inline-flex;
            align-items: center;
            align-self: flex-start;
            padding: .6rem 1rem;
            margin-bottom: 1rem;
            border-radius: 999px;
            background: var(--color-primary-light);
            color: var(--color-primary);
            font-size: .9rem;
            font-weight: 600;
        }

        .about__name {
            margin-bottom: 1.5rem;
        }

        .about__info p {
            margin-bottom: 1.25rem;
        }

        .about__features {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin: 2rem 0;
        }

        .about__feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem 1.25rem;
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
        }

        .about__feature:hover {
            transform: translateX(6px);
            box-shadow: var(--shadow-md);
        }

        .about__feature i {
            margin-top: .2rem;
            flex-shrink: 0;
            font-size: 1.2rem;
            color: var(--color-success);
        }

        .about__feature span {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .about__cta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }

        /* ==========================================================
TESTIMONIAL
========================================================== */

        .testimonial {
            background: #FFFFFF;
        }

        .testimonialSwiper {
            position: relative;
            width: 100%;
            padding: 20px 0 70px;
        }

        .testimonial .swiper-slide {
            width: 780px;
            opacity: .35;
            transform: scale(.82);
            transition: all .45s ease;
        }

        .testimonial .swiper-slide-active {
            opacity: 1;
            transform: scale(1);
        }

        .testimonial__card {
            background: #fff;
            border-radius: 28px;
            padding: 3rem;
            box-shadow: 0 18px 45px rgba(15, 23, 42, .10);
        }

        .testimonial__rating {
            display: flex;
            gap: .35rem;
            color: #F59E0B;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .testimonial__quote {
            font-size: 1.12rem;
            line-height: 1.9;
            color: var(--text-primary);
            font-style: italic;
            margin-bottom: 2rem;
        }

        .testimonial__author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, .08);
        }

        .testimonial__avatar {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: var(--color-primary);
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .testimonial__author h4 {
            margin: 0;
            font-size: 1.05rem;
        }

        .testimonial__author span {
            color: var(--text-muted);
            font-size: .92rem;
        }

        .testimonial .swiper-button-prev,
        .testimonial .swiper-button-next {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
            color: var(--color-primary);
        }

        .testimonial .swiper-button-prev::after,
        .testimonial .swiper-button-next::after {
            font-size: 18px;
            font-weight: 700;
        }

        .testimonial .swiper-button-prev:hover,
        .testimonial .swiper-button-next:hover {
            background: var(--color-primary);
            color: #fff;
        }

        .testimonial .swiper-pagination {
            bottom: 0;
        }

        .testimonial .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #CBD5E1;
            opacity: 1;
        }

        .testimonial .swiper-pagination-bullet-active {
            width: 34px;
            border-radius: 20px;
            background: var(--color-primary);
        }

        /* ==========================================================
   FAQ
========================================================== */

        .faq {
            background: #F8FAFC;
        }

        .faq__list {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq__item {
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: var(--transition-normal);
        }

        .faq__item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--color-primary);
        }

        .faq__item[open] {
            border-color: var(--color-primary);
            box-shadow: var(--shadow-md);
        }

        .faq__question {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.5rem 4rem 1.5rem 1.5rem;
            cursor: pointer;
            list-style: none;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
            transition: var(--transition-fast);
        }

        .faq__question:hover {
            color: var(--color-primary);
        }

        .faq__question::-webkit-details-marker {
            display: none;
        }

        .faq__question::after {
            content: "+";
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--color-primary-light);
            color: var(--color-primary);
            font-size: 1.4rem;
            font-weight: 700;
            transition: var(--transition-normal);
        }

        .faq__item[open] .faq__question::after {
            content: "−";
            background: var(--color-primary);
            color: var(--color-white);
            transform: translateY(-50%) rotate(180deg);
        }

        .faq__answer {
            padding: 0 1.5rem 1.5rem;
            border-top: 1px solid var(--border-color);
            animation: faqFade .25s ease;
        }

        .faq__answer p {
            margin-top: 1rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        @keyframes faqFade {

            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }

        /* ==========================================================
   CONTACT
========================================================== */

        .contact {
            background: #FFFFFF;
        }

        .contact__wrapper {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 3rem;
            align-items: start;
        }

        .contact__info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact__card {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            padding: 1.5rem;
            background: #00A79D;
            color: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
        }

        .contact__card:hover {
            transform: translateY(-5px);
            background: #00958d;
            box-shadow: 0 16px 36px rgba(0, 167, 157, .30);
        }

        .contact__icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, .18);
            color: #fff;
            font-size: 1.5rem;
        }

        .contact__card h3 {
            margin-bottom: .5rem;
            color: #111827;
        }

        .contact__card p {
            margin: 0;
            color: rgba(255, 255, 255, .92);
            font-weight: 500;
        }

        .contact__form {
            padding: 2rem;
            background: #fff;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 1rem;
        }

        .form-group label {
            margin-bottom: .4rem;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: .9rem 1rem;
            font-family: inherit;
            font-size: 1rem;
            color: var(--text-primary);
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            outline: none;
            transition: var(--transition-fast);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 4px rgba(0, 167, 157, .10);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        .form-group select {
            cursor: pointer;
        }

        .contact__form button {
            margin-top: .5rem;
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
        }

        .form-step-header {
            margin-bottom: 24px;
        }

        .form-step-number {
            display: block;
            font-size: 0.85rem;
            margin-bottom: 6px;
        }

        .form-step-header h3 {
            margin-bottom: 6px;
        }

        .form-step-header p {
            margin: 0;
        }

        .form-navigation {
            display: flex;
            gap: 12px;
        }

        .form-navigation .btn {
            flex: 1;
        }

        .btn-submit {
            background: #ED1C24;
            border-color: #ED1C24;
            color: #FFFFFF;
        }

        .btn-submit:hover {
            background: #C8102E;
            border-color: #C8102E;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(237, 28, 36, .35);
        }

        .contact__disclaimer {
            margin-top: 1rem;
            font-size: .7rem;
            color: var(--text-muted);
            text-align: center;
        }

        /* ==========================================
   ERROR MODAL
========================================== */

        .error-modal {
            position: fixed;
            inset: 0;
            display: none;
            justify-content: center;
            align-items: center;
            background: rgba(15, 23, 42, 0.65);
            backdrop-filter: blur(6px);
            z-index: 9999;
            padding: 1.5rem;
        }

        .error-modal.active {
            display: flex;
        }

        .error-modal__content {
            width: 100%;
            max-width: 480px;
            background: #ffffff;
            border-radius: 24px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
            animation: modalFade .25s ease;
        }

        .error-modal__icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            background: rgba(239, 68, 68, .12);
            color: #EF4444;
            font-size: 2.5rem;
        }

        .error-modal__content h2 {
            margin-bottom: .8rem;
        }

        .error-modal__content p {
            margin-bottom: 2rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .error-modal__content .btn {
            width: 100%;
        }

        @keyframes modalFade {

            from {
                opacity: 0;
                transform: translateY(20px) scale(.96);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }

        }

        /* ==========================================================
   FOOTER
========================================================== */

        .footer {
            background: var(--color-gray-900);
            color: var(--color-white);
            padding: 4rem 1.5rem 2rem;
        }

        .footer a {
            color: rgba(255, 255, 255, .85);
        }

        .footer a:hover {
            color: var(--color-primary-light);
        }


        /* ==========================================================
   FOOTER TOP
========================================================== */

        .footer__top {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }


        /* ==========================================================
   FOOTER BRAND
========================================================== */

        .footer__brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer__logo-link {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .footer__logo {
            width: auto;
            object-fit: contain;
        }

        .footer__logo--prubsn {
            height: 70px;
        }

        .footer__logo--agency {
            height: 75px;
        }

        .footer__logo-divider {
            width: 1px;
            height: 55px;
            background: rgba(255, 255, 255, .25);
        }

        .footer__description {
            max-width: 450px;
            color: rgba(255, 255, 255, .75);
            line-height: 1.8;
        }


        /* ==========================================================
   FOOTER LINKS
========================================================== */

        .footer__links h3,
        .footer__contact h3 {
            color: #fff;
            margin-bottom: 1.2rem;
        }

        .footer__links ul,
        .footer__contact ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: .9rem;
            padding: 0;
            margin: 0;
        }

        .footer__contact li {
            display: flex;
            align-items: center;
            gap: .6rem;
        }

        /* ==========================================================
   FOOTER BOTTOM
========================================================== */

        .footer__bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, .10);

            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer__copyright {
            margin: 0;
            font-size: .9rem;
            color: rgba(255, 255, 255, .60);
        }


        /* ==========================================================
   FOOTER LEGAL
========================================================== */

        .footer__legal {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: .7rem;

            margin-top: .8rem;
        }

        .footer__legal a {
            font-size: .9rem;
            color: rgba(255, 255, 255, .85);
        }

        .footer__legal span {
            color: rgba(255, 255, 255, .35);
        }


        /* ==========================================================
   FOOTER DISCLAIMER
========================================================== */

        .footer__disclaimer {
            max-width: 1050px;

            margin: 1.8rem 0 0;
            padding-top: 1.4rem;

            font-size: .78rem;
            line-height: 1.7;

            color: rgba(255, 255, 255, .42);
        }

        /* ==========================================================
   FLOATING WHATSAPP
========================================================== */

        .floating-whatsapp {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
            z-index: 2000;
            transition: var(--transition-normal);
        }

        .floating-whatsapp:hover {
            transform: scale(1.08);
        }

        .floating-whatsapp {

            animation: whatsappPulse 2.5s infinite;

        }

        @keyframes whatsappPulse {

            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
            }

            70% {
                box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }

        }


        /* ==========================================================
   BACK TO TOP
========================================================== */

        .back-to-top {
            position: fixed;
            right: 24px;
            bottom: 100px;
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--color-primary);
            color: #fff;
            box-shadow: var(--shadow-md);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: var(--transition-normal);
            z-index: 1999;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .back-to-top:hover {
            background: var(--color-primary-dark);
            transform: translateY(-4px);
        }

        /* ==========================================================
   DESKTOP RESPONSIVE
========================================================== */

        @media(max-width:992px) {

            .hero__content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero__description {
                margin-inline: auto;
            }

            .hero__cta,
            .hero__trust,
            .hero__highlights {
                justify-content: center;
            }

            .trust-bar__wrapper,
            .why-prubsn__grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .medical-card__content,
            .hibah__content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .medical-card__image,
            .hibah__image {
                order: -1;
            }

            .medical-card__info,
            .hibah__info {
                max-width: 750px;
                margin: 0 auto;
            }

            .about__content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .about__image {
                order: -1;
            }

            .about__position {
                align-self: center;
            }

            .about__feature {
                text-align: left;
            }

            .about__cta {
                justify-content: center;
            }

            .contact__wrapper {
                grid-template-columns: 1fr;
            }

            .contact__info {
                order: 1;
            }

            .contact__form {
                order: 2;
            }

            .footer__content {
                grid-template-columns: 1fr 1fr;
            }

        }

        /* ==========================================================
   MOBILE RESPONSIVE
========================================================== */

        @media(max-width:768px) {

            .container {
                padding-inline: 20px;
            }

            .navbar {
                position: fixed;
                padding: 16px 0;
                min-height: 70px;
            }

            .navbar__wrapper {
                padding-inline: 16px;
            }

            .navbar__actions {
                padding: 0;
                margin-left: auto;
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }

            .navbar__toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 56px;
                height: 56px;
                border-radius: 18px;
            }

            .navbar__menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #fff;
                border-top: 1px solid var(--border-color);
                display: none;
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
                box-shadow: var(--shadow-md);
            }

            .navbar__menu.active {
                display: flex;
            }

            .navbar__item {
                width: 100%;
            }

            .navbar__link {
                display: block;
                width: 100%;
                padding: 1rem 1.5rem;
            }

            .navbar__actions .btn {
                display: none;
            }

            .navbar__logo--prubsn {
                height: 38px;
            }

            .navbar__logo--agency {
                height: 42px;
            }

            .navbar__logo-divider {
                height: 32px;
            }

            .hero {
                padding-top: 100px;
                padding-bottom: 45px;
            }

            .hero__highlights {
                grid-template-columns: 1fr;
            }

            .hero__badge {
                font-size: .8rem;
                padding: .55rem .9rem;
            }

            .hero__title {
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 1rem;
                width: 100%;
                text-align: center;
                word-break: normal;
            }

            .hero__description {
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 2rem;
            }

            .hero::before {
                filter: blur(1px);
                transform: scale(1.03);
            }

            .hero__content {
                width: 100%;
                max-width: 100%;
                margin: 0 auto;
                padding: 32px 22px 28px;
                border-radius: 24px;
                background: rgba(255, 255, 255, .08);
                backdrop-filter: blur(10px);
                box-sizing: border-box;
            }

            .hero__text {
                width: 100%;
                max-width: 100%;
                text-align: center;
            }

            .hero__cta {
                width: 100%;
                align-items: center;
            }

            .hero__cta .btn {
                width: 100%;
                box-sizing: border-box;
                height: 56px;
                font-size: 1rem;
                font-weight: 700;
                border-radius: 16px;
                max-width: 300px;
                padding: 16px 20px;
            }

            .trust-bar {
                padding: 2.5rem 1rem;
            }

            .trust-bar__wrapper {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem 1.5rem;
            }

            .trust-bar__item {
                flex-direction: column;
                text-align: center;
                gap: .8rem;
            }

            .trust-bar__item i {
                font-size: 2.2rem;
            }

            .trust-bar__item strong {
                font-size: 1.1rem;
                margin-bottom: .2rem;
            }

            .trust-bar__item span {
                font-size: .95rem;
                line-height: 1.5;
            }

            .section {
                padding: 80px 20px;
            }

            .section-header {
                max-width: 680px;
                margin: 0 auto 3rem;
                text-align: center;
            }

            .section-badge {
                display: flex;
                align-items: center;
                justify-content: center;
                width: fit-content;
                margin: 0 auto 1rem;
                padding: 10px 18px;
                font-size: .85rem;
                font-weight: 700;
                border-radius: 999px;
            }

            .section-title {
                font-size: 2.2rem;
                line-height: 1.2;
                margin-bottom: 1rem;
                text-align: center;
            }

            .section-description {
                font-size: 1.05rem;
                line-height: 1.8;
                max-width: 100%;
                margin: 0 auto;
                text-align: center;
            }

            .why-prubsn {
                padding: 70px 0;
            }

            .why-prubsn__grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .why-prubsn__card {
                padding: 30px;
                border-radius: 16px;
                background: #fff;
                box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
            }

            .why-prubsn__card h3 {
                font-size: 1.3rem;
                margin-bottom: .6rem;
            }

            .why-prubsn__card p {
                font-size: .95rem;
                line-height: 1.6;
            }

            .why-prubsn__icon {
                width: 60px;
                height: 60px;
                margin: 0 auto 1rem;
                font-size: 1.5rem;
            }

            .intro {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .intro__image {
                order: 1;
            }

            .intro__text {
                order: 2;
                text-align: center;
            }

            .intro__text .section-title,
            .intro__text .section-description {
                text-align: center;
            }

            .intro__list li {
                justify-content: center;
            }

            .medical-facts__grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .medical-facts__card {
                padding: 1.75rem;
            }

            .medical-facts__amount {
                font-size: 2rem;
            }

            .medical-facts__warning {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }

            .medical-card-intro .btn {
                width: 100%;
                max-width: 320px;
            }

            .medical-card__content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .medical-card__image {
                width: 100%;
                max-width: 320px;
                margin: auto;
                display: flex;
                justify-content: center;
            }

            .medical-card__image img {
                width: 90%;
                max-width: 360px;
                margin: 0 auto;
                display: block;
            }

            .medical-card__info {
                grid-template-columns: 1fr;
            }

            .medical-card__feature {
                flex-direction: column;
                text-align: center;
                align-items: center;
                width: 100%;
                padding: 24px;
                border-radius: 18px;
                box-sizing: border-box;
            }

            .medical-card__cta {
                flex-direction: column;
                width: 100%;
                max-width: 320px;
            }

            .medical-card__icon {
                margin-bottom: .5rem;
            }

            .hibah-facts__grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .hibah-facts__card {
                padding: 2rem 1.5rem;
            }

            .hibah-facts__amount {
                font-size: 2.2rem;
            }

            .hibah-facts__warning {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }

            .hibah__info {
                grid-template-columns: 1fr;
            }

            .hibah__content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hibah__feature {
                background: linear-gradient(90deg,
                        #FFF8F8 0%,
                        #FFFFFF 100%);
                flex-direction: column;
                text-align: center;
                align-items: center;
                width: 100%;
                padding: 24px;
                border-radius: 18px;
                box-sizing: border-box;
            }

            .hibah__cta {
                flex-direction: column;
                width: 100%;
                max-width: 320px;
            }

            .hibah__icon {
                margin-bottom: .5rem;
            }

            .about__feature {
                padding: 1rem;
            }

            .about__cta {
                flex-direction: column;
            }

            .about__cta .btn {
                width: 100%;
            }

            .testimonialSwiper {
                padding-bottom: 55px;
            }

            .testimonial .swiper-slide {
                width: 100%;
                transform: none;
                opacity: 1;
            }

            .testimonial__card {
                padding: 2rem;
                border-radius: 22px;
            }

            .testimonial__quote {
                font-size: 1rem;
                line-height: 1.8;
            }

            .testimonial__author {
                align-items: center;
            }

            .testimonial__avatar {
                width: 50px;
                height: 50px;
                font-size: .9rem;
            }

            .testimonial__author h4 {
                font-size: 1rem;
            }

            .testimonial__author span {
                font-size: .85rem;
            }

            .testimonial .swiper-button-prev,
            .testimonial .swiper-button-next {
                display: none;
            }

            .faq__question {
                font-size: 1rem;
                padding: 1.25rem 3.5rem 1.25rem 1.25rem;
            }

            .faq__question::after {
                right: 1rem;
                width: 30px;
                height: 30px;
                font-size: 1.2rem;
            }

            .faq__answer {
                padding: 0 1.25rem 1.25rem;
            }

            .contact__form {
                padding: 1.5rem;
                border-radius: 20px;
            }

            .contact__card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .error-modal {
                padding: 1rem;
            }

            .error-modal__content {
                max-width: 100%;
                padding: 2rem 1.5rem;
                border-radius: 20px;
            }

            .error-modal__icon {
                width: 64px;
                height: 64px;
                font-size: 2rem;
                margin-bottom: 1.2rem;
            }

            .error-modal__content h2 {
                font-size: 1.6rem;
            }

            .error-modal__content p {
                font-size: .95rem;
                margin-bottom: 1.5rem;
            }

            .error-modal__content .btn {
                width: 100%;
            }

            .footer {
                text-align: center;
            }

            .footer__top {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                text-align: center;
            }

            .footer__brand {
                align-items: center;
                margin-bottom: 1rem;
            }

            .footer__logo {
                width: 180px;
                margin-left: auto;
                margin-right: auto;
            }

            .footer__description {
                margin-left: auto;
                margin-right: auto;
            }

            .footer__links,
            .footer__contact {
                justify-self: center;
            }

            .footer__links ul {
                align-items: center;
            }

            .footer__contact li {
                justify-content: center;
            }

            .footer__bottom {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .footer__legal {
                justify-content: center;
            }

            .floating-whatsapp {
                width: 58px;
                height: 58px;
                right: 18px;
                bottom: 20px;
                font-size: 1.75rem;
            }

            .back-to-top {
                width: 48px;
                height: 48px;
                right: 18px;
                bottom: 88px;
            }

        }


        @media(max-width:576px) {

            .faq__question {
                font-size: .95rem;
            }

            .faq__answer p {
                font-size: .95rem;
            }

            .contact__form {
                padding: 1.25rem;
            }

            .form-group {
                margin-bottom: 1.25rem;
            }

        }