        :root {
            --fx-font-pr-1: "Tajawal", sans-serif;
            --fx-font-pr-2: "Cairo", sans-serif;
            --fx-clr-pr-1: #f59e0b;
            --fx-clr-pr-2: #fcd34d;
            --fx-clr-sd-1: #0f172a;
            --ra-navy: #0f172a;
            --ra-navy-deep: #020617;
            --ra-navy-soft: #1e293b;
            --ra-accent: #f59e0b;
            --ra-accent-soft: #fef3c7;
            --ra-surface: #ffffff;
            --ra-soft: #f8fafc;
            --ra-soft-2: #f1f5f9;
            --ra-text: #475569;
            --ra-heading: #0f172a;
            --ra-border: rgba(15, 23, 42, 0.06);
            --ra-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.08), 0 4px 10px -4px rgba(15, 23, 42, 0.04);
            --ra-shadow-hover: 0 20px 50px -10px rgba(15, 23, 42, 0.15), 0 10px 20px -8px rgba(15, 23, 42, 0.08);
            --cube: cubic-bezier(0.16, 1, 0.3, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--fx-font-pr-1);
            font-size: 18px;
            line-height: 1.85;
            color: var(--ra-text);
            background: var(--ra-soft);
            overflow-x: hidden;
            padding-top: 118px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--ra-heading);
            font-family: var(--fx-font-pr-2);
            font-weight: 800;
            letter-spacing: -0.01em;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            text-transform: none;
        }

        a,
        button,
        .ra-card,
        .ra-service-card,
        .ra-project-card,
        .ra-glass-card,
        .ra-media-card,
        .ra-list-card,
        .ra-phase-card,
        .ra-panel {
            transition: all 0.6s var(--cube);
        }

        img {
            display: block;
        }

        section {
            position: relative;
            scroll-margin-top: 112px;
        }

        .ra-page {
            position: relative;
            overflow: hidden;
        }

        .ra-section {
            padding: 140px 0;
        }

        .ra-section--white {
            background: var(--ra-surface);
        }

        .ra-section--soft {
            background: var(--ra-soft);
        }

        .ra-section--dark {
            background: linear-gradient(135deg, var(--ra-navy-deep), var(--ra-navy));
            position: relative;
        }

        .ra-section--grid,
        .ra-contact {
            --ra-grid-line: rgba(15, 23, 42, 0.03);
            --ra-grid-dot: rgba(245, 158, 11, 0.28);
            --ra-grid-dot-soft: rgba(15, 23, 42, 0.12);
            isolation: isolate;
        }

        .ltr-text {
            direction: ltr !important;
            display: inline-block;
        }

        .ra-section--grid::before,
        .ra-contact::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: linear-gradient(var(--ra-grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--ra-grid-line) 1px, transparent 1px);
            background-size: 78px 78px;
            background-position: 0 0;
            pointer-events: none;
            z-index: 0;
        }

        .ra-section--grid::after,
        .ra-contact::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle, var(--ra-grid-dot) 0 2px, transparent 4px),
                radial-gradient(circle, var(--ra-grid-dot-soft) 0 1.5px, transparent 3px);
            background-size: 156px 156px, 234px 234px;
            background-position: 39px 39px, 117px 39px;
            pointer-events: none;
            opacity: 0.18;
            z-index: 0;
        }

        .ra-section--dark,
        .ra-contact {
            --ra-grid-line: rgba(255, 255, 255, 0.04);
            --ra-grid-dot: rgba(245, 158, 11, 0.34);
            --ra-grid-dot-soft: rgba(255, 255, 255, 0.14);
        }

        .ra-section--grid>.container,
        .ra-contact>.container {
            position: relative;
            z-index: 2;
        }

        .ra-topbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 101;
            background: var(--ra-navy-deep);
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            line-height: 1.6;
        }

        .ra-topbar .ra-topbar-inner {
            min-height: 40px;
        }

        .ra-topbar-group,
        .ra-topbar-social {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .ra-topbar-social {
            justify-content: flex-end;
        }

        .ra-topbar a {
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.3s ease;
        }

        .ra-topbar a:hover {
            color: var(--ra-accent);
        }

        .ra-topbar i {
            color: var(--ra-accent);
            margin-left: 10px;
        }

        .ra-topbar-location {
            white-space: nowrap;
        }

        .ra-social-links {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .ra-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 16px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            background: rgba(255, 255, 255, 0.86);
            color: var(--ra-navy);
            box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
            transition: transform 0.35s var(--cube), box-shadow 0.35s var(--cube), background 0.35s var(--cube), color 0.35s var(--cube), border-color 0.35s var(--cube);
        }

        .ra-social-link:hover {
            transform: translateY(-3px);
            color: #fff;
            background: linear-gradient(135deg, var(--ra-navy), var(--ra-navy-deep));
            border-color: transparent;
            box-shadow: 0 18px 30px rgba(15, 23, 42, 0.16);
        }

        .ra-social-link i {
            margin-left: 0;
            color: currentColor;
            font-size: 18px;
        }

        .ra-topbar .ra-social-links {
            gap: 8px;
        }

        .ra-topbar .ra-social-link {
            width: 28px;
            height: 28px;
            border-radius: 12px;
            border-color: rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.88);
            box-shadow: none;
        }

        .ra-topbar .ra-social-link:hover {
            color: var(--ra-navy-deep);
            background: var(--ra-accent);
            box-shadow: 0 12px 20px rgba(245, 158, 11, 0.28);
        }

        .ra-topbar .ra-social-link i {
            font-size: 14px;
        }

        .ra-navbar-wrap {
            position: fixed;
            top: 40px;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
            box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
            transition: all 0.4s var(--cube);
        }

        .ra-navbar {
            min-height: 76px;
        }

        .ra-brand img {
            height: 60px;
            width: auto;
        }

        .ra-navbar .navbar-nav {
            gap: 10px;
        }

        .ra-navbar .nav-link {
            color: var(--ra-heading);
            font-size: 16px;
            font-weight: 700;
            padding: 10px 18px !important;
            border-radius: 999px;
            position: relative;
        }

        .ra-navbar .nav-link::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--ra-accent);
            border-radius: 2px;
            transform: translateX(-50%);
            transition: width 0.4s var(--cube);
        }

        .ra-navbar .nav-link:hover::after {
            width: 50%;
        }

        .ra-navbar .nav-link:hover,
        .ra-navbar .nav-link:focus {
            color: var(--ra-navy);
            background: rgba(15, 23, 42, 0.04);
        }

        .ra-navbar .nav-link.active,
        .ra-navbar .nav-link[aria-current="page"] {
            color: var(--ra-navy);
            background: rgba(15, 23, 42, 0.06);
            box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
        }

        .ra-navbar .nav-link.active::after,
        .ra-navbar .nav-link[aria-current="page"]::after {
            width: 54%;
        }

        .ra-toggler {
            border: 0;
            padding: 0;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(15, 23, 42, 0.05);
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .ra-toggler:hover {
            transform: scale(1.05);
            background: rgba(15, 23, 42, 0.08);
        }

        .ra-toggler span {
            width: 22px;
            height: 2px;
            background: var(--ra-navy);
            border-radius: 999px;
        }

        .ra-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 58px;
            padding: 0 32px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 17px;
            line-height: 1;
            border: 1px solid transparent;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            letter-spacing: -0.01em;
            transition: all 0.4s var(--cube);
        }

        .ra-btn-primary {
            background: var(--ra-accent);
            color: #fff;
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            isolation: isolate;
        }

        .ra-btn-primary::before {
            content: "";
            position: absolute;
            top: -15%;
            bottom: -15%;
            left: 0;
            width: 34%;
            background: linear-gradient(115deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
            transform: translateX(-240%) skewX(-22deg);
            pointer-events: none;
            opacity: 0;
            transition: transform 0.9s var(--cube), opacity 0.9s var(--cube);
        }

        .ra-btn-primary::after {
            content: "";
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
            pointer-events: none;
        }

        .ra-btn-primary:hover::before {
            transform: translateX(340%) skewX(-22deg);
            opacity: 0.8;
        }

        .ra-btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(245, 158, 11, 0.45);
            color: #fff;
        }

        .ra-btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
        }

        .ra-btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .ra-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .ra-btn-light {
            background: #fff;
            color: var(--ra-navy);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .ra-btn-light:hover {
            transform: translateY(-4px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            color: var(--ra-navy);
        }

        .ra-hero {
            min-height: calc(100vh - 118px);
            padding: 120px 0 100px;
            background: linear-gradient(135deg, rgba(2, 6, 23, 0.95) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(15, 23, 42, 0.6) 100%), url("../img/rayan/hero-cover.png") center center / cover no-repeat;
            overflow: hidden;
            position: relative;
        }

        .ra-hero::before {
            content: "";
            position: absolute;
            inset: auto auto -150px -150px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
            pointer-events: none;
            filter: blur(40px);
        }

        .ra-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 82% 16%, rgba(245, 158, 11, 0.18), transparent 24%),
                radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.07), transparent 30%);
            pointer-events: none;
        }

        .ra-hero .container {
            position: relative;
            z-index: 2;
        }

        .ra-hero-copy {
            position: relative;
            z-index: 3;
        }

        .ra-kicker {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 10px 20px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 14px;
            font-weight: 700;
        }

        .ra-kicker::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--ra-accent);
            box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.34), 0 0 15px rgba(245, 158, 11, 0.6);
            animation: raKickerPulse 2.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
            transform-origin: center;
        }

        @keyframes raKickerPulse {
            0% {
                transform: scale(0.9);
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.34), 0 0 10px rgba(245, 158, 11, 0.4);
            }

            55% {
                transform: scale(1.14);
                box-shadow: 0 0 0 9px rgba(245, 158, 11, 0), 0 0 22px rgba(245, 158, 11, 0.72);
            }

            100% {
                transform: scale(0.9);
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0), 0 0 10px rgba(245, 158, 11, 0.4);
            }
        }

        .ra-hero-title {
            font-size: clamp(2.8rem, 5vw, 5rem);
            line-height: 1.1;
            margin: 28px 0 22px;
            color: #fff;
            max-width: 680px;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .ra-hero-text {
            max-width: 660px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 19px;
            margin-bottom: 32px;
            font-weight: 400;
            line-height: 1.8;
        }

        .ra-chip-wrap,
        .ra-tags,
        .ra-soft-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .ra-chip-wrap {
            margin-top: 24px;
        }

        .ra-chip {
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            transition: all 0.4s var(--cube);
        }

        .ra-chip:hover {
            background: var(--ra-accent);
            color: #fff;
            border-color: var(--ra-accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
        }

        .ra-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 36px;
        }

        .ra-hero-micro-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin-top: 30px;
            max-width: 760px;
        }

        .ra-hero-micro-card {
            min-height: 155px;
            padding: 22px 20px;
            border-radius: 26px;
            position: relative;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(16px);
            color: #fff;
            overflow: hidden;
        }

        .ra-hero-micro-card::before {
            content: "";
            position: absolute;
            inset: auto -20% -45% auto;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 70%);
            transition: transform 0.6s var(--cube), opacity 0.6s var(--cube);
        }

        .ra-hero-micro-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 255, 255, 0.22);
            background: rgba(255, 255, 255, 0.14);
        }

        .ra-hero-micro-card:hover::before {
            transform: scale(1.12);
            opacity: 1;
        }

        .ra-hero-micro-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 18px;
            margin-bottom: 18px;
            background: rgba(245, 158, 11, 0.16);
            color: var(--ra-accent);
            font-size: 20px;
            box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.22);
            transition: transform 0.45s var(--cube), box-shadow 0.45s var(--cube), background 0.45s var(--cube);
        }

        .ra-hero-micro-card:hover .ra-hero-micro-icon {
            transform: translateY(-3px) scale(1.04);
            box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.26), 0 16px 30px rgba(245, 158, 11, 0.16);
        }

        .ra-hero-micro-card h3 {
            color: #fff;
            font-size: 21px;
            margin-bottom: 8px;
        }

        .ra-hero-micro-card p {
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.76);
            font-size: 14px;
            line-height: 1.8;
        }

        .ra-hero-side {
            position: relative;
            padding: 26px 0 32px;
        }

        .ra-hero-panel {
            position: relative;
            overflow: visible;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
            border-color: rgba(255, 255, 255, 0.4);
        }

        .ra-hero-panel::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.16)),
                radial-gradient(circle at 82% 16%, rgba(245, 158, 11, 0.16), transparent 30%);
            border-radius: inherit;
            pointer-events: none;
        }

        .ra-hero-panel>* {
            position: relative;
            z-index: 2;
        }

        .ra-hero-panel-head {
            margin-bottom: 22px;
        }

        .ra-panel-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-height: 36px;
            padding: 0 16px;
            border-radius: 999px;
            background: rgba(245, 158, 11, 0.12);
            color: #b45309;
            font-size: 13px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .ra-panel-kicker::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
            box-shadow: 0 0 0 0 rgba(180, 83, 9, 0.22), 0 0 12px rgba(180, 83, 9, 0.28);
            animation: raPanelKickerPulse 3.1s cubic-bezier(0.16, 1, 0.3, 1) infinite;
            transform-origin: center;
        }

        @keyframes raPanelKickerPulse {
            0% {
                transform: scale(0.92);
                box-shadow: 0 0 0 0 rgba(180, 83, 9, 0.22), 0 0 8px rgba(180, 83, 9, 0.2);
            }

            55% {
                transform: scale(1.12);
                box-shadow: 0 0 0 8px rgba(180, 83, 9, 0), 0 0 18px rgba(180, 83, 9, 0.34);
            }

            100% {
                transform: scale(0.92);
                box-shadow: 0 0 0 0 rgba(180, 83, 9, 0), 0 0 8px rgba(180, 83, 9, 0.2);
            }
        }

        .ra-hero-panel-head p {
            margin-bottom: 0;
            font-size: 16px;
            line-height: 1.8;
            color: #516174;
        }

        .ra-mini-contact--soft {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.88));
        }

        .ra-mini-contact--soft::after {
            content: "";
            position: absolute;
            inset: auto auto -40px -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 70%);
            pointer-events: none;
        }

        .ra-mini-contact--soft>* {
            position: relative;
            z-index: 2;
        }

        .ra-hero-badge,
        .ra-about-floating-card {
            position: absolute;
            border-radius: 24px;
            box-shadow: var(--ra-shadow-hover);
            z-index: 4;
            backdrop-filter: blur(16px);
        }

        .ra-hero-badge {
            max-width: 230px;
            padding: 18px 20px;
            background: rgb(2 6 23 / 77%);
            border: 1px solid rgba(255, 255, 255, 0.16);
            color: #fff;
        }

        .ra-hero-badge strong,
        .ra-about-floating-card strong {
            display: block;
            font-size: 19px;
            line-height: 1.3;
            margin-bottom: 6px;
        }

        .ra-hero-badge span,
        .ra-about-floating-card span {
            display: block;
            font-size: 13px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.82);
        }

        .ra-hero-badge--top {
            top: -36px;
            left: -18px;
        }

        .ra-hero-badge--bottom {
            right: -8px;
            bottom: -44px;
            max-width: 250px;
            background: rgba(2, 6, 23, 0.78);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .ra-glass-card,
        .ra-panel,
        .ra-card,
        .ra-media-card,
        .ra-list-card,
        .ra-project-card,
        .ra-contact-card,
        .ra-phase-card,
        .ra-service-card {
            position: relative;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid var(--ra-border);
            border-radius: 32px;
            box-shadow: var(--ra-shadow);
            overflow: hidden;
            transition: all 0.6s var(--cube);
        }

        .ra-panel {
            padding: 32px;
            backdrop-filter: blur(24px);
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .ra-card:hover,
        .ra-list-card:hover,
        .ra-project-card:hover,
        .ra-phase-card:hover,
        .ra-glass-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--ra-shadow-hover);
            border-color: rgba(15, 23, 42, 0.12);
            z-index: 5;
        }

        .ra-kpi-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            margin-bottom: 24px;
        }

        .ra-kpi-item {
            padding: 24px 20px;
            border-radius: 24px;
            background: #fff;
            border: 1px solid rgba(15, 23, 42, 0.04);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            transition: all 0.5s var(--cube);
        }

        .ra-kpi-item:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        }

        .ra-kpi-number {
            display: block;
            font-family: var(--fx-font-pr-2);
            font-size: 38px;
            line-height: 1;
            color: var(--ra-navy);
            margin-bottom: 8px;
            transition: color 0.4s ease;
        }

        .ra-kpi-item:hover .ra-kpi-number {
            color: var(--ra-accent);
        }

        .ra-kpi-label {
            display: block;
            font-size: 14px;
            line-height: 1.6;
            color: var(--ra-text);
            font-weight: 700;
        }

        .ra-mini-contact {
            padding: 24px;
            border-radius: 24px;
            background: var(--ra-navy-deep);
            color: rgba(255, 255, 255, 0.85);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
        }

        .ra-mini-contact-title {
            color: #fff;
            font-size: 22px;
            margin-bottom: 14px;
        }

        .ra-mini-contact ul {
            display: grid;
            gap: 12px;
        }

        .ra-mini-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
        }

        .ra-mini-contact i {
            color: var(--ra-accent);
            margin-top: 5px;
        }

        .ra-section-head {
            margin-bottom: 60px;
            max-width: 880px;
            position: relative;
            z-index: 2;
        }

        .ra-section-index {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 20px;
            background: var(--ra-accent-soft);
            color: var(--ra-accent);
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 24px;
            transition: transform 0.45s var(--cube), box-shadow 0.45s var(--cube), background 0.45s var(--cube);
        }

        .ra-section-kicker {
            display: block;
            color: var(--ra-accent);
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .ra-section-title {
            font-size: clamp(2.4rem, 4vw, 3.8rem);
            line-height: 1.15;
            margin-bottom: 20px;
            color: var(--ra-heading);
        }

        .ra-section-desc {
            max-width: 760px;
            font-size: 19px;
            color: var(--ra-text);
        }

        .ra-scroll-stage {
            opacity: 0;
            transform: translate3d(0, 24px, 0);
            transition:
                opacity 0.65s ease,
                transform 0.8s var(--cube);
            transition-delay: var(--ra-delay, 0s);
        }

        .ra-scroll-stage.is-visible {
            opacity: 1;
            transform: none;
        }

        .ra-section--dark .ra-section-title,
        .ra-section--dark .ra-section-desc {
            color: #fff;
        }

        .ra-section--dark .ra-section-desc {
            color: rgba(255, 255, 255, 0.8);
        }

        .ra-media-card {
            padding: 20px;
            background: #fff;
            border-radius: 32px;
            margin-top: 10px;
        }

        .ra-media-card img {
            width: 100%;
            border-radius: 24px;
            object-fit: cover;
            transition: transform 0.8s var(--cube);
        }

        .ra-media-card:hover img {
            transform: scale(1.05) rotate(1deg);
        }

        .ra-about-main-media:hover img {
            transform: none;
        }

        .ra-media-note {
            margin-top: 20px;
            padding: 24px;
            border-radius: 24px;
            background: var(--ra-navy);
            color: rgba(255, 255, 255, 0.85);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
        }

        .ra-media-note h3 {
            color: #fff;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .ra-card {
            padding: 36px;
            background: #fff;
        }

        .ra-card h3 {
            font-size: 28px;
            margin-bottom: 16px;
            font-weight: 800;
        }

        .ra-card p {
            margin-bottom: 0;
        }

        .ra-highlight {
            padding: 36px;
            border-radius: 32px;
            background: linear-gradient(135deg, var(--ra-navy-deep), var(--ra-navy));
            box-shadow: var(--ra-shadow);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .ra-highlight::before {
            content: '';
            position: absolute;
            inset: auto -50% -50% auto;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent 70%);
            filter: blur(20px);
        }

        .ra-highlight h3 {
            color: #fff;
            font-size: 28px;
            position: relative;
            z-index: 2;
        }

        .ra-highlight p {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }

        .ra-outline-card {
            padding: 28px;
            border: 1px solid var(--ra-border);
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            height: 100%;
            transition: all 0.4s var(--cube);
        }

        .ra-outline-card:hover {
            background: #fff;
            box-shadow: var(--ra-shadow);
            transform: translateY(-4px);
            border-color: transparent;
        }

        .ra-outline-card strong {
            display: block;
            font-size: 22px;
            color: var(--ra-heading);
            margin-bottom: 10px;
            font-family: var(--fx-font-pr-2);
            font-weight: 800;
        }

        .ra-value-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 16px;
            background: var(--ra-accent-soft);
            color: var(--ra-accent);
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .ra-about-visual {
            position: relative;
            padding: 26px 0 30px 34px;
        }

        .ra-about-visual::before {
            content: "";
            position: absolute;
            inset: 20px auto auto 0;
            width: 220px;
            height: 220px;
            border-radius: 36px;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(245, 158, 11, 0.02));
            z-index: 0;
        }

        .ra-about-main-media {
            position: relative;
            z-index: 2;
            width: min(100%, 430px);
            margin-inline: auto;
            transform: none !important;
        }

        .ra-about-main-media img {
            min-height: 560px;
        }

        .ra-about-badge {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 4;
            min-width: 210px;
            padding: 18px 20px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.55);
            box-shadow: var(--ra-shadow);
        }

        .ra-about-badge span {
            display: block;
            font-size: 13px;
            font-weight: 800;
            color: var(--ra-accent);
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }

        .ra-about-badge strong {
            display: block;
            font-size: 22px;
            line-height: 1.45;
            color: var(--ra-heading);
        }

        .ra-about-floating-card {
            width: min(260px, 72%);
            padding: 18px 20px;
            background: rgba(15, 23, 42, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .ra-about-floating-card--primary {
            right: -96px;
            top: 128px;
        }

        .ra-about-floating-card--secondary {
            left: 0;
            bottom: -22px;
            background: rgba(255, 255, 255, 0.96);
            border-color: rgba(15, 23, 42, 0.08);
        }

        .ra-about-floating-card--secondary strong {
            color: var(--ra-heading);
        }

        .ra-about-floating-card--secondary span {
            color: var(--ra-text);
        }

        .ra-about-highlight {
            background: linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.9));
        }

        .ra-about-highlight::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 88% 18%, rgba(245, 158, 11, 0.2), transparent 24%),
                linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 38%);
            pointer-events: none;
        }

        .ra-about-highlight>* {
            position: relative;
            z-index: 2;
        }

        .ra-about-highlight-top {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 18px;
        }

        .ra-about-highlight-tag {
            display: inline-flex;
            align-items: center;
            min-height: 36px;
            padding: 0 16px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
        }

        .ra-about-track {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin-top: 26px;
        }

        .ra-about-track-item {
            padding: 18px 18px 16px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .ra-about-track-item strong {
            display: block;
            margin-bottom: 6px;
            color: #fff;
            font-size: 16px;
            font-weight: 800;
        }

        .ra-about-track-item span {
            display: block;
            color: rgba(255, 255, 255, 0.72);
            font-size: 13px;
            line-height: 1.7;
        }

        .ra-about-feature-card {
            position: relative;
            height: 100%;
            padding: 30px 28px;
            border-radius: 28px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), #fff);
            box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
            overflow: hidden;
        }

        .ra-about-feature-card::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 4px;
            background: linear-gradient(180deg, var(--ra-accent), rgba(245, 158, 11, 0));
        }

        .ra-about-feature-card::after {
            content: "";
            position: absolute;
            inset: auto -18% -35% auto;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.14), transparent 70%);
            transition: transform 0.6s var(--cube), opacity 0.6s var(--cube);
        }

        .ra-about-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--ra-shadow-hover);
            border-color: rgba(245, 158, 11, 0.14);
        }

        .ra-about-feature-card:hover::after {
            transform: scale(1.14);
        }

        .ra-about-feature-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 18px;
        }

        .ra-about-feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 18px;
            background: rgba(245, 158, 11, 0.12);
            color: var(--ra-accent);
            font-size: 22px;
            box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.2);
            transition: transform 0.45s var(--cube), box-shadow 0.45s var(--cube), background 0.45s var(--cube);
        }

        .ra-about-feature-card:hover .ra-about-feature-icon {
            transform: translateY(-3px) scale(1.04);
            box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.26), 0 16px 30px rgba(245, 158, 11, 0.16);
        }

        .ra-about-feature-no {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 52px;
            height: 40px;
            padding: 0 14px;
            border-radius: 999px;
            background: var(--ra-soft);
            color: var(--ra-heading);
            font-size: 14px;
            font-weight: 800;
        }

        .ra-about-feature-card strong {
            display: block;
            margin-bottom: 10px;
            color: var(--ra-heading);
            font-size: 24px;
            line-height: 1.35;
        }

        .ra-about-feature-card p {
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }

        .ra-parallax-item {
            will-change: auto;
        }

        .ra-service-grid,
        .ra-project-grid,
        .ra-contact-grid {
            position: relative;
            z-index: 2;
        }

        .ra-service-card {
            height: 100%;
            padding: 36px;
            border-radius: 32px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(16px);
        }

        .ra-service-card::before {
            content: "";
            position: absolute;
            inset: 0 0 auto;
            height: 3px;
            background: linear-gradient(90deg, rgba(245, 158, 11, 0), rgba(245, 158, 11, 0.9), rgba(245, 158, 11, 0));
            transform: scaleX(0.35);
            transform-origin: center;
            opacity: 0.6;
            transition: transform 0.55s var(--cube), opacity 0.55s var(--cube);
        }

        .ra-service-card::after {
            content: "";
            position: absolute;
            inset: auto -12% -20% auto;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.16), transparent 70%);
            opacity: 0;
            transition: opacity 0.55s var(--cube), transform 0.55s var(--cube);
            transform: scale(0.82);
        }

        .ra-service-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            z-index: 5;
        }

        .ra-service-card:hover::before {
            transform: scaleX(1);
            opacity: 1;
        }

        .ra-service-card:hover::after {
            opacity: 1;
            transform: scale(1);
        }

        .ra-service-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 64px;
            height: 64px;
            border-radius: 20px;
            background: rgba(245, 158, 11, 0.15);
            color: var(--ra-accent);
            font-family: var(--fx-font-pr-2);
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 24px;
            transition: transform 0.45s var(--cube), box-shadow 0.45s var(--cube), background 0.45s var(--cube);
        }

        .ra-service-card:hover .ra-service-mark {
            transform: translateY(-3px) scale(1.04);
            box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.26), 0 16px 30px rgba(245, 158, 11, 0.16);
        }

        .ra-service-card h3 {
            color: #fff;
            font-size: 28px;
            margin-bottom: 16px;
        }

        .ra-service-card p {
            margin-bottom: 20px;
        }

        .ra-service-card .ra-list li {
            transition: transform 0.45s var(--cube), color 0.45s var(--cube);
        }

        .ra-service-card:hover .ra-list li {
            transform: translateX(-4px);
            color: rgba(255, 255, 255, 0.96);
        }

        .ra-list {
            display: grid;
            gap: 12px;
        }

        .ra-list li {
            position: relative;
            padding-right: 24px;
            line-height: 1.75;
        }

        .ra-list li::before {
            content: "";
            position: absolute;
            right: 0;
            top: 12px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--ra-accent);
            box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
        }

        .ra-section--dark .ra-list li::before {
            background: #fff;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }

        .ra-soft-tags .ra-chip,
        .ra-tags .ra-chip {
            color: var(--ra-navy);
            background: var(--ra-accent-soft);
            border-color: rgba(245, 158, 11, 0.2);
        }

        .ra-soft-tags .ra-chip:hover {
            color: #fff;
        }

        .ra-tags .ra-chip:hover {
            color: #f59e0b
        }

        .ra-survey-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
        }

        .ra-list-card {
            height: 100%;
            padding: 36px;
            background: #fff;
        }

        .ra-list-card::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 4px;
            background: linear-gradient(180deg, rgba(245, 158, 11, 0.9), rgba(245, 158, 11, 0));
            opacity: 0;
            transition: opacity 0.45s var(--cube), transform 0.45s var(--cube);
            transform: scaleY(0.55);
            transform-origin: top;
        }

        .ra-list-card::after {
            content: "";
            position: absolute;
            inset: auto -18% -28% auto;
            width: 170px;
            height: 170px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.12), transparent 70%);
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 0.5s var(--cube), transform 0.5s var(--cube);
        }

        .ra-list-card:hover::before {
            opacity: 1;
            transform: scaleY(1);
        }

        .ra-list-card:hover::after {
            opacity: 1;
            transform: scale(1);
        }

        .ra-list-card h3 {
            font-size: 26px;
            margin-bottom: 12px;
        }

        .ra-list-card p {
            margin-bottom: 20px;
        }

        .ra-list-card .ra-list li {
            transition: transform 0.45s var(--cube), color 0.45s var(--cube);
        }

        .ra-list-card:hover .ra-list li {
            transform: translateX(-4px);
            color: var(--ra-heading);
        }

        .ra-card-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 38px;
            padding: 0 16px;
            border-radius: 999px;
            background: var(--ra-accent-soft);
            color: var(--ra-accent);
            font-size: 14px;
            font-weight: 800;
            margin-bottom: 20px;
            transition: transform 0.4s var(--cube), box-shadow 0.4s var(--cube), background 0.4s var(--cube), color 0.4s var(--cube);
        }

        .ra-list-card:hover .ra-card-badge,
        .ra-project-card:hover .ra-card-badge {
            transform: translateY(-2px);
            box-shadow: 0 12px 22px rgba(245, 158, 11, 0.12);
        }

        .ra-method-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .ra-phase-card {
            padding: 32px 28px;
            min-height: 240px;
            background: #fff;
        }

        .ra-phase-card::before {
            content: "";
            position: absolute;
            inset: 0 0 auto;
            height: 3px;
            background: linear-gradient(90deg, rgba(245, 158, 11, 0.9), rgba(245, 158, 11, 0));
            transform: scaleX(0.28);
            transform-origin: right;
            opacity: 0.6;
            transition: transform 0.5s var(--cube), opacity 0.5s var(--cube);
        }

        .ra-phase-step {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 18px;
            background: var(--ra-navy);
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 20px;
            box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
        }

        .ra-phase-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .ra-phase-card p {
            font-size: 16px;
            margin-bottom: 0;
        }

        .ra-phase-step {
            transition: transform 0.45s var(--cube), background 0.45s var(--cube), box-shadow 0.45s var(--cube);
        }

        .ra-phase-card:hover::before {
            transform: scaleX(1);
            opacity: 1;
        }

        .ra-phase-card:hover .ra-phase-step {
            transform: translateY(-4px);
            background: var(--ra-accent);
            box-shadow: 0 18px 28px rgba(245, 158, 11, 0.24);
        }

        .ra-phase-card:hover h3 {
            color: var(--ra-accent);
        }

        .ra-project-summary {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 24px;
            margin-bottom: 40px;
        }

        .ra-project-highlight {
            padding: 40px;
            border-radius: 32px;
            background: linear-gradient(135deg, var(--ra-navy), var(--ra-navy-soft));
            color: rgba(255, 255, 255, 0.85);
            box-shadow: var(--ra-shadow);
            position: relative;
            overflow: hidden;
        }

        .ra-project-highlight::before {
            content: '';
            position: absolute;
            inset: auto -20% -20% auto;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
            filter: blur(30px);
        }

        .ra-project-highlight strong,
        .ra-project-highlight h3 {
            color: #fff;
            position: relative;
            z-index: 2;
        }

        .ra-project-highlight .ra-kpi-number {
            color: #fff;
            font-size: 52px;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .ra-project-highlight p {
            position: relative;
            z-index: 2;
            font-size: 18px;
        }

        .ra-project-highlight,
        #projects .ra-card {
            transition: transform 0.55s var(--cube), box-shadow 0.55s var(--cube), border-color 0.55s var(--cube);
        }

        .ra-project-highlight:hover,
        #projects .ra-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--ra-shadow-hover);
        }

        .ra-project-card {
            height: 100%;
            padding: 36px;
            background: #fff;
        }

        .ra-project-card::before {
            content: "";
            position: absolute;
            inset: 0 0 auto;
            height: 3px;
            background: linear-gradient(90deg, rgba(245, 158, 11, 0), rgba(245, 158, 11, 0.88), rgba(245, 158, 11, 0));
            transform: scaleX(0.3);
            transform-origin: center;
            opacity: 0.4;
            transition: transform 0.5s var(--cube), opacity 0.5s var(--cube);
        }

        .ra-project-card h3 {
            font-size: 26px;
            margin-bottom: 12px;
        }

        .ra-project-card p {
            margin-bottom: 22px;
            font-size: 16px;
        }

        .ra-project-card:hover::before {
            transform: scaleX(1);
            opacity: 1;
        }

        .ra-project-card:hover h3 {
            color: var(--ra-accent);
        }

        .ra-project-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .ra-project-meta span {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0 16px;
            border-radius: 999px;
            background: var(--ra-soft-2);
            color: var(--ra-navy);
            font-size: 14px;
            font-weight: 800;
            transition: all 0.3s ease;
        }

        .ra-project-card:hover .ra-project-meta span {
            background: var(--ra-accent-soft);
            color: var(--ra-accent);
            transform: translateY(-2px);
        }

        .ra-gallery-shell {
            position: relative;
            z-index: 2;
        }

        .ra-gallery-toolbar {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 38px;
        }

        .ra-gallery-filter-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .ra-gallery-filter {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0 20px;
            border-radius: 999px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            background: rgba(255, 255, 255, 0.82);
            color: var(--ra-heading);
            font-size: 15px;
            font-weight: 800;
            transition: transform 0.4s var(--cube), box-shadow 0.4s var(--cube), background 0.4s var(--cube), color 0.4s var(--cube), border-color 0.4s var(--cube);
        }

        .ra-gallery-filter:hover {
            transform: translateY(-2px);
            border-color: rgba(245, 158, 11, 0.22);
            box-shadow: 0 14px 24px rgba(15, 23, 42, 0.06);
        }

        .ra-gallery-filter.is-active {
            background: var(--ra-navy);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 18px 28px rgba(15, 23, 42, 0.18);
        }

        .ra-gallery-note {
            max-width: 420px;
            padding: 22px 24px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
        }

        .ra-gallery-note p {
            margin-bottom: 0;
            font-size: 15px;
            line-height: 1.85;
            color: var(--ra-text);
        }

        .ra-gallery-grid {
            column-width: 320px;
            column-gap: 24px;
        }

        .ra-gallery-card {
            position: relative;
            display: inline-block;
            width: 100%;
            margin: 0 0 24px;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--ra-shadow);
            background: #fff;
            isolation: isolate;
            transform: translateZ(0);
            break-inside: avoid;
            transition: transform 0.55s var(--cube), box-shadow 0.55s var(--cube);
        }

        .ra-gallery-card.is-hidden {
            display: none;
        }

        .ra-gallery-card img {
            position: relative;
            display: block;
            width: 100%;
            height: auto;
            transition: transform 0.9s var(--cube), filter 0.9s var(--cube);
        }

        .ra-gallery-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(2, 6, 23, 0.02) 0%, rgba(2, 6, 23, 0.1) 35%, rgba(2, 6, 23, 0.72) 100%),
                linear-gradient(120deg, rgba(245, 158, 11, 0.14), transparent 38%);
            z-index: 1;
        }

        .ra-gallery-card::after {
            content: "";
            position: absolute;
            inset: auto -14% -24% auto;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 70%);
            opacity: 0;
            transform: scale(0.78);
            z-index: 1;
            transition: opacity 0.55s var(--cube), transform 0.55s var(--cube);
        }

        .ra-gallery-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--ra-shadow-hover);
        }

        .ra-gallery-card:hover img {
            transform: scale(1.06);
            filter: saturate(1.05);
        }

        .ra-gallery-card:hover::after {
            opacity: 1;
            transform: scale(1);
        }

        .ra-gallery-card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            min-height: 36px;
            padding: 0 16px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.16);
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            border: 1px solid rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(10px);
        }

        .ra-gallery-card-info {
            position: absolute;
            right: 20px;
            left: 20px;
            bottom: 20px;
            z-index: 2;
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 18px;
        }

        .ra-gallery-card-copy strong {
            display: block;
            color: #fff;
            font-size: 24px;
            line-height: 1.3;
            margin-bottom: 8px;
            font-family: var(--fx-font-pr-2);
        }

        .ra-gallery-card-copy span {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.8;
        }

        .ra-gallery-card-action {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.16);
            color: #fff;
            font-size: 18px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(10px);
            transition: transform 0.45s var(--cube), background 0.45s var(--cube), color 0.45s var(--cube);
        }

        .ra-gallery-card:hover .ra-gallery-card-action {
            transform: translateX(-4px);
            background: #fff;
            color: var(--ra-accent);
        }

        .ra-contact {
            padding: 140px 0;
            background: linear-gradient(110deg, rgba(2, 6, 23, 0.95) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(15, 23, 42, 0.75) 100%), url("../img/rayan/contact-cover.png") center center / cover no-repeat;
            overflow: hidden;
            position: relative;
        }

        .ra-contact .container {
            position: relative;
            z-index: 2;
        }

        .ra-contact .ra-section-title,
        .ra-contact .ra-section-desc {
            color: #fff;
        }

        .ra-contact .ra-section-title {
            max-width: 600px;
        }

        .ra-contact .ra-section-desc {
            color: rgba(255, 255, 255, 0.8);
        }

        .ra-contact-card {
            height: 100%;
            padding: 32px;
            background: rgba(255, 255, 255, 0.97);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 32px;
        }

        .ra-contact-card::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 4px;
            background: linear-gradient(180deg, rgba(245, 158, 11, 0.92), rgba(245, 158, 11, 0));
            opacity: 0;
            transform: scaleY(0.4);
            transform-origin: top;
            transition: opacity 0.45s var(--cube), transform 0.45s var(--cube);
        }

        .ra-contact-card h3 {
            font-size: 26px;
            margin-bottom: 12px;
        }

        .ra-contact-card p,
        .ra-contact-card a {
            color: var(--ra-text);
            margin-bottom: 0;
            font-size: 18px;
        }

        .ra-contact-card a:hover {
            color: var(--ra-navy);
            text-decoration: underline;
        }

        .ra-contact-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--ra-shadow-hover);
            border-color: rgba(245, 158, 11, 0.14);
        }

        .ra-contact-card:hover::before {
            opacity: 1;
            transform: scaleY(1);
        }

        .ra-contact-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            border-radius: 20px;
            background: var(--ra-accent-soft);
            color: var(--ra-accent);
            font-size: 26px;
            margin-bottom: 24px;
            transition: transform 0.45s var(--cube), box-shadow 0.45s var(--cube), background 0.45s var(--cube);
        }

        .ra-contact-card:hover .ra-contact-icon {
            transform: translateY(-3px) scale(1.04);
            box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.26), 0 16px 30px rgba(245, 158, 11, 0.16);
        }

        .ra-contact-socials {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 18px;
        }

        .ra-contact-socials-text {
            flex: 0 0 100%;
            font-size: 15px;
            color: var(--ra-muted);
        }

        .ra-contact-socials .ra-social-link:hover {
            background: linear-gradient(135deg, rgba(245, 158, 11, 1), rgba(249, 115, 22, 0.96));
            box-shadow: 0 18px 34px rgba(245, 158, 11, 0.22);
        }

        .ra-contact-panel {
            padding: 44px;
            border-radius: 36px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(24px);
            color: rgba(255, 255, 255, 0.85);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .ra-contact-panel::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%),
                radial-gradient(circle at 90% 14%, rgba(245, 158, 11, 0.14), transparent 28%);
            pointer-events: none;
            opacity: 0.75;
            transition: opacity 0.45s var(--cube);
        }

        .ra-contact-panel h3 {
            color: #fff;
            font-size: 32px;
            margin-bottom: 18px;
        }

        .ra-contact-panel p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
            font-size: 18px;
        }

        .ra-contact-panel .ra-list li {
            color: rgba(255, 255, 255, 0.85);
        }

        .ra-contact-panel:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 50px rgba(0, 0, 0, 0.24);
            border-color: rgba(255, 255, 255, 0.16);
        }

        .ra-contact-panel:hover::before {
            opacity: 1;
        }

        .ra-footer {
            background: var(--ra-navy-deep);
            padding: 40px 0;
            color: rgba(255, 255, 255, 0.7);
        }

        .ra-footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .ra-footer-nav {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .ra-footer a {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 700;
            transition: color 0.3s ease;
        }

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

        .ra-back-top {
            position: fixed;
            left: 32px;
            bottom: 32px;
            width: 60px;
            height: 60px;
            border-radius: 20px;
            background: var(--ra-accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
            z-index: 90;
            transition: all 0.4s var(--cube);
            isolation: isolate;
        }

        .ra-back-top::before {
            content: "";
            position: absolute;
            inset: -8px;
            border-radius: 24px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.24), transparent 70%);
            opacity: 0;
            transform: scale(0.9);
            z-index: -1;
            pointer-events: none;
            transition: opacity 0.4s var(--cube), transform 0.4s var(--cube);
        }

        .ra-back-top:hover::before {
            opacity: 0.28;
            transform: scale(1.08);
        }

        .ra-back-top i {
            transition: transform 0.4s var(--cube);
        }

        .ra-back-top:hover i {
            transform: translateY(-2px);
        }

        .ra-back-top:hover {
            color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(245, 158, 11, 0.45);
        }

        .text-white-soft {
            color: rgba(255, 255, 255, 0.85) !important;
        }

        @media (max-width: 1199px) {
            .ra-navbar-wrap {
                top: 0;
            }

            body {
                padding-top: 88px;
            }

            .ra-hero {
                min-height: auto;
            }

            section {
                scroll-margin-top: 90px;
            }

            .ra-method-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .ra-section {
                padding: 100px 0;
            }
        }

        @media (max-width: 991px) {
            .ra-topbar {
                display: none;
            }

            .ra-navbar-collapse,
            .navbar-collapse {
                background: #fff;
                border: 1px solid var(--ra-border);
                border-radius: 28px;
                padding: 24px;
                margin-top: 16px;
                box-shadow: var(--ra-shadow);
            }

            .ra-navbar .navbar-nav {
                padding-bottom: 12px;
            }

            .ra-navbar .nav-link {
                border-radius: 16px;
            }

            .ra-hero {
                padding: 120px 0 80px;
            }

            .ra-hero-title {
                font-size: clamp(2.4rem, 8vw, 4rem);
            }

            .ra-hero-micro-grid,
            .ra-about-track {
                grid-template-columns: 1fr;
            }

            .ra-survey-grid,
            .ra-project-summary {
                grid-template-columns: 1fr;
            }

            .ra-gallery-grid {
                column-width: 280px;
            }

            .ra-method-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .ra-about-visual {
                padding-left: 0;
            }

            .ra-about-main-media img {
                min-height: 460px;
            }

            .ra-hero-badge--top {
                left: 12px;
            }

            .ra-hero-badge--bottom,
            .ra-about-floating-card--primary {
                right: 12px;
            }

            .ra-about-floating-card--secondary {
                left: 12px;
            }
        }

        @media (max-width: 767px) {
            body {
                font-size: 16px;
                padding-top: 86px;
            }

            .ra-section {
                padding: 80px 0;
            }

            .ra-hero {
                padding: 100px 0 60px;
            }

            .ra-kpi-grid,
            .ra-method-grid,
            .ra-hero-micro-grid {
                grid-template-columns: 1fr;
            }

            .ra-gallery-toolbar,
            .ra-gallery-filter-group {
                width: 100%;
            }

            .ra-gallery-grid {
                columns: 1;
            }

            .ra-gallery-note {
                max-width: none;
            }

            .ra-hero-actions,
            .ra-chip-wrap {
                gap: 12px;
            }

            .ra-btn {
                width: 100%;
            }

            .ra-panel,
            .ra-card,
            .ra-project-card,
            .ra-contact-panel,
            .ra-contact-card,
            .ra-list-card,
            .ra-phase-card,
            .ra-service-card {
                padding: 24px;
            }

            .ra-brand img {
                height: 50px;
            }

            .ra-footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .ra-back-top {
                left: 20px;
                bottom: 20px;
                width: 50px;
                height: 50px;
                border-radius: 16px;
            }

            .ra-hero-side {
                padding-top: 14px;
            }

            .ra-hero-badge,
            .ra-about-badge,
            .ra-about-floating-card {
                position: static;
                width: 100%;
                max-width: none;
                margin-bottom: 16px;
            }

            .ra-about-main-media img {
                min-height: auto;
            }

            .ra-about-visual::before {
                display: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
