:root {
    --ink: #0b1f3a;
    --slate: #1e3a5f;
    --clay: #f5f9ff;
    --sand: #eef4fc;
    --primary: #1a56db;
    --primary-dark: #1240a8;
    --sky: #e8f1ff;
    --copper: #1a56db;
    --amber: #3b82f6;
    --gold: #60a5fa;
    --moss: #1e3a5f;
    --mist: rgba(232, 241, 255, 0.72);
    --line: rgba(30, 58, 95, 0.12);
    --soft: rgba(26, 86, 219, 0.12);
    --radius: 22px;
    --shadow: 0 24px 60px rgba(20, 17, 15, 0.14);
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Outfit", sans-serif;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Soft solar photo behind white page */
.rs-aurora {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(248, 251, 255, 0.9) 0%, rgba(238, 244, 252, 0.86) 45%, rgba(248, 251, 255, 0.92) 100%),
        url('../images/solar-bg.jpg') center top / cover no-repeat fixed;
    opacity: 1;
}
.rs-aurora::before,
.rs-aurora::after {
    content: none;
}

/* Floating solar photo cards */
.rs-solar-float {
    pointer-events: none;
    position: fixed;
    z-index: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(20, 17, 15, 0.14);
    opacity: .22;
    border: 3px solid rgba(255, 255, 255, 0.65);
}
.rs-solar-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rs-solar-float-a {
    width: min(220px, 18vw);
    height: min(280px, 32vw);
    right: 2%;
    top: 42%;
    transform: rotate(6deg);
}
.rs-solar-float-b {
    width: min(200px, 16vw);
    height: min(160px, 18vw);
    left: 1.5%;
    top: 68%;
    transform: rotate(-8deg);
    opacity: .18;
}
@media (max-width: 991px) {
    .rs-solar-float { display: none; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.rs-container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rs-topbar {
    position: relative;
    z-index: 20;
    background: #0b2f6b;
    color: #fff;
    font-size: .86rem;
    padding: .45rem 0;
    font-weight: 500;
}
.rs-topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.rs-topbar-left, .rs-topbar-right {
    display: flex;
    gap: .85rem;
    align-items: center;
    flex-wrap: wrap;
}
.rs-topbar a { color: #fff; text-decoration: none; }
.rs-topbar a:hover { color: #ffd7a8; }
.rs-topbar-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.45);
    display: inline-block;
}
.rs-topbar-hours { opacity: .95; }
.rs-topbar-left i { margin-right: .35rem; font-size: .82rem; }
.rs-topbar-social {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: #fff;
    color: #0b2f6b !important;
    display: inline-grid;
    place-items: center;
    font-size: .85rem;
    transition: .15s ease;
}
.rs-topbar-social:hover {
    background: #f58220;
    color: #fff !important;
}
.rs-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--amber);
    display: inline-block;
}

.rs-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(11, 47, 107, 0.1);
    box-shadow: 0 2px 12px rgba(11, 47, 107, 0.06);
}
.rs-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 96px;
}
.rs-brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    flex-shrink: 0;
}
.rs-brand-logo {
    height: 78px;
    width: auto;
    max-width: min(420px, 62vw);
    object-fit: contain;
    display: block;
}
.rs-brand img:not(.rs-brand-logo) {
    width: 48px; height: 48px; object-fit: contain;
    border-radius: 14px; background: #fff; box-shadow: 0 10px 24px rgba(20,17,15,.08);
}
.rs-brand-mark {
    width: 48px; height: 48px; border-radius: 16px;
    display: grid; place-items: center;
    background:
        radial-gradient(circle at 30% 30%, var(--gold), transparent 40%),
        linear-gradient(145deg, var(--amber), var(--copper));
    color: #fff; font-size: 1.4rem;
    box-shadow: 0 12px 28px rgba(196, 92, 38, 0.35);
}
.rs-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.rs-brand-text strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.rs-brand-text small {
    color: var(--copper);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.rs-menu {
    display: flex; align-items: center; gap: .2rem;
    list-style: none; margin: 0; padding: 0;
}
.rs-menu a {
    padding: .55rem .85rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .94rem;
    color: var(--slate);
    transition: .2s ease;
}
.rs-menu a:hover {
    background: rgba(196, 92, 38, 0.1);
    color: var(--copper);
}

.rs-nav-actions {
    display: flex;
    align-items: center;
    gap: .65rem;
}
.rs-login-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .72rem 1.05rem;
    border-radius: 999px;
    border: 1.5px solid rgba(42, 36, 32, 0.16);
    background: rgba(255,255,255,.7);
    color: var(--ink);
    font-weight: 700;
    font-size: .92rem;
    transition: .2s ease;
}
.rs-login-btn:hover {
    border-color: var(--copper);
    color: var(--copper);
    background: #fff;
}
.rs-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .78rem 1.35rem;
    border-radius: 999px;
    border: 0;
    background: #f58220;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(245, 130, 32, 0.28);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.rs-cta:hover {
    transform: translateY(-2px);
    background: #e06f12;
    box-shadow: 0 14px 28px rgba(245, 130, 32, 0.36);
}
.rs-cta-outline {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,.5);
    box-shadow: none;
}
.rs-cta-dark {
    background: var(--ink);
    box-shadow: 0 14px 30px rgba(20,17,15,.22);
}
.rs-nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
}

/* Hero — solar sunrise scene + multi slider */
.rs-hero {
    position: relative;
    min-height: min(92vh, 880px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(20, 14, 8, .88) 0%, rgba(42, 28, 12, .55) 42%, rgba(120, 55, 10, .28) 72%, rgba(239, 159, 39, .18) 100%),
        linear-gradient(180deg, #1a1208 0%, #3d2208 38%, #8a4a12 68%, #ef9f27 100%);
}
.rs-slides {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: min(92vh, 880px);
}
.rs-slide {
    display: none;
    position: relative;
    min-height: min(92vh, 880px);
    align-items: flex-end;
    background:
        linear-gradient(105deg, rgba(20, 14, 8, .88) 0%, rgba(42, 28, 12, .55) 45%, rgba(196, 92, 38, .22) 100%);
}
.rs-slide.is-active {
    display: flex;
    animation: slideFade .55s ease;
}
.rs-slide[data-has-image="1"] {
    background:
        linear-gradient(105deg, rgba(20, 14, 8, .9) 0%, rgba(42, 28, 12, .58) 45%, rgba(196, 92, 38, .28) 100%),
        var(--slide-photo) center / cover no-repeat;
}
.rs-slide[data-has-image="1"] ~ .rs-solar-sky,
.rs-hero:has(.rs-slide.is-active[data-has-image="1"]) .rs-solar-sky {
    opacity: .35;
    mix-blend-mode: soft-light;
}
@keyframes slideFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}
.rs-slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(20,14,8,.35);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: .2s ease;
}
.rs-slide-nav:hover { background: rgba(239,159,39,.85); border-color: transparent; }
.rs-slide-prev { left: 1rem; }
.rs-slide-next { right: 1rem; }
.rs-slide-dots {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: .45rem;
}
.rs-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255,255,255,.4);
    cursor: pointer;
}
.rs-slide-dot.is-active {
    background: var(--amber);
    width: 28px;
    border-radius: 999px;
}
.rs-solar-sky {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Glowing sun */
.rs-sun {
    position: absolute;
    right: 8%;
    top: 12%;
    width: min(340px, 42vw);
    height: min(340px, 42vw);
}
.rs-sun-core {
    position: absolute;
    inset: 28%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, #fff6d8 0%, #f6c15b 28%, #ef9f27 58%, #c45c26 100%);
    box-shadow:
        0 0 40px 12px rgba(246, 193, 91, .55),
        0 0 100px 40px rgba(239, 159, 39, .35),
        0 0 180px 80px rgba(196, 92, 38, .2);
    animation: sunPulse 5s ease-in-out infinite;
}
.rs-sun-halo {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 193, 91, .35), transparent 68%);
    animation: sunPulse 5s ease-in-out infinite .4s;
}
.rs-sun-rays {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        conic-gradient(
            from 0deg,
            transparent 0deg 8deg,
            rgba(246, 193, 91, .55) 8deg 14deg,
            transparent 14deg 30deg,
            rgba(239, 159, 39, .4) 30deg 36deg,
            transparent 36deg 52deg,
            rgba(246, 193, 91, .5) 52deg 58deg,
            transparent 58deg 74deg,
            rgba(239, 159, 39, .35) 74deg 80deg,
            transparent 80deg 96deg,
            rgba(246, 193, 91, .45) 96deg 102deg,
            transparent 102deg 118deg,
            rgba(239, 159, 39, .4) 118deg 124deg,
            transparent 124deg 140deg,
            rgba(246, 193, 91, .5) 140deg 146deg,
            transparent 146deg 162deg,
            rgba(239, 159, 39, .35) 162deg 168deg,
            transparent 168deg 184deg,
            rgba(246, 193, 91, .45) 184deg 190deg,
            transparent 190deg 206deg,
            rgba(239, 159, 39, .4) 206deg 212deg,
            transparent 212deg 228deg,
            rgba(246, 193, 91, .5) 228deg 234deg,
            transparent 234deg 250deg,
            rgba(239, 159, 39, .35) 250deg 256deg,
            transparent 256deg 272deg,
            rgba(246, 193, 91, .45) 272deg 278deg,
            transparent 278deg 294deg,
            rgba(239, 159, 39, .4) 294deg 300deg,
            transparent 300deg 316deg,
            rgba(246, 193, 91, .5) 316deg 322deg,
            transparent 322deg 338deg,
            rgba(239, 159, 39, .35) 338deg 344deg,
            transparent 344deg 360deg
        );
    filter: blur(1px);
    animation: sunSpin 48s linear infinite;
    mask-image: radial-gradient(circle, transparent 28%, #000 42%, #000 58%, transparent 72%);
}

/* Light beams across sky */
.rs-solar-beams {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(118deg, transparent 42%, rgba(246, 193, 91, .08) 48%, transparent 54%),
        linear-gradient(128deg, transparent 50%, rgba(239, 159, 39, .1) 56%, transparent 62%),
        linear-gradient(108deg, transparent 58%, rgba(255, 230, 170, .07) 64%, transparent 70%);
    animation: beamDrift 12s ease-in-out infinite alternate;
}

/* Rooftop solar panel silhouettes */
.rs-solar-panels {
    position: absolute;
    right: 4%;
    bottom: 14%;
    width: min(420px, 48vw);
    height: min(200px, 28vw);
    display: flex;
    gap: 1.2%;
    align-items: flex-end;
    transform: perspective(600px) rotateX(18deg) rotateZ(-4deg);
    opacity: .55;
}
.rs-solar-panels span {
    flex: 1;
    height: 78%;
    border-radius: 6px;
    background:
        linear-gradient(160deg, rgba(40, 70, 110, .9), rgba(18, 32, 55, .95)),
        repeating-linear-gradient(
            90deg,
            transparent 0 14%,
            rgba(255, 255, 255, .12) 14% 15%
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0 18%,
            rgba(255, 255, 255, .1) 18% 19%
        );
    box-shadow:
        inset 0 0 0 1px rgba(180, 210, 255, .25),
        0 12px 28px rgba(0, 0, 0, .35);
    position: relative;
}
.rs-solar-panels span:nth-child(2) { height: 92%; }
.rs-solar-panels span:nth-child(3) { height: 70%; }
.rs-solar-panels span::after {
    content: "";
    position: absolute;
    inset: 8% 10%;
    background:
        repeating-linear-gradient(90deg, transparent 0 22%, rgba(160, 200, 255, .18) 22% 23%),
        repeating-linear-gradient(0deg, transparent 0 28%, rgba(160, 200, 255, .14) 28% 29%);
    border-radius: 3px;
}

/* Ground horizon */
.rs-horizon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 28%;
    background:
        linear-gradient(180deg, transparent, rgba(20, 14, 8, .55) 40%, rgba(20, 14, 8, .85)),
        radial-gradient(ellipse 120% 80% at 50% 120%, #2a1a0c, transparent);
}
.rs-horizon::before {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: 18%;
    height: 55%;
    background:
        radial-gradient(ellipse 40% 100% at 18% 100%, #1a1208 60%, transparent 61%),
        radial-gradient(ellipse 35% 90% at 48% 100%, #22160a 55%, transparent 56%),
        radial-gradient(ellipse 45% 110% at 78% 100%, #1a1208 58%, transparent 59%);
    opacity: .7;
}

/* Floating sparkles */
.rs-sparkles i {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff6d8;
    box-shadow: 0 0 10px 2px rgba(246, 193, 91, .8);
    animation: sparkle 4.5s ease-in-out infinite;
    opacity: 0;
}
.rs-sparkles i:nth-child(1) { left: 12%; top: 28%; animation-delay: 0s; }
.rs-sparkles i:nth-child(2) { left: 28%; top: 18%; animation-delay: .7s; width: 3px; height: 3px; }
.rs-sparkles i:nth-child(3) { left: 42%; top: 35%; animation-delay: 1.4s; }
.rs-sparkles i:nth-child(4) { left: 58%; top: 22%; animation-delay: .3s; width: 4px; height: 4px; }
.rs-sparkles i:nth-child(5) { left: 68%; top: 42%; animation-delay: 2s; }
.rs-sparkles i:nth-child(6) { left: 78%; top: 30%; animation-delay: 1.1s; width: 3px; height: 3px; }
.rs-sparkles i:nth-child(7) { left: 22%; top: 48%; animation-delay: 2.6s; }
.rs-sparkles i:nth-child(8) { left: 50%; top: 15%; animation-delay: 1.8s; width: 6px; height: 6px; }

.rs-hero-inner {
    position: relative;
    z-index: 2;
    padding: 7.5rem 0 5.5rem;
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
    max-width: 720px;
}
.rs-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    font-size: .86rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    animation: rise .8s ease both;
}
.rs-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.4vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin: 0 0 1rem;
    font-weight: 700;
    animation: rise .9s ease .08s both;
}
.rs-hero p {
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    line-height: 1.65;
    color: rgba(255,255,255,.86);
    max-width: 540px;
    margin: 0 0 1.8rem;
    animation: rise 1s ease .14s both;
}
.rs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    animation: rise 1.05s ease .2s both;
}

.rs-section { padding: 5rem 0; position: relative; z-index: 1; color: var(--ink); }
.rs-section-alt {
    background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,248,238,.82));
    border-block: 1px solid rgba(196, 92, 38, 0.06);
}
.rs-eyebrow {
    display: inline-block;
    color: var(--copper) !important;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .74rem;
    margin-bottom: .7rem;
}
.rs-section h2, .rs-page-hero h1 {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}
.rs-vision h2, .rs-cta-banner h2 {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    color: #fff !important;
}
.rs-section h2 {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    line-height: 1.12;
    margin: 0 0 1rem;
    color: var(--ink) !important;
    max-width: 16ch;
}
.rs-lead {
    color: rgba(42, 36, 32, 0.84) !important;
    font-size: 1.06rem;
    line-height: 1.7;
    max-width: 56ch;
    margin: 0;
    font-weight: 500;
}
.rs-head { margin-bottom: 2.4rem; }

.rs-feature-strip { margin-top: -3.8rem; z-index: 3; }
.rs-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.rs-feature-card {
    background: #fff;
    border: 1px solid rgba(42, 36, 32, 0.07);
    border-radius: calc(var(--radius) + 4px);
    padding: 1.45rem;
    box-shadow: 0 14px 36px rgba(20,17,15,.1);
    transition: transform .25s ease;
}
.rs-feature-card:hover { transform: translateY(-5px) rotate(-0.4deg); }
.rs-feature-card i {
    width: 50px; height: 50px; border-radius: 16px;
    display: grid; place-items: center;
    background: linear-gradient(145deg, rgba(239,159,39,.18), rgba(196,92,38,.12));
    color: var(--copper);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.rs-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 .45rem;
}
.rs-feature-card p {
    margin: 0;
    color: rgba(42,36,32,.7);
    line-height: 1.55;
    font-size: .95rem;
}

.rs-about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
    align-items: center;
}
.rs-about-visual {
    position: relative;
    min-height: 440px;
    border-radius: 32px;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(196,92,38,.25), rgba(20,17,15,.7)),
        linear-gradient(135deg, #3d5c45, #14110f);
    box-shadow: var(--shadow);
    transform: rotate(-1.2deg);
}
.rs-about-visual img {
    width: 100%; height: 100%; object-fit: cover; min-height: 440px;
}
.rs-years {
    position: absolute;
    left: 1.2rem; bottom: 1.2rem;
    background: rgba(255,255,255,.96);
    border-radius: 20px;
    padding: 1rem 1.2rem;
    min-width: 150px;
    box-shadow: 0 12px 30px rgba(20,17,15,.15);
}
.rs-years strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--copper);
    line-height: 1;
}
.rs-check-list { list-style: none; padding: 0; margin: 1.4rem 0; }
.rs-check-list li {
    display: flex; gap: .7rem; align-items: flex-start;
    margin-bottom: .75rem; font-weight: 600;
}
.rs-check-list i { color: var(--copper); margin-top: .12rem; }
.rs-ceo {
    display: flex; align-items: center; gap: .85rem;
    margin-top: 1.4rem; padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}
.rs-ceo-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--copper));
    color: #fff; display: grid; place-items: center; font-weight: 700;
}
.rs-ceo strong { display: block; }
.rs-ceo span { color: rgba(42,36,32,.65); font-size: .92rem; }

.rs-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.rs-stat {
    background:
        linear-gradient(160deg, #2a2420, #14110f);
    color: #fff;
    border-radius: 24px;
    padding: 1.6rem 1.25rem;
    position: relative;
    overflow: hidden;
}
.rs-stat::after {
    content: "";
    position: absolute;
    right: -18px; top: -18px;
    width: 90px; height: 90px; border-radius: 50%;
    background: rgba(239,159,39,.2);
}
.rs-stat .value {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: .35rem;
    color: var(--gold);
}
.rs-stat .label { color: rgba(255,255,255,.74); font-size: .94rem; }

.rs-priority-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
}
.rs-priority {
    padding: 1.7rem;
    border-radius: 24px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 10px 30px rgba(20,17,15,.05);
}
.rs-priority h3 {
    font-family: var(--font-display);
    margin: 0 0 .55rem;
    font-size: 1.2rem;
}
.rs-priority p { margin: 0; color: rgba(42,36,32,.7); line-height: 1.6; }

.rs-vision {
    border-radius: 30px;
    padding: 3rem;
    background:
        radial-gradient(circle at right top, rgba(239,159,39,.28), transparent 35%),
        linear-gradient(125deg, #14110f, #2a2420 55%, #3d5c45);
    color: #fff;
    box-shadow: var(--shadow);
}
.rs-vision h2 {
    color: #fff !important;
    max-width: 15ch;
    margin: 0 0 1rem;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
}
.rs-vision p,
.rs-vision .rs-lead {
    color: rgba(255,255,255,.86) !important;
    max-width: 56ch;
}

.rs-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}
.rs-cards-3 { grid-template-columns: repeat(3, 1fr); }
.rs-person, .rs-blog-card, .rs-event-card, .rs-gallery-item {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.95);
    border-radius: 24px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.rs-person:hover, .rs-blog-card:hover, .rs-event-card:hover, .rs-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.rs-person-photo, .rs-blog-card img, .rs-gallery-item img, .rs-event-card img {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
    background: linear-gradient(145deg, #efe4d4, #d9c5a8);
}
.rs-blog-card img, .rs-event-card img { aspect-ratio: 16 / 10; }
.rs-person-body, .rs-blog-body, .rs-event-body { padding: 1.15rem 1.2rem 1.35rem; }
.rs-person h3, .rs-blog-body h3, .rs-event-body h3 {
    margin: 0 0 .3rem;
    font-family: var(--font-display);
    font-size: 1.08rem;
}
.rs-person span, .rs-meta { color: rgba(42,36,32,.62); font-size: .9rem; }
.rs-blog-body p, .rs-event-body p {
    color: rgba(42,36,32,.7);
    line-height: 1.55;
    margin: .65rem 0 0;
}

.rs-quote {
    background: rgba(255,255,255,.9);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-width: 720px;
    position: relative;
}
.rs-quote::before {
    content: "“";
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(196,92,38,.18);
    position: absolute;
    top: .2rem; left: 1rem;
    line-height: 1;
}
.rs-quote p {
    font-size: 1.22rem;
    line-height: 1.7;
    margin: 0 0 1.2rem;
    position: relative;
}
.rs-stars { color: var(--amber); margin-bottom: .7rem; }

.rs-cta-banner {
    border-radius: 30px;
    padding: 3rem;
    background:
        radial-gradient(circle at right top, rgba(239,159,39,.4), transparent 34%),
        linear-gradient(135deg, #14110f, #3d5c45);
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}
.rs-cta-banner h2 {
    color: #fff !important;
    margin: 0 0 .7rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    max-width: 14ch;
}
.rs-cta-banner p {
    color: rgba(255,255,255,.86) !important;
}
.rs-cta-banner p { color: rgba(255,255,255,.82); margin: 0; max-width: 44ch; }

.rs-contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 1.5rem;
}
.rs-contact-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.rs-contact-card, .rs-form-card {
    background: #fff;
    border: 1px solid rgba(42, 36, 32, 0.08);
    border-radius: 26px;
    padding: 1.7rem;
    box-shadow: 0 16px 40px rgba(20,17,15,.1);
}
.rs-qr-card {
    background: linear-gradient(165deg, #f5f9ff 0%, #fff 55%);
    border: 1px solid rgba(26, 86, 219, 0.14);
    border-radius: 26px;
    padding: 1.5rem;
    text-align: center;
}
.rs-qr-card h3 {
    margin: 0 0 .4rem;
    font-size: 1.15rem;
    color: var(--ink);
}
.rs-qr-card > p {
    margin: 0 0 1rem;
    color: var(--slate);
    font-size: .92rem;
}
.rs-qr-frame {
    display: inline-grid;
    place-items: center;
    padding: .75rem;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(26, 86, 219, 0.12);
    box-shadow: 0 10px 28px rgba(26, 86, 219, 0.12);
}
.rs-qr-frame img {
    display: block;
    border-radius: 8px;
}
.rs-qr-hint {
    margin: .9rem 0 0 !important;
    font-size: .85rem !important;
    color: var(--primary) !important;
    font-weight: 600;
}
.rs-contact-item {
    display: flex; gap: .85rem; margin-bottom: 1.1rem;
}
.rs-contact-item i {
    width: 44px; height: 44px; border-radius: 14px;
    background: var(--soft);
    color: var(--copper);
    display: grid; place-items: center;
}
.rs-form-card .form-control, .rs-form-card .form-select {
    border-radius: 14px;
    border-color: rgba(42,36,32,.14);
    padding: .82rem 1rem;
    background: rgba(255,255,255,.9);
}
.rs-form-card .form-control:focus {
    border-color: var(--copper);
    box-shadow: 0 0 0 .2rem rgba(196,92,38,.12);
}

.rs-partners { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.rs-partner {
    background: rgba(255,255,255,.92);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: .85rem 1.15rem;
    min-width: 140px;
    text-align: center;
    font-weight: 700;
}
.rs-partner img { max-height: 42px; margin: 0 auto; object-fit: contain; }

.rs-footer {
    background: #100e0c;
    color: rgba(246,239,228,.74);
    padding: 3.6rem 0 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}
.rs-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.4rem;
}
.rs-footer h4 {
    color: #fff;
    font-family: var(--font-display);
    margin: 0 0 1rem;
}
.rs-footer a { color: rgba(246,239,228,.74); }
.rs-footer a:hover { color: var(--amber); }
.rs-footer-brand {
    margin-bottom: .75rem;
}
.rs-footer-logo {
    height: 56px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 8px 12px;
}
.rs-footer-link { margin-bottom: .55rem; }
.rs-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .92rem;
}
.rs-social { display: flex; gap: .55rem; margin-top: 1rem; }
.rs-social a {
    width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255,255,255,.08);
}

.rs-page-hero {
    position: relative;
    z-index: 1;
    padding: 4.6rem 0 3rem;
    color: var(--ink);
    background:
        linear-gradient(105deg, rgba(255,255,255,.94) 0%, rgba(247,242,234,.9) 55%, rgba(255,248,235,.88) 100%),
        url('../images/solar-field.jpg') center / cover no-repeat;
    border-bottom: 1px solid rgba(42, 36, 32, 0.08);
}
.rs-page-hero h1 {
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    margin: 0 0 .75rem;
    color: var(--ink);
}
.rs-page-hero p {
    margin: 0;
    color: rgba(42, 36, 32, 0.78);
    max-width: 52ch;
    font-weight: 500;
}
.rs-page-hero .rs-eyebrow {
    color: var(--copper);
}

.alert { border-radius: 16px; margin: 1rem auto; width: min(1160px, calc(100% - 2rem)); }

.rs-whatsapp {
    position: fixed;
    right: 1.2rem; bottom: 1.2rem;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff !important;
    display: grid; place-items: center;
    font-size: 1.65rem;
    box-shadow: 0 14px 30px rgba(37,211,102,.4);
    z-index: 1100;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
}
@keyframes sunSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes sunPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.06); filter: brightness(1.12); }
}
@keyframes beamDrift {
    from { transform: translateX(0) translateY(0); opacity: .85; }
    to { transform: translateX(-18px) translateY(8px); opacity: 1; }
}
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(.6); }
    40% { opacity: 1; transform: translateY(-12px) scale(1); }
    70% { opacity: .4; transform: translateY(-20px) scale(.8); }
}
.rs-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.rs-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 991px) {
    .rs-nav-toggle { display: grid; place-items: center; }
    .rs-menu-wrap {
        display: none;
        position: absolute;
        left: 0; right: 0; top: 100%;
        background: rgba(248,243,234,.98);
        border-bottom: 1px solid var(--line);
        padding: 1rem;
    }
    .rs-menu-wrap.open { display: block; }
    .rs-menu { flex-direction: column; align-items: stretch; }
    .rs-nav-actions { gap: .4rem; }
    .rs-login-btn { padding: .65rem .85rem; font-size: .85rem; }
    .rs-cta { padding: .7rem 1rem; font-size: .88rem; }
    .rs-feature-grid,
    .rs-about-grid,
    .rs-stats,
    .rs-priority-grid,
    .rs-cards,
    .rs-cards-3,
    .rs-contact-grid,
    .rs-footer-grid { grid-template-columns: 1fr; }
    .rs-stats { grid-template-columns: 1fr 1fr; }
    .rs-hero-inner { padding-top: 5.5rem; }
    .rs-sun { right: -5%; top: 6%; opacity: .9; }
    .rs-solar-panels { width: min(280px, 70vw); bottom: 18%; opacity: .4; }
    .rs-cta-banner, .rs-vision { padding: 2rem; }
    .rs-about-visual { transform: none; }
}

@media (max-width: 575px) {
    .rs-stats { grid-template-columns: 1fr; }
    .rs-topbar { display: none; }
    .rs-brand-logo { height: 56px; max-width: 70vw; }
    .rs-nav-actions .rs-login-btn span,
    .rs-brand-text small { display: none; }
}

/* Dark bands keep light eyebrow text */
.rs-vision .rs-eyebrow,
.rs-cta-banner .rs-eyebrow,
.rs-hero .rs-badge {
    color: var(--amber) !important;
}
.rs-vision p.rs-lead,
.rs-cta-banner p {
    color: rgba(255,255,255,.86) !important;
}

.rs-hp { position: absolute !important; left: -9999px !important; height: 0 !important; overflow: hidden !important; }
.rs-captcha { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.rs-captcha img { flex: 0 0 auto; }
.rs-captcha-input { flex: 1; min-width: 160px; }
