        :root {
            /* --- COLOR PALETTE --- */
            --primary: #F57C00;
            --primary-hover: #D66C00;
            --black: #080808;
            --titanium: #F2F2F4;  /* Premium Light Grey */
            --white: #FFFFFF;
            --text-main: #0A0A0A;
            --text-muted: #666666;
            --surface-soft: #faf7f3;
            --surface-warm: #fff8ef;
            --surface-cool: #f6f8fb;
            --border: #E5E5E5;
            --radius: 20px;
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Outfit', sans-serif;
            background:
                radial-gradient(circle at 8% 0%, rgba(245, 124, 0, 0.06), transparent 36%),
                radial-gradient(circle at 92% 24%, rgba(15, 23, 42, 0.035), transparent 32%),
                var(--white);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- ANIMATIONS --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s var(--ease);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- UTILS --- */
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        .section { padding: 120px 0; position: relative; }
        .section + .section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: min(1200px, calc(100% - 48px));
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
        }
        .bg-titanium { background-color: var(--titanium); }
        .section-soft {
            background:
                linear-gradient(180deg, var(--surface-soft) 0%, var(--surface-warm) 100%);
        }
        .section-fade {
            background:
                radial-gradient(circle at 85% 10%, rgba(245, 124, 0, 0.1), transparent 26%),
                var(--white);
        }
        .section-ink {
            background:
                radial-gradient(circle at 15% 90%, rgba(245, 124, 0, 0.07), transparent 35%),
                linear-gradient(180deg, var(--surface-cool), #f9fafb);
        }
        .section-grid-bg {
            background: linear-gradient(180deg, #fff 0%, #fcfcfd 100%);
            position: relative;
            overflow: hidden;
        }
        
        h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px; }
        h1 { font-size: 4.5rem; }
        h2 { font-size: 3rem; }
        p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; }

        /* --- BUTTONS --- */
        .btn {
            display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px;
            border-radius: 50px; font-weight: 600; text-decoration: none; 
            transition: all 0.3s var(--ease); cursor: pointer; font-size: 1rem; border: none;
        }
        .btn-primary { background: var(--primary); color: white; }
        .btn-primary:hover { background: var(--primary-hover); transform: scale(1.03); box-shadow: 0 10px 20px rgba(245, 124, 0, 0.2); }
        
        .btn-dark { background: var(--black); color: white; }
        .btn-dark:hover { background: #333; transform: scale(1.03); }
        
        .btn-outline { border: 1px solid var(--border); background: transparent; color: var(--text-main); }
        .btn-outline:hover { border-color: var(--black); background: var(--white); }

        /* --- HEADER --- */
        header {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05); transition: 0.3s;
        }
        .nav-inner { height: 80px; display: flex; justify-content: space-between; align-items: center; }
        
        .logo { font-size: 1.8rem; font-weight: 800; color: var(--black); display: flex; align-items: center; gap: 5px; }
        .logo span {color: var(--primary);font-size: 20px;margin-bottom: 14px;}
        
        .nav-list {
            display: flex;
            gap: 10px;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }
        .nav-list > li {
            position: relative;
        }
        .nav-list > li > a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            height: auto;
            padding: 9px 12px;
            border-radius: 999px;
            text-decoration: none;
            color: var(--text-main);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.2s ease, background-color 0.2s ease;
            position: relative;
            white-space: nowrap;
        }
        .nav-list > li > a:hover,
        .nav-list > li.current-menu-item > a,
        .nav-list > li.current-menu-ancestor > a {
            color: var(--primary);
            background: rgba(245, 124, 0, 0.1);
        }
        .nav-list > li.current-menu-ancestor > a::before {
            content: none;
        }

        .has-dropdown > a::after {
            content: "";
            width: 7px;
            height: 7px;
            border-right: 1.8px solid currentColor;
            border-bottom: 1.8px solid currentColor;
            transform: rotate(45deg) translateY(-1px);
            transition: transform 0.2s ease;
        }
        .has-dropdown:hover > a::after,
        .has-dropdown:focus-within > a::after {
            transform: rotate(-135deg) translateY(-1px);
        }

        .sub-menu {
            position: absolute;
            top: calc(100% - 6px);
            left: 0;
            min-width: 280px;
            max-height: min(72vh, 420px);
            overflow-y: auto;
            padding: 8px 0;
            margin: 0;
            list-style: none;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 24px 36px rgba(0, 0, 0, 0.14);
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            pointer-events: none;
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
            z-index: 1200;
        }
        .sub-menu li {
            margin: 0;
            padding: 0;
        }
        .sub-menu a {
            display: block;
            padding: 11px 16px;
            color: #2a2a2a;
            text-decoration: none;
            font-size: 0.92rem;
            line-height: 1.35;
            transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
        }
        .sub-menu a:hover,
        .sub-menu .current-menu-item > a {
            color: var(--primary);
            background: rgba(245, 124, 0, 0.08);
            padding-left: 20px;
        }
        .has-dropdown:hover > .sub-menu,
        .has-dropdown:focus-within > .sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }
        .nav-list > li:nth-last-child(-n+2) > .sub-menu {
            left: auto;
            right: 0;
        }

        /* --- 1. SLIDER --- */
        .hero-slider {
            min-height: 100vh;
            padding-top: 80px;
            position: relative;
        }
        .hero-canvas { position: relative; min-height: calc(100vh - 80px); overflow: hidden; }
        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transform: scale(1.08);
            transition: opacity 0.8s var(--ease), transform 1.6s var(--ease);
            pointer-events: none;
        }
        .slide.active {
            opacity: 1;
            transform: scale(1);
            pointer-events: auto;
        }
        .slide-mask {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 80% 15%, rgba(245, 124, 0, 0.32), transparent 34%),
                linear-gradient(105deg, rgba(0, 0, 0, 0.72) 22%, rgba(0, 0, 0, 0.33) 56%, rgba(0, 0, 0, 0.08) 86%);
        }
        .hero-layer {
            position: relative;
            z-index: 2;
            min-height: calc(100vh - 80px);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .slide-content {
            max-width: 700px;
            color: white;
        }
        .hero-badge {
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 22px;
            font-size: 0.82rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            backdrop-filter: blur(6px);
        }
        .slide-content h1 {
            color: #fff;
            margin-bottom: 16px;
            font-size: clamp(2.1rem, 4.5vw, 4.5rem);
        }
        .slide-content p {
            color: #e5e9ef;
            max-width: 560px;
        }
        .hero-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .slide.active .hero-img { transform: scale(1); }
        .slide:not(.active) .hero-img { transform: scale(1.06); }
        .hero-side {
            text-align: right;
            color: #fff;
            z-index: 3;
            min-width: 260px;
        }
        .hero-side-fixed {
            position: absolute;
            right: 44px;
            top: 50%;
            transform: translateY(-50%);
        }
        .hero-count {
            font-size: 2.2rem;
            letter-spacing: -0.03em;
            margin-bottom: 14px;
            color: #fff;
            font-weight: 700;
        }
        .hero-list {
            display: grid;
            gap: 10px;
            justify-items: end;
        }
        .hero-item {
            border: none;
            background: transparent;
            color: #c9d0db;
            font-size: 0.95rem;
            cursor: pointer;
            letter-spacing: 0.02em;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: 0.25s var(--ease);
        }
        .hero-item:hover { color: white; }
        .hero-item.active {
            color: var(--primary);
            border-bottom-color: rgba(245, 124, 0, 0.55);
        }

        .hero-controls {
            position: absolute;
            left: 24px;
            right: 24px;
            bottom: 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            z-index: 3;
        }
        .hero-arrow {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.38);
            background: rgba(255, 255, 255, 0.16);
            color: white;
            font-size: 1.15rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: 0.25s var(--ease);
        }
        .hero-arrow:hover {
            background: var(--primary);
            border-color: var(--primary);
        }
        .hero-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 230px;
        }
        .hero-dots { display: flex; gap: 8px; }
        .hero-dot {
            width: 8px;
            height: 8px;
            border: none;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.42);
            cursor: pointer;
            transition: 0.3s var(--ease);
        }
        .hero-dot.active {
            width: 26px;
            border-radius: 8px;
            background: var(--primary);
        }
        .hero-progress {
            height: 5px;
            flex: 1;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.24);
            overflow: hidden;
        }
        .hero-progress span {
            display: block;
            width: 33.33%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary), #ffab5f);
            transition: width 0.45s var(--ease);
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        /* --- 2. ABOUT SECTION --- */
        .about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .about-img-wrap { position: relative; }
        .about-img { width: 100%; border-radius: var(--radius); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
        
        .about-float-card {
            position: absolute; bottom: -30px; right: -30px; background: white; padding: 30px;
            border-radius: var(--radius); box-shadow: 0 20px 40px rgba(0,0,0,0.1); max-width: 250px;
        }
        
        .check-list { list-style: none; margin-top: 20px; }
        .check-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
        .check-list i { color: var(--primary); font-size: 1.2rem; }

        .stats-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
        .stat-box {
            padding: 20px; background: var(--titanium); border-radius: 12px; text-align: center; transition: 0.3s;
        }
        .stat-box:hover { background: var(--primary); color: white; transform: translateY(-5px); }
        .stat-box:hover h3, .stat-box:hover span { color: white; }
        
        .stat-box h3 { font-size: 2rem; margin-bottom: 5px; color: var(--primary); }
        .stat-box span { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; color: var(--text-muted); }

        /* --- 3. AI FRAUD --- */
        .ai-section {
            background:
                radial-gradient(circle at 8% 8%, rgba(245, 124, 0, 0.22), transparent 32%),
                radial-gradient(circle at 86% 78%, rgba(79, 70, 229, 0.15), transparent 30%),
                linear-gradient(145deg, #060910, #0d1625);
            color: white;
        }
        .ai-section h2 { color: white; }
        .ai-section p { color: #95a0b3; }
        .radar-wrap {
            display: grid;
            grid-template-columns: 0.92fr 1.08fr;
            gap: 32px;
            align-items: center;
        }
        .radar-headline {
            max-width: 520px;
        }
        .radar-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            border: 1px solid rgba(245, 124, 0, 0.35);
            background: rgba(245, 124, 0, 0.12);
            color: #ffcfa6;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 16px;
        }
        .impact-strip {
            margin-top: 22px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        .impact-pill {
            border-radius: 12px;
            border: 1px solid #2a3850;
            background: #111a2b;
            padding: 12px;
        }
        .impact-pill strong {
            display: block;
            font-size: 1.15rem;
            color: #fff;
            margin-bottom: 2px;
        }
        .impact-pill span {
            font-size: 0.75rem;
            color: #97a7bf;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            font-weight: 700;
        }
        .radar-panel {
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #243044;
            background: #0b111c;
            box-shadow: 0 30px 55px -28px rgba(0, 0, 0, 0.55);
        }
        .radar-panel-head {
            padding: 20px 22px;
            border-bottom: 1px solid #223147;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .radar-panel-head h4 {
            margin: 0;
            color: #e7edf6;
            font-size: 1rem;
        }
        .panel-status {
            font-size: 0.72rem;
            color: #00e58f;
            background: rgba(0, 229, 143, 0.12);
            padding: 4px 8px;
            border-radius: 999px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .capability-grid {
            padding: 18px 22px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .capability-card {
            border: 1px solid #1f2d44;
            border-radius: 14px;
            background: #10192a;
            padding: 14px;
        }
        .capability-card i {
            color: #ffb16b;
            font-size: 1.35rem;
            margin-bottom: 10px;
            display: inline-block;
        }
        .capability-card h5 {
            margin: 0 0 6px;
            color: #edf2fa;
            font-size: 0.95rem;
            letter-spacing: -0.01em;
        }
        .capability-card p {
            margin: 0;
            color: #8fa0b8;
            font-size: 0.84rem;
            line-height: 1.5;
        }
        .decision-flow {
            border-top: 1px solid #223147;
            padding: 16px 22px 22px;
        }
        .decision-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        .decision-head span {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #94a5be;
            font-weight: 700;
        }
        .decision-score {
            font-size: 1.3rem;
            color: #00e58f;
            font-weight: 700;
        }
        .decision-list {
            display: grid;
            gap: 8px;
        }
        .decision-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid #1f2c42;
            background: #0f1724;
            border-radius: 10px;
            padding: 10px 11px;
            color: #9ba9bf;
            font-size: 0.85rem;
        }
        .decision-tag {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 4px 7px;
            border-radius: 999px;
        }
        .decision-tag.ok { color: #00e58f; background: rgba(0, 229, 143, 0.12); }
        .decision-tag.review { color: #ffd166; background: rgba(255, 209, 102, 0.12); }
        .decision-tag.block { color: #ff5d7a; background: rgba(255, 93, 122, 0.12); }

        /* --- 4. COMPLIANCE --- */
        .cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
        .cert-card {
            background: var(--white); padding: 40px; border-radius: var(--radius); border: 1px solid var(--border);
            text-align: center; transition: 0.4s var(--ease);
        }
        .cert-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
        .cert-icon { font-size: 3.5rem; color: var(--primary); margin-bottom: 20px; display: inline-block; }

        /* --- 5. DEVELOPERS --- */
        .dev-container {
            background: var(--titanium); border-radius: 30px; padding: 80px; 
            display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
        }
        .code-preview {
            background: #1A1A1A; border-radius: 16px; padding: 30px;
            font-family: monospace; color: #A5D6FF; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* --- 6. GLOBAL REACH (DETAILED CARDS) --- */
        .locations-wrapper { 
            display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 50px; 
        }
        
        .loc-card {
            background: var(--white); padding: 24px; border-radius: 16px; border: 1px solid var(--border);
            display: flex; align-items: center; gap: 15px; transition: 0.3s var(--ease);
        }
        .loc-card:hover { 
            border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
        }
        
        .flag { font-size: 2.2rem; }
        .loc-info { display: flex; flex-direction: column; }
        .loc-info h4 { margin: 0; font-size: 1.1rem; color: var(--text-main); font-weight: 700; line-height: 1.2; }
        
        /* License Badge Style */
        .loc-license { 
            font-size: 0.8rem; color: var(--primary); font-weight: 600; 
            background: rgba(245, 124, 0, 0.1); padding: 4px 8px; border-radius: 6px; 
            display: inline-block; margin-top: 5px; width: fit-content;
        }

        /* --- 7. ABOUT PAGE --- */
        .about-page-hero {
            padding: 150px 0 90px;
            background:
                radial-gradient(circle at 12% 8%, rgba(245, 124, 0, 0.14), transparent 34%),
                radial-gradient(circle at 88% 40%, rgba(8, 8, 8, 0.07), transparent 36%),
                linear-gradient(180deg, #fff, #fcfcfd);
        }
        .about-page-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 32px;
            align-items: center;
        }
        .about-page-kicker {
            display: inline-block;
            margin-bottom: 16px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(245, 124, 0, 0.1);
            color: var(--primary);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }
        .about-page-cta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .about-page-card {
            border-radius: 24px;
            border: 1px solid #e9edf2;
            background: #fff;
            box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
            padding: 24px;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }
        .about-page-stat {
            border: 1px solid #edf1f6;
            border-radius: 14px;
            padding: 16px;
            background: linear-gradient(180deg, #fff, #fbfcfe);
        }
        .about-page-stat strong {
            display: block;
            font-size: 1.35rem;
            letter-spacing: -0.02em;
            color: #111;
            margin-bottom: 4px;
        }
        .about-page-stat span {
            display: block;
            font-size: 0.84rem;
            color: #6d7785;
        }
        .about-story {
            max-width: 880px;
            margin-bottom: 34px;
        }
        .about-values {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }
        .about-value {
            padding: 24px;
            border-radius: 18px;
            border: 1px solid #e5e8ed;
            background: #fff;
            transition: 0.25s var(--ease);
        }
        .about-value:hover {
            transform: translateY(-5px);
            border-color: rgba(245, 124, 0, 0.45);
            box-shadow: 0 16px 28px rgba(0, 0, 0, 0.07);
        }
        .about-value i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 10px;
            display: inline-block;
        }
        .about-value h3 {
            font-size: 1.18rem;
            margin-bottom: 8px;
        }
        .about-value p {
            margin: 0;
            font-size: 0.95rem;
        }
        .about-timeline-head {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 34px;
        }
        .about-timeline {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }
        .timeline-item {
            background: #fff;
            border: 1px solid #e6ebf2;
            border-radius: 16px;
            padding: 18px;
            min-height: 215px;
        }
        .timeline-item span {
            display: inline-block;
            margin-bottom: 10px;
            padding: 5px 10px;
            border-radius: 999px;
            background: #f3f6fb;
            color: #4a5667;
            font-size: 0.78rem;
            font-weight: 700;
        }
        .timeline-item h3 {
            font-size: 1.05rem;
            margin-bottom: 8px;
        }
        .timeline-item p {
            margin: 0;
            font-size: 0.92rem;
        }

        /* --- ABOUT PAGE V2 --- */
        .abt-hero {
            padding: 150px 0 96px;
            background:
                radial-gradient(circle at 10% 6%, rgba(245, 124, 0, 0.11), transparent 34%),
                radial-gradient(circle at 88% 14%, rgba(32, 55, 94, 0.08), transparent 38%),
                linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
            border-bottom: 1px solid #e8edf4;
        }
        .abt-hero-grid {
            display: grid;
            grid-template-columns: 1.08fr 0.92fr;
            gap: 34px;
            align-items: center;
        }
        .abt-hero-copy {
            max-width: 720px;
        }
        .abt-hero-copy h1 {
            margin-bottom: 14px;
            font-size: clamp(2.05rem, 4.2vw, 3.55rem);
            line-height: 1.08;
            letter-spacing: -0.03em;
        }
        .abt-hero-copy p {
            max-width: 640px;
            color: #5d6674;
            margin-bottom: 22px;
        }
        .abt-kicker {
            display: inline-block;
            margin-bottom: 14px;
            padding: 8px 14px;
            border-radius: 999px;
            background: linear-gradient(120deg, rgba(245, 124, 0, 0.1), rgba(255, 186, 124, 0.08));
            color: #b45f00;
            border: 1px solid rgba(245, 124, 0, 0.2);
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        .abt-cta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .abt-badges {
            margin-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .abt-badges span {
            border: 1px solid #dde3ea;
            border-radius: 999px;
            padding: 7px 11px;
            font-size: 0.8rem;
            color: #5c6877;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.94);
        }
        .abt-highlight-card {
            border: 1px solid #dfe4ea;
            border-radius: 26px;
            padding: 26px;
            background:
                radial-gradient(circle at 86% -14%, rgba(245, 124, 0, 0.08), transparent 40%),
                linear-gradient(160deg, #ffffff 0%, #f8f9fb 100%);
            box-shadow: 0 18px 32px rgba(14, 22, 36, 0.08);
        }
        .abt-highlight-card h3 {
            margin-bottom: 14px;
            font-size: 1.24rem;
            color: #1e2734;
        }
        .abt-metrics-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }
        .abt-metric {
            border: 1px solid #e3e8ef;
            border-radius: 14px;
            padding: 14px;
            background: linear-gradient(180deg, #ffffff, #f7f8fa);
        }
        .abt-metric strong {
            display: block;
            margin-bottom: 3px;
            font-size: 1.32rem;
            color: #1e2938;
            letter-spacing: -0.02em;
        }
        .abt-metric span {
            display: block;
            font-size: 0.82rem;
            color: #637081;
        }
        .abt-quote {
            margin: 16px 0 0;
            padding: 14px 15px;
            border-radius: 12px;
            border: 1px solid #e5e9ef;
            background: rgba(255, 255, 255, 0.96);
            font-size: 0.92rem;
            color: #5a6778;
        }
        .abt-section-head {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 36px;
        }
        .abt-section-head p {
            margin-bottom: 0;
        }
        .abt-pillars {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }
        .abt-pillar {
            border: 1px solid #e8ecf2;
            border-radius: 18px;
            background: #fff;
            padding: 22px;
            transition: 0.24s var(--ease);
        }
        .abt-pillar:hover {
            transform: translateY(-5px);
            border-color: rgba(245, 124, 0, 0.45);
            box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
        }
        .abt-pillar i {
            color: var(--primary);
            font-size: 1.55rem;
            margin-bottom: 10px;
            display: inline-block;
        }
        .abt-pillar h3 {
            font-size: 1.05rem;
            margin-bottom: 8px;
        }
        .abt-pillar p {
            margin: 0;
            font-size: 0.9rem;
        }
        .abt-timeline {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }
        .abt-timeline-item {
            border: 1px solid #e6ecf3;
            border-radius: 16px;
            background: #fff;
            padding: 17px;
            min-height: 190px;
        }
        .abt-timeline-item span {
            display: inline-block;
            margin-bottom: 9px;
            padding: 5px 10px;
            border-radius: 999px;
            background: #f2f6fb;
            color: #4d5a6c;
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.02em;
        }
        .abt-timeline-item h3 {
            font-size: 1.02rem;
            margin-bottom: 8px;
        }
        .abt-timeline-item p {
            margin: 0;
            font-size: 0.9rem;
        }
        .abt-leaders {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }
        .abt-leader-card {
            border: 1px solid #e5eaf1;
            border-radius: 18px;
            padding: 22px;
            background: #fff;
        }
        .abt-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffad5c, #f57c00);
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }
        .abt-leader-card h3 {
            margin-bottom: 4px;
            font-size: 1.08rem;
        }
        .abt-leader-card span {
            display: block;
            margin-bottom: 9px;
            font-size: 0.83rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--primary);
            font-weight: 700;
        }
        .abt-leader-card p {
            margin: 0;
            font-size: 0.9rem;
        }
        .abt-region-section {
            background:
                radial-gradient(circle at 6% 14%, rgba(245, 124, 0, 0.08), transparent 32%),
                linear-gradient(180deg, #fff, #fbfcfe);
        }
        .abt-regions {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }
        .abt-region-card {
            border: 1px solid #e5eaf1;
            border-radius: 16px;
            padding: 20px;
            background: #fff;
        }
        .abt-region-card h3 {
            font-size: 1.08rem;
            margin-bottom: 8px;
        }
        .abt-region-card p {
            margin: 0;
            font-size: 0.92rem;
        }
        .abt-final-cta {
            border-radius: 26px;
            padding: 52px 40px;
            text-align: center;
            border: 1px solid #1c293d;
            background:
                radial-gradient(circle at 80% -10%, rgba(245, 124, 0, 0.24), transparent 42%),
                linear-gradient(145deg, #070c14, #101b2a);
            box-shadow: 0 28px 48px rgba(0, 0, 0, 0.24);
        }
        .abt-final-cta h2 {
            color: #fff;
            margin-bottom: 10px;
        }
        .abt-final-cta p {
            color: #a6b3c7;
            margin: 0 auto 18px;
            max-width: 680px;
        }
        .abt-final-cta .abt-cta {
            justify-content: center;
        }
        .abt-outline-light {
            border-color: #2a3a51;
            color: #d7e1ef;
        }
        .abt-outline-light:hover {
            border-color: #fff;
            color: #fff;
            background: transparent;
        }
        .abt-block {
            position: relative;
            isolation: isolate;
        }
        .abt-block::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: min(1120px, calc(100% - 48px));
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(26, 33, 51, 0.12), transparent);
        }
        .abt-block > .container {
            position: relative;
            z-index: 2;
        }
        .abt-block::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            opacity: 1;
        }
        .abt-block--pillars::after {
            background:
                radial-gradient(circle at 10% 20%, rgba(245, 124, 0, 0.07), transparent 30%),
                linear-gradient(180deg, #fcf9f5, #ffffff 72%);
        }
        .abt-block--timeline::after {
            background:
                radial-gradient(circle at 88% 14%, rgba(58, 123, 213, 0.08), transparent 32%),
                linear-gradient(180deg, #f8fbff, #ffffff 76%);
        }
        .abt-block--leaders::after {
            background:
                radial-gradient(circle at 14% 18%, rgba(19, 95, 164, 0.07), transparent 30%),
                linear-gradient(180deg, #f7fafc, #ffffff 75%);
        }
        .abt-block--regions::after {
            background:
                radial-gradient(circle at 84% 16%, rgba(245, 124, 0, 0.06), transparent 30%),
                linear-gradient(180deg, #fcfaf7, #ffffff 78%);
        }
        .abt-surface {
            border: 1px solid #e5e8ee;
            border-radius: 24px;
            background:
                radial-gradient(circle at 88% -20%, rgba(245, 124, 0, 0.05), transparent 42%),
                linear-gradient(180deg, #ffffff, #f9fafb);
            box-shadow: 0 14px 26px rgba(0, 0, 0, 0.05);
            padding: 22px;
        }
        .abt-surface--soft {
            background:
                radial-gradient(circle at 10% -10%, rgba(58, 123, 213, 0.05), transparent 44%),
                linear-gradient(180deg, #ffffff, #f8fafc);
        }
        .abt-block--timeline .abt-timeline-item {
            position: relative;
            border-radius: 14px;
            background: #ffffff;
            transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
        }
        .abt-block--pillars .abt-surface {
            background: linear-gradient(180deg, #ffffff, #fffcf8);
            border-color: #e8e2d9;
        }
        .abt-block--pillars .abt-pillar {
            background: linear-gradient(180deg, #ffffff, #fffaf3);
            border-color: #ece1d3;
        }
        .abt-block--leaders .abt-surface {
            background: linear-gradient(180deg, #ffffff, #f8fbff);
            border-color: #dfe6ef;
        }
        .abt-block--regions .abt-surface {
            background: linear-gradient(180deg, #ffffff, #fffcf8);
            border-color: #e8e2d9;
        }
        .abt-block--timeline .abt-timeline-item::before {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            top: 0;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, rgba(245, 124, 0, 0.75), rgba(255, 173, 92, 0));
            opacity: 0;
            transition: opacity 0.24s var(--ease);
        }
        .abt-block--timeline .abt-timeline-item:hover {
            transform: translateY(-4px);
            border-color: rgba(245, 124, 0, 0.35);
            box-shadow: 0 12px 24px rgba(10, 20, 35, 0.08);
        }
        .abt-block--timeline .abt-timeline-item:hover::before {
            opacity: 1;
        }
        .abt-block--leaders .abt-leader-card {
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #ffffff, #f8fafc);
            transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
        }
        .abt-block--leaders .abt-leader-card::after {
            content: "";
            position: absolute;
            inset: auto -40% -55% auto;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 124, 0, 0.11), rgba(245, 124, 0, 0));
            pointer-events: none;
            transition: transform 0.24s var(--ease);
        }
        .abt-block--leaders .abt-leader-card:hover {
            transform: translateY(-5px);
            border-color: rgba(245, 124, 0, 0.4);
            box-shadow: 0 16px 30px rgba(10, 20, 35, 0.08);
        }
        .abt-block--leaders .abt-leader-card:hover::after {
            transform: translate(-10px, -6px);
        }
        .abt-block--regions .abt-region-card {
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #ffffff, #fdfaf6);
            transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
        }
        .abt-block--regions .abt-region-card::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary), rgba(245, 124, 0, 0.18));
            opacity: 0.7;
        }
        .abt-block--regions .abt-region-card:hover {
            transform: translateY(-4px);
            border-color: rgba(245, 124, 0, 0.4);
            box-shadow: 0 14px 24px rgba(10, 20, 35, 0.08);
        }
        .abt-block--cta::before {
            display: none;
        }
        .abt-block--cta::after {
            display: none;
        }

        /* --- ABOUT REDESIGN V3 --- */
        .about-v3 {
            --abt-accent: #f57c00;
            --abt-accent-soft: #ffe2bf;
            --abt-secondary: #0f766e;
            --abt-secondary-soft: #d4f4ef;
            --abt-ink: #0f172a;
            --abt-muted: #5c6676;
            --abt-line: #dbe3ee;
        }
        .about-v3 .abt-hero {
            background:
                radial-gradient(circle at 8% 6%, rgba(245, 124, 0, 0.16), transparent 34%),
                radial-gradient(circle at 92% 16%, rgba(15, 118, 110, 0.18), transparent 36%),
                linear-gradient(130deg, #f8fbff 0%, #ffffff 48%, #f7faf9 100%);
            border-bottom: 1px solid var(--abt-line);
        }
        .about-v3 .abt-kicker {
            background: linear-gradient(120deg, rgba(245, 124, 0, 0.14), rgba(15, 118, 110, 0.11));
            color: #7a4700;
            border-color: rgba(15, 118, 110, 0.25);
        }
        .about-v3 .abt-hero-copy h1 {
            color: var(--abt-ink);
            text-wrap: balance;
        }
        .about-v3 .abt-hero-copy p {
            color: var(--abt-muted);
        }
        .about-v3 .abt-badges span {
            border-color: #d5dfeb;
            color: #4f5c6e;
            background: #fff;
        }
        .about-v3 .abt-highlight-card {
            border-color: #d3dde9;
            background:
                radial-gradient(circle at 92% -12%, rgba(15, 118, 110, 0.16), transparent 40%),
                linear-gradient(155deg, #ffffff 0%, #f6fbfa 100%);
            box-shadow: 0 24px 38px rgba(12, 22, 38, 0.1);
        }
        .about-v3 .abt-highlight-card h3 {
            color: var(--abt-ink);
        }
        .about-v3 .abt-metric {
            border-color: #dce5ef;
            background: #fff;
        }
        .about-v3 .abt-metric strong {
            color: #10253f;
        }
        .about-v3 .abt-quote {
            border-color: #dce7f4;
            background: linear-gradient(180deg, #ffffff, #f8fbff);
            color: #506076;
        }

        .about-v3 .abt-block::before {
            background: linear-gradient(90deg, transparent, rgba(18, 30, 48, 0.15), transparent);
        }
        .about-v3 .abt-block--pillars::after {
            background:
                radial-gradient(circle at 10% 20%, rgba(245, 124, 0, 0.08), transparent 30%),
                linear-gradient(180deg, #fffdf9, #ffffff 74%);
        }
        .about-v3 .abt-block--timeline::after {
            background:
                radial-gradient(circle at 90% 14%, rgba(15, 118, 110, 0.1), transparent 30%),
                linear-gradient(180deg, #f8fcfb, #ffffff 74%);
        }
        .about-v3 .abt-block--leaders::after {
            background:
                radial-gradient(circle at 12% 16%, rgba(23, 92, 211, 0.08), transparent 30%),
                linear-gradient(180deg, #f8faff, #ffffff 74%);
        }
        .about-v3 .abt-block--regions::after {
            background:
                radial-gradient(circle at 88% 14%, rgba(245, 124, 0, 0.07), transparent 30%),
                linear-gradient(180deg, #fffcf8, #ffffff 76%);
        }
        .about-v3 .abt-surface {
            border-color: #dbe3ee;
            background: linear-gradient(180deg, #ffffff, #fbfdff);
            box-shadow: 0 16px 28px rgba(12, 22, 38, 0.06);
        }
        .about-v3 .abt-surface--soft {
            background: linear-gradient(180deg, #ffffff, #f8fbfa);
        }

        .about-v3 .abt-section-head h2 {
            color: #111c2d;
        }
        .about-v3 .abt-section-head p {
            color: #596678;
        }

        .about-v3 .abt-pillars {
            gap: 16px;
        }
        .about-v3 .abt-pillar {
            border-color: #dde5ef;
            background: linear-gradient(180deg, #ffffff, #f9fcff);
            padding: 24px;
        }
        .about-v3 .abt-pillar i {
            color: var(--abt-secondary);
            background: var(--abt-secondary-soft);
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }
        .about-v3 .abt-pillar:hover {
            border-color: rgba(15, 118, 110, 0.42);
            box-shadow: 0 16px 30px rgba(16, 63, 94, 0.12);
        }

        .about-v3 .abt-timeline {
            gap: 16px;
        }
        .about-v3 .abt-timeline-item {
            border-color: #dce5ef;
            background: linear-gradient(180deg, #ffffff, #f8fcfb);
        }
        .about-v3 .abt-timeline-item span {
            background: rgba(15, 118, 110, 0.11);
            color: #0f766e;
        }
        .about-v3 .abt-block--timeline .abt-timeline-item::before {
            background: linear-gradient(90deg, rgba(15, 118, 110, 0.78), rgba(15, 118, 110, 0));
        }

        .about-v3 .abt-leaders {
            gap: 16px;
        }
        .about-v3 .abt-leader-card {
            border-color: #dce4ef;
            background: linear-gradient(180deg, #ffffff, #f7faff);
        }
        .about-v3 .abt-avatar {
            background: linear-gradient(135deg, #0f766e, #14b8a6);
        }
        .about-v3 .abt-leader-card span {
            color: #0f766e;
        }

        .about-v3 .abt-regions {
            gap: 16px;
        }
        .about-v3 .abt-region-card {
            border-color: #dfe6ef;
            background: linear-gradient(180deg, #ffffff, #fefbf7);
            padding-left: 24px;
        }
        .about-v3 .abt-block--regions .abt-region-card::before {
            background: linear-gradient(180deg, #0f766e, rgba(15, 118, 110, 0.15));
            opacity: 0.65;
        }

        .about-v3 .abt-final-cta {
            border-color: #123144;
            background:
                radial-gradient(circle at 82% -12%, rgba(20, 184, 166, 0.24), transparent 42%),
                radial-gradient(circle at 12% 110%, rgba(245, 124, 0, 0.2), transparent 36%),
                linear-gradient(145deg, #06101b, #0e1d2e);
        }
        .about-v3 .abt-outline-light {
            border-color: #2f4b60;
            color: #d5e8f9;
        }
        .about-v3 .abt-outline-light:hover {
            border-color: #14b8a6;
            color: #dffff8;
        }

        /* ABOUT V3 ENHANCED - vibrant and modern */
        .about-v3 {
            --abt-primary: #ff7a00;
            --abt-primary-deep: #e36400;
            --abt-teal: #0ea5a5;
            --abt-indigo: #4f46e5;
            --abt-ink-strong: #111827;
            --abt-ink-soft: #5b6474;
        }
        .about-v3 .abt-hero {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 8% 8%, rgba(255, 122, 0, 0.28), transparent 34%),
                radial-gradient(circle at 88% 12%, rgba(14, 165, 165, 0.26), transparent 34%),
                linear-gradient(130deg, #f5fbff 0%, #fff6ec 46%, #f2fffd 100%);
            border-bottom: 1px solid #dfe9f4;
        }
        .about-v3 .abt-hero::after {
            content: "";
            position: absolute;
            right: -90px;
            top: -70px;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.2), rgba(79, 70, 229, 0));
            pointer-events: none;
        }
        .about-v3 .abt-hero-copy h1 {
            color: var(--abt-ink-strong);
        }
        .about-v3 .abt-hero-copy p {
            color: var(--abt-ink-soft);
        }
        .about-v3 .abt-kicker {
            background: linear-gradient(120deg, rgba(255, 122, 0, 0.22), rgba(14, 165, 165, 0.2));
            color: #8b3f00;
            border-color: rgba(14, 165, 165, 0.35);
        }
        .about-v3 .abt-hero .btn-primary {
            background: linear-gradient(120deg, var(--abt-primary), #ff9b38);
            box-shadow: 0 12px 24px rgba(255, 122, 0, 0.24);
        }
        .about-v3 .abt-hero .btn-primary:hover {
            background: linear-gradient(120deg, var(--abt-primary-deep), #ff8f1f);
        }
        .about-v3 .abt-hero .btn-outline {
            border-color: #cfdcf0;
            color: #23314a;
            background: rgba(255, 255, 255, 0.85);
        }
        .about-v3 .abt-hero .btn-outline:hover {
            border-color: var(--abt-teal);
            color: #0f766e;
        }
        .about-v3 .abt-badges span {
            border-width: 0;
            font-weight: 700;
        }
        .about-v3 .abt-badges span:nth-child(1) {
            background: rgba(255, 122, 0, 0.14);
            color: #9a4f00;
        }
        .about-v3 .abt-badges span:nth-child(2) {
            background: rgba(14, 165, 165, 0.15);
            color: #0f6b6b;
        }
        .about-v3 .abt-badges span:nth-child(3) {
            background: rgba(79, 70, 229, 0.14);
            color: #3d39a8;
        }
        .about-v3 .abt-highlight-card {
            border-color: #d7e3f0;
            background:
                radial-gradient(circle at 92% -6%, rgba(79, 70, 229, 0.2), transparent 40%),
                linear-gradient(155deg, #ffffff 0%, #f3fffc 100%);
            box-shadow: 0 24px 42px rgba(14, 24, 38, 0.12);
        }
        .about-v3 .abt-metric {
            border-color: #d9e5f2;
            background: #fff;
        }
        .about-v3 .abt-metric strong {
            color: #132742;
        }
        .about-v3 .abt-metric:nth-child(1) strong { color: #cc5f00; }
        .about-v3 .abt-metric:nth-child(2) strong { color: #0b7f7f; }
        .about-v3 .abt-metric:nth-child(3) strong { color: #3f3bc8; }
        .about-v3 .abt-metric:nth-child(4) strong { color: #11608a; }

        .about-v3 .abt-block::before {
            background: linear-gradient(90deg, transparent, rgba(35, 54, 83, 0.18), transparent);
        }
        .about-v3 .abt-block--pillars::after {
            background:
                radial-gradient(circle at 8% 20%, rgba(255, 122, 0, 0.13), transparent 30%),
                linear-gradient(180deg, #fff8f0, #ffffff 72%);
        }
        .about-v3 .abt-block--timeline::after {
            background:
                radial-gradient(circle at 90% 14%, rgba(14, 165, 165, 0.14), transparent 30%),
                linear-gradient(180deg, #f4fffd, #ffffff 74%);
        }
        .about-v3 .abt-block--leaders::after {
            background:
                radial-gradient(circle at 12% 16%, rgba(79, 70, 229, 0.14), transparent 30%),
                linear-gradient(180deg, #f6f7ff, #ffffff 74%);
        }
        .about-v3 .abt-block--regions::after {
            background:
                radial-gradient(circle at 86% 14%, rgba(255, 122, 0, 0.12), transparent 30%),
                linear-gradient(180deg, #fff8f0, #ffffff 76%);
        }
        .about-v3 .abt-surface {
            border-color: #d9e4f1;
            box-shadow: 0 14px 28px rgba(13, 24, 39, 0.08);
        }
        .about-v3 .abt-pillar {
            border-color: #dbe6f2;
            background: #fff;
        }
        .about-v3 .abt-pillar i {
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .about-v3 .abt-pillar:nth-child(1) i { background: linear-gradient(135deg, #ff7a00, #ffad55); }
        .about-v3 .abt-pillar:nth-child(2) i { background: linear-gradient(135deg, #0ea5a5, #2dd4bf); }
        .about-v3 .abt-pillar:nth-child(3) i { background: linear-gradient(135deg, #4f46e5, #818cf8); }
        .about-v3 .abt-pillar:nth-child(4) i { background: linear-gradient(135deg, #0284c7, #38bdf8); }
        .about-v3 .abt-pillar:hover {
            transform: translateY(-6px);
            border-color: rgba(14, 165, 165, 0.45);
            box-shadow: 0 18px 30px rgba(14, 36, 62, 0.12);
        }

        .about-v3 .abt-timeline-item {
            border-color: #dbe5f2;
            background: #fff;
        }
        .about-v3 .abt-timeline-item span {
            background: rgba(14, 165, 165, 0.13);
            color: #0f766e;
        }
        .about-v3 .abt-block--timeline .abt-timeline-item::before {
            background: linear-gradient(90deg, rgba(14, 165, 165, 0.8), rgba(14, 165, 165, 0));
        }

        .about-v3 .abt-leader-card {
            border-color: #dbe4f1;
            background: #fff;
        }
        .about-v3 .abt-avatar {
            background: linear-gradient(135deg, #4f46e5, #0ea5a5);
        }
        .about-v3 .abt-leader-card span {
            color: #0f766e;
        }

        .about-v3 .abt-region-card {
            border-color: #dce5ef;
            background: #fff;
        }
        .about-v3 .abt-block--regions .abt-region-card::before {
            background: linear-gradient(180deg, #ff7a00, rgba(255, 122, 0, 0.2));
            opacity: 0.8;
        }

        .about-v3 .abt-final-cta {
            border-color: #1f3d52;
            background:
                radial-gradient(circle at 86% -10%, rgba(14, 165, 165, 0.3), transparent 40%),
                radial-gradient(circle at 10% 110%, rgba(255, 122, 0, 0.28), transparent 36%),
                linear-gradient(145deg, #07121f, #12263a);
        }
        .about-v3 .abt-outline-light {
            border-color: #2d556d;
            color: #daf2ff;
        }
        .about-v3 .abt-outline-light:hover {
            border-color: #2dd4bf;
            color: #dffff8;
        }

        /* --- ABOUT V4 COMPLETE REDESIGN --- */
        .about-v4 {
            --v4-primary: #ff7a00;
            --v4-primary-soft: #ffe0bf;
            --v4-secondary: #0ea5a5;
            --v4-secondary-soft: #d6f7f2;
            --v4-indigo: #4f46e5;
            --v4-bg: #f7f9fc;
            --v4-ink: #111827;
            --v4-muted: #5d6778;
            background: linear-gradient(180deg, #ffffff 0%, var(--v4-bg) 100%);
        }
        .about-v4 h1, .about-v4 h2, .about-v4 h3 {
            color: var(--v4-ink);
        }
        .about-v4 p {
            color: var(--v4-muted);
        }
        .about-v4 .section + .section::before {
            display: none;
        }

        .about-v4-hero {
            padding: 148px 0 96px;
            background:
                radial-gradient(circle at 8% 8%, rgba(255, 122, 0, 0.22), transparent 34%),
                radial-gradient(circle at 90% 16%, rgba(14, 165, 165, 0.2), transparent 36%),
                linear-gradient(135deg, #f5fbff 0%, #fff7ee 50%, #f3fffd 100%);
            border-bottom: 1px solid #dce5f1;
        }
        .about-v4-hero-grid {
            display: grid;
            grid-template-columns: 1.06fr 0.94fr;
            gap: 28px;
            align-items: center;
        }
        .about-v4-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #823b00;
            border: 1px solid rgba(14, 165, 165, 0.28);
            background: linear-gradient(120deg, rgba(255, 122, 0, 0.2), rgba(14, 165, 165, 0.16));
        }
        .about-v4-hero-copy h1 {
            font-size: clamp(2rem, 4.3vw, 3.6rem);
            line-height: 1.07;
            letter-spacing: -0.03em;
            margin-bottom: 14px;
            text-wrap: balance;
        }
        .about-v4-hero-copy p {
            max-width: 650px;
            margin-bottom: 22px;
        }
        .about-v4-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .about-v4-hero .btn-primary {
            background: linear-gradient(120deg, var(--v4-primary), #ff9a3b);
            box-shadow: 0 12px 24px rgba(255, 122, 0, 0.24);
        }
        .about-v4-hero .btn-primary:hover {
            background: linear-gradient(120deg, #e86400, #ff8d1d);
        }
        .about-v4-hero .btn-outline {
            border-color: #d0dcec;
            color: #203148;
            background: rgba(255, 255, 255, 0.9);
        }
        .about-v4-badges {
            margin-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .about-v4-badges span {
            border-radius: 999px;
            padding: 7px 11px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        .about-v4-badges span:nth-child(1) { background: rgba(255, 122, 0, 0.15); color: #8f4600; }
        .about-v4-badges span:nth-child(2) { background: rgba(14, 165, 165, 0.15); color: #0d6f6f; }
        .about-v4-badges span:nth-child(3) { background: rgba(79, 70, 229, 0.14); color: #4039b6; }

        .about-v4-hero-panel {
            border: 1px solid #d5e1ee;
            border-radius: 26px;
            background:
                radial-gradient(circle at 92% -8%, rgba(79, 70, 229, 0.2), transparent 42%),
                linear-gradient(155deg, #ffffff 0%, #f5fffd 100%);
            box-shadow: 0 24px 42px rgba(12, 22, 38, 0.11);
            padding: 24px;
        }
        .about-v4-hero-panel h3 {
            margin-bottom: 12px;
            font-size: 1.24rem;
        }
        .about-v4-metrics {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin-bottom: 12px;
        }
        .about-v4-metrics > div {
            border: 1px solid #dce6f3;
            border-radius: 13px;
            padding: 12px;
            background: #fff;
        }
        .about-v4-metrics strong {
            display: block;
            font-size: 1.3rem;
            letter-spacing: -0.02em;
            margin-bottom: 2px;
        }
        .about-v4-metrics span {
            font-size: 0.8rem;
            color: #66758a;
            font-weight: 600;
        }
        .about-v4-hero-panel p {
            margin: 0;
            border: 1px solid #dce8f4;
            border-radius: 11px;
            padding: 12px;
            background: #f8fbff;
            font-size: 0.92rem;
            color: #4f6077;
        }

        .about-v4-section {
            position: relative;
        }
        .about-v4-section::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
        }
        .about-v4-section--build::before {
            background:
                radial-gradient(circle at 8% 16%, rgba(255, 122, 0, 0.12), transparent 32%),
                linear-gradient(180deg, #fffaf2, #ffffff 75%);
        }
        .about-v4-section--timeline::before {
            background:
                radial-gradient(circle at 90% 14%, rgba(14, 165, 165, 0.12), transparent 34%),
                linear-gradient(180deg, #f4fffd, #ffffff 75%);
        }
        .about-v4-section--leaders::before {
            background:
                radial-gradient(circle at 12% 14%, rgba(79, 70, 229, 0.1), transparent 34%),
                linear-gradient(180deg, #f7f8ff, #ffffff 75%);
        }
        .about-v4-section--regions::before {
            background:
                radial-gradient(circle at 86% 12%, rgba(255, 122, 0, 0.1), transparent 33%),
                linear-gradient(180deg, #fff9f2, #ffffff 75%);
        }
        .about-v4-section--cta::before {
            display: none;
        }
        .about-v4-section > .container {
            position: relative;
            z-index: 2;
        }
        .about-v4-head {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 34px;
        }
        .about-v4-head p {
            margin-bottom: 0;
        }

        .about-v4-cards--build {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }
        .about-v4-card {
            border: 1px solid #dbe5f2;
            border-radius: 18px;
            background: #fff;
            padding: 24px;
            box-shadow: 0 12px 22px rgba(10, 23, 39, 0.06);
            transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
        }
        .about-v4-card i {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            color: #fff;
            font-size: 1.35rem;
        }
        .about-v4-card:nth-child(1) i { background: linear-gradient(135deg, #ff7a00, #ffad55); }
        .about-v4-card:nth-child(2) i { background: linear-gradient(135deg, #0ea5a5, #2dd4bf); }
        .about-v4-card:nth-child(3) i { background: linear-gradient(135deg, #4f46e5, #818cf8); }
        .about-v4-card:nth-child(4) i { background: linear-gradient(135deg, #0284c7, #38bdf8); }
        .about-v4-card h3 {
            font-size: 1.05rem;
            margin-bottom: 8px;
        }
        .about-v4-card p {
            margin: 0;
            font-size: 0.92rem;
        }
        .about-v4-card:hover {
            transform: translateY(-6px);
            border-color: rgba(14, 165, 165, 0.45);
            box-shadow: 0 18px 32px rgba(11, 34, 58, 0.12);
        }

        .about-v4-timeline {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }
        .about-v4-timeline-item {
            border: 1px solid #dbe5f2;
            border-radius: 16px;
            background: #fff;
            padding: 18px;
            min-height: 192px;
            transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
        }
        .about-v4-timeline-item span {
            display: inline-flex;
            margin-bottom: 9px;
            border-radius: 999px;
            padding: 5px 10px;
            background: rgba(14, 165, 165, 0.12);
            color: #0f766e;
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.05em;
        }
        .about-v4-timeline-item h3 {
            font-size: 1.03rem;
            margin-bottom: 8px;
        }
        .about-v4-timeline-item p {
            margin: 0;
            font-size: 0.9rem;
        }
        .about-v4-timeline-item:hover {
            transform: translateY(-5px);
            border-color: rgba(14, 165, 165, 0.45);
            box-shadow: 0 16px 28px rgba(11, 34, 58, 0.11);
        }

        .about-v4-cards--leaders {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }
        .about-v4-leader {
            border: 1px solid #dbe5f2;
            border-radius: 18px;
            background: #fff;
            padding: 22px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 12px 22px rgba(10, 23, 39, 0.06);
            transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
        }
        .about-v4-leader::after {
            content: "";
            position: absolute;
            inset: auto -42% -58% auto;
            width: 190px;
            height: 190px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(14, 165, 165, 0.15), rgba(14, 165, 165, 0));
            pointer-events: none;
        }
        .about-v4-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, #4f46e5, #0ea5a5);
        }
        .about-v4-leader h3 {
            margin-bottom: 4px;
            font-size: 1.08rem;
        }
        .about-v4-leader span {
            display: block;
            margin-bottom: 9px;
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #0f766e;
        }
        .about-v4-leader p {
            margin: 0;
            font-size: 0.91rem;
        }
        .about-v4-leader:hover {
            transform: translateY(-6px);
            border-color: rgba(79, 70, 229, 0.44);
            box-shadow: 0 16px 30px rgba(11, 34, 58, 0.12);
        }

        .about-v4-cards--regions {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }
        .about-v4-region {
            border: 1px solid #dce5ef;
            border-radius: 16px;
            background: #fff;
            padding: 20px 20px 20px 24px;
            position: relative;
            box-shadow: 0 10px 20px rgba(10, 23, 39, 0.05);
            transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
        }
        .about-v4-region::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #ff7a00, rgba(255, 122, 0, 0.18));
            border-top-left-radius: 16px;
            border-bottom-left-radius: 16px;
        }
        .about-v4-region h3 {
            margin-bottom: 8px;
            font-size: 1.08rem;
        }
        .about-v4-region p {
            margin: 0;
            font-size: 0.92rem;
        }
        .about-v4-region:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 122, 0, 0.42);
            box-shadow: 0 14px 26px rgba(11, 34, 58, 0.1);
        }

        .about-v4-cta-panel {
            border: 1px solid #1f3d52;
            border-radius: 28px;
            padding: 52px 40px;
            text-align: center;
            background:
                radial-gradient(circle at 86% -12%, rgba(14, 165, 165, 0.3), transparent 40%),
                radial-gradient(circle at 12% 110%, rgba(255, 122, 0, 0.28), transparent 36%),
                linear-gradient(145deg, #07121f, #12263a);
            box-shadow: 0 30px 50px rgba(6, 16, 30, 0.28);
        }
        .about-v4-cta-panel h2 {
            color: #fff;
            margin-bottom: 10px;
        }
        .about-v4-cta-panel p {
            color: #b9cadf;
            margin: 0 auto 18px;
            max-width: 680px;
        }
        .about-v4-cta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .about-v4-outline {
            border-color: #325571;
            color: #d9ecff;
        }
        .about-v4-outline:hover {
            border-color: #2dd4bf;
            color: #dffff8;
        }

        @media (max-width: 900px) {
            .about-v4-hero {
                padding: 120px 0 72px;
            }
            .about-v4-hero-grid,
            .about-v4-cards--build,
            .about-v4-timeline,
            .about-v4-cards--leaders,
            .about-v4-cards--regions {
                grid-template-columns: 1fr;
            }
            .about-v4-hero-panel,
            .about-v4-cta-panel {
                padding: 24px;
                border-radius: 18px;
            }
            .about-v4-metrics {
                grid-template-columns: 1fr;
            }
            .about-v4-hero-copy h1 {
                font-size: 2rem;
            }
        }

        /* --- NEWS PAGES --- */
        .inner-page-header {
            padding: 114px 0 30px;
            background: #f6f9fc;
            border-bottom: 1px solid #dfe8f2;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        .inner-page-header .container {
            position: relative;
            z-index: 2;
        }
        .inner-page-header-media {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .inner-page-header-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .inner-page-header--with-image {
            background: #0f2338;
            border-bottom-color: rgba(255, 255, 255, 0.18);
            color: #f6fbff;
        }
        .inner-page-header--with-image::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(95deg, rgba(8, 20, 35, 0.82), rgba(8, 20, 35, 0.54));
            pointer-events: none;
        }
        .inner-page-header--with-image .inner-breadcrumbs {
            color: rgba(237, 245, 255, 0.86);
        }
        .inner-page-header--with-image .inner-breadcrumbs a {
            color: #7be3ff;
        }
        .inner-page-header--with-image .inner-breadcrumbs a:hover {
            color: #a9eefe;
        }
        .inner-page-header--with-image .inner-breadcrumbs .is-current {
            color: #ffffff;
        }
        .inner-page-header--with-image .inner-head-content p {
            color: rgba(235, 244, 255, 0.92);
        }
        .inner-breadcrumbs {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            font-size: 0.85rem;
            color: #6b788d;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .inner-breadcrumbs a {
            color: #0d8ca8;
            text-decoration: none;
        }
        .inner-breadcrumbs a:hover {
            color: #0a7288;
        }
        .inner-breadcrumbs .is-current {
            color: #1f2a37;
            font-weight: 700;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .inner-head-content {
            max-width: 880px;
        }
        .inner-head-content h1 {
            font-size: clamp(1.9rem, 3.8vw, 2.7rem);
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }
        .inner-head-content p {
            margin: 0;
            font-size: 1rem;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }
        .news-card {
            border: 1px solid #e6ebf2;
            border-radius: 18px;
            overflow: hidden;
            background: #fff;
            transition: 0.25s var(--ease);
        }
        .news-card:hover {
            transform: translateY(-6px);
            border-color: rgba(245, 124, 0, 0.45);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.09);
        }
        .news-card-media-link {
            display: block;
        }
        .news-card-image {
            width: 100%;
            height: 210px;
            object-fit: cover;
            display: block;
        }
        .news-card-image-fallback {
            background:
                radial-gradient(circle at 82% 18%, rgba(245, 124, 0, 0.34), transparent 32%),
                linear-gradient(140deg, #0b1220, #18263a);
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 16px;
            color: #d4deeb;
            font-size: 0.86rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .news-card-content {
            padding: 18px;
        }
        .news-card-date {
            display: inline-block;
            margin-bottom: 10px;
            font-size: 0.76rem;
            color: #5f6b7c;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            font-weight: 700;
        }
        .news-card h3 {
            margin-bottom: 9px;
            font-size: 1.08rem;
            line-height: 1.3;
        }
        .news-card h3 a {
            text-decoration: none;
            color: #101417;
        }
        .news-card h3 a:hover {
            color: var(--primary);
        }
        .news-card p {
            margin: 0 0 14px;
            font-size: 0.95rem;
        }
        .news-read-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
        }
        .news-pagination-wrap {
            margin-top: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        .news-page-btn {
            text-decoration: none;
            border: 1px solid #dfe5ee;
            border-radius: 999px;
            padding: 7px 14px;
            color: #1b2532;
            font-size: 0.85rem;
            font-weight: 700;
        }
        .news-page-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .news-page-btn.disabled {
            opacity: 0.45;
            pointer-events: none;
        }
        .news-page-meta {
            font-size: 0.85rem;
            color: #5a6778;
            font-weight: 600;
        }
        .news-empty {
            border: 1px dashed #d5dde8;
            border-radius: 18px;
            background: #fafcff;
            padding: 48px 24px;
            text-align: center;
        }
        .news-empty h3 {
            margin-bottom: 8px;
        }
        .news-empty p {
            margin: 0;
        }
        .news-detail-head {
            max-width: 900px;
        }
        .news-detail-date {
            display: inline-block;
            margin-bottom: 10px;
            font-size: 0.78rem;
            color: #566376;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            font-weight: 700;
        }
        .news-detail-head h1 {
            margin-bottom: 12px;
        }
        .news-detail-head p {
            max-width: 760px;
            margin-bottom: 0;
        }
        .news-reading-stage {
            background:
                radial-gradient(circle at 8% 12%, rgba(245, 124, 0, 0.06), transparent 30%),
                radial-gradient(circle at 92% 88%, rgba(15, 23, 42, 0.05), transparent 28%),
                linear-gradient(180deg, #fff 0%, #fcfdff 100%);
        }
        .news-story-shell {
            max-width: 960px;
            margin: 0 auto;
            border: none;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            overflow: visible;
        }
        .news-story-cover-wrap {
            border-bottom: none;
            margin-bottom: 14px;
        }
        .news-story-cover {
            width: 100%;
            height: min(46vh, 390px);
            object-fit: cover;
            display: block;
            border-radius: 18px;
            border: 1px solid #e6ebf2;
        }
        .news-story-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            padding: 0;
            border-bottom: 1px dashed #e3e9f2;
            padding-bottom: 12px;
            margin-bottom: 4px;
            background: transparent;
        }
        .news-story-content {
            padding: 18px 0 10px;
            max-width: 78ch;
        }
        .news-story-content p {
            margin-bottom: 17px;
            color: #273142;
            font-size: 1.03rem;
            line-height: 1.95;
        }
        .news-story-actions {
            padding: 6px 0 0;
        }
        .news-back-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border: 1px solid #dde5f0;
            border-radius: 999px;
            padding: 10px 16px;
            color: #253246;
            font-size: 0.88rem;
            font-weight: 700;
        }
        .news-back-button:hover {
            color: var(--primary);
            border-color: rgba(245, 124, 0, 0.55);
        }
        .news-simple-article {
            max-width: 860px;
            margin: 0 auto;
        }
        .news-simple-cover {
            width: 100%;
            height: min(46vh, 380px);
            object-fit: cover;
            border-radius: 16px;
            border: 1px solid #e6ebf2;
            display: block;
            margin-bottom: 16px;
        }
        .news-simple-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #5f6d80;
            font-size: 0.88rem;
            font-weight: 600;
            margin-bottom: 14px;
        }
        .news-simple-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #b6c0cf;
        }
        .news-simple-body {
            border-top: 1px dashed #e1e7f0;
            padding-top: 18px;
            margin-bottom: 18px;
            max-width: 74ch;
        }
        .news-simple-body p {
            margin-bottom: 16px;
            font-size: 1.03rem;
            line-height: 1.95;
            color: #253142;
        }
        .news-simple-back {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            color: #2a3749;
            border: 1px solid #dee6f1;
            border-radius: 999px;
            padding: 9px 15px;
            font-size: 0.87rem;
            font-weight: 700;
        }
        .news-simple-back:hover {
            color: var(--primary);
            border-color: rgba(245, 124, 0, 0.55);
        }
        .news-flow-article {
            max-width: 100%;
        }
        .news-flow-hero-media {
            margin-bottom: 14px;
        }
        .news-flow-cover {
            width: 100%;
            height: min(52vh, 460px);
            object-fit: cover;
            border-radius: 20px;
            border: 1px solid #e6ebf2;
            display: block;
        }
        .news-flow-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            color: #5d6b80;
            font-size: 0.88rem;
            font-weight: 600;
            margin-bottom: 18px;
        }
        .news-flow-chip {
            display: inline-flex;
            align-items: center;
            padding: 6px 11px;
            border-radius: 999px;
            background: rgba(245, 124, 0, 0.1);
            color: var(--primary);
            font-size: 0.73rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .news-flow-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #b7c1cf;
        }
        .news-flow-body {
            border-top: 1px dashed #dfe6f1;
            padding-top: 20px;
        }
        .news-flow-intro {
            margin: 0 0 18px;
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            line-height: 1.8;
            color: #1f2d3f;
            max-width: 76ch;
            font-weight: 500;
        }
        .news-flow-columns {
            column-count: 2;
            column-gap: 36px;
        }
        .news-flow-columns p {
            break-inside: avoid;
            margin: 0 0 15px;
            color: #29364a;
            line-height: 1.9;
            font-size: 1.02rem;
        }
        .news-flow-actions {
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px dashed #dfe6f1;
        }
        .news-flow-back {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            color: #2a3749;
            border: 1px solid #dee6f1;
            border-radius: 999px;
            padding: 9px 15px;
            font-size: 0.87rem;
            font-weight: 700;
        }
        .news-flow-back:hover {
            color: var(--primary);
            border-color: rgba(245, 124, 0, 0.55);
        }
        .news-modern {
            max-width: 1120px;
            margin: 0 auto;
            border: 1px solid #e6ebf3;
            border-radius: 24px;
            background:
                radial-gradient(circle at 92% -10%, rgba(245, 124, 0, 0.11), transparent 34%),
                linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
            box-shadow: 0 24px 42px rgba(0, 0, 0, 0.08);
            padding: 24px;
        }
        .news-modern-top {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 18px;
            align-items: stretch;
            margin-bottom: 18px;
        }
        .news-modern-meta {
            border: 1px solid #e8edf5;
            border-radius: 18px;
            background: #fff;
            padding: 22px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .news-modern-chip {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            padding: 6px 11px;
            border-radius: 999px;
            background: rgba(245, 124, 0, 0.1);
            color: var(--primary);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .news-modern-meta h2 {
            margin-bottom: 8px;
            font-size: clamp(1.2rem, 2vw, 1.6rem);
            line-height: 1.2;
            color: #162133;
        }
        .news-modern-meta p {
            margin-bottom: 16px;
            color: #5a697e;
            font-size: 0.93rem;
        }
        .news-modern-back {
            display: inline-flex;
            width: fit-content;
            align-items: center;
            text-decoration: none;
            border: 1px solid #dbe4f0;
            border-radius: 999px;
            padding: 9px 14px;
            color: #2b394d;
            font-size: 0.85rem;
            font-weight: 700;
        }
        .news-modern-back:hover {
            color: var(--primary);
            border-color: rgba(245, 124, 0, 0.5);
        }
        .news-modern-visual {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid #e6ecf4;
        }
        .news-modern-image {
            width: 100%;
            height: 100%;
            min-height: 280px;
            max-height: 340px;
            object-fit: cover;
            display: block;
        }
        .news-modern-intro {
            border: 1px solid #ead7c8;
            border-left: 4px solid var(--primary);
            border-radius: 14px;
            background: linear-gradient(180deg, #fff8f0, #fffdfa);
            padding: 16px 18px;
            margin-bottom: 16px;
        }
        .news-modern-intro p {
            margin: 0;
            font-size: 1.08rem;
            line-height: 1.85;
            color: #2a3648;
            font-weight: 500;
            max-width: 78ch;
        }
        .news-modern-body {
            column-count: 2;
            column-gap: 32px;
            border-top: 1px dashed #dfe6f1;
            padding-top: 18px;
        }
        .news-modern-body p {
            break-inside: avoid;
            margin: 0 0 15px;
            color: #2b384c;
            font-size: 1rem;
            line-height: 1.9;
        }
        .news-classic {
            max-width: 980px;
            margin: 0 auto;
        }
        .news-classic-cover-wrap {
            margin-bottom: 16px;
        }
        .news-classic-cover {
            width: 100%;
            height: min(52vh, 460px);
            object-fit: cover;
            border-radius: 18px;
            border: 1px solid #e6ebf3;
            display: block;
        }
        .news-classic-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
            color: #607085;
            font-size: 0.89rem;
            font-weight: 600;
        }
        .news-classic-chip {
            display: inline-flex;
            align-items: center;
            padding: 6px 11px;
            border-radius: 999px;
            background: rgba(245, 124, 0, 0.1);
            color: var(--primary);
            font-size: 0.73rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .news-classic-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #b6c0cf;
        }
        .news-classic-body {
            max-width: 78ch;
            border-top: 1px dashed #dfe6f1;
            padding-top: 20px;
        }
        .news-classic-body p {
            margin-bottom: 16px;
            font-size: 1.03rem;
            line-height: 1.95;
            color: #273142;
        }
        .news-classic-intro {
            font-size: 1.12rem;
            color: #1e2b3b;
            font-weight: 500;
        }
        .news-classic-actions {
            margin-top: 18px;
        }
        .news-classic-back {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            color: #2a3749;
            border: 1px solid #dee6f1;
            border-radius: 999px;
            padding: 9px 15px;
            font-size: 0.87rem;
            font-weight: 700;
        }
        .news-classic-back:hover {
            color: var(--primary);
            border-color: rgba(245, 124, 0, 0.55);
        }
        .news-article-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 300px;
            gap: 22px;
            align-items: start;
        }
        .news-article-main {
            border: 1px solid #e6ebf2;
            border-radius: 24px;
            background:
                linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
            padding: 26px;
            box-shadow: 0 20px 32px rgba(0, 0, 0, 0.07);
        }
        .news-detail-cover-wrap {
            margin-bottom: 20px;
        }
        .news-detail-cover {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            border-radius: 16px;
            border: 1px solid #e5eaf1;
        }
        .news-article-meta-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 9px;
            margin-bottom: 16px;
            padding-bottom: 14px;
            border-bottom: 1px dashed #e3e9f2;
        }
        .news-meta-pill {
            padding: 5px 10px;
            border-radius: 999px;
            background: rgba(245, 124, 0, 0.1);
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .news-meta-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #adb8c8;
        }
        .news-meta-text {
            font-size: 0.82rem;
            color: #59677b;
            font-weight: 600;
        }

        /* --- LEGAL PAGES --- */
        .legal-page {
            background: #f6f9fc;
        }
        .legal-layout {
            display: grid;
            grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
            gap: 18px;
            align-items: start;
        }
        .legal-side {
            position: sticky;
            top: 104px;
        }
        .legal-side-card {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 16px;
            padding: 20px;
        }
        .legal-side-card h3 {
            font-size: 1.04rem;
            margin-bottom: 12px;
            color: #152a43;
        }
        .legal-side-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 8px;
        }
        .legal-side-card a {
            color: #47607d;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .legal-side-card a:hover {
            color: #0d8ca8;
        }
        .legal-side-card p {
            margin-top: 14px;
            font-size: 0.82rem;
            color: #6a7b92;
        }
        .legal-content {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 16px;
            padding: 24px;
        }
        .legal-block + .legal-block {
            border-top: 1px solid #e8eef6;
            margin-top: 22px;
            padding-top: 22px;
        }
        .legal-block h2 {
            font-size: clamp(1.2rem, 2vw, 1.45rem);
            margin-bottom: 10px;
            color: #12263e;
        }
        .legal-block p {
            margin: 0;
            color: #51637a;
            line-height: 1.85;
        }
        .legal-block ul {
            margin: 10px 0 0 18px;
            color: #51637a;
            line-height: 1.85;
        }

        /* --- RESOURCES PAGES --- */
        .resource-page {
            background: #f6f9fc;
        }
        .resource-showcase {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
            gap: 14px;
            margin-bottom: 14px;
        }
        .resource-showcase-media {
            border: 1px solid #dce6f1;
            border-radius: 16px;
            overflow: hidden;
            min-height: 280px;
            background: #e8eff7;
        }
        .resource-showcase-media img {
            width: 100%;
            height: 100%;
            min-height: 280px;
            object-fit: cover;
            display: block;
        }
        .resource-showcase-copy {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 16px;
            padding: 22px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .resource-showcase-copy > span {
            display: inline-flex;
            width: fit-content;
            padding: 6px 11px;
            border-radius: 999px;
            background: #fff1e2;
            border: 1px solid #ffd6b1;
            color: #985100;
            font-size: .74rem;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .resource-showcase-copy h2 {
            margin: 0 0 10px;
            color: #13314f;
            font-size: clamp(1.45rem, 2.4vw, 1.95rem);
        }
        .resource-showcase-copy p {
            margin: 0;
            color: #52667f;
            line-height: 1.8;
            font-size: .96rem;
        }
        .resource-mini-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 14px;
        }
        .resource-mini-pills p {
            margin: 0;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 10px;
            border-radius: 999px;
            border: 1px solid #dce6f1;
            background: #f8fbff;
            color: #36506e;
            font-size: .82rem;
            font-weight: 600;
            line-height: 1;
        }
        .resource-mini-pills i {
            color: #0d8ca8;
            font-size: .95rem;
        }
        .resource-banner {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 14px;
            padding: 20px;
            margin-bottom: 14px;
        }
        .resource-banner h3 {
            margin: 0 0 8px;
            color: #14304d;
            font-size: 1.12rem;
        }
        .resource-banner p {
            margin: 0;
            color: #53657c;
            line-height: 1.8;
            font-size: .95rem;
        }
        .resource-kpis {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 14px;
        }
        .resource-kpi {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 14px;
            padding: 16px;
        }
        .resource-kpi span {
            display: block;
            font-size: .75rem;
            letter-spacing: .07em;
            text-transform: uppercase;
            color: #687b92;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .resource-kpi strong {
            display: block;
            font-size: 1.18rem;
            color: #103150;
            margin-bottom: 6px;
        }
        .resource-kpi p {
            margin: 0;
            color: #53657c;
            line-height: 1.6;
            font-size: .88rem;
        }
        .resource-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }
        .resource-card {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 14px;
            padding: 20px;
        }
        .resource-card h3 {
            margin: 0 0 8px;
            color: #14304d;
            font-size: 1.06rem;
        }
        .resource-card p {
            margin: 0 0 8px;
            color: #53657c;
            line-height: 1.75;
            font-size: .95rem;
        }
        .resource-card p:last-child {
            margin-bottom: 0;
        }
        .resource-stack {
            display: grid;
            gap: 10px;
        }
        .resource-stack--spaced {
            margin-top: 14px;
        }
        .resource-row {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 14px;
            padding: 18px 20px;
        }
        .resource-row h3 {
            margin: 0 0 6px;
            color: #14304d;
            font-size: 1.05rem;
        }
        .resource-row p {
            margin: 0;
            color: #53657c;
            line-height: 1.75;
            font-size: .95rem;
        }
        .resource-grid--contact {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .resource-grid--2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .resource-list {
            margin: 8px 0 0 18px;
            color: #53657c;
            line-height: 1.75;
            font-size: .95rem;
        }
        .resource-faq {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 14px;
            padding: 18px;
            margin-top: 14px;
        }
        .resource-faq h3 {
            margin: 0 0 10px;
            color: #14304d;
            font-size: 1.06rem;
        }
        .resource-faq details {
            border: 1px solid #e4ebf4;
            border-radius: 10px;
            padding: 10px 12px;
            background: #fbfdff;
        }
        .resource-faq details + details {
            margin-top: 8px;
        }
        .resource-faq summary {
            cursor: pointer;
            color: #1f3a58;
            font-weight: 600;
            font-size: .95rem;
        }
        .resource-faq p {
            margin: 8px 0 0;
            color: #556981;
            line-height: 1.75;
            font-size: .93rem;
        }

        /* --- DEVELOPERS STATUS PAGE --- */
        .dev-status-page {
            background: #f6f9fc;
        }
        .dev-status-overview {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 16px;
            padding: 20px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
            gap: 16px;
            margin-bottom: 14px;
        }
        .dev-status-state {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .dev-status-dot {
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: #16a34a;
            margin-top: 9px;
            box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.16);
        }
        .dev-status-state h2 {
            margin: 0 0 7px;
            color: #103150;
            font-size: clamp(1.3rem, 2.3vw, 1.8rem);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .dev-status-state h2 i {
            color: #0d8ca8;
        }
        .dev-status-state p {
            margin: 0;
            color: #53657d;
            line-height: 1.8;
            font-size: .95rem;
        }
        .dev-status-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        .dev-status-tags span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: #eef7fc;
            border: 1px solid #d0e8f4;
            color: #2d5574;
            border-radius: 999px;
            padding: 5px 9px;
            font-size: .76rem;
            font-weight: 600;
        }
        .dev-status-tags i {
            color: #0d8ca8;
            font-size: .85rem;
        }
        .dev-status-metrics {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }
        .dev-status-metrics > div {
            border: 1px solid #e4ecf5;
            border-radius: 12px;
            padding: 10px 12px;
            background: #fbfdff;
        }
        .dev-status-metrics i {
            color: #0d8ca8;
            font-size: 1rem;
            margin-bottom: 4px;
            display: inline-block;
        }
        .dev-status-metrics span {
            display: block;
            font-size: .75rem;
            letter-spacing: .05em;
            text-transform: uppercase;
            color: #6a7c95;
            font-weight: 700;
            margin-bottom: 3px;
        }
        .dev-status-metrics strong {
            color: #133355;
            font-size: 1.06rem;
        }
        .dev-status-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 14px;
        }
        .dev-status-card {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 14px;
            padding: 16px;
            transition: 0.25s ease;
        }
        .dev-status-card:hover {
            border-color: #c0d9ea;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(11, 37, 60, 0.08);
        }
        .dev-status-card-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }
        .dev-status-card h3 {
            margin: 0;
            color: #14304d;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .dev-status-card h3 i {
            color: #0d8ca8;
            font-size: 1.05rem;
        }
        .dev-status-card p {
            margin: 0;
            color: #53657c;
            line-height: 1.7;
            font-size: .93rem;
        }
        .dev-status-card .is-ok {
            padding: 5px 8px;
            border-radius: 999px;
            background: #e8f8ef;
            border: 1px solid #bcebd0;
            color: #0f7a3a;
            font-size: .72rem;
            font-weight: 700;
            line-height: 1;
            white-space: nowrap;
        }
        .dev-status-sections {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 14px;
        }
        .dev-status-panel {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 14px;
            padding: 18px;
        }
        .dev-status-panel h3 {
            margin: 0 0 10px;
            color: #14304d;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .dev-status-panel h3 i {
            color: #0d8ca8;
            font-size: 1.05rem;
        }
        .dev-status-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 8px;
        }
        .dev-status-list li {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 8px;
            border: 1px solid #e5edf5;
            border-radius: 10px;
            padding: 10px;
            background: #fbfdff;
        }
        .dev-status-list strong {
            display: block;
            margin-bottom: 4px;
            color: #1d334d;
            font-size: .92rem;
        }
        .dev-status-list p {
            margin: 0;
            color: #5a6d85;
            line-height: 1.6;
            font-size: .88rem;
        }
        .dev-status-list span {
            color: #6a7c95;
            font-size: .78rem;
            font-weight: 700;
            white-space: nowrap;
        }
        .dev-status-subscribe {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 14px;
            padding: 18px;
        }
        .dev-status-subscribe h3 {
            margin: 0 0 8px;
            color: #14304d;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .dev-status-subscribe h3 i {
            color: #0d8ca8;
            font-size: 1.05rem;
        }
        .dev-status-subscribe p {
            margin: 0 0 12px;
            color: #53657c;
            font-size: .93rem;
        }
        .dev-status-subscribe form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .dev-status-subscribe input {
            flex: 1;
            min-width: 220px;
            border: 1px solid #d5e1ee;
            border-radius: 10px;
            padding: 11px 12px;
            font-size: .92rem;
            color: #1e3249;
            background: #fbfdff;
        }
        .dev-status-subscribe input:focus {
            outline: none;
            border-color: #0d8ca8;
            box-shadow: 0 0 0 3px rgba(13, 140, 168, 0.12);
        }
        .dev-status-livebar {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 14px;
            padding: 12px 14px;
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: center;
            margin-bottom: 12px;
        }
        .dev-live-left {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .dev-live-left strong {
            color: #14304d;
            font-size: .95rem;
        }
        .dev-live-left p {
            margin: 0;
            color: #5a6d85;
            font-size: .9rem;
        }
        .dev-live-pulse {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #22c55e;
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
            animation: statusPulse 1.6s infinite;
        }
        @keyframes statusPulse {
            0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
            70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
            100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }
        .dev-live-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .dev-live-right span {
            color: #6b7d95;
            font-size: .82rem;
            font-weight: 600;
        }
        .dev-live-right .btn {
            padding: 9px 14px;
            font-size: .84rem;
            gap: 6px;
        }
        .dev-live-controls {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 999px;
            padding: 6px 8px;
            margin-bottom: 12px;
        }
        .dev-live-controls > span {
            color: #5f738b;
            font-size: .8rem;
            font-weight: 600;
            padding: 0 4px;
        }
        .dev-range-btn {
            border: 1px solid #d4dfeb;
            background: #f8fbff;
            color: #38526f;
            border-radius: 999px;
            padding: 6px 11px;
            font-size: .78rem;
            font-weight: 700;
            cursor: pointer;
        }
        .dev-range-btn.is-active {
            background: #0d8ca8;
            border-color: #0d8ca8;
            color: #ffffff;
        }
        .dev-status-v2-top {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
            gap: 12px;
            margin-bottom: 12px;
        }
        .dev-status-hero {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 16px;
            padding: 18px;
        }
        .dev-status-hero-head {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            align-items: center;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }
        .dev-status-hero-head h2 {
            margin: 0;
            color: #103150;
            font-size: clamp(1.25rem, 2.2vw, 1.65rem);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .dev-status-hero-head h2 i {
            color: #0d8ca8;
        }
        .dev-status-hero > p {
            margin: 0;
            color: #546780;
            line-height: 1.75;
            font-size: .95rem;
        }
        .dev-status-hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }
        .dev-status-hero-tags span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1px solid #dce6f1;
            background: #f8fbff;
            color: #36506e;
            border-radius: 999px;
            padding: 6px 10px;
            font-size: .8rem;
            font-weight: 600;
        }
        .dev-status-hero-tags i {
            color: #0d8ca8;
        }
        .dev-status-mini-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }
        .dev-status-mini-grid article {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 12px;
            padding: 11px 12px;
        }
        .dev-status-mini-grid span {
            display: block;
            color: #6b7d95;
            font-size: .75rem;
            margin-bottom: 3px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .05em;
        }
        .dev-status-mini-grid span i {
            color: #0d8ca8;
            margin-right: 4px;
        }
        .dev-status-mini-grid strong {
            color: #123355;
            font-size: 1.05rem;
        }
        .dev-status-board {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 16px;
            padding: 18px;
            margin-bottom: 12px;
        }
        .dev-status-board h3 {
            margin: 0 0 10px;
            color: #14304d;
            font-size: 1.06rem;
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .dev-status-board h3 i {
            color: #0d8ca8;
        }
        .dev-service-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }
        .dev-service-item {
            border: 1px solid #e3ebf4;
            border-radius: 12px;
            padding: 14px;
            background: #fbfdff;
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: center;
            transition: 0.2s ease;
        }
        .dev-service-item:hover {
            border-color: #c8dceb;
            box-shadow: 0 8px 18px rgba(12, 39, 62, 0.07);
        }
        .dev-service-main h4 {
            margin: 0 0 3px;
            color: #17344f;
            font-size: .95rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .dev-indicator {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            display: inline-block;
        }
        .dev-indicator.is-ok {
            background: #22c55e;
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
            animation: statusPulse 1.7s infinite;
        }
        .dev-service-main h4 i {
            color: #0d8ca8;
        }
        .dev-service-main p {
            margin: 0;
            color: #5d7188;
            font-size: .85rem;
            line-height: 1.5;
        }
        .dev-service-main .is-ok {
            margin-top: 8px;
            display: inline-flex;
        }
        .dev-service-ring {
            --pct: 99%;
            width: 92px;
            height: 92px;
            border-radius: 50%;
            background: conic-gradient(#16a34a 0 var(--pct), #e8eef6 var(--pct) 100%);
            display: grid;
            place-items: center;
            position: relative;
            flex-shrink: 0;
        }
        .dev-service-ring::before {
            content: "";
            position: absolute;
            inset: 8px;
            background: #ffffff;
            border-radius: 50%;
            border: 1px solid #e4ebf4;
        }
        .dev-service-ring strong,
        .dev-service-ring span {
            position: relative;
            z-index: 1;
            display: block;
            text-align: center;
        }
        .dev-service-ring strong {
            color: #17344f;
            font-size: .82rem;
            line-height: 1.1;
            margin-top: 24px;
        }
        .dev-service-ring span {
            color: #6d7f97;
            font-size: .66rem;
            text-transform: uppercase;
            letter-spacing: .05em;
            margin-bottom: 20px;
        }
        .dev-status-v2-sections {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 12px;
        }
        .dev-incident-timeline {
            display: grid;
            gap: 8px;
        }
        .dev-incident-item {
            border: 1px solid #e5edf5;
            border-radius: 10px;
            padding: 10px;
            background: #fbfdff;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 9px;
            align-items: start;
        }
        .dev-incident-item strong {
            display: block;
            color: #1d334d;
            margin-bottom: 4px;
            font-size: .9rem;
        }
        .dev-incident-item p {
            margin: 0 0 4px;
            color: #5a6d85;
            line-height: 1.6;
            font-size: .86rem;
        }
        .dev-incident-item small {
            color: #6a7c95;
            font-weight: 700;
            font-size: .77rem;
        }
        .dev-maint-grid {
            display: grid;
            gap: 8px;
        }
        .dev-maint-grid article {
            border: 1px solid #e5edf5;
            border-radius: 10px;
            padding: 10px;
            background: #fbfdff;
        }
        .dev-maint-grid strong {
            display: block;
            margin-bottom: 4px;
            color: #1d334d;
            font-size: .9rem;
        }
        .dev-maint-grid p {
            margin: 0 0 4px;
            color: #5a6d85;
            font-size: .86rem;
            line-height: 1.6;
        }
        .dev-maint-grid small {
            color: #6a7c95;
            font-weight: 700;
            font-size: .77rem;
        }
        .legal-page--alt .legal-alt-hero {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 16px;
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
            gap: 16px;
            align-items: start;
        }
        .legal-alt-hero-main span {
            display: inline-flex;
            align-items: center;
            padding: 6px 11px;
            border-radius: 999px;
            border: 1px solid #ffd4ab;
            background: #fff2e4;
            color: #9a5600;
            font-size: .74rem;
            letter-spacing: .06em;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .legal-alt-hero-main h2 {
            margin: 0 0 8px;
            font-size: clamp(1.5rem, 2.6vw, 2rem);
            color: #10263f;
        }
        .legal-alt-hero-main p {
            margin: 0;
            color: #53657c;
            line-height: 1.8;
        }
        .legal-alt-hero-meta {
            display: grid;
            gap: 10px;
        }
        .legal-alt-hero-meta > div {
            border: 1px solid #e6edf6;
            border-radius: 12px;
            padding: 12px;
            background: #f9fbfe;
        }
        .legal-alt-hero-meta strong {
            display: block;
            font-size: .78rem;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: #6a7c95;
            margin-bottom: 4px;
        }
        .legal-alt-hero-meta p {
            margin: 0;
            color: #1f3550;
            font-size: .92rem;
            line-height: 1.55;
        }
        .legal-alt-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }
        .legal-alt-card {
            background: #ffffff;
            border: 1px solid #dce6f1;
            border-radius: 14px;
            padding: 18px;
        }
        .legal-alt-card > span {
            display: inline-flex;
            width: 34px;
            height: 34px;
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            background: #0d8ca8;
            color: #ffffff;
            font-size: .78rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .legal-alt-card h3 {
            margin: 0 0 8px;
            font-size: 1.05rem;
            color: #132c47;
        }
        .legal-alt-card p {
            margin: 0;
            color: #52657d;
            line-height: 1.75;
            font-size: .95rem;
        }
        .legal-alt-card ul {
            margin: 0 0 0 18px;
            color: #52657d;
            line-height: 1.75;
            font-size: .95rem;
        }
        .news-detail-body {
            max-width: 100%;
            margin: 0;
            font-size: 1.05rem;
            color: #202a36;
            line-height: 2;
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 0;
        }
        .news-detail-body p {
            margin-bottom: 17px;
            color: #273142;
            font-size: 1.03rem;
            max-width: 74ch;
        }
        .news-detail-body .news-paragraph-intro {
            font-size: 1.12rem;
            color: #1f2a38;
            font-weight: 500;
        }
        .news-article-side {
            position: sticky;
            top: 94px;
            display: grid;
            gap: 12px;
        }
        .news-side-card {
            border: 1px solid #e4e9f2;
            border-radius: 16px;
            background: #fff;
            padding: 18px;
        }
        .news-side-card h4 {
            margin-bottom: 12px;
            font-size: 1rem;
        }
        .news-side-card ul {
            list-style: none;
            margin: 0 0 14px;
            padding: 0;
            display: grid;
            gap: 8px;
        }
        .news-side-card li {
            border: 1px solid #edf1f7;
            border-radius: 10px;
            padding: 9px 10px;
            background: #fbfcfe;
        }
        .news-side-card li span {
            display: block;
            font-size: 0.75rem;
            color: #708096;
            margin-bottom: 3px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 700;
        }
        .news-side-card li strong {
            display: block;
            font-size: 0.9rem;
            color: #1b2532;
        }
        .news-side-back {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            text-decoration: none;
            border: 1px solid #dde5f0;
            border-radius: 10px;
            padding: 10px 12px;
            color: #253246;
            font-size: 0.87rem;
            font-weight: 700;
        }
        .news-side-back:hover {
            color: var(--primary);
            border-color: rgba(245, 124, 0, 0.55);
        }
        .news-related-head {
            margin-bottom: 16px;
        }
        .news-related-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }
        .news-related-card {
            border: 1px solid #e4eaf2;
            border-radius: 15px;
            background: #fff;
            padding: 16px;
        }
        .news-related-media-link {
            display: block;
            margin: -16px -16px 12px;
        }
        .news-related-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            border-bottom: 1px solid #e8edf4;
        }
        .news-related-card span {
            display: inline-block;
            margin-bottom: 8px;
            font-size: 0.75rem;
            color: #5e6b7d;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            font-weight: 700;
        }
        .news-related-card h3 {
            font-size: 1.02rem;
            margin-bottom: 8px;
            line-height: 1.35;
        }
        .news-related-card h3 a {
            text-decoration: none;
            color: #111;
        }
        .news-related-card h3 a:hover {
            color: var(--primary);
        }
        .news-related-card p {
            margin: 0;
            font-size: 0.91rem;
        }

        /* --- 8. MEGA FOOTER --- */
        footer { background: var(--black); color: #999; padding: 100px 0 40px; margin-top: 80px; }
        
        .footer-cta {
            border-bottom: 1px solid #333; padding-bottom: 60px; margin-bottom: 60px;
            display: flex; justify-content: space-between; align-items: center;
        }
        .footer-cta h2 { color: white; font-size: 2.5rem; margin: 0; }
        
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
        
        .f-logo {
            color: white;
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            letter-spacing: 0.01em;
        }
        .f-logo-icon {
            width: 34px;
            height: 34px;
            object-fit: contain;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
            padding: 4px;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
        }
        .f-heading { color: white; font-weight: 600; margin-bottom: 20px; display: block; letter-spacing: 1px; font-size: 0.9rem; text-transform: uppercase; }
        .f-link { display: block; color: #777; text-decoration: none; margin-bottom: 12px; transition: 0.2s; }
        .f-link:hover { color: var(--primary); transform: translateX(5px); }

        .footer-social-list {
            display: flex;
            gap: 10px;
            margin-top: 6px;
        }
        .footer-social-link {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #f3f7fb;
            border: 1px solid #2f3d4f;
            background: linear-gradient(180deg, #151b23 0%, #10161d 100%);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
            transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, background .2s ease;
        }
        .footer-social-link i {
            font-size: 1.25rem;
            line-height: 1;
        }
        .footer-social-link:hover {
            transform: translateY(-2px);
            color: #fff;
            border-color: rgba(245, 124, 0, 0.7);
            background: linear-gradient(180deg, #1d2530 0%, #151c25 100%);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28), 0 0 0 3px rgba(245, 124, 0, 0.12);
        }
        .footer-social-link:focus-visible {
            outline: none;
            border-color: rgba(245, 124, 0, 0.85);
            box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.25);
        }
        
        .footer-bottom { 
            margin-top: 60px; padding-top: 30px; border-top: 1px solid #222; 
            display: flex; justify-content: space-between; font-size: 0.9rem; 
        }

        /* Responsive */
        @media (max-width: 900px) {
            h1 { font-size: 3rem; }
            .hero-grid, .about-split, .ai-grid, .cert-grid, .dev-container, .footer-cta, .footer-grid, .radar-wrap { grid-template-columns: 1fr; }
            .nav-list { display: none; }
            .hero-slider { min-height: auto; padding-top: 96px; }
            .hero-canvas { min-height: 76vh; }
            .slide { min-height: 66vh; padding: 24px 20px 78px; }
            .slide-content h1 { font-size: 2.4rem; }
            .hero-side-fixed { display: none; }
            .hero-controls { left: 18px; right: 18px; bottom: 18px; }
            .hero-nav { width: 170px; }
            .impact-strip, .capability-grid { grid-template-columns: 1fr; }
            .about-float-card { position: relative; bottom: auto; right: auto; margin-top: 20px; }
            .about-page-grid, .about-values, .about-timeline { grid-template-columns: 1fr; }
            .about-page-card { grid-template-columns: 1fr; }
            .about-page-hero { padding: 120px 0 70px; }
            .abt-hero { padding: 120px 0 74px; }
            .abt-hero-grid, .abt-pillars, .abt-leaders, .abt-regions, .abt-timeline { grid-template-columns: 1fr; }
            .abt-highlight-card, .abt-final-cta { padding: 24px; }
            .abt-metrics-grid { grid-template-columns: 1fr; }
            .abt-hero-copy h1 { font-size: 2rem; }
            .abt-surface { padding: 16px; border-radius: 16px; }
            .abt-block::before { width: calc(100% - 24px); }
            .inner-page-header { padding: 106px 0 26px; }
            .news-grid, .news-related-grid { grid-template-columns: 1fr; }
            .news-article-layout { grid-template-columns: 1fr; }
            .news-article-side { position: static; }
            .news-detail-body { padding: 0; }
            .legal-layout { grid-template-columns: 1fr; }
            .legal-side { position: static; }
            .resource-showcase { grid-template-columns: 1fr; }
            .resource-showcase-media { min-height: 220px; }
            .resource-showcase-media img { min-height: 220px; }
            .resource-kpis { grid-template-columns: 1fr; }
            .resource-grid { grid-template-columns: 1fr; }
            .resource-grid--contact { grid-template-columns: 1fr; }
            .resource-grid--2 { grid-template-columns: 1fr; }
            .dev-status-livebar { flex-direction: column; align-items: flex-start; }
            .dev-live-controls { display: flex; width: 100%; border-radius: 12px; }
            .dev-status-v2-top { grid-template-columns: 1fr; }
            .dev-service-list { grid-template-columns: 1fr; }
            .dev-service-item { flex-direction: column; align-items: flex-start; }
            .dev-service-ring { width: 84px; height: 84px; }
            .dev-status-v2-sections { grid-template-columns: 1fr; }
            .dev-status-overview { grid-template-columns: 1fr; }
            .dev-status-grid { grid-template-columns: 1fr; }
            .dev-status-sections { grid-template-columns: 1fr; }
            .dev-status-list li { grid-template-columns: 1fr; }
            .legal-page--alt .legal-alt-hero { grid-template-columns: 1fr; }
            .legal-alt-grid { grid-template-columns: 1fr; }
            .news-story-cover { height: 220px; }
            .news-story-meta { padding: 0 0 10px; }
            .news-story-content { padding: 18px 0 10px; }
            .news-story-actions { padding: 0; }
            .news-simple-cover { height: 220px; }
            .news-simple-body p { font-size: 1rem; }
            .news-flow-cover { height: 230px; }
            .news-flow-columns { column-count: 1; column-gap: 0; }
            .news-flow-intro { font-size: 1.05rem; }
            .news-modern {
                padding: 14px;
                border-radius: 16px;
            }
            .news-modern-top {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-bottom: 12px;
            }
            .news-modern-meta {
                padding: 16px;
                border-radius: 14px;
            }
            .news-modern-image {
                min-height: 210px;
                max-height: 230px;
            }
            .news-modern-intro {
                padding: 12px 13px;
                margin-bottom: 12px;
            }
            .news-modern-intro p {
                font-size: 1rem;
            }
            .news-modern-body {
                column-count: 1;
                column-gap: 0;
                padding-top: 12px;
            }
            .news-modern-body p {
                font-size: 0.98rem;
            }
            .news-classic-cover {
                height: 230px;
            }
            .news-classic-body p {
                font-size: 1rem;
            }
            .news-classic-intro {
                font-size: 1.03rem;
            }
        }
           /* --- IMPROVED DEVELOPER SECTION STYLES --- */
    .dev-wrapper {
        background: #050505; /* Deep Black */
        color: white;
        border-radius: 32px;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        border: 1px solid #222;
        box-shadow: 0 30px 60px -10px rgba(0,0,0,0.5);
    }

    .dev-content {
        padding: 80px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .dev-visual {
        background: #0F0F0F;
        border-left: 1px solid #222;
        padding: 40px;
        font-family: 'Fira Code', monospace; /* Or standard monospace */
        font-size: 0.85rem;
        position: relative;
    }

    /* IDE Window Look */
    .ide-header {
        display: flex; gap: 8px; margin-bottom: 20px; opacity: 0.5;
    }
    .ide-dot { width: 10px; height: 10px; border-radius: 50%; background: #555; }
    .ide-dot.red { background: #FF5F56; }
    .ide-dot.yellow { background: #FFBD2E; }
    .ide-dot.green { background: #27C93F; }

    .code-tabs {
        display: flex; gap: 20px; border-bottom: 1px solid #333; margin-bottom: 20px;
        color: #666; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
    }
    .code-tab.active { color: var(--primary); border-bottom: 2px solid var(--primary); padding-bottom: 10px; }

    .syntax-purple { color: #C678DD; }
    .syntax-blue { color: #61AFEF; }
    .syntax-green { color: #98C379; }
    .syntax-yellow { color: #E5C07B; }
    .syntax-orange { color: #D19A66; }
    
    .run-btn {
        position: absolute; bottom: 30px; right: 30px;
        background: var(--primary); color: white; border: none; padding: 10px 20px;
        border-radius: 6px; cursor: pointer; font-weight: 600; display: flex; align-items: center; gap: 8px;
        transition: 0.3s;
    }
    .run-btn:hover { background: #ff8c00; box-shadow: 0 5px 15px rgba(245, 124, 0, 0.4); }


    /* --- IMPROVED GLOBAL REACH STYLES --- */
    .reach-header { text-align: center; max-width: 760px; margin: 0 auto 52px; }
    .reach-sub { color: #6a7380; max-width: 640px; margin: 0 auto; }
    .reach-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 18px;
        position: relative;
        z-index: 2;
    }
    .country-card {
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid #dce2ec;
        border-radius: 16px;
        padding: 18px;
        transition: 0.3s var(--ease);
    }
    .country-card:hover {
        transform: translateY(-5px);
        border-color: rgba(245, 124, 0, 0.45);
        box-shadow: 0 14px 28px rgba(0,0,0,0.08);
    }
    .country-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 12px;
        gap: 10px;
    }
    .country-name {
        margin: 0;
        font-size: 1.08rem;
        line-height: 1.2;
    }
    .country-flag {
        font-size: 2rem;
        margin-bottom: 8px;
        display: inline-block;
    }
    .license-badge {
        font-size: 0.78rem;
        color: #4e596a;
        background: #edf1f7;
        padding: 5px 9px;
        border-radius: 7px;
        display: inline-block;
        font-weight: 600;
    }
    .status-indicator {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.72rem;
        font-weight: 700;
        color: #0e9f6e;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        background: rgba(16, 185, 129, 0.12);
        padding: 4px 8px;
        border-radius: 20px;
    }
    .pulse-dot {
        width: 7px;
        height: 7px;
        background: #10B981;
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
        animation: pulse-green 2s infinite;
    }
    @keyframes pulse-green {
        0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
        70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
        100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
    }
    .service-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }
    .service-list li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.86rem;
        color: #556072;
    }
    .service-list i {
        color: var(--primary);
        font-size: 0.95rem;
    }
    .network-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(#E5E7EB 1.5px, transparent 1.5px);
        background-size: 24px 24px;
        opacity: 0.45;
        z-index: 0;
    }

    @media (max-width: 900px) {
        .dev-wrapper { grid-template-columns: 1fr; }
        .dev-visual { border-left: none; border-top: 1px solid #222; }
    }

/* --- ABOUT V6 FULL LAYOUT REDESIGN --- */
.about-v6 {
    --about-v6-ink: #13243d;
    --about-v6-muted: #5b6b82;
    --about-v6-line: #d6e2f0;
    --about-v6-surface: #ffffff;
    --about-v6-surface-soft: #f3f7fb;
    --about-v6-primary: #0ea5a5;
    --about-v6-primary-dark: #0b7f7f;
    --about-v6-accent: #ff8a00;
    --about-v6-indigo: #4057d6;
    color: var(--about-v6-ink);
    background: linear-gradient(180deg, #f7fbff 0%, #f4faf8 34%, #f8fbff 100%);
}

.about-v6 h1,
.about-v6 h2,
.about-v6 h3 {
    color: #0f1f35;
    line-height: 1.2;
}

.about-v6 p {
    color: var(--about-v6-muted);
    margin: 0;
}

.about-v6 .section {
    padding: 86px 0;
}

.about-v6-head {
    max-width: 760px;
    margin-bottom: 26px;
}

.about-v6-head h2 {
    font-size: clamp(1.85rem, 2.9vw, 2.5rem);
    margin-bottom: 10px;
}

.about-v6-hero {
    padding: 120px 0 78px;
}

.about-v6-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 30px;
}

.about-v6-hero-copy {
    background: linear-gradient(140deg, #ffffff 0%, #f1f8ff 56%, #e9f7f7 100%);
    border: 1px solid #dce8f5;
    border-radius: 26px;
    padding: 36px;
    box-shadow: 0 20px 46px rgba(19, 36, 61, 0.09);
}

.about-v6-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #0b7f7f;
    background: #dff6f6;
    border: 1px solid #bde8e8;
    border-radius: 999px;
    padding: 7px 12px;
    margin-bottom: 18px;
}

.about-v6-hero-copy h1 {
    font-size: clamp(2rem, 4.3vw, 3.2rem);
    margin-bottom: 14px;
}

.about-v6-hero-copy p {
    font-size: 1.02rem;
    line-height: 1.85;
}

.about-v6-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.about-v6-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.about-v6-hero-tags span {
    font-size: .82rem;
    font-weight: 700;
    color: #2f425f;
    background: #ffffff;
    border: 1px solid #d8e5f3;
    border-radius: 999px;
    padding: 8px 12px;
}

.about-v6-hero-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-v6-orbit {
    background: var(--about-v6-surface);
    border: 1px solid var(--about-v6-line);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(18, 36, 64, 0.08);
}

.about-v6-orbit strong {
    display: block;
    font-size: 1.8rem;
    color: #0b7f7f;
    margin-bottom: 6px;
}

.about-v6-orbit span {
    font-size: .88rem;
    color: #4f627c;
}

.about-v6-orbit--main {
    grid-column: 1 / -1;
    background: linear-gradient(130deg, #17335c 0%, #1e3a8a 50%, #0b7f7f 100%);
    border: 0;
}

.about-v6-orbit--main h3,
.about-v6-orbit--main p {
    color: #ffffff;
}

.about-v6-orbit--main h3 {
    margin-bottom: 8px;
}

.about-v6-build {
    background: linear-gradient(180deg, rgba(64, 87, 214, 0.06) 0%, rgba(14, 165, 165, 0.03) 100%);
    border-top: 1px solid #dce7f3;
    border-bottom: 1px solid #dce7f3;
}

.about-v6-build-lanes {
    display: grid;
    gap: 14px;
}

.about-v6-lane {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #dae5f3;
    border-radius: 18px;
    padding: 18px 20px;
}

.about-v6-lane:nth-child(even) {
    transform: translateX(24px);
}

.about-v6-lane-index {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.02rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #ff8a00, #ff6a00);
    box-shadow: 0 10px 22px rgba(255, 122, 0, 0.28);
}

.about-v6-lane h3 {
    margin-bottom: 6px;
}

.about-v6-lane p {
    font-size: .95rem;
}

.about-v6-timeline {
    background: #f7fbff;
}

.about-v6-time-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.about-v6-time-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #d7e4f2;
    border-radius: 18px;
    padding: 20px;
    overflow: hidden;
}

.about-v6-time-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #ff8a00 0%, #4057d6 100%);
}

.about-v6-time-card span {
    display: inline-flex;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: #4057d6;
    background: #e9eeff;
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 12px;
}

.about-v6-time-card h3 {
    margin-bottom: 8px;
}

.about-v6-leadership {
    background: linear-gradient(180deg, rgba(255, 138, 0, 0.08) 0%, rgba(255, 138, 0, 0.02) 100%);
    border-top: 1px solid #e8e1d8;
    border-bottom: 1px solid #e8e1d8;
}

.about-v6-leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-v6-leader {
    position: relative;
    background: #ffffff;
    border: 1px solid #e7dfd4;
    border-radius: 18px;
    padding: 22px;
}

.about-v6-leader::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, #ff8a00 0%, #0ea5a5 55%, #4057d6 100%);
}

.about-v6-role {
    display: inline-block;
    font-size: .76rem;
    letter-spacing: .09em;
    font-weight: 700;
    text-transform: uppercase;
    color: #5c6880;
    margin: 10px 0 12px;
}

.about-v6-leader h3 {
    margin-bottom: 8px;
}

.about-v6-regions-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 20px;
    align-items: start;
}

.about-v6-regions-copy {
    background: #ffffff;
    border: 1px solid #d9e3ef;
    border-radius: 18px;
    padding: 24px;
    position: sticky;
    top: 92px;
}

.about-v6-regions-copy h2 {
    font-size: clamp(1.65rem, 2.7vw, 2.2rem);
    margin-bottom: 10px;
}

.about-v6-regions-copy p {
    margin-bottom: 18px;
}

.about-v6-regions-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-v6-region {
    background: linear-gradient(150deg, #ffffff 0%, #f3f8ff 100%);
    border: 1px solid #d6e3f1;
    border-radius: 16px;
    padding: 18px;
}

.about-v6-region h3 {
    margin-bottom: 8px;
}

.about-v6-region p {
    font-size: .93rem;
}

.about-v6-cta {
    padding-top: 56px;
}

.about-v6-cta-shell {
    text-align: center;
    padding: 44px 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1b2d50 0%, #2b47a3 50%, #0b7f7f 100%);
    border: 1px solid #203864;
    box-shadow: 0 20px 48px rgba(15, 35, 70, 0.26);
}

.about-v6-cta-shell h2,
.about-v6-cta-shell p {
    color: #ffffff;
}

.about-v6-cta-shell h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.45rem);
    margin-bottom: 10px;
}

.about-v6-cta-shell p {
    max-width: 620px;
    margin: 0 auto;
    opacity: .92;
}

.about-v6-cta-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.about-v6-cta .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

.about-v6-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.13);
}

@media (max-width: 1200px) {
    .about-v6-time-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .about-v6 .section {
        padding: 72px 0;
    }

    .about-v6-hero {
        padding: 108px 0 66px;
    }

    .about-v6-hero-grid,
    .about-v6-regions-grid,
    .about-v6-leaders-grid {
        grid-template-columns: 1fr;
    }

    .about-v6-lane,
    .about-v6-lane:nth-child(even) {
        transform: none;
    }

    .about-v6-regions-copy {
        position: static;
    }
}

@media (max-width: 767px) {
    .about-v6-hero-copy,
    .about-v6-cta-shell {
        padding: 28px 22px;
    }

    .about-v6-hero-stack,
    .about-v6-regions-board,
    .about-v6-time-grid {
        grid-template-columns: 1fr;
    }

    .about-v6-lane {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* --- ABOUT V7 FRESH REDESIGN --- */
.about-v7 {
    --ink: #102136;
    --muted: #617187;
    --line: #d7e2ee;
    --paper: #ffffff;
    --soft: #f2f7fb;
    --accent-a: #147fbe;
    --accent-b: #09a28f;
    --accent-c: #ff8a00;
    color: var(--ink);
    background: linear-gradient(180deg, #f8fbff 0%, #f5fbf8 100%);
}

.about-v7 p {
    color: var(--muted);
    margin: 0;
}

.about-v7 .section {
    padding: 88px 0;
}

.about-v7-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.about-v7-head h2 {
    font-size: clamp(1.85rem, 3vw, 2.55rem);
    margin-bottom: 10px;
}

.about-v7-hero {
    padding: 120px 0 74px;
}

.about-v7-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
}

.about-v7-hero-copy {
    background: linear-gradient(120deg, #ffffff 0%, #f0f7ff 55%, #edf8f6 100%);
    border: 1px solid #dbe7f3;
    border-radius: 26px;
    padding: 38px;
}

.about-v7-kicker {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #0e719d;
    background: #e6f3fb;
    margin-bottom: 16px;
}

.about-v7-hero-copy h1 {
    font-size: clamp(2rem, 4.5vw, 3.3rem);
    line-height: 1.14;
    margin-bottom: 14px;
}

.about-v7-hero-copy p {
    font-size: 1.04rem;
    line-height: 1.82;
    max-width: 860px;
}

.about-v7-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.about-v7-snapshot {
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #d8e4f1;
    background: #ffffff;
}

.about-v7-snapshot h3 {
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.about-v7-snapshot-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.about-v7-snapshot-row article {
    background: linear-gradient(170deg, #f8fbff 0%, #f3fbf9 100%);
    border: 1px solid #dce7f3;
    border-radius: 14px;
    padding: 14px;
    text-align: center;
}

.about-v7-snapshot-row strong {
    display: block;
    font-size: 1.4rem;
    color: #0f6f93;
    margin-bottom: 4px;
}

.about-v7-snapshot-row span {
    font-size: .84rem;
    color: #55657c;
}

.about-v7-build {
    background: #ffffff;
}

.about-v7-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
}

.about-v7-flow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, #cfdae7 15%, #cfdae7 85%, transparent 100%);
}

.about-v7-flow-item {
    background: #f8fbff;
    border: 1px solid #d8e3ef;
    border-radius: 16px;
    padding: 18px;
}

.about-v7-flow-item span {
    display: inline-block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: #ffffff;
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 10px;
}

.about-v7-flow-item h3 {
    margin-bottom: 6px;
}

.about-v7-timeline {
    background: #f3f8fd;
    border-top: 1px solid #dde6f0;
    border-bottom: 1px solid #dde6f0;
}

.about-v7-timeline-track {
    display: grid;
    grid-template-columns: repeat(6, minmax(220px, 1fr));
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.about-v7-timeline-track article {
    background: #ffffff;
    border: 1px solid #d6e2ee;
    border-radius: 14px;
    padding: 16px;
    min-height: 170px;
}

.about-v7-timeline-track span {
    display: inline-flex;
    font-size: .77rem;
    letter-spacing: .08em;
    font-weight: 800;
    color: #9a5500;
    background: #ffe9cf;
    border-radius: 999px;
    padding: 5px 9px;
    margin-bottom: 9px;
}

.about-v7-timeline-track h3 {
    font-size: 1.02rem;
    margin-bottom: 7px;
}

.about-v7-timeline-track p {
    font-size: .9rem;
}

.about-v7-leadership {
    background: #ffffff;
}

.about-v7-leader-list {
    display: grid;
    gap: 10px;
}

.about-v7-leader {
    display: grid;
    grid-template-columns: minmax(180px, .75fr) minmax(220px, .95fr) minmax(0, 1.6fr);
    gap: 18px;
    align-items: center;
    background: linear-gradient(90deg, #f8fbff 0%, #ffffff 50%);
    border: 1px solid #dae5f0;
    border-radius: 14px;
    padding: 16px 18px;
}

.about-v7-leader span {
    font-size: .73rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #5f6f86;
    font-weight: 700;
}

.about-v7-leader h3 {
    margin: 0;
    font-size: 1.18rem;
}

.about-v7-regions {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.about-v7-regions-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 16px;
}

.about-v7-regions-map {
    background: #ffffff;
    border: 1px solid #d6e2ef;
    border-radius: 14px;
    padding: 12px;
    display: grid;
    gap: 10px;
    align-content: start;
}

.about-v7-regions-map button {
    appearance: none;
    border: 1px solid #d5e0ec;
    background: #f7fbff;
    color: #2e3f57;
    border-radius: 10px;
    padding: 11px 12px;
    text-align: left;
    font-weight: 600;
}

.about-v7-regions-map button.active {
    border-color: #b8d8ed;
    background: #eaf5fc;
    color: #0e6f97;
}

.about-v7-regions-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-v7-regions-content article {
    background: #ffffff;
    border: 1px solid #d6e2ef;
    border-radius: 12px;
    padding: 16px;
}

.about-v7-regions-content h3 {
    margin-bottom: 7px;
    font-size: 1.02rem;
}

.about-v7-regions-content p {
    font-size: .92rem;
}

.about-v7-cta {
    padding-top: 62px;
}

.about-v7-cta-shell {
    text-align: center;
    background: linear-gradient(130deg, #153251 0%, #0f6f93 50%, #10947f 100%);
    border: 1px solid #194f70;
    border-radius: 24px;
    padding: 40px 24px;
}

.about-v7-cta-shell h2,
.about-v7-cta-shell p {
    color: #ffffff;
}

.about-v7-cta-shell h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.45rem);
    margin-bottom: 10px;
}

.about-v7-cta-shell p {
    max-width: 640px;
    margin: 0 auto;
    opacity: .92;
}

.about-v7-cta-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.about-v7-cta .btn-outline {
    border-color: rgba(255, 255, 255, .65);
    color: #ffffff;
}

.about-v7-cta .btn-outline:hover {
    background: rgba(255, 255, 255, .12);
}

@media (max-width: 1100px) {
    .about-v7-snapshot-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-v7-flow {
        grid-template-columns: 1fr;
    }

    .about-v7-flow::before {
        display: none;
    }

    .about-v7-leader {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 991px) {
    .about-v7 .section {
        padding: 72px 0;
    }

    .about-v7-hero {
        padding: 106px 0 66px;
    }

    .about-v7-regions-layout,
    .about-v7-regions-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .about-v7-hero-copy,
    .about-v7-snapshot,
    .about-v7-cta-shell {
        padding: 26px 20px;
    }

    .about-v7-snapshot-row {
        grid-template-columns: 1fr;
    }

    .about-v7-timeline-track {
        grid-template-columns: repeat(6, minmax(240px, 1fr));
    }
}

/* --- ABOUT DS LIGHT (fresh layout, solid colors) --- */
.about-ds-light {
    --ds-primary: #f57c00;
    --ds-secondary: #0d8ca8;
    --ds-ink: #0f1f34;
    --ds-muted: #5f6d82;
    --ds-line: #d8e3ef;
    --ds-bg: #f6f9fc;
    --ds-card: #ffffff;
    color: var(--ds-ink);
    background: var(--ds-bg);
}

.about-ds-light .section {
    padding: 92px 0;
}

.about-ds-light h1,
.about-ds-light h2,
.about-ds-light h3 {
    color: #0e1f34;
    margin: 0;
    line-height: 1.16;
}

.about-ds-light p {
    color: var(--ds-muted);
    margin: 0;
}

.about-ds-actions {
    margin-top: 26px;
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-ds-head {
    margin-bottom: 28px;
    max-width: 760px;
}

.about-ds-head span {
    display: inline-block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .11em;
    font-weight: 700;
    color: #f57c00;
    margin-bottom: 10px;
}

.about-ds-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    margin-bottom: 8px;
}

.about-ds-head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.about-ds-foundation,
.about-ds-build,
.about-ds-leadership,
.about-ds-regions {
    background: #ffffff;
}

.about-ds-foundation-grid,
.about-ds-build-grid,
.about-ds-team {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-ds-build-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-ds-foundation-card,
.about-ds-build-card,
.about-ds-leader,
.about-ds-time-card,
.about-ds-region-item {
    border: 1px solid var(--ds-line);
    background: #ffffff;
    border-radius: 16px;
}

.about-ds-foundation-card,
.about-ds-build-card,
.about-ds-time-card,
.about-ds-region-item {
    padding: 24px;
}

.about-ds-foundation-card h3,
.about-ds-build-card h3,
.about-ds-time-card h3,
.about-ds-leader-text h3 {
    margin-bottom: 8px;
    font-size: 1.18rem;
}

.about-ds-foundation-card p,
.about-ds-build-card p,
.about-ds-time-card p,
.about-ds-leader-text p {
    line-height: 1.75;
}

.about-ds-foundation-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--ds-muted);
    line-height: 1.8;
}

.about-ds-snapshot-wrap {
    background: #f6f9fc;
}

.about-ds-snapshot {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.about-ds-snapshot article {
    background: #ffffff;
    border: 1px solid var(--ds-line);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
}

.about-ds-snapshot strong {
    display: block;
    font-size: 1.62rem;
    color: #0d7895;
    margin-bottom: 5px;
}

.about-ds-snapshot span {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #5e6d80;
}

.about-ds-build-card i {
    font-size: 2rem;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 14px;
    color: var(--ds-primary);
    background: #fff3e6;
    border: 1px solid #ffd6ae;
}

.about-ds-timeline {
    background: #f0f5fa;
}

.about-ds-time-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.about-ds-time-card span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .76rem;
    letter-spacing: .08em;
    font-weight: 800;
    text-transform: uppercase;
    color: #0d8ca8;
    background: #e8f5f9;
    margin-bottom: 12px;
}

.about-ds-leader {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 30px rgba(16, 38, 63, 0.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.about-ds-leader:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 38, 63, 0.12);
    border-color: #cfdced;
}

.about-ds-leader-media {
    position: relative;
    height: 320px;
    background: linear-gradient(140deg, #e9f5fb 0%, #f8fbff 50%, #fff1df 100%);
    border-bottom: 1px solid #e3ebf5;
}

.about-ds-leader-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-ds-leader-text {
    padding: 22px;
}

.about-ds-leader-text span {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: .72rem;
    letter-spacing: .08em;
    font-weight: 700;
    text-transform: uppercase;
    color: #a35a00;
    background: #fff1de;
    border: 1px solid #ffd7af;
    margin-bottom: 10px;
}

.about-ds-region-head {
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
    max-width: 760px;
}

.about-ds-region-head span {
    display: inline-block;
    font-size: .78rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    font-weight: 700;
    color: #f57c00;
}

.about-ds-region-head h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.about-ds-region-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-ds-region-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.about-ds-region-item strong {
    font-size: 1.01rem;
    color: #162b44;
}

.about-ds-region-item span {
    font-size: .74rem;
    color: #9b5600;
    background: #fff0dc;
    border: 1px solid #ffd2a5;
    border-radius: 999px;
    padding: 5px 9px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
}

.about-ds-cta {
    text-align: center;
    background: #16365d;
    padding: 82px 0;
}

.about-ds-cta h2,
.about-ds-cta p {
    color: #ffffff;
}

.about-ds-cta h2 {
    font-size: clamp(1.8rem, 3.1vw, 2.6rem);
    margin-bottom: 10px;
}

.about-ds-cta p {
    max-width: 640px;
    margin: 0 auto;
    opacity: .92;
}

.about-ds-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.68);
}

.about-ds-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1100px) {
    .about-ds-foundation-grid,
    .about-ds-build-grid,
    .about-ds-team,
    .about-ds-time-grid,
    .about-ds-region-list {
        grid-template-columns: 1fr;
    }

    .about-ds-snapshot {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .about-ds-light .section {
        padding: 72px 0;
    }
}

@media (max-width: 767px) {
    .about-ds-foundation-card,
    .about-ds-build-card,
    .about-ds-time-card,
    .about-ds-region-item,
    .about-ds-leader-text {
        padding: 20px;
    }

    .about-ds-snapshot {
        grid-template-columns: 1fr;
    }

    .about-ds-leader-media {
        height: 200px;
    }
}

.admin-content-page {
    background: linear-gradient(180deg, #f5f9ff 0%, #f7fbff 45%, #ffffff 100%);
}

.admin-content-hero {
    background: radial-gradient(120% 170% at 0% 0%, #163e63 0%, #0e2f4d 55%, #0b263f 100%);
    border-radius: 20px;
    color: #ffffff;
    padding: 26px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
}

.admin-content-hero span {
    display: inline-block;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #9ec4df;
    font-weight: 700;
    margin-bottom: 8px;
}

.admin-content-hero h1 {
    margin: 0 0 6px;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.admin-content-hero p {
    margin: 0;
    max-width: 72ch;
    color: #d4e4f3;
}

.admin-content-alert {
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 10px;
    border: 1px solid #d5e2f0;
    background: #ffffff;
}

.admin-content-alert.success {
    border-color: #bfe6cb;
    background: #f0fcf4;
    color: #0f6632;
}

.admin-content-alert.error {
    border-color: #f2c0c0;
    background: #fff5f5;
    color: #8a1f1f;
}

.admin-content-alert ul {
    margin: 8px 0 0 18px;
}

.admin-content-nav {
    position: sticky;
    top: 90px;
    z-index: 8;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    background: rgba(245, 250, 255, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid #dbe7f4;
    border-radius: 14px;
    padding: 10px;
}

.admin-content-nav a {
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid #d8e4f0;
    background: #ffffff;
    color: #274768;
    font-size: .82rem;
    font-weight: 700;
}

.admin-content-section {
    background: #ffffff;
    border: 1px solid #dbe7f4;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 10px 28px rgba(12, 38, 63, 0.05);
}

.admin-content-section-head {
    margin-bottom: 10px;
}

.admin-content-section-head h2 {
    font-size: 1.1rem;
    margin: 0;
    color: #16324f;
}

.admin-content-create,
.admin-content-item form:first-child {
    display: grid;
    gap: 8px;
}

.admin-content-grid {
    display: grid;
    gap: 8px;
}

.admin-content-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-content-create input,
.admin-content-create textarea,
.admin-content-item input,
.admin-content-item textarea {
    width: 100%;
    border: 1px solid #d6e3f0;
    border-radius: 10px;
    background: #fbfdff;
    color: #22364e;
    padding: 10px 11px;
    font-size: .9rem;
}

.admin-content-create textarea,
.admin-content-item textarea {
    resize: vertical;
}

.admin-content-list {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.admin-content-item {
    border: 1px solid #e3ecf5;
    border-radius: 12px;
    padding: 10px;
    background: #fafdff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: end;
}

.admin-content-actions {
    display: flex;
    justify-content: flex-start;
}

.admin-delete-btn {
    border-color: #f1c6c6;
    color: #a33f3f;
}

@media (max-width: 991px) {
    .admin-content-hero {
        flex-direction: column;
    }

    .admin-content-grid.cols-3 {
        grid-template-columns: 1fr;
    }

    .admin-content-item {
        grid-template-columns: 1fr;
    }
}

.admin-login-body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: radial-gradient(120% 120% at 0% 0%, #edf5ff 0%, #f5f9ff 40%, #ffffff 100%);
    font-family: "Outfit", sans-serif;
}

.admin-login-card {
    width: min(460px, calc(100vw - 28px));
    border: 1px solid #dce8f4;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(17, 42, 68, 0.12);
    padding: 22px;
}

.admin-login-brand {
    text-align: center;
    margin-bottom: 14px;
}

.admin-login-brand img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 8px;
}

.admin-login-brand h1 {
    margin: 0 0 4px;
    font-size: 1.45rem;
}

.admin-login-brand p {
    margin: 0;
    color: #5f7187;
}

.admin-login-form {
    display: grid;
    gap: 8px;
}

.admin-login-form label {
    font-size: .84rem;
    color: #2c425d;
    font-weight: 600;
}

.admin-login-form input[type="email"],
.admin-login-form input[type="password"] {
    border: 1px solid #d7e4f1;
    border-radius: 10px;
    padding: 11px 12px;
    background: #fbfdff;
}

.admin-login-remember {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 3px 0 8px;
}

.admin-panel-body {
    margin: 0;
    background: #f5f9ff;
    font-family: "Outfit", sans-serif;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
    background: linear-gradient(180deg, #0f2942 0%, #0b2238 100%);
    border-right: 1px solid #1f3a55;
    color: #ffffff;
    padding: 18px 14px;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.admin-brand {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.admin-brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

.admin-brand strong {
    display: block;
    font-size: 1rem;
}

.admin-brand span {
    display: block;
    font-size: .79rem;
    color: #9ec0df;
}

.admin-nav {
    display: grid;
    gap: 6px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #d6e6f7;
    font-size: .92rem;
    padding: 10px 11px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.admin-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.admin-nav a.is-active {
    background: rgba(13, 140, 168, 0.2);
    border-color: rgba(102, 203, 225, 0.4);
    color: #ffffff;
}

.admin-logout-btn {
    margin-top: auto;
    width: 100%;
    border: 1px solid #36516a;
    border-radius: 10px;
    background: transparent;
    color: #d2e4f5;
    padding: 10px;
    font-weight: 600;
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.admin-main {
    padding: 24px 24px 30px;
    background:
        radial-gradient(100% 80% at 100% 0%, rgba(115, 178, 223, 0.16) 0%, rgba(115, 178, 223, 0) 65%),
        linear-gradient(180deg, #f6faff 0%, #eef5fd 100%);
    min-height: 100vh;
}

.admin-topbar {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid #d4e2ef;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 12px 28px rgba(14, 37, 61, 0.08);
}

.admin-content-wrap {
    padding-top: 18px;
    display: grid;
    gap: 18px;
}

.admin-topbar h1 {
    margin: 0 0 4px;
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    color: #132d49;
    line-height: 1.2;
}

.admin-topbar p {
    margin: 0;
    color: #59718b;
    font-size: .92rem;
}

.admin-inline-error {
    margin-bottom: 0;
    border: 1px solid #efbcbc;
    background: linear-gradient(180deg, #fff7f7 0%, #fff2f2 100%);
    color: #832323;
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 8px 18px rgba(131, 35, 35, 0.08);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.admin-stat-card {
    text-decoration: none;
    color: #163452;
    border: 1px solid #d4e3f0;
    border-radius: 16px;
    background: linear-gradient(160deg, #ffffff 0%, #f7fbff 100%);
    padding: 18px 20px;
    display: grid;
    gap: 7px;
    box-shadow: 0 10px 22px rgba(15, 42, 67, 0.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.admin-stat-card:hover {
    transform: translateY(-2px);
    border-color: #c2d7e9;
    box-shadow: 0 14px 28px rgba(15, 42, 67, 0.1);
}

.admin-stat-card span {
    color: #60778f;
    font-size: .83rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
}

.admin-stat-card strong {
    font-size: 1.85rem;
    line-height: 1;
}

.admin-module-card {
    border: 1px solid #d4e2ef;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    padding: 20px;
    margin-bottom: 0;
    box-shadow: 0 12px 26px rgba(14, 37, 61, 0.07);
}

.admin-module-card h2 {
    margin: 0;
    font-size: 1.06rem;
    color: #173552;
    line-height: 1.3;
}

.admin-module-form {
    display: grid;
    gap: 10px;
}

.admin-form-grid {
    display: grid;
    gap: 10px;
}

.admin-form-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-module-form input,
.admin-module-form textarea {
    width: 100%;
    border: 1px solid #d0dfec;
    border-radius: 11px;
    background: #f9fcff;
    padding: 11px 12px;
    color: #22364d;
    font-size: .9rem;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.admin-module-form input:focus,
.admin-module-form textarea:focus {
    outline: none;
    border-color: #84b5d7;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(76, 151, 198, 0.14);
}

.admin-module-form textarea {
    resize: vertical;
}

.admin-module-form .ck-editor__editable_inline {
    min-height: 240px;
}

.admin-record-list {
    display: grid;
    gap: 10px;
}

.admin-record-item {
    border: 1px solid #dee9f4;
    border-radius: 14px;
    background: #f8fbff;
    padding: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.admin-record-item:hover {
    border-color: #c8dced;
    box-shadow: 0 10px 18px rgba(16, 44, 70, 0.08);
    transform: translateY(-1px);
}

.admin-delete-btn {
    border-color: #efc1c1;
    color: #9f3535;
}

.admin-empty-text {
    margin: 0;
    color: #5f7287;
}

.admin-leader-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.admin-leader-row img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    border: 1px solid #d6e3f0;
    object-fit: cover;
    background: #f1f6fb;
}

.admin-leader-upload {
    display: grid;
    gap: 6px;
}

.admin-leader-upload label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .84rem;
    color: #4f637b;
}

.admin-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .87rem;
    color: #39526f;
    font-weight: 500;
}

.admin-list-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #d8e5f2;
}

.admin-list-head h2 {
    margin: 0;
}

.admin-record-summary {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.admin-record-summary img {
    width: 82px;
    height: 82px;
    border-radius: 10px;
    border: 1px solid #d6e3f0;
    object-fit: cover;
}

.admin-record-summary h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #173552;
}

.admin-record-summary p {
    margin: 0 0 3px;
    color: #4f657f;
    font-size: .84rem;
}

.admin-record-summary small {
    color: #6a7f96;
    font-size: .79rem;
}

.admin-record-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-record-actions form {
    margin: 0;
}

.admin-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: .86rem;
    font-weight: 700;
}

.admin-action-btn i {
    font-size: 1rem;
    line-height: 1;
}

.admin-delete-btn.admin-action-btn {
    border-color: #e8b2b2;
    color: #8f2828;
    background: #fff7f7;
}

.admin-delete-btn.admin-action-btn:hover {
    border-color: #dd8f8f;
    color: #7a1f1f;
    background: #fff1f1;
}

@media (max-width: 1100px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

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

    .admin-logout-btn {
        margin-top: 10px;
    }

    .admin-stats-grid,
    .admin-form-grid.cols-3 {
        grid-template-columns: 1fr;
    }

    .admin-record-item {
        grid-template-columns: 1fr;
    }

    .admin-content-wrap {
        padding-top: 12px;
        gap: 14px;
    }

    .admin-main {
        padding: 16px 14px 22px;
    }

    .admin-topbar {
        padding: 14px;
    }
}

.dev-doc-page {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 60%);
}

.dev-doc-intro {
    background: #0d1b2a;
    color: #ffffff;
    border-radius: 20px;
    padding: 34px;
    margin-bottom: 24px;
}

.dev-doc-intro span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: .77rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #8ed1fc;
    font-weight: 700;
}

.dev-doc-intro h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.dev-doc-intro p {
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
}

.dev-doc-grid {
    display: grid;
    gap: 18px;
}

.dev-doc-card {
    background: #ffffff;
    border: 1px solid #e4ecf6;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(8, 35, 65, 0.07);
}

.dev-doc-card h3 {
    margin: 0 0 12px;
    color: #123554;
}

.dev-doc-card p {
    margin: 0 0 10px;
    color: #4b5f74;
}

.dev-doc-card pre {
    margin: 0 0 12px;
    background: #09111b;
    color: #d6e6ff;
    border-radius: 12px;
    padding: 14px;
    overflow-x: auto;
}

.dev-doc-card code {
    font-family: "Fira Code", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: .88rem;
}

.dev-doc-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: #334a60;
}

@media (max-width: 767px) {
    .dev-doc-intro,
    .dev-doc-card {
        padding: 20px;
    }
}

.product-page {
    background:
        radial-gradient(1200px 380px at 20% -10%, rgba(13, 140, 168, 0.18), transparent 62%),
        radial-gradient(900px 260px at 95% 0%, rgba(245, 124, 0, 0.16), transparent 60%),
        #f8fbff;
}

.product-shell {
    display: grid;
    gap: 22px;
}

.product-hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 22px;
    background: #0f1b2d;
    border-radius: 26px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 52px rgba(8, 20, 38, 0.28);
    overflow: hidden;
    position: relative;
}

.product-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: -180px;
    top: -210px;
    background: radial-gradient(circle at center, rgba(82, 198, 226, 0.24), transparent 68%);
    pointer-events: none;
}

.product-eyebrow {
    display: inline-block;
    color: #9bdaf0;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 700;
    font-size: .76rem;
    margin-bottom: 10px;
}

.product-hero h2 {
    color: #fff;
    margin-bottom: 12px;
    font-size: clamp(1.65rem, 2.2vw, 2.25rem);
}

.product-hero p {
    color: rgba(233, 241, 255, 0.88);
    margin: 0 0 10px;
}

.product-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.product-chip {
    border: 1px solid rgba(140, 189, 220, 0.45);
    background: rgba(16, 34, 58, 0.85);
    color: #d8ebff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: .86rem;
    line-height: 1;
}

.product-hero-visual {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #12253f, #0b1627);
    padding: 20px;
    display: grid;
    align-content: center;
    gap: 12px;
}

.product-visual-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d6e7ff;
    font-size: .88rem;
    border-bottom: 1px dashed rgba(143, 186, 220, 0.28);
    padding-bottom: 9px;
}

.product-visual-line:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.product-visual-line span:last-child {
    color: #9adcf3;
    font-weight: 600;
}

.product-metrics {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-metric {
    background: #ffffff;
    border: 1px solid #dfe9f5;
    border-radius: 15px;
    padding: 16px;
}

.product-metric span {
    display: block;
    color: #5d6f83;
    font-size: .82rem;
    margin-bottom: 8px;
}

.product-metric strong {
    color: #153552;
    font-size: 1.35rem;
}

.product-flow {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-flow-item {
    background: #fff;
    border: 1px solid #e2ebf5;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.product-flow-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0d8ca8, #f57c00);
}

.product-flow-item h3 {
    margin: 0 0 10px;
    color: #123554;
}

.product-flow-item p {
    margin: 0 0 8px;
    color: #455d73;
}

.product-flow-item p:last-child {
    margin-bottom: 0;
}

.product-note {
    background: #0f2238;
    color: #d8eaff;
    border-radius: 14px;
    border: 1px solid rgba(130, 180, 215, 0.35);
    padding: 16px 18px;
    font-size: .93rem;
}

@media (max-width: 991px) {
    .product-hero {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .product-metrics,
    .product-flow {
        grid-template-columns: 1fr;
    }
}
