/* 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 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;
}

.rg-hero-swiper {
    width: 100%;
}

.rg-hero-slide {
    display: block;
    width: 100%;
    min-height: 56vw;
    max-height: 750px;
    background-color: var(--color-brand-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

@media (min-width: 640px) {
    .rg-hero-slide {
        min-height: 50vw;
    }
}

@media (min-width: 1024px) {
    .rg-hero-slide {
        min-height: 39vw;
    }
}

.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;
}

.rg-hero .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(26, 26, 26, 0.25);
    opacity: 1;
}

.rg-hero .swiper-pagination-bullet-active {
    background: var(--color-text-primary);
    width: 24px;
    border-radius: 4px;
}

.rg-hero-prev,
.rg-hero-next {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: var(--color-background-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    color: var(--color-text-primary);
    transition: background 0.15s;
}

.rg-hero-prev:hover,
.rg-hero-next:hover {
    background: var(--color-background-light);
}

.rg-hero-prev {
    left: 1.5rem;
}

.rg-hero-next {
    right: 1.5rem;
}

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

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

@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: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .rg-cards__track {
        flex-direction: row;
        gap: 22px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 1rem;
    }

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

.rg-card {
    flex-shrink: 0;
    width: 92%;
    margin: 0 auto;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    background: var(--color-background-white);
}

@media (min-width: 640px) {
    .rg-card {
        width: calc(50% - 11px);
        margin: 0;
        min-height: 668px;
    }
}

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

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

.rg-card__head {
    background: var(--color-card-cream);
    padding: 1.5rem 1.5rem 1.25rem;
    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.25rem;
    font-weight: var(--fw-bold);
    color: #2B2A2A;
    margin: 0 0 0.25rem;
    line-height: 1.2;
    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;
    }
}

@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.55;
}

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

.rg-card__img {
    position: relative;
    flex: 1;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

@media (min-width: 640px) {
    .rg-card__img {
        min-height: 0;
        aspect-ratio: auto;
    }
}

.rg-card__more {
    display: none;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.85rem;
    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 {
        height: 34px;
        font-size: 0.8125rem;
        padding: 0.2rem 1rem;
    }
}

.rg-cards__prev,
.rg-cards__next {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    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.5rem;
}

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

@media (min-width: 640px) {

    .rg-cards__prev,
    .rg-cards__next {
        display: flex;
    }
}

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

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

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

.rg-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

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

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

.rg-about p {
    font-family: var(--font-sans);
    font-weight: var(--fw-body);
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin: 0 0 1rem;
}

.rg-about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.rg-about__stats div {
    background: var(--color-background-white);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.rg-about__stats strong {
    display: block;
    font-family: var(--font-source-sans);
    font-size: 1.75rem;
    font-weight: var(--fw-bold);
    color: var(--color-text-heading);
    line-height: 1.2;
}

.rg-about__stats span {
    font-size: 0.7rem;
    font-weight: var(--fw-medium);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.rg-social-orbit__arena {
    position: relative;
    min-height: 620px;
    padding: 2.5rem 1.25rem 2rem;
    border-radius: 32px;
    overflow: hidden;
    container-type: size;
    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, 55cqmin);
    height: min(340px, 55cqmin);
    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);
}

.rg-social-orbit__rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.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.08);
    aspect-ratio: 1;
}

.rg-social-orbit__ring--1 {
    width: min(92cqmin, 100%);
    height: min(92cqmin, 100%);
    border-color: rgba(255, 255, 255, 0.07);
}

.rg-social-orbit__ring--2 {
    width: min(72cqmin, 78%);
    height: min(72cqmin, 78%);
    border-color: rgba(255, 255, 255, 0.09);
}

.rg-social-orbit__ring--3 {
    width: min(52cqmin, 56%);
    height: min(52cqmin, 56%);
    border-color: rgba(255, 255, 255, 0.11);
}

@supports not (width: 1cqmin) {
    .rg-social-orbit__ring--1 {
        width: min(88vmin, 560px);
        height: min(88vmin, 560px);
    }

    .rg-social-orbit__ring--2 {
        width: min(68vmin, 440px);
        height: min(68vmin, 440px);
    }

    .rg-social-orbit__ring--3 {
        width: min(48vmin, 320px);
        height: min(48vmin, 320px);
    }
}

.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;
        container-type: normal;
    }

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

    .rg-social-orbit__ring--1 {
        width: min(92vw, 340px);
        height: min(92vw, 340px);
    }

    .rg-social-orbit__ring--2 {
        width: min(72vw, 265px);
        height: min(72vw, 265px);
    }

    .rg-social-orbit__ring--3 {
        width: min(52vw, 190px);
        height: min(52vw, 190px);
    }

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

    .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); }
}

/* ── 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;
}

/* ── 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 (rahulgandhi.in style) ── */
.rg-footer {
    width: 100%;
    font-family: var(--font-poppins);
}

.rg-footer__bar {
    width: 100%;
    background: #2B2A2A;
    color: var(--color-text-white);
    padding: 1.25rem 0;
}

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

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

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

.rg-footer__title {
    text-align: center;
    color: var(--color-text-white);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    .rg-footer__title {
        font-size: 1.875rem;
        margin-bottom: 1.25rem;
    }
}

.rg-footer__links {
    display: grid;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(3, auto);
    justify-items: start;
    column-gap: 0.75rem;
    row-gap: 1rem;
}

.rg-footer__links>.rg-footer__link:last-child {
    grid-column: 1 / -1;
    justify-self: center;
}

@media (min-width: 768px) {
    .rg-footer__links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: auto;
        gap: 0.75rem 2.5rem;
    }

    .rg-footer__links>.rg-footer__link:last-child {
        grid-column: auto;
        justify-self: auto;
    }
}

.rg-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-white);
    text-decoration: none;
    transition: color 0.15s;
}

.rg-footer__link svg {
    flex-shrink: 0;
    color: var(--color-text-white);
    transition: color 0.15s;
}

.rg-footer__link span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-white);
    transition: color 0.15s;
}

.rg-footer__link--newsletter:hover svg,
.rg-footer__link--newsletter:hover span {
    color: #3B82F6;
}

.rg-footer__link--whatsapp:hover svg,
.rg-footer__link--whatsapp:hover span {
    color: #25D366;
}

.rg-footer__link--x:hover svg,
.rg-footer__link--x:hover span {
    color: #000000;
}

.rg-footer__link--youtube:hover svg,
.rg-footer__link--youtube:hover span {
    color: #FF0000;
}

.rg-footer__link--facebook:hover svg,
.rg-footer__link--facebook:hover span {
    color: #1877F2;
}

.rg-footer__link--instagram:hover svg,
.rg-footer__link--instagram:hover span {
    color: #E1306C;
}

.rg-footer__link--linkedin:hover svg,
.rg-footer__link--linkedin:hover span {
    color: #0A66C2;
}

/* ── 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;
}