/* Alok — rahulgandhi.in exact fonts & color theme */

:root {
    /* Brand colors (from rahulgandhi.in) */
    --color-brand-primary: #F8D148;
    --color-brand-primary-dark: #D4B03A;
    --color-brand-primary-light: #FEF9E7;
    --color-brand-hover: #F3CF3C;
    --color-brand-live-hover: #F3D55B;

    /* Backgrounds */
    --color-background-white: #FFFFFF;
    --color-background-light: #F5F5F5;
    --color-background-dark: #1A1A1A;
    --color-card-cream: #F3F0E9;

    /* Text */
    --color-text-primary: #1A1A1A;
    --color-text-secondary: #666666;
    --color-text-heading: #2B2A2A;
    --color-text-muted: #464646;
    --color-text-white: #FFFFFF;
    --color-text-live: #1A1A2E;

    /* Borders */
    --color-border-light: #E5E5E5;
    --color-border-medium: #CCCCCC;

    /* Fonts (from rahulgandhi.in) */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-poppins: 'Poppins', sans-serif;
    --font-source-sans: 'Source Sans 3', sans-serif;
    --font-display: 'Anton', 'Oswald', 'Bebas Neue', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', 'Inter', system-ui, sans-serif;

    /* RG nav colors */
    --color-nav-brand: #1A237E;
    --color-nav-hover: #1C2E7A;
    --color-nav-muted: #374151;
    --color-nav-border: #D1D5DB;
    --color-nav-border-active: #2A3BD9;

    /* Font weights — match rahulgandhi.in */
    --fw-body: 400;
    --fw-ui: 500;
    --fw-medium: 600;
    --fw-semibold: 700;
    --fw-bold: 700;
    --fw-black: 700;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: var(--fw-body);
    color: var(--color-text-primary);
    background: var(--color-background-white);
    -webkit-font-smoothing: antialiased;
}

html[lang="hi"] body,
html[lang="hi"] .rg-nav a,
html[lang="hi"] .rg-card__head p,
html[lang="hi"] .rg-about__lead,
html[lang="hi"] .rg-about__body,
html[lang="hi"] .rg-about__role,
html[lang="hi"] .rg-about__name,
html[lang="hi"] .rg-about p,
html[lang="hi"] .rg-contact__lead,
html[lang="hi"] .rg-form__field,
html[lang="hi"] .rg-btn-submit {
    font-family: var(--font-hindi);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-source-sans);
    font-weight: var(--fw-bold);
    color: var(--color-text-heading);
}

b,
strong {
    font-weight: var(--fw-semibold);
    color: var(--color-text-heading);
}

button,
input,
select,
textarea {
    font-family: var(--font-poppins);
}

button {
    font-weight: var(--fw-semibold);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── Header (rahulgandhi.in nav) ── */
.rg-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--color-background-white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-family: var(--font-poppins);
}

.rg-header__nav {
    width: 100%;
}

.rg-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    padding: 0 1rem;
    max-width: 100%;
}

@media (min-width: 640px) {
    .rg-header__inner {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .rg-header__inner {
        padding: 0 2rem;
    }
}

.rg-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.rg-logo__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--color-nav-brand);
}

@media (min-width: 768px) {
    .rg-logo__name {
        font-size: 2rem;
    }
}

.rg-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.rg-nav a {
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: var(--fw-ui);
    color: var(--color-nav-muted);
    transition: color 0.15s;
}

.rg-nav a:hover {
    color: var(--color-nav-hover);
}

.rg-header__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rg-lang {
    display: flex;
    border: 1px solid var(--color-border-light);
    border-radius: 6px;
    overflow: hidden;
}

.rg-lang__btn {
    padding: 0.3rem 0.55rem;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: var(--fw-medium);
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--color-text-muted);
}

.rg-lang__btn.is-active {
    background: var(--color-background-dark);
    color: var(--color-text-white);
}

.rg-share {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 0.375rem;
    background: transparent;
    cursor: pointer;
    color: var(--color-text-live);
    transition: background 0.15s;
}

.rg-share:hover {
    background: #F3F4F6;
}

.rg-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: background 0.15s;
}

.rg-menu-toggle:hover {
    background: #F3F4F6;
}

.rg-menu-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--color-text-live);
    transition: transform 0.2s, opacity 0.2s;
}

.rg-menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.rg-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.rg-menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .rg-nav {
        display: flex;
    }

    .rg-share {
        display: flex;
    }

    .rg-menu-toggle {
        display: none;
    }
}

/* Mobile nav drawer */
.rg-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: var(--color-background-white);
    padding: 0.5rem 0.5rem 1rem;
    gap: 0;
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 199;
}

.rg-nav.open a {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    width: 100%;
}

.rg-nav.open a:hover {
    background: #F3F4F6;
    color: var(--color-nav-hover);
}

.rg-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.rg-label {
    font-family: var(--font-poppins);
    font-size: 0.72rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin: 0 0 0.5rem;
}

/* ── Hero carousel ── */
.rg-hero {
    position: relative;
    background: var(--color-brand-primary);
}

.rg-hero-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.rg-hero-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.rg-hero-swiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    position: relative;
}

.rg-hero-slide {
    display: block;
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: min(72vh, 520px);
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center top;
    background-color: var(--color-brand-primary);
}

@media (min-width: 768px) {
    .rg-hero-slide {
        min-height: 0;
        max-height: min(750px, 56vw);
        aspect-ratio: 5 / 2;
    }
}

.rg-hero-slide--empty {
    min-height: 300px;
}

@media (min-width: 768px) {
    .rg-hero-slide--empty {
        min-height: 40vw;
    }
}

.rg-hero-slide__actions {
    position: absolute;
    bottom: 12%;
    left: 10%;
    z-index: 2;
}

@media (min-width: 768px) {
    .rg-hero-slide__actions {
        left: 18%;
        bottom: 6%;
    }
}

@media (min-width: 1024px) {
    .rg-hero-slide__actions {
        left: 16%;
    }
}

.rg-btn-live {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0;
    min-width: 150px;
    width: 150px;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-live);
    background: var(--color-brand-primary);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: background 0.2s;
}

@media (min-width: 768px) {
    .rg-btn-live {
        min-width: 240px;
        width: 240px;
        padding: 0.85rem 0;
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .rg-btn-live {
        min-width: 280px;
        width: 280px;
        padding: 1rem 0;
        font-size: 1.05rem;
    }
}

.rg-btn-live::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: var(--color-brand-primary);
    animation: rg-ping 1.5s ease-out infinite;
    opacity: 0.5;
    z-index: -1;
}

@keyframes rg-ping {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.rg-btn-live:hover {
    background: var(--color-brand-live-hover);
}

.rg-hero-social {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    max-width: 100%;
}

.rg-hero-slide__actions.rg-hero-social {
    left: 0;
    right: 0;
    bottom: 1rem;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.rg-hero:hover .rg-hero-slide__actions.rg-hero-social,
.rg-hero-slide__actions.rg-hero-social:hover,
.rg-hero-slide__actions.rg-hero-social:focus-within {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

@media (hover: none) {
    .rg-hero-slide__actions.rg-hero-social {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }
}

@media (min-width: 768px) {
    .rg-hero-slide__actions.rg-hero-social {
        bottom: 1.25rem;
    }

    .rg-hero-social {
        gap: 0.5rem;
    }
}

.rg-hero-social__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.35rem 0.65rem;
    min-width: auto;
    font-family: var(--font-poppins);
    font-size: 0.6875rem;
    font-weight: var(--fw-semibold);
    text-decoration: none;
    color: var(--color-text-white);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.rg-hero-social__btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.rg-hero-social__btn:hover {
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .rg-hero-social__btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .rg-hero-social__btn svg {
        width: 15px;
        height: 15px;
    }
}

.rg-hero-social__btn--facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.rg-hero-social__btn--instagram:hover {
    background: #E1306C;
    border-color: #E1306C;
}

.rg-hero-social__btn--twitter:hover {
    background: #000000;
    border-color: #000000;
}

.rg-hero .swiper-pagination,
.rg-hero-prev,
.rg-hero-next {
    display: none !important;
}

/* ── Initiative cards ── */
.rg-cards {
    padding: 2.5rem 0 3rem;
    background: var(--color-background-white);
}

@media (min-width: 640px) {
    .rg-cards {
        padding: 4rem 0;
    }
}

.rg-cards__wrap {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

@media (min-width: 640px) {
    .rg-cards__wrap {
        padding: 0 2.5rem;
    }
}

@media (min-width: 1280px) {
    .rg-cards__wrap {
        padding: 0 8rem;
    }
}

.rg-cards__track {
    display: flex;
    flex-direction: row;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.25rem 1.25rem 1.25rem;
    overscroll-behavior-x: contain;
}

.rg-cards__track::-webkit-scrollbar {
    display: none;
}

@media (min-width: 640px) {
    .rg-cards__track {
        gap: 22px;
        padding: 0 0 1rem;
    }
}

.rg-card {
    flex-shrink: 0;
    width: min(78vw, 300px);
    scroll-snap-align: center;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    background: var(--color-background-white);
    text-decoration: none;
    color: inherit;
    min-height: 0;
}

@media (min-width: 640px) {
    .rg-card {
        width: calc(50% - 11px);
        scroll-snap-align: start;
        border-radius: 28px;
    }
}

@media (min-width: 1280px) {
    .rg-card {
        width: 379px;
        border-radius: 36px;
    }
}

.rg-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

@media (hover: none) {
    .rg-card:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .rg-card:hover .rg-card__head {
        background: var(--color-card-cream);
    }
}

.rg-card__head {
    background: var(--color-card-cream);
    padding: 1.1rem 1.15rem 1rem;
    transition: background 0.3s;
}

@media (min-width: 640px) {
    .rg-card__head {
        padding: 2rem 2rem 1.5rem;
    }
}

.rg-card:hover .rg-card__head {
    background: var(--color-brand-hover);
}

.rg-card__head h3 {
    font-family: var(--font-source-sans);
    font-size: 1.125rem;
    font-weight: var(--fw-bold);
    color: #2B2A2A;
    margin: 0 0 0.35rem;
    line-height: 1.25;
    letter-spacing: -0.2px;
}

.rg-card__head h3 b {
    font-weight: var(--fw-bold);
}

@media (min-width: 640px) {
    .rg-card__head h3 {
        font-size: 1.5rem;
        margin: 0 0 0.25rem;
    }
}

@media (min-width: 1024px) {
    .rg-card__head h3 {
        font-size: 1.625rem;
    }
}

.rg-card__head p {
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: var(--fw-body);
    color: #464646;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 640px) {
    .rg-card__head p {
        -webkit-line-clamp: unset;
        display: block;
        overflow: visible;
        line-height: 1.55;
    }
}

@media (min-width: 1024px) {
    .rg-card__head p {
        font-size: 0.9375rem;
    }
}

.rg-card__img {
    position: relative;
    flex: none;
    aspect-ratio: 4 / 5;
    width: 100%;
    background: #ebe6dc;
    overflow: hidden;
}

.rg-card__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.rg-card__more {
    display: inline-flex;
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.75rem;
    height: 26px;
    font-family: var(--font-poppins);
    font-size: 0.6875rem;
    font-weight: var(--fw-medium);
    background: var(--color-background-white);
    color: var(--color-text-primary);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

@media (min-width: 640px) {
    .rg-card__more {
        display: none;
        bottom: 1rem;
        left: 1rem;
        height: 34px;
        font-size: 0.8125rem;
        padding: 0.2rem 1rem;
    }

    .rg-card:hover .rg-card__more {
        display: inline-flex;
    }
}

.rg-cards__prev,
.rg-cards__next {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: var(--color-background-white);
    border: 1px solid var(--color-border-light);
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: var(--color-text-primary);
    transition: background 0.15s;
}

.rg-cards__prev:hover,
.rg-cards__next:hover {
    background: var(--color-background-light);
}

.rg-cards__prev {
    left: 0.35rem;
}

.rg-cards__next {
    right: 0.35rem;
}

@media (min-width: 640px) {
    .rg-cards__prev,
    .rg-cards__next {
        width: 48px;
        height: 48px;
    }

    .rg-cards__prev {
        left: -0.5rem;
    }

    .rg-cards__next {
        right: -0.5rem;
    }
}

@media (min-width: 1280px) {
    .rg-cards__prev {
        left: 1rem;
    }

    .rg-cards__next {
        right: 1rem;
    }
}

/* ── About (portrait background) ── */
.rg-about {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: min(92vh, 860px);
    display: flex;
    align-items: center;
    color: var(--color-text-white);
    background: #0c1220;
}

.rg-about__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.rg-about__photo {
    position: absolute;
    inset: 0;
    background-image: var(--about-bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 72% 22%;
}

.rg-about__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg,
            #0c1220 0%,
            rgba(12, 18, 32, 0.95) 20%,
            rgba(12, 18, 32, 0.72) 38%,
            rgba(12, 18, 32, 0.35) 55%,
            rgba(12, 18, 32, 0.1) 72%,
            transparent 88%);
}

.rg-about__inner {
    position: relative;
    z-index: 1;
    width: min(1200px, 92%);
    margin-inline: auto;
    padding: 5rem 0;
    display: flex;
    justify-content: flex-end;
}

.rg-about__copy {
    max-width: 34rem;
    opacity: 0;
    transform: translateY(1.25rem);
    animation: rg-about-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.rg-about__label {
    color: var(--color-brand-primary);
    margin-bottom: 0.75rem;
}

.rg-about__name {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin: 0 0 0.35rem;
    color: var(--color-text-white);
    text-transform: uppercase;
}

.rg-about__role {
    font-family: var(--font-poppins);
    font-size: 0.95rem;
    font-weight: var(--fw-medium);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 1.5rem;
}

.rg-about__lead,
.rg-about__body {
    font-family: var(--font-sans);
    font-weight: var(--fw-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 1rem;
}

.rg-about__lead strong,
.rg-about__lead b,
.rg-about__body strong,
.rg-about__body b {
    color: var(--color-brand-primary);
    font-weight: var(--fw-semibold);
}

.rg-about__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem 2.25rem;
    margin: 2rem 0 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.rg-about__stats div {
    min-width: 5.5rem;
}

.rg-about__stats strong {
    display: block;
    font-family: var(--font-source-sans);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: var(--fw-bold);
    color: var(--color-text-white);
    line-height: 1.15;
    margin-bottom: 0.2rem;
}

.rg-about__stats span {
    font-family: var(--font-poppins);
    font-size: 0.68rem;
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, 0.58);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rg-about__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.04em;
    color: var(--color-text-live);
    background: var(--color-brand-primary);
    padding: 0.9rem 1.6rem;
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rg-about__cta:hover {
    background: var(--color-brand-hover);
    transform: translateY(-1px);
}

@keyframes rg-about-rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile: stacked photo + readable content panel */
@media (max-width: 899px) {
    .rg-about {
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .rg-about__media {
        position: relative;
        inset: auto;
        width: 100%;
        height: min(52vw, 280px);
        min-height: 220px;
        flex-shrink: 0;
    }

    .rg-about__photo {
        background-size: cover;
        background-position: center 18%;
    }

    .rg-about__veil {
        background: linear-gradient(to top,
                #0c1220 0%,
                rgba(12, 18, 32, 0.35) 45%,
                rgba(12, 18, 32, 0.08) 100%);
    }

    .rg-about__inner {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0 0 2.75rem;
        justify-content: flex-start;
        background: #0c1220;
    }

    .rg-about__copy {
        max-width: none;
        width: min(1200px, 92%);
        margin: -1.5rem auto 0;
        padding: 0;
    }

    .rg-about__name {
        font-size: clamp(2.15rem, 11vw, 2.85rem);
        line-height: 1.02;
    }

    .rg-about__role {
        font-size: 0.8rem;
        letter-spacing: 0.14em;
        margin-bottom: 1.15rem;
    }

    .rg-about__lead,
    .rg-about__body {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .rg-about__stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.85rem 0.65rem;
        margin: 1.5rem 0 1.75rem;
        padding-top: 1.25rem;
    }

    .rg-about__stats div {
        min-width: 0;
        text-align: center;
    }

    .rg-about__stats strong {
        font-size: 1.35rem;
    }

    .rg-about__stats span {
        font-size: 0.58rem;
        letter-spacing: 0.04em;
        display: block;
        line-height: 1.35;
    }

    .rg-about__cta {
        width: 100%;
        padding: 0.95rem 1.25rem;
    }
}

@media (max-width: 380px) {
    .rg-about__media {
        height: 200px;
        min-height: 200px;
    }

    .rg-about__stats {
        gap: 0.75rem 0.4rem;
    }

    .rg-about__stats strong {
        font-size: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rg-about__copy {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ── Social orbit (Follow Alok Tiwari) ── */
.rg-social-orbit {
    padding: 4rem 0 5rem;
    background: var(--color-background-light);
}

.rg-social-orbit__header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.rg-social-orbit__eyebrow {
    color: var(--color-nav-brand);
    margin-bottom: 0.65rem;
}

.rg-social-orbit__heading {
    font-family: var(--font-source-sans);
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-text-heading);
    margin: 0 0 0.85rem;
}

.rg-social-orbit__subheading {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0 auto;
}

.rg-social-orbit__arena {
    position: relative;
    min-height: 620px;
    padding: 2.5rem 1.25rem 2rem;
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(88, 101, 242, 0.28) 0%, transparent 68%),
        linear-gradient(165deg, #0f1535 0%, #151b3d 38%, #1a1448 100%);
    box-shadow: 0 30px 80px rgba(15, 21, 53, 0.28);
    isolation: isolate;
}

@media (min-width: 768px) {
    .rg-social-orbit__arena {
        min-height: 580px;
        padding: 3rem 2rem;
    }
}

.rg-social-orbit__backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rg-social-orbit__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(340px, 55%);
    height: min(340px, 55%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.45) 0%, rgba(88, 101, 242, 0.15) 45%, transparent 72%);
    filter: blur(8px);
    animation: rgOrbitGlow 5.5s ease-in-out infinite;
}

.rg-social-orbit__rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(100%, 560px);
    height: min(100%, 560px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: rgOrbitSpin 48s linear infinite;
}

.rg-social-orbit__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    aspect-ratio: 1;
    animation: rgOrbitRingPulse 6s ease-in-out infinite;
}

.rg-social-orbit__ring--1 {
    width: 92%;
    height: 92%;
    border-color: rgba(255, 255, 255, 0.12);
    animation-duration: 7.5s;
    animation-delay: 0s;
}

.rg-social-orbit__ring--2 {
    width: 72%;
    height: 72%;
    border-color: rgba(255, 255, 255, 0.16);
    animation-duration: 6s;
    animation-delay: -2s;
    animation-direction: reverse;
}

.rg-social-orbit__ring--3 {
    width: 52%;
    height: 52%;
    border-color: rgba(255, 255, 255, 0.2);
    animation-duration: 4.5s;
    animation-delay: -1s;
}

.rg-social-orbit__spark {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.45);
    animation: rgOrbitSpark 4s ease-in-out infinite;
}

.rg-social-orbit__spark--1 {
    top: 22%;
    left: 28%;
    animation-delay: 0s;
}

.rg-social-orbit__spark--2 {
    top: 68%;
    left: 22%;
    animation-delay: 1.1s;
}

.rg-social-orbit__spark--3 {
    top: 30%;
    right: 24%;
    animation-delay: 0.6s;
}

.rg-social-orbit__spark--4 {
    bottom: 18%;
    right: 30%;
    animation-delay: 1.8s;
}

.rg-social-orbit__hub {
    position: relative;
    z-index: 3;
    max-width: 34rem;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.rg-social-orbit__label {
    color: rgba(248, 209, 72, 0.95);
    margin-bottom: 0.65rem;
}

.rg-social-orbit__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    margin: 0 0 0.85rem;
    color: #fff;
    line-height: 1.1;
}

.rg-social-orbit__title-small {
    font-family: var(--font-poppins);
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: var(--fw-medium);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

html[lang="hi"] .rg-social-orbit__title-small {
    font-family: var(--font-hindi);
    text-transform: none;
    letter-spacing: 0.04em;
}

html[lang="hi"] .rg-social-orbit__title-name {
    font-family: var(--font-hindi);
}

.rg-social-orbit__title-name {
    font-family: var(--font-source-sans);
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: var(--fw-bold);
    color: #fff;
    letter-spacing: -0.02em;
}

.rg-social-orbit__lead {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 auto 1.35rem;
    max-width: 28rem;
}

.rg-social-orbit__trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.35rem;
}

.rg-social-orbit__avatars {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rg-social-orbit__avatars img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1a1448;
    margin-left: -10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.rg-social-orbit__avatars img:first-child {
    margin-left: 0;
}

.rg-social-orbit__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.82);
}

.rg-social-orbit__stars {
    color: #f8d148;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.rg-social-orbit__ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.rg-social-orbit__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 0;
    padding: 0.8rem 1.25rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: var(--fw-semibold);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rg-social-orbit__cta--instagram {
    background: linear-gradient(90deg, #f09433 0%, #e6683c 35%, #dc2743 70%, #bc1888 100%);
    box-shadow: 0 10px 28px rgba(225, 48, 108, 0.35);
}

.rg-social-orbit__cta--facebook {
    background: #1877f2;
    box-shadow: 0 10px 28px rgba(24, 119, 242, 0.35);
}

.rg-social-orbit__cta--x {
    background: #111111;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.rg-social-orbit__cta:hover {
    transform: translateY(-2px) scale(1.02);
}

.rg-social-orbit__cta--instagram:hover {
    box-shadow: 0 14px 36px rgba(225, 48, 108, 0.45);
}

.rg-social-orbit__cta--facebook:hover {
    box-shadow: 0 14px 36px rgba(24, 119, 242, 0.45);
}

.rg-social-orbit__cta--x:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

@media (min-width: 768px) {
    .rg-social-orbit__cta {
        min-width: 168px;
        padding: 0.85rem 1.35rem;
        font-size: 0.9rem;
    }
}

.rg-social-orbit__note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0.85rem 0 0;
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

.rg-social-orbit__note::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.65rem;
}

.rg-social-orbit__cards {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.rg-social-orbit__card {
    position: absolute;
    z-index: 2;
    display: block;
    width: 118px;
    pointer-events: auto;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    transform-origin: center center;
    animation: rgOrbitFloat 5s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rg-social-orbit__card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
}

.rg-social-orbit__card-meta {
    padding: 0.55rem 0.6rem 0.65rem;
    background: linear-gradient(180deg, rgba(10, 14, 35, 0.15) 0%, rgba(10, 14, 35, 0.92) 100%);
}

.rg-social-orbit__card-meta strong {
    display: block;
    font-family: var(--font-source-sans);
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rg-social-orbit__card-meta span {
    display: block;
    margin-top: 0.1rem;
    font-family: var(--font-poppins);
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.62);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rg-social-orbit__card--instagram .rg-social-orbit__card-meta span {
    color: #f7b4d4;
}

.rg-social-orbit__card--facebook .rg-social-orbit__card-meta span {
    color: #9ec5ff;
}

.rg-social-orbit__card--x .rg-social-orbit__card-meta span {
    color: #d0d0d0;
}

.rg-social-orbit__card:hover {
    transform: translateY(-6px) scale(1.04) rotate(0deg) !important;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.28);
    z-index: 5;
}

.rg-social-orbit__card--slot-1 {
    top: 7%;
    left: 4%;
    --orbit-rotate: -10deg;
    animation-delay: 0s;
}

.rg-social-orbit__card--slot-2 {
    top: 40%;
    left: 1%;
    --orbit-rotate: 7deg;
    animation-delay: 0.8s;
}

.rg-social-orbit__card--slot-3 {
    bottom: 7%;
    left: 6%;
    --orbit-rotate: -5deg;
    animation-delay: 1.6s;
}

.rg-social-orbit__card--slot-4 {
    top: 7%;
    right: 4%;
    --orbit-rotate: 10deg;
    animation-delay: 0.4s;
}

.rg-social-orbit__card--slot-5 {
    top: 40%;
    right: 1%;
    --orbit-rotate: -7deg;
    animation-delay: 1.2s;
}

.rg-social-orbit__card--slot-6 {
    bottom: 7%;
    right: 6%;
    --orbit-rotate: 5deg;
    animation-delay: 2s;
}

@media (min-width: 768px) {
    .rg-social-orbit__arena {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rg-social-orbit__card {
        width: 132px;
    }

    .rg-social-orbit__card--slot-1 {
        top: 9%;
        left: 7%;
    }

    .rg-social-orbit__card--slot-2 {
        top: 42%;
        left: 3%;
    }

    .rg-social-orbit__card--slot-3 {
        bottom: 9%;
        left: 8%;
    }

    .rg-social-orbit__card--slot-4 {
        top: 9%;
        right: 7%;
    }

    .rg-social-orbit__card--slot-5 {
        top: 42%;
        right: 3%;
    }

    .rg-social-orbit__card--slot-6 {
        bottom: 9%;
        right: 8%;
    }
}

@media (max-width: 767px) {
    .rg-social-orbit {
        padding: 2.5rem 0 3rem;
    }

    .rg-social-orbit .rg-container {
        width: min(1200px, 94%);
    }

    .rg-social-orbit__arena {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        padding: 1.75rem 1rem 1.25rem;
        border-radius: 24px;
    }

    .rg-social-orbit__backdrop {
        position: absolute;
        inset: 0;
        border-radius: inherit;
    }

    .rg-social-orbit__rings {
        width: min(100%, 340px);
        height: min(100%, 340px);
    }

    .rg-social-orbit__glow {
        width: min(260px, 70%);
        height: min(260px, 70%);
    }

    .rg-social-orbit__spark {
        display: none;
    }

    .rg-social-orbit__hub {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: none;
        padding: 0 0.25rem;
        margin-bottom: 1.25rem;
    }

    .rg-social-orbit__trust {
        margin-bottom: 1rem;
    }

    .rg-social-orbit__title {
        margin-bottom: 0.65rem;
    }

    .rg-social-orbit__title-name {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }

    .rg-social-orbit__lead {
        display: block;
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 1.1rem;
        padding: 0 0.25rem;
    }

    .rg-social-orbit__ctas {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.5rem;
    }

    .rg-social-orbit__cta {
        width: 100%;
        padding: 0.72rem 1rem;
        font-size: 0.8125rem;
    }

    .rg-social-orbit__note {
        font-size: 0.75rem;
        margin-top: 0.75rem;
        padding: 0 0.25rem;
    }

    .rg-social-orbit__cards {
        position: relative;
        inset: auto;
        z-index: 3;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
        width: 100%;
        pointer-events: auto;
    }

    .rg-social-orbit__card {
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: 100%;
        transform: none !important;
        animation: none;
    }

    .rg-social-orbit__card--slot-4,
    .rg-social-orbit__card--slot-5,
    .rg-social-orbit__card--slot-6 {
        display: none;
    }

    .rg-social-orbit__card-meta strong {
        font-size: 0.68rem;
    }

    .rg-social-orbit__card-meta span {
        font-size: 0.58rem;
    }
}

@media (max-width: 380px) {
    .rg-social-orbit__arena {
        padding: 1.5rem 0.75rem 1rem;
    }

    .rg-social-orbit__rating {
        flex-direction: column;
        gap: 0.2rem;
        font-size: 0.75rem;
    }

    .rg-social-orbit__cards {
        gap: 0.4rem;
    }
}

@keyframes rgOrbitFloat {

    0%,
    100% {
        transform: translateY(0) rotate(var(--orbit-rotate, 0deg));
    }

    50% {
        transform: translateY(-10px) rotate(calc(var(--orbit-rotate, 0deg) + 2deg));
    }
}

@keyframes rgOrbitSpark {

    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes rgOrbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rgOrbitRingPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.55;
        border-color: rgba(255, 255, 255, 0.12);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.035);
        opacity: 1;
        border-color: rgba(167, 180, 255, 0.42);
    }
}

@keyframes rgOrbitGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.75;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.14);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rg-social-orbit__glow,
    .rg-social-orbit__rings,
    .rg-social-orbit__ring,
    .rg-social-orbit__spark {
        animation: none;
    }
}

/* ── Hanging cards gallery ── */
.rg-hang {
    position: relative;
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #f4faf4 0%, #faf8f2 55%, #f7f5ef 100%);
    overflow: hidden;
}

.rg-hang__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.rg-hang__content {
    position: relative;
    z-index: 1;
}

.rg-hang__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.55;
    will-change: transform;
}

.rg-hang__orb--1 {
    width: 280px;
    height: 280px;
    top: -60px;
    left: -40px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.45) 0%, transparent 70%);
    animation: rgHangOrbDrift1 14s ease-in-out infinite;
}

.rg-hang__orb--2 {
    width: 320px;
    height: 320px;
    top: 20%;
    right: -80px;
    background: radial-gradient(circle, rgba(248, 209, 72, 0.4) 0%, transparent 70%);
    animation: rgHangOrbDrift2 18s ease-in-out infinite;
}

.rg-hang__orb--3 {
    width: 240px;
    height: 240px;
    bottom: -50px;
    left: 35%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.28) 0%, transparent 72%);
    animation: rgHangOrbDrift3 16s ease-in-out infinite;
}

.rg-hang__spark {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 14px 4px rgba(34, 197, 94, 0.25);
    animation: rgHangSparkFloat 6s ease-in-out infinite;
}

.rg-hang__spark--1 {
    top: 18%;
    left: 12%;
    animation-delay: 0s;
}

.rg-hang__spark--2 {
    top: 62%;
    left: 8%;
    animation-delay: 1.2s;
    width: 4px;
    height: 4px;
}

.rg-hang__spark--3 {
    top: 28%;
    right: 15%;
    animation-delay: 0.6s;
    background: rgba(248, 209, 72, 0.7);
    box-shadow: 0 0 12px 3px rgba(248, 209, 72, 0.3);
}

.rg-hang__spark--4 {
    bottom: 22%;
    right: 22%;
    animation-delay: 2s;
}

.rg-hang__spark--5 {
    bottom: 35%;
    left: 48%;
    animation-delay: 1.5s;
    width: 5px;
    height: 5px;
}

.rg-hang__dots {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: radial-gradient(circle at 1px 1px, rgba(34, 197, 94, 0.12) 1px, transparent 0);
    background-size: 32px 32px;
    animation: rgHangDotsShift 24s linear infinite;
    mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

@keyframes rgHangOrbDrift1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, 30px) scale(1.08);
    }
}

@keyframes rgHangOrbDrift2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-35px, 25px) scale(1.06);
    }
}

@keyframes rgHangOrbDrift3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(25px, -20px) scale(1.1);
    }
}

@keyframes rgHangSparkFloat {

    0%,
    100% {
        opacity: 0.35;
        transform: translateY(0) scale(0.9);
    }

    50% {
        opacity: 1;
        transform: translateY(-12px) scale(1.15);
    }
}

@keyframes rgHangDotsShift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 32px 32px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .rg-hang__orb,
    .rg-hang__spark,
    .rg-hang__dots {
        animation: none;
    }
}

@media (max-width: 991px) {
    .rg-hang__orb--1 {
        width: 200px;
        height: 200px;
    }

    .rg-hang__orb--2 {
        width: 220px;
        height: 220px;
    }

    .rg-hang__spark--4,
    .rg-hang__spark--5 {
        display: none;
    }
}

.rg-hang__header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.rg-hang__title {
    font-family: var(--font-source-sans);
    font-size: clamp(1.5rem, 3.5vw, 2.125rem);
    font-weight: var(--fw-bold);
    line-height: 1.25;
    color: var(--color-text-heading);
    margin: 0 0 1.25rem;
}

.rg-hang__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rg-hang__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.35);
}

.rg-hang__stage {
    position: relative;
    padding-top: 0.5rem;
    min-height: 380px;
}

.rg-hang__scroll {
    position: relative;
    z-index: 2;
}

.rg-hang__row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(0.5rem, 1.5vw, 1.25rem);
    padding: 0 clamp(0.25rem, 1.5vw, 1rem);
    margin-top: 0.25rem;
}

.rg-hang__item {
    flex: 1 1 0;
    min-width: 0;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

@media (hover: hover) {
    .rg-hang__item:hover {
        transform: translateY(-4px);
    }

    .rg-hang__item:hover .rg-hang__card {
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    }
}

.rg-hang__item--1 {
    padding-top: 0;
}

.rg-hang__item--2 {
    padding-top: 1.25rem;
}

.rg-hang__item--3 {
    padding-top: 2.5rem;
}

.rg-hang__item--4 {
    padding-top: 1.25rem;
}

.rg-hang__item--5 {
    padding-top: 0;
}

.rg-hang__clip {
    display: block;
    width: 26px;
    height: 12px;
    background: #22c55e;
    border-radius: 4px 4px 2px 2px;
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.35);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.rg-hang__string {
    display: block;
    width: 2px;
    flex: 1 1 auto;
    min-height: 8px;
    background: linear-gradient(180deg, #6b7280 0%, #9ca3af 100%);
    border-radius: 999px;
}

.rg-hang__item--1 .rg-hang__string {
    height: 10px;
    flex: none;
}

.rg-hang__item--2 .rg-hang__string {
    height: 22px;
    flex: none;
}

.rg-hang__item--3 .rg-hang__string {
    height: 36px;
    flex: none;
}

.rg-hang__item--4 .rg-hang__string {
    height: 22px;
    flex: none;
}

.rg-hang__item--5 .rg-hang__string {
    height: 10px;
    flex: none;
}

.rg-hang__card {
    width: 100%;
    background: var(--color-background-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease;
}

.rg-hang__wire {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    color: #4b5563;
    pointer-events: none;
    z-index: 1;
}

.rg-hang__card-img {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: var(--color-background-light);
}

.rg-hang__card-body {
    padding: 0.85rem 0.9rem 1rem;
}

.rg-hang__card-body strong {
    display: block;
    font-family: var(--font-source-sans);
    font-size: 0.9375rem;
    font-weight: var(--fw-bold);
    color: var(--color-text-heading);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.rg-hang__card-body span {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--color-text-secondary);
}

@media (max-width: 1100px) {
    .rg-hang__stage {
        min-height: 340px;
    }

    .rg-hang__item {
        max-width: 175px;
    }

    .rg-hang__item--2,
    .rg-hang__item--4 {
        padding-top: 1rem;
    }

    .rg-hang__item--3 {
        padding-top: 2rem;
    }

    .rg-hang__item--2 .rg-hang__string {
        height: 18px;
    }

    .rg-hang__item--3 .rg-hang__string {
        height: 28px;
    }

    .rg-hang__item--4 .rg-hang__string {
        height: 18px;
    }

    .rg-hang__card-body {
        padding: 0.7rem 0.75rem 0.85rem;
    }

    .rg-hang__card-body strong {
        font-size: 0.8125rem;
    }

    .rg-hang__card-body span {
        font-size: 0.6875rem;
    }
}

@media (max-width: 991px) {
    .rg-hang {
        padding: 2.75rem 0 3rem;
    }

    .rg-hang .rg-container {
        width: 100%;
        max-width: 100%;
    }

    .rg-hang__header {
        margin-bottom: 1.75rem;
        padding: 0 1rem;
    }

    .rg-hang__title {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
        padding: 0 0.25rem;
    }

    .rg-hang__stage {
        min-height: auto;
        padding-top: 0;
    }

    .rg-hang__wire {
        display: none;
    }

    .rg-hang__scroll {
        overflow: hidden;
        margin: 0 -0.25rem;
        mask-image: linear-gradient(90deg,
                transparent 0%,
                #000 6%,
                #000 94%,
                transparent 100%);
    }

    .rg-hang__row {
        display: flex;
        gap: 0.85rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 1rem;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 1rem 1.25rem;
        margin-top: 0;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .rg-hang__row::-webkit-scrollbar {
        display: none;
    }

    .rg-hang__item {
        flex: 0 0 min(70vw, 210px);
        max-width: none;
        padding-top: 0 !important;
        scroll-snap-align: center;
    }

    .rg-hang__string {
        display: none;
    }

    .rg-hang__clip {
        margin-bottom: 0.35rem;
    }

    .rg-hang__card-body strong {
        font-size: 0.9rem;
    }

    .rg-hang__card-body span {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .rg-hang {
        padding: 2.25rem 0 2.5rem;
    }

    .rg-hang__header {
        margin-bottom: 1.5rem;
    }

    .rg-hang__cta {
        width: calc(100% - 2rem);
        max-width: 320px;
        padding: 0.8rem 1.5rem;
    }

    .rg-hang__item {
        flex: 0 0 min(78vw, 240px);
    }

    .rg-hang__card {
        border-radius: 16px;
    }

    .rg-hang__card-body {
        padding: 0.75rem 0.8rem 0.9rem;
    }
}

@media (max-width: 480px) {
    .rg-hang__title {
        font-size: 1.25rem;
        line-height: 1.35;
    }

    .rg-hang__item {
        flex: 0 0 82vw;
    }

    .rg-hang__row {
        gap: 0.65rem;
        padding-inline: 0.85rem;
    }
}

@media (max-width: 380px) {
    .rg-hang__header {
        padding: 0 0.75rem;
    }

    .rg-hang__cta {
        font-size: 0.875rem;
    }

    .rg-hang__item {
        flex: 0 0 86vw;
    }
}

/* ── Social profile boxes (feed widgets) ── */
.rg-profiles {
    padding: 5rem 0;
    background: var(--color-background-white);
}

.rg-profiles h2 {
    font-family: var(--font-source-sans);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: var(--fw-bold);
    margin: 0 0 2rem;
    color: var(--color-text-primary);
}

.rg-profiles__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.rg-profiles__grid--single {
    max-width: 420px;
    margin: 0 auto;
}

.rg-profiles--social {
    padding: 5rem 0;
    background: var(--color-background-light);
}

.rg-profiles--social h2 {
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .rg-profiles__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rg-profiles__grid--single {
        grid-template-columns: 1fr;
    }
}

.rg-profile-box--link {
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem 1.75rem;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.rg-profile-box--link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.rg-profile-box--link .rg-profile-box__body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rg-profile-box {
    display: flex;
    flex-direction: column;
    background: var(--color-background-white);
    border: 1px solid var(--color-border-light);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.rg-profile-box:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.rg-profile-box__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem 1.25rem;
    color: inherit;
    transition: background 0.15s;
}

.rg-profile-box__header:hover {
    background: var(--color-background-light);
}

.rg-profile-box__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    font-family: var(--font-poppins);
    font-size: 1.35rem;
    font-weight: var(--fw-semibold);
    color: var(--color-text-white);
    background: var(--color-background-dark);
    border: 3px solid var(--color-background-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.rg-profile-box__platform {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.rg-profile-box__body h3 {
    font-family: var(--font-source-sans);
    font-size: 1.15rem;
    font-weight: var(--fw-bold);
    margin: 0 0 0.25rem;
    color: var(--color-text-heading);
}

.rg-profile-box__body p {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0 0 1rem;
}

.rg-profile-box__cta {
    display: inline-block;
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: var(--fw-semibold);
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: var(--color-background-light);
    color: var(--color-text-primary);
    transition: background 0.15s;
}

.rg-profile-box:hover .rg-profile-box__cta {
    background: var(--color-card-cream);
}

.rg-profile-box--instagram .rg-profile-box__platform {
    color: #E1306C;
}

.rg-profile-box--instagram .rg-profile-box__avatar {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.rg-profile-box--facebook .rg-profile-box__platform {
    color: #1877F2;
}

.rg-profile-box--facebook .rg-profile-box__avatar {
    background: #1877F2;
}

.rg-profile-box--x .rg-profile-box__platform {
    color: #000000;
}

.rg-profile-box--x .rg-profile-box__avatar {
    background: #000000;
}

.rg-profile-box__posts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1rem 1.25rem;
    border-top: 1px solid var(--color-border-light);
    background: #FAFAFA;
}

.rg-social-post {
    display: block;
    background: var(--color-background-white);
    border: 1px solid var(--color-border-light);
    border-radius: 14px;
    overflow: hidden;
    color: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.rg-social-post:hover {
    border-color: #CBD5E1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.rg-social-post__image {
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-background-light);
}

.rg-social-post__content {
    padding: 0.85rem 1rem 1rem;
}

.rg-social-post__content p {
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rg-social-post__content time {
    font-family: var(--font-poppins);
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.rg-social-post--empty {
    padding: 1rem;
    text-align: center;
    cursor: default;
}

.rg-social-post--empty:hover {
    border-color: var(--color-border-light);
    box-shadow: none;
}

.rg-social-post--empty p {
    font-family: var(--font-poppins);
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin: 0;
}

.rg-social-post--empty a {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: var(--fw-semibold);
    color: #E1306C;
}

/* ── YouTube channel ── */
.rg-youtube {
    position: relative;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    background:
        radial-gradient(circle at 50% 40%, rgba(88, 101, 242, 0.28) 0%, transparent 68%),
        linear-gradient(165deg, #0f1535 0%, #151b3d 38%, #1a1448 100%);
    overflow: hidden;
    color: #fff;
}

.rg-youtube__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rg-youtube__dots {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 85%);
}

.rg-youtube__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}

.rg-youtube__glow--1 {
    width: 420px;
    height: 420px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(124, 92, 255, 0.4) 0%, rgba(88, 101, 242, 0.12) 45%, transparent 72%);
    animation: rgYoutubeGlow 12s ease-in-out infinite;
}

.rg-youtube__glow--2 {
    width: 340px;
    height: 340px;
    bottom: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.28) 0%, transparent 70%);
    animation: rgYoutubeGlow 14s ease-in-out infinite reverse;
}

.rg-youtube__glow--3 {
    width: 260px;
    height: 260px;
    top: 45%;
    left: -40px;
    background: radial-gradient(circle, rgba(26, 20, 72, 0.55) 0%, transparent 70%);
    animation: rgYoutubeGlow 16s ease-in-out infinite 2s;
}

.rg-youtube__header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2.25rem;
}

.rg-youtube__label {
    color: var(--color-brand-primary);
    letter-spacing: 0.12em;
}

.rg-youtube__title {
    font-family: var(--font-source-sans);
    font-size: clamp(1.85rem, 3.8vw, 2.5rem);
    font-weight: var(--fw-bold);
    margin: 0 0 0.85rem;
    color: #fff;
    line-height: 1.15;
}

.rg-youtube__lead {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

.rg-youtube__channel-bar {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    margin-bottom: 2rem;
    padding: 1.35rem 1.5rem;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(248, 209, 72, 0.18);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.rg-youtube__channel-identity {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex: 1 1 280px;
    min-width: 0;
}

.rg-youtube__avatar {
    position: relative;
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(248, 209, 72, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.rg-youtube__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rg-youtube__avatar-badge {
    position: absolute;
    right: -2px;
    bottom: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ff0000;
    color: #fff;
    border: 2px solid #151b3d;
}

.rg-youtube__channel-copy {
    min-width: 0;
}

.rg-youtube__channel-name {
    font-family: var(--font-source-sans);
    font-size: 1.3rem;
    font-weight: var(--fw-bold);
    margin: 0 0 0.1rem;
    color: #fff;
}

.rg-youtube__channel-handle {
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    color: var(--color-brand-primary);
    margin: 0 0 0.45rem;
    font-weight: var(--fw-ui);
}

.rg-youtube__channel-desc {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
    max-width: 36rem;
}

.rg-youtube__channel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    flex-shrink: 0;
}

.rg-youtube__subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.82rem 1.4rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: var(--fw-semibold);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff2d2d 0%, #cc0000 100%);
    box-shadow: 0 12px 32px rgba(255, 0, 0, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rg-youtube__subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255, 0, 0, 0.42);
}

.rg-youtube__visit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1.25rem;
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(248, 209, 72, 0.35);
    background: rgba(248, 209, 72, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.rg-youtube__visit:hover {
    background: rgba(248, 209, 72, 0.14);
    border-color: rgba(248, 209, 72, 0.55);
    transform: translateY(-1px);
}

.rg-youtube__showcase,
.rg-youtube__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {

    .rg-youtube__showcase,
    .rg-youtube__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {

    .rg-youtube__showcase,
    .rg-youtube__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.rg-youtube__featured,
.rg-youtube__video {
    display: flex;
    flex-direction: column;
    height: 100%;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rg-youtube__video-media {
    padding: 0.55rem;
    background: linear-gradient(180deg, rgba(248, 209, 72, 0.08) 0%, transparent 100%);
}

@media (hover: hover) {

    .rg-youtube__featured:hover,
    .rg-youtube__video:hover {
        transform: translateY(-3px);
        border-color: rgba(248, 209, 72, 0.28);
        box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    }
}

.rg-youtube__featured-frame {
    position: relative;
    padding: 0.65rem;
    background: linear-gradient(180deg, rgba(248, 209, 72, 0.08) 0%, transparent 100%);
}

.rg-youtube__more {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.rg-youtube__embed {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
}

.rg-youtube__embed--featured {
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.rg-youtube__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.rg-youtube__placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    aspect-ratio: 16 / 9;
    text-decoration: none;
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(26, 35, 126, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%),
        radial-gradient(circle at 25% 25%, rgba(248, 209, 72, 0.12) 0%, transparent 55%);
    transition: background 0.25s ease;
}

.rg-youtube__placeholder--featured {
    border-radius: 16px;
    min-height: 280px;
}

.rg-youtube__placeholder:hover {
    background:
        linear-gradient(145deg, rgba(26, 35, 126, 0.55) 0%, rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(circle at 25% 25%, rgba(248, 209, 72, 0.18) 0%, transparent 55%);
}

.rg-youtube__play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(255, 0, 0, 0.38);
}

.rg-youtube__placeholder-tag {
    font-family: var(--font-poppins);
    font-size: 0.72rem;
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rg-youtube__video-foot {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.85rem 1rem;
    padding: 0.9rem 1rem 1rem;
    margin-top: auto;
}

.rg-youtube__video-foot--compact {
    grid-template-columns: auto 1fr;
    padding: 0.85rem 1rem 1rem;
}

.rg-youtube__episode {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.04em;
    color: var(--color-brand-primary);
    background: rgba(248, 209, 72, 0.12);
    border: 1px solid rgba(248, 209, 72, 0.22);
}

.rg-youtube__video-meta {
    min-width: 0;
}

.rg-youtube__video-meta strong {
    display: block;
    font-family: var(--font-source-sans);
    font-size: 0.9375rem;
    font-weight: var(--fw-bold);
    color: #fff;
    margin-bottom: 0.25rem;
    line-height: 1.35;
}

.rg-youtube__video-foot--compact .rg-youtube__video-meta strong {
    font-size: 0.9rem;
}

.rg-youtube__video-meta span {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.rg-youtube__watch {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.9rem;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.rg-youtube__watch::after {
    content: '↗';
    font-size: 0.85em;
    opacity: 0.75;
}

.rg-youtube__watch:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(248, 209, 72, 0.35);
}

@keyframes rgYoutubeGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(18px, 12px) scale(1.05);
    }
}

@media (max-width: 991px) {
    .rg-youtube__header {
        margin-bottom: 1.75rem;
        padding: 0 0.35rem;
    }

    .rg-youtube__channel-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 1.15rem;
    }

    .rg-youtube__channel-actions {
        width: 100%;
    }

    .rg-youtube__subscribe,
    .rg-youtube__visit {
        flex: 1 1 auto;
        justify-content: center;
    }

    .rg-youtube__grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 0.35rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .rg-youtube__grid::-webkit-scrollbar {
        display: none;
    }

    .rg-youtube__video {
        flex: 0 0 min(78vw, 300px);
        scroll-snap-align: center;
    }
}

@media (max-width: 640px) {
    .rg-youtube__channel-identity {
        flex-direction: column;
        text-align: center;
    }

    .rg-youtube__channel-desc {
        font-size: 0.8125rem;
    }

    .rg-youtube__channel-actions {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rg-youtube__glow {
        animation: none;
    }

    .rg-youtube__featured,
    .rg-youtube__video {
        transition: none;
    }
}

/* ── NGO: Jabalpur Seva Sangh ── */
.rg-ngo {
    position: relative;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f4f7f2 0%, #e8efe4 48%, #f7faf5 100%);
    color: #1a2a1c;
}

.rg-ngo__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rg-ngo__wash {
    position: absolute;
    inset: -10% 20% auto;
    height: 55%;
    background: radial-gradient(ellipse at center, rgba(46, 125, 70, 0.12) 0%, transparent 70%);
}

.rg-ngo__leaf {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
}

.rg-ngo__leaf--1 {
    width: 280px;
    height: 280px;
    top: -60px;
    left: -40px;
    background: radial-gradient(circle, rgba(56, 142, 60, 0.22) 0%, transparent 70%);
    animation: rgNgoFloat 14s ease-in-out infinite;
}

.rg-ngo__leaf--2 {
    width: 320px;
    height: 320px;
    bottom: -80px;
    right: -50px;
    background: radial-gradient(circle, rgba(248, 209, 72, 0.2) 0%, transparent 70%);
    animation: rgNgoFloat 16s ease-in-out infinite reverse;
}

.rg-ngo__header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.rg-ngo__label {
    color: #2e7d46;
    margin-bottom: 0.65rem;
}

.rg-ngo__brand {
    font-family: var(--font-source-sans);
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #14301c;
    margin: 0 0 0.85rem;
}

.rg-ngo__lead {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3d5242;
    margin: 0 auto;
}

.rg-ngo__gallery {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    grid-template-rows: 180px 180px;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.rg-ngo__shot {
    position: relative;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(20, 48, 28, 0.12);
}

.rg-ngo__shot--hero {
    grid-row: 1 / span 2;
}

.rg-ngo__shot--tall {
    grid-row: 1 / span 2;
}

.rg-ngo__shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s ease;
}

@media (hover: hover) {
    .rg-ngo__shot:hover img {
        transform: scale(1.05);
    }
}

.rg-ngo__shot-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.85rem;
    padding: 1.5rem 1.15rem 1.1rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(180deg, transparent 0%, rgba(15, 40, 22, 0.82) 100%);
}

.rg-ngo__badge {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    font-family: var(--font-poppins);
    font-size: 0.6875rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a2a1c;
    background: var(--color-brand-primary);
    border-radius: 999px;
}

.rg-ngo__pillars {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
    .rg-ngo__pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .rg-ngo__pillars {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.rg-ngo__pillar {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(46, 125, 70, 0.12);
    box-shadow: 0 10px 28px rgba(20, 48, 28, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
    .rg-ngo__pillar:hover {
        transform: translateY(-3px);
        border-color: rgba(46, 125, 70, 0.28);
        box-shadow: 0 16px 36px rgba(20, 48, 28, 0.12);
    }
}

.rg-ngo__pillar-photo {
    height: 140px;
    background-size: cover;
    background-position: center;
}

.rg-ngo__pillar-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.95rem 1rem 1.1rem;
}

.rg-ngo__pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 0.15rem;
}

.rg-ngo__pillar-icon--education {
    color: #1f6b38;
    background: rgba(46, 125, 70, 0.12);
}

.rg-ngo__pillar-icon--community {
    color: #1a5f8a;
    background: rgba(26, 95, 138, 0.1);
}

.rg-ngo__pillar-icon--health {
    color: #b42318;
    background: rgba(180, 35, 24, 0.1);
}

.rg-ngo__pillar-icon--legal {
    color: #6b4f12;
    background: rgba(248, 209, 72, 0.28);
}

.rg-ngo__pillar strong {
    display: block;
    font-family: var(--font-source-sans);
    font-size: 0.975rem;
    font-weight: var(--fw-bold);
    color: #14301c;
    line-height: 1.3;
}

.rg-ngo__pillar-body>span:last-child {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #516657;
}

.rg-ngo__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.25rem;
}

.rg-ngo__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.75rem;
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    font-weight: var(--fw-semibold);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #2e7d46 0%, #1f5c32 100%);
    box-shadow: 0 12px 28px rgba(31, 92, 50, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rg-ngo__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(31, 92, 50, 0.36);
}

.rg-ngo__note {
    margin: 0;
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    color: #5a7260;
}

@keyframes rgNgoFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(16px, 10px);
    }
}

@media (max-width: 991px) {
    .rg-ngo__gallery {
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 160px 160px;
    }

    .rg-ngo__shot--tall {
        grid-row: auto;
    }

    .rg-ngo__shot:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .rg-ngo__shot:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .rg-ngo__shot:nth-child(4) {
        display: none;
    }
}

@media (max-width: 640px) {
    .rg-ngo {
        padding: 2.75rem 0 3.25rem;
    }

    .rg-ngo__leaf {
        opacity: 0.28;
        filter: blur(48px);
    }

    .rg-ngo__leaf--1,
    .rg-ngo__leaf--2 {
        width: 180px;
        height: 180px;
    }

    .rg-ngo__header {
        text-align: left;
        max-width: none;
        margin: 0 0 1.35rem;
    }

    .rg-ngo__brand {
        font-size: clamp(1.65rem, 7.5vw, 2.05rem);
        margin-bottom: 0.65rem;
    }

    .rg-ngo__lead {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin: 0;
    }

    .rg-ngo__gallery {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 0.55rem;
        margin-bottom: 1.35rem;
    }

    .rg-ngo__shot {
        border-radius: 14px;
        min-height: 0;
        box-shadow: 0 8px 22px rgba(20, 48, 28, 0.1);
    }

    .rg-ngo__shot--hero {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16 / 10;
    }

    .rg-ngo__shot--tall {
        grid-row: auto;
    }

    .rg-ngo__shot:nth-child(2),
    .rg-ngo__shot:nth-child(3),
    .rg-ngo__shot:nth-child(4) {
        display: block;
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1;
    }

    .rg-ngo__shot-cap {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        padding: 1.15rem 0.85rem 0.85rem;
        font-size: 0.8rem;
    }

    .rg-ngo__badge {
        padding: 0.3rem 0.65rem;
        font-size: 0.625rem;
    }

    .rg-ngo__pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
        margin-bottom: 1.35rem;
    }

    .rg-ngo__pillar {
        border-radius: 14px;
    }

    .rg-ngo__pillar-photo {
        height: 92px;
    }

    .rg-ngo__pillar-body {
        gap: 0.25rem;
        padding: 0.7rem 0.7rem 0.85rem;
    }

    .rg-ngo__pillar-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        margin-bottom: 0.1rem;
    }

    .rg-ngo__pillar-icon svg {
        width: 16px;
        height: 16px;
    }

    .rg-ngo__pillar strong {
        font-size: 0.85rem;
        line-height: 1.25;
    }

    .rg-ngo__pillar-body > span:last-child {
        font-size: 0.72rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .rg-ngo__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .rg-ngo__cta {
        width: 100%;
        padding: 0.95rem 1.25rem;
    }

    .rg-ngo__note {
        text-align: center;
    }
}

@media (max-width: 380px) {
    .rg-ngo__pillars {
        gap: 0.5rem;
    }

    .rg-ngo__pillar-photo {
        height: 80px;
    }

    .rg-ngo__pillar strong {
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .rg-ngo__leaf,
    .rg-ngo__shot img {
        animation: none;
        transition: none;
    }
}

/* ── News ── */
.rg-news {
    padding: 5rem 0;
    background: var(--color-background-white);
}

.rg-news h2 {
    font-family: var(--font-source-sans);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: var(--fw-bold);
    margin: 0 0 2rem;
    color: var(--color-text-primary);
}

.rg-news__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .rg-news__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

.rg-news__item {
    background: var(--color-card-cream);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.rg-news__item--featured {
    background: var(--color-background-dark);
    color: var(--color-text-white);
}

.rg-news__item--featured b,
.rg-news__item--featured strong {
    color: var(--color-text-white);
}

.rg-news__tag {
    font-size: 0.68rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-brand-primary);
    margin-bottom: 0.75rem;
}

.rg-news__item h3 {
    font-size: 1.05rem;
    font-weight: var(--fw-bold);
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.rg-news__item p {
    font-size: 0.875rem;
    font-weight: var(--fw-body);
    opacity: 0.8;
    margin: 0 0 1rem;
    flex: 1;
    line-height: 1.5;
}

.rg-news__item time {
    font-size: 0.78rem;
    font-weight: var(--fw-medium);
    opacity: 0.55;
}

/* ── Contact ── */
.rg-contact {
    padding: 5rem 0;
    background: var(--color-background-light);
}

.rg-contact h2 {
    font-family: var(--font-source-sans);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: var(--fw-bold);
    margin: 0 0 0.75rem;
    color: var(--color-text-primary);
}

.rg-contact__lead {
    font-family: var(--font-sans);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 42rem;
}

.rg-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .rg-contact__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem;
        min-height: 520px;
    }
}

.rg-contact__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
    background: var(--color-background-white);
    border: 1px solid var(--color-border-light);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .rg-contact__card {
        padding: 1.75rem;
        min-height: 100%;
    }
}

.rg-contact__card h3 {
    font-family: var(--font-source-sans);
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    margin: 0 0 0.35rem;
    color: var(--color-text-heading);
}

.rg-contact__card-sub {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0 0 1rem;
    line-height: 1.5;
}

.rg-contact__card--form .rg-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.rg-contact__card--form .rg-btn-submit {
    margin-top: auto;
}

.rg-contact__map {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 280px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    background: var(--color-background-light);
}

.rg-contact__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.rg-form {
    background: var(--color-background-white);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.rg-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .rg-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

.rg-form input,
.rg-form select,
.rg-form textarea,
.rg-form .rg-form__field {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    font-weight: var(--fw-ui);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    background: var(--color-background-light);
    color: var(--color-text-heading);
    outline: none;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    min-height: 48px;
}

.rg-form__select {
    position: relative;
    width: 100%;
}

.rg-form__select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid var(--color-text-muted);
    border-bottom: 2px solid var(--color-text-muted);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.rg-form select.rg-form__field {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
    background-color: var(--color-background-light);
}

.rg-form select.rg-form__field:invalid,
.rg-form select.rg-form__field option[value=""] {
    color: var(--color-text-muted);
}

.rg-form select.rg-form__field:valid {
    color: var(--color-text-heading);
}

.rg-form input[type="date"].rg-form__field {
    cursor: pointer;
    color: var(--color-text-heading);
}

.rg-form input:focus,
.rg-form select:focus,
.rg-form textarea:focus,
.rg-form .rg-form__field:focus {
    border-color: var(--color-text-primary);
    background: var(--color-background-white);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
}

.rg-form__select:focus-within select {
    border-color: var(--color-text-primary);
    background: var(--color-background-white);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
}

.rg-form textarea {
    resize: vertical;
    min-height: 120px;
}

.rg-btn-submit {
    padding: 0.85rem 1.5rem;
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    font-weight: var(--fw-bold);
    color: var(--color-text-primary);
    background: var(--color-brand-primary);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s;
}

.rg-btn-submit:hover {
    background: var(--color-brand-live-hover);
}

.rg-form__note {
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
    min-height: 1.2em;
    color: #15803d;
}

/* ── Footer ── */
.rg-footer {
    width: 100%;
    font-family: var(--font-poppins);
    color: var(--color-text-white);
    background:
        radial-gradient(circle at 50% 50%, rgba(88, 101, 242, 0.28) 0%, transparent 68%),
        linear-gradient(165deg, #0f1535 0%, #151b3d 38%, #1a1448 100%);
}

.rg-footer__wrap {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .rg-footer__wrap {
        padding: 0 3rem;
    }
}

.rg-footer__bottom {
    padding: 1.15rem 0;
}

.rg-footer__bottom-inner {
    text-align: center;
}

.rg-footer__bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

html[lang="hi"] .rg-footer__bottom p {
    font-family: var(--font-hindi);
}

/* ── Video modal ── */
.rg-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.rg-modal[hidden] {
    display: none;
}

.rg-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.rg-modal__box {
    position: relative;
    width: min(900px, 100%);
    background: var(--color-text-primary);
    border-radius: 12px;
    overflow: hidden;
}

.rg-modal__close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    z-index: 1;
    background: none;
    border: none;
    color: var(--color-background-white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.rg-modal__video {
    aspect-ratio: 16 / 9;
}

.rg-modal__video iframe {
    width: 100%;
    height: 100%;
    border: none;
}