
        :root {
            --leaf-green: #1E6B2E;
            --leaf-green-deep: #0F3D1C;
            --leaf-green-mid: #155229;
            --leaf-green-soft: #E8F3E9;
            --leaf-green-mist: #F4F9F4;
            --gold: #F2B705;
            --gold-deep: #C98E00;
            --gold-soft: #FFF4D6;
            --ink: #171512;
            --ink-soft: #5B5750;
            --ink-mute: #8A857C;
            --paper: #FFFFFF;
            --paper-soft: #F7F8F4;
            --shadow-sm: 0 4px 14px rgba(23, 21, 18, 0.06);
            --shadow: 0 14px 40px rgba(23, 21, 18, 0.09);
            --shadow-hover: 0 22px 54px rgba(23, 21, 18, 0.15);
            --shadow-green: 0 18px 50px rgba(15, 61, 28, 0.25);
            --radius: 22px;
            --radius-sm: 14px;
            --barra-color: #042702;

            --fed-1: #E4572E;
            --fed-2: #2A9D8F;
            --fed-3: #3D5A80;
            --fed-4: #8E4585;
            --fed-5: #D64550;
            --fed-6: #F2B705;

            --unity-ring: linear-gradient(90deg,
                    var(--fed-1) 0 16.66%,
                    var(--fed-2) 16.66% 33.33%,
                    var(--fed-3) 33.33% 50%,
                    var(--fed-4) 50% 66.66%,
                    var(--fed-5) 66.66% 83.33%,
                    var(--fed-6) 83.33% 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Work Sans', sans-serif;
            color: var(--ink);
            line-height: 1.65;
            overflow-x: hidden;
            background-color: var(--paper);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Fraunces', serif;
            font-weight: 700;
            color: var(--leaf-green-deep);
        }

        .eyebrow {
            font-family: 'Space Mono', monospace;
            font-size: 0.76rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-deep);
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .eyebrow::before {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--gold);
            display: inline-block;
        }

        .eyebrow.centered::before {
            display: none;
        }

        .eyebrow.centered {
            justify-content: center;
        }

        .unity-strip {
            height: 6px;
            width: 100%;
            background: var(--unity-ring);
            flex-shrink: 0;
        }

        a {
            text-decoration: none;
        }

        ::selection {
            background: var(--gold);
            color: var(--ink);
        }

        :focus-visible {
            outline: 3px solid var(--gold-deep);
            outline-offset: 3px;
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Scroll Progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: var(--unity-ring);
            z-index: 1100;
            width: 0%;
            transition: width 0.1s ease-out;
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background-color: var(--barra-color);
            padding: 8px 0;
            font-family: 'Space Mono', monospace;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.75);
            position: relative;
            z-index: 1001;
        }

        .top-bar a {
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.25s ease;
        }

        .top-bar a:hover {
            color: var(--gold);
        }

        .top-contact {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px 22px;
        }

        .top-contact span {
            display: flex;
            align-items: center;
        }

        .top-contact i {
            margin-right: 7px;
            color: var(--gold);
            font-size: 0.75rem;
        }

        .top-right {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 16px;
        }

        .social-links a {
            color: rgba(255, 255, 255, 0.75);
            margin-left: 4px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.78rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: var(--gold);
            background: rgba(242, 183, 5, 0.12);
            transform: translateY(-2px);
        }

        .admin-link {
            border-left: 1px solid rgba(255, 255, 255, 0.2);
            padding-left: 16px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.68rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* ===== HEADER ===== */
        .header-main {
            background-color: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(23, 21, 18, 0.07);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 14px;
            font-family: 'Fraunces', serif;
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--leaf-green-deep);
        }

        .brand-mark {
            width: 54px;
            height: 54px;
            flex: 0 0 auto;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 4px 14px rgba(23, 21, 18, 0.18);
            border: 2px solid var(--gold);
            position: relative;
            transition: transform 0.4s ease;
        }

        .navbar-brand:hover .brand-mark {
            transform: rotate(8deg) scale(1.05);
        }

        .brand-mark img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .navbar-brand .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }

        .navbar-brand .brand-text small {
            font-family: 'Space Mono', monospace;
            font-size: 0.6rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--ink-soft);
            font-weight: 400;
        }

        .navbar-nav .nav-link {
            color: var(--ink) !important;
            font-weight: 500;
            margin: 0 2px;
            padding: 10px 16px !important;
            border-radius: 10px;
            transition: all 0.25s ease;
            font-size: 0.94rem;
            position: relative;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            background-color: var(--leaf-green-soft);
            color: var(--leaf-green-deep) !important;
        }

        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
        }

        .nav-item.dropdown .dropdown-menu {
            border: none;
            border-radius: 14px;
            box-shadow: var(--shadow);
            padding: 10px;
            margin-top: 8px;
            min-width: 260px;
        }

        .dropdown-item {
            border-radius: 10px;
            padding: 12px 14px;
            font-size: 0.92rem;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background-color: var(--leaf-green-soft);
            color: var(--leaf-green-deep);
            transform: translateX(3px);
        }

        .dropdown-item small {
            display: block;
            color: var(--ink-soft);
            font-size: 0.76rem;
            margin-top: 2px;
        }

        .navbar-toggler {
            border: none;
            color: var(--leaf-green-deep);
            font-size: 1.3rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .login-btn {
            background: var(--leaf-green);
            color: var(--paper) !important;
            padding: 11px 24px !important;
            border-radius: 40px;
            margin-left: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .login-btn:hover {
            background: var(--gold-deep);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(201, 142, 0, 0.35);
        }

        /* ===== HERO ===== */
        .hero-section {
            position: relative;
            padding-top: 100px;
            padding-bottom: 180px;
            overflow: hidden;
            background-color: var(--leaf-green-deep);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(125deg, rgba(15, 61, 28, 0.94), rgba(15, 61, 28, 0.55) 55%, rgba(15, 61, 28, 0.88)),
                url('img/apromcoca.jpeg');
            background-size: cover;
            background-position: center;
        }

        /* Andean pattern overlay */
        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.06;
            background-image:
                repeating-linear-gradient(45deg, transparent 0 20px, rgba(242, 183, 5, 0.4) 20px 22px),
                repeating-linear-gradient(-45deg, transparent 0 20px, rgba(242, 183, 5, 0.4) 20px 22px);
            pointer-events: none;
        }

        .hero-glow {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 88% 12%, rgba(242, 183, 5, 0.3) 0%, transparent 42%),
                radial-gradient(circle at 6% 92%, rgba(228, 87, 46, 0.18) 0%, transparent 42%),
                radial-gradient(circle at 50% 50%, rgba(42, 157, 143, 0.12) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Floating coca leaves */
        .floating-leaf {
            position: absolute;
            opacity: 0.12;
            color: var(--gold);
            pointer-events: none;
            animation: floatLeaf 18s ease-in-out infinite;
        }

        .floating-leaf:nth-child(1) {
            top: 15%;
            left: 8%;
            font-size: 2.5rem;
            animation-delay: 0s;
        }

        .floating-leaf:nth-child(2) {
            top: 65%;
            left: 4%;
            font-size: 1.8rem;
            animation-delay: 3s;
            color: var(--paper);
        }

        .floating-leaf:nth-child(3) {
            top: 25%;
            right: 12%;
            font-size: 3rem;
            animation-delay: 6s;
        }

        .floating-leaf:nth-child(4) {
            bottom: 20%;
            right: 6%;
            font-size: 2rem;
            animation-delay: 9s;
            color: var(--paper);
        }

        .floating-leaf:nth-child(5) {
            top: 50%;
            left: 45%;
            font-size: 1.5rem;
            animation-delay: 12s;
        }

        @keyframes floatLeaf {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-20px) rotate(8deg);
            }

            50% {
                transform: translateY(-10px) rotate(-5deg);
            }

            75% {
                transform: translateY(-25px) rotate(12deg);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .floating-leaf {
                animation: none;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }

        .hero-content h1 {
            font-size: clamp(2.1rem, 4.6vw, 3.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--paper);
            text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
            animation: fadeInUp 0.9s ease both;
        }

        .hero-content h1 .accent {
            color: var(--gold);
            position: relative;
            display: inline-block;
        }

        .hero-content h1 .accent::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 8px;
            background: rgba(242, 183, 5, 0.25);
            z-index: -1;
            border-radius: 4px;
        }

        .hero-content .eyebrow {
            color: var(--gold);
            animation: fadeInUp 0.9s ease both;
        }

        .hero-content .eyebrow::before {
            background: var(--gold);
        }

        .hero-content .subtitle {
            font-size: 1.13rem;
            font-weight: 400;
            margin-bottom: 38px;
            max-width: 600px;
            color: rgba(255, 255, 255, 0.9);
            animation: fadeInUp 0.9s ease 0.15s both;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.9s ease 0.3s both;
        }

        .btn-hero {
            padding: 14px 34px;
            font-weight: 600;
            border-radius: 40px;
            font-size: 0.98rem;
            border: 2px solid transparent;
            transition: all 0.35s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary-hero {
            background-color: var(--gold);
            color: var(--ink);
        }

        .btn-primary-hero:hover {
            background-color: var(--paper);
            color: var(--leaf-green-deep);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .btn-outline-hero {
            background-color: transparent;
            color: var(--paper);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .btn-outline-hero:hover {
            background-color: var(--paper);
            color: var(--leaf-green-deep);
            border-color: var(--paper);
            transform: translateY(-4px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(26px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-emblem-wrap {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-emblem-wrap::before {
            content: '';
            position: absolute;
            width: min(380px, 80vw);
            aspect-ratio: 1;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
            filter: blur(8px);
        }

        /* Orbit dots */
        .hero-emblem-wrap::after {
            content: '';
            position: absolute;
            width: min(400px, 85vw);
            aspect-ratio: 1;
            border-radius: 50%;
            border: 1px dashed rgba(242, 183, 5, 0.3);
            animation: spinSlow 60s linear infinite;
        }

        .hero-emblem-ring {
            position: relative;
            width: min(320px, 70vw);
            aspect-ratio: 1;
            border-radius: 50%;
            padding: 10px;
            background: conic-gradient(var(--fed-1) 0 60deg, var(--fed-2) 60deg 120deg, var(--fed-3) 120deg 180deg,
                    var(--fed-4) 180deg 240deg, var(--fed-5) 240deg 300deg, var(--fed-6) 300deg 360deg);
            box-shadow: var(--shadow-hover), 0 0 60px rgba(242, 183, 5, 0.2);
            animation: spinSlow 40s linear infinite;
        }

        @keyframes spinSlow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @media (prefers-reduced-motion: reduce) {

            .hero-emblem-ring,
            .hero-emblem-wrap::after {
                animation: none;
            }
        }

        .hero-emblem-ring img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 6px solid var(--paper);
            display: block;
            object-fit: cover;
            animation: spinSlowReverse 40s linear infinite;
        }

        @keyframes spinSlowReverse {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(-360deg);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-emblem-ring img {
                animation: none;
            }
        }

        /* ===== STAT PANEL ===== */
        .stat-panel-wrap {
            position: relative;
            z-index: 3;
            margin-top: -110px;
        }

        .stat-panel {
            background: var(--paper);
            border-radius: var(--radius);
            box-shadow: var(--shadow-hover);
            display: flex;
            flex-wrap: wrap;
            overflow: hidden;
            position: relative;
        }

        .stat-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--unity-ring);
        }

        .stat-item {
            flex: 1 1 220px;
            padding: 32px 32px;
            display: flex;
            align-items: center;
            gap: 18px;
            border-right: 1px solid rgba(23, 21, 18, 0.07);
            transition: background 0.3s ease;
        }

        .stat-item:hover {
            background: var(--leaf-green-mist);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-item .stat-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--leaf-green-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            transition: transform 0.3s ease;
        }

        .stat-item:hover .stat-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .stat-item .stat-icon i {
            color: var(--leaf-green);
            font-size: 1.3rem;
        }

        .stat-item .stat-number {
            font-family: 'Fraunces', serif;
            font-size: 1.95rem;
            font-weight: 800;
            color: var(--leaf-green-deep);
            line-height: 1;
            display: block;
        }

        .stat-item .stat-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.72rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--ink-soft);
            display: block;
            margin-top: 4px;
        }

        /* ===== SECTION HEADER ===== */
        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 2.7rem);
            margin-bottom: 18px;
            line-height: 1.2;
        }

        .section-header h2 .accent-text {
            color: var(--gold-deep);
            font-style: italic;
        }

        .section-header p {
            font-size: 1.08rem;
            color: var(--ink-soft);
        }

        /* ===== FEDERATIONS ===== */
        .federations-section {
            padding: 100px 0 70px;
            background-color: var(--paper);
            position: relative;
            overflow: hidden;
        }

        .federations-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--leaf-green-soft) 0%, transparent 70%);
            opacity: 0.5;
        }

        .federation-card {
            display: flex;
            flex-direction: column;
            background: var(--paper);
            border-radius: var(--radius);
            padding: 28px 24px;
            height: 100%;
            transition: all 0.35s ease;
            border: 1px solid rgba(23, 21, 18, 0.06);
            position: relative;
            overflow: hidden;
        }

        .federation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--fed-color, var(--leaf-green));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .federation-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
            border-color: transparent;
        }

        .federation-card:hover::before {
            transform: scaleX(1);
        }

        .federation-card .fed-number {
            font-family: 'Fraunces', serif;
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--fed-color, var(--leaf-green));
            opacity: 0.18;
            line-height: 1;
            margin-bottom: 8px;
        }

        .federation-card .fed-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--fed-color);
            margin-bottom: 16px;
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8), 0 0 0 5px var(--fed-color);
        }

        .federation-card h4 {
            font-size: 1.02rem;
            line-height: 1.35;
            margin-bottom: 8px;
            min-height: 50px;
        }

        .federation-card .fed-tag {
            font-family: 'Space Mono', monospace;
            font-size: 0.66rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--fed-color);
            font-weight: 700;
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
            position: relative;
            overflow: hidden;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        @media (max-width: 991px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .about-text h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            margin-bottom: 22px;
            line-height: 1.2;
        }

        .about-text p {
            color: var(--ink-soft);
            margin-bottom: 18px;
            font-size: 1.02rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-top: 28px;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .about-feature i {
            color: var(--leaf-green);
            font-size: 1.1rem;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .about-feature span {
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--ink);
        }

        .about-visual {
            position: relative;
        }

        .about-visual-card {
            background: var(--leaf-green-deep);
            border-radius: var(--radius);
            padding: 44px 36px;
            color: var(--paper);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-green);
        }

        .about-visual-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--unity-ring);
        }

        .about-visual-card::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(242, 183, 5, 0.15) 0%, transparent 70%);
        }

        .about-visual-card .quote-icon {
            font-size: 2.5rem;
            color: var(--gold);
            opacity: 0.6;
            margin-bottom: 16px;
        }

        .about-visual-card h3 {
            color: var(--paper);
            font-size: 1.5rem;
            margin-bottom: 18px;
            font-style: italic;
            line-height: 1.35;
        }

        .about-visual-card p {
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.96rem;
            margin-bottom: 24px;
        }

        .about-visual-card .signature {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }

        .about-visual-card .signature .sig-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ink);
            font-size: 1.1rem;
        }

        .about-visual-card .signature .sig-text strong {
            display: block;
            font-family: 'Fraunces', serif;
            font-size: 1rem;
        }

        .about-visual-card .signature .sig-text small {
            font-family: 'Space Mono', monospace;
            font-size: 0.68rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gold);
        }

        /* ===== VALUES SECTION ===== */
        .values-section {
            padding: 100px 0;
            background: var(--paper);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }

        .value-card {
            text-align: center;
            padding: 36px 24px;
            border-radius: var(--radius);
            background: var(--paper-soft);
            transition: all 0.35s ease;
            border: 1px solid transparent;
        }

        .value-card:hover {
            background: var(--paper);
            border-color: var(--leaf-green-soft);
            box-shadow: var(--shadow);
            transform: translateY(-6px);
        }

        .value-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: var(--paper);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(15, 61, 28, 0.1);
            position: relative;
            transition: transform 0.4s ease;
        }

        .value-card:hover .value-icon {
            transform: rotate(10deg) scale(1.08);
        }

        .value-icon::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: var(--unity-ring);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .value-card:hover .value-icon::before {
            opacity: 1;
        }

        .value-icon i {
            font-size: 1.8rem;
            color: var(--leaf-green);
        }

        .value-card h4 {
            font-size: 1.15rem;
            margin-bottom: 8px;
        }

        .value-card p {
            color: var(--ink-soft);
            font-size: 0.9rem;
            margin: 0;
        }

        /* ===== SERVICES ===== */
        .services-section {
            padding: 100px 0 110px;
            background-color: var(--paper-soft);
            position: relative;
        }

        .service-card {
            background-color: var(--paper);
            border-radius: var(--radius);
            padding: 44px 34px 38px;
            box-shadow: var(--shadow-sm);
            transition: all 0.35s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(23, 21, 18, 0.04);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            transition: height 0.35s ease;
        }

        .service-card.tone-green::before {
            background: var(--leaf-green);
        }

        .service-card.tone-gold::before {
            background: var(--gold);
        }

        .service-card.tone-blue::before {
            background: var(--fed-3);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .service-card:hover::before {
            height: 8px;
        }

        .service-icon {
            width: 68px;
            height: 68px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 26px;
            background: var(--leaf-green-soft);
            transition: all 0.35s ease;
            position: relative;
        }

        .service-card.tone-gold .service-icon {
            background: var(--gold-soft);
        }

        .service-card.tone-blue .service-icon {
            background: rgba(61, 90, 128, 0.1);
        }

        .service-card:hover .service-icon {
            transform: rotate(-6deg) scale(1.05);
        }

        .service-icon i {
            font-size: 1.8rem;
            color: var(--leaf-green-deep);
        }

        .service-card.tone-gold .service-icon i {
            color: var(--gold-deep);
        }

        .service-card.tone-blue .service-icon i {
            color: var(--fed-3);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 14px;
        }

        .service-card p {
            color: var(--ink-soft);
            font-size: 0.98rem;
            margin-bottom: 22px;
        }

        .service-card .service-link {
            font-family: 'Space Mono', monospace;
            font-size: 0.74rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--leaf-green-deep);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.25s ease;
        }

        .service-card:hover .service-link {
            gap: 14px;
        }

        /* ===== TIMELINE ===== */
        .timeline-section {
            padding: 100px 0;
            background: var(--leaf-green-deep);
            color: var(--paper);
            position: relative;
            overflow: hidden;
        }

        .timeline-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                repeating-linear-gradient(45deg, transparent 0 30px, rgba(242, 183, 5, 0.03) 30px 32px);
            pointer-events: none;
        }

        .timeline-section .section-header h2 {
            color: var(--paper);
        }

        .timeline-section .section-header p {
            color: rgba(255, 255, 255, 0.75);
        }

        .timeline-section .eyebrow {
            color: var(--gold);
        }

        .timeline-section .eyebrow::before {
            background: var(--gold);
        }

        .timeline-track {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px 0;
        }

        .timeline-track::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg,
                    transparent 0%,
                    var(--gold) 10%,
                    var(--gold) 90%,
                    transparent 100%);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            width: 50%;
            padding: 20px 40px;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            top: 28px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--gold);
            border: 3px solid var(--leaf-green-deep);
            box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.3);
            z-index: 2;
        }

        .timeline-item:nth-child(odd)::after {
            right: -9px;
        }

        .timeline-item:nth-child(even)::after {
            left: -9px;
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            padding: 22px 24px;
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.03);
        }

        .timeline-year {
            font-family: 'Fraunces', serif;
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--gold);
            display: block;
            margin-bottom: 6px;
        }

        .timeline-content h4 {
            color: var(--paper);
            font-size: 1.05rem;
            margin-bottom: 8px;
        }

        .timeline-content p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.88rem;
            margin: 0;
        }

        @media (max-width: 767px) {
            .timeline-track::before {
                left: 20px;
            }

            .timeline-item {
                width: 100%;
                left: 0 !important;
                text-align: left !important;
                padding-left: 50px;
                padding-right: 10px;
            }

            .timeline-item::after {
                left: 11px !important;
                right: auto !important;
            }
        }

        /* ===== CONTACT ===== */
        .contact-section {
            padding: 110px 0;
            background-color: var(--paper);
        }

        .contact-info-panel {
            background: var(--leaf-green-deep);
            border-radius: var(--radius);
            padding: 46px 38px;
            box-shadow: var(--shadow-green);
            height: 100%;
            color: var(--paper);
            position: relative;
            overflow: hidden;
        }

        .contact-info-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--unity-ring);
        }

        .contact-info-panel::after {
            content: '';
            position: absolute;
            bottom: -60px;
            right: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(242, 183, 5, 0.12) 0%, transparent 70%);
        }

        .contact-info-panel h3 {
            font-size: 1.6rem;
            color: var(--paper);
            margin-bottom: 34px;
            padding-bottom: 16px;
            position: relative;
        }

        .contact-info-panel h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--gold);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }

        .contact-item .icon-wrap {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(242, 183, 5, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            flex-shrink: 0;
        }

        .contact-item i {
            color: var(--gold);
            font-size: 1.05rem;
        }

        .contact-item h4 {
            font-size: 1.02rem;
            margin-bottom: 6px;
            color: var(--paper);
        }

        .contact-item p {
            margin: 0;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.94rem;
        }

        .contact-socials {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            position: relative;
            z-index: 1;
        }

        .contact-socials span {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            display: block;
            margin-bottom: 12px;
        }

        .contact-socials a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--paper);
            margin-right: 8px;
            transition: all 0.3s ease;
        }

        .contact-socials a:hover {
            background: var(--gold);
            color: var(--ink);
            transform: translateY(-3px);
        }

        .map-container {
            border-radius: var(--radius);
            overflow: hidden;
            height: 100%;
            min-height: 480px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 480px;
            border: none;
            filter: saturate(0.9);
        }

        .map-overlay-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--paper);
            padding: 14px 20px;
            border-radius: 14px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 1;
        }

        .map-overlay-badge .badge-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--leaf-green-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--leaf-green);
        }

        .map-overlay-badge strong {
            display: block;
            font-family: 'Fraunces', serif;
            font-size: 0.98rem;
            color: var(--leaf-green-deep);
        }

        .map-overlay-badge small {
            font-family: 'Space Mono', monospace;
            font-size: 0.66rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--ink-soft);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--ink);
            color: var(--paper);
        }

        .footer-main {
            padding: 70px 0 30px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .footer-logo .brand-mark {
            width: 60px;
            height: 60px;
        }

        .footer-logo h3 {
            font-size: 1.5rem;
            color: var(--paper);
            margin: 0;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 22px;
            font-size: 0.94rem;
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Space Mono', monospace;
            font-size: 0.72rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gold);
            border: 1px solid rgba(242, 183, 5, 0.35);
            border-radius: 30px;
            padding: 7px 16px;
        }

        .footer-links h4 {
            font-size: 1.02rem;
            color: var(--paper);
            margin-bottom: 24px;
            padding-bottom: 14px;
            position: relative;
            font-family: 'Space Mono', monospace;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 0.82rem;
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--gold);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.92rem;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links ul li a::before {
            content: '→';
            color: var(--gold);
            opacity: 0;
            transition: all 0.25s ease;
            font-size: 0.85rem;
        }

        .footer-links ul li a:hover {
            color: var(--gold);
            padding-left: 4px;
        }

        .footer-links ul li a:hover::before {
            opacity: 1;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.78);
        }

        .footer-contact-item i {
            color: var(--gold);
            margin-top: 4px;
            width: 16px;
        }

        .newsletter-form p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 18px;
            font-size: 0.92rem;
        }

        .newsletter-form .form-group {
            display: flex;
            background-color: rgba(255, 255, 255, 0.08);
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: border-color 0.25s ease;
        }

        .newsletter-form .form-group:focus-within {
            border-color: var(--gold);
        }

        .newsletter-form input {
            flex: 1;
            padding: 13px 20px;
            border: none;
            background: none;
            color: var(--paper);
            min-width: 0;
            font-size: 0.9rem;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-form input:focus {
            outline: none;
        }

        .newsletter-form button {
            background-color: var(--gold);
            color: var(--ink);
            border: none;
            padding: 0 24px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.25s ease;
            white-space: nowrap;
            font-size: 0.88rem;
        }

        .newsletter-form button:hover {
            background-color: var(--gold-deep);
            color: var(--paper);
        }

        .newsletter-consent {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-top: 14px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-consent a {
            color: var(--gold);
            text-decoration: underline;
        }

        .newsletter-consent input {
            margin-top: 4px;
            accent-color: var(--gold);
        }

        .footer-legal-row {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
        }

        .footer-legal-row ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 22px;
            justify-content: center;
            font-size: 0.8rem;
            margin: 0;
            padding: 0;
        }

        .footer-legal-row ul li a {
            color: rgba(255, 255, 255, 0.6);
            transition: color 0.2s ease;
        }

        .footer-legal-row ul li a:hover {
            color: var(--gold);
        }

        .copyright {
            text-align: center;
            padding: 18px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.85rem;
        }

        .copyright a {
            color: var(--gold);
            font-weight: 600;
        }

        .copyright a:hover {
            color: var(--paper);
            text-decoration: underline;
        }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 26px;
            right: 26px;
            background: var(--leaf-green);
            color: var(--paper);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
            z-index: 1000;
            border: none;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--gold-deep);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--paper);
                margin-top: 14px;
                padding: 16px;
                border-radius: 14px;
                box-shadow: var(--shadow);
            }

            .navbar-nav .nav-link {
                text-align: left;
            }

            .navbar-nav .nav-link.active::after {
                display: none;
            }

            .login-btn {
                margin-left: 0;
                margin-top: 8px;
                display: inline-flex;
            }

            .stat-item {
                flex: 1 1 50%;
                border-bottom: 1px solid rgba(23, 21, 18, 0.07);
            }

            .top-right {
                justify-content: flex-start;
                margin-top: 4px;
            }

            .hero-emblem-wrap {
                margin-top: 50px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            .hero-section {
                padding-top: 70px;
                padding-bottom: 190px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-hero {
                text-align: center;
                justify-content: center;
            }

            .stat-panel-wrap {
                margin-top: -150px;
            }

            .stat-item {
                flex: 1 1 100%;
            }

            .federations-section,
            .about-section,
            .values-section,
            .services-section,
            .timeline-section,
            .contact-section {
                padding: 70px 0;
            }

            .contact-info-panel {
                margin-bottom: 26px;
                padding: 36px 26px;
            }

            .map-container,
            .map-container iframe {
                min-height: 360px;
            }

            .footer-logo,
            .footer-links {
                margin-bottom: 36px;
            }

            .section-header {
                margin-bottom: 44px;
            }
        }

        @media (max-width: 480px) {
            .navbar-brand {
                font-size: 1.2rem;
            }

            .brand-mark {
                width: 44px;
                height: 44px;
            }

            .service-card,
            .federation-card {
                padding: 30px 24px;
            }

            .stat-item {
                padding: 24px 22px;
            }

            .about-visual-card {
                padding: 32px 26px;
            }
        }
    