@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap");

:root {
    --burgundy: #7a1236;
    --burgundy-dark: #3c0719;
    --clay: #ae5330;
    --gold: #f2c75c;
    --sun: #ffd86a;
    --cream: #fff8e7;
    --paper: #fffdf8;
    --ink: #202833;
    --muted: #687280;
    --line: rgba(122, 18, 54, 0.16);
    --shadow: 0 24px 70px rgba(60, 7, 25, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 16px clamp(18px, 4vw, 54px);
    background: rgba(255, 253, 248, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.brand {
    order: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--burgundy);
    white-space: nowrap;
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: url("../images/sunroof-logo.png") center / cover no-repeat;
    box-shadow: 0 0 0 4px rgba(242, 199, 92, 0.22);
    flex: 0 0 auto;
}

.site-nav {
    order: 2;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.header-cta {
    order: 3;
}

.language-toggle {
    order: 4;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--burgundy);
    background: #ffffff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.language-toggle:hover {
    background: rgba(122, 18, 54, 0.08);
}

.site-nav a {
    padding: 10px 10px;
    border-radius: 8px;
    color: #4b5260;
    font-weight: 700;
    font-size: 14px;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--burgundy);
    background: rgba(122, 18, 54, 0.08);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
}

.header-cta,
.button.primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--burgundy), var(--clay));
    box-shadow: 0 14px 28px rgba(122, 18, 54, 0.24);
}

.button.secondary {
    color: var(--burgundy);
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.light-button {
    background: #ffffff;
    color: var(--burgundy);
    box-shadow: 0 16px 34px rgba(255, 216, 106, 0.24);
}

.dark-button {
    border-color: var(--line);
}

.menu-toggle {
    order: 5;
    display: none;
    justify-self: end;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--burgundy);
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 900;
}

body.rtl {
    font-family: "Cairo", sans-serif;
    text-align: right;
}

body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl .brand,
body.rtl .button,
body.rtl .site-nav a,
body.rtl .eyebrow {
    font-family: "Cairo", sans-serif;
}

body.rtl h1 {
    font-weight: 900;
    line-height: 1.18;
}

body.rtl h2 {
    font-weight: 800;
    line-height: 1.22;
}

body.rtl h3 {
    font-weight: 700;
    line-height: 1.35;
}

body.rtl p {
    line-height: 1.95;
}

body.rtl .site-header,
body.rtl .hero-content,
body.rtl .banner-copy,
body.rtl .page-hero,
body.rtl .section,
body.rtl .site-footer {
    direction: rtl;
}

body.rtl .site-nav {
    direction: rtl;
}

body.rtl .hero-overlay {
    background:
        linear-gradient(270deg, rgba(60, 7, 25, 0.9), rgba(60, 7, 25, 0.6) 48%, rgba(60, 7, 25, 0.18)),
        linear-gradient(0deg, rgba(60, 7, 25, 0.5), rgba(60, 7, 25, 0.12));
}

body.rtl .banner-actions,
body.rtl .hero-actions,
body.rtl .service-cta-row {
    justify-content: flex-start;
}

body.rtl .invoice-card {
    text-align: right;
}

body.rtl .process-map span {
    left: auto;
    right: 18px;
}

body.rtl .timeline article {
    border-left: 0;
    border-right: 4px solid var(--gold);
}

.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    padding: clamp(96px, 12vw, 140px) clamp(20px, 7vw, 92px);
    overflow: hidden;
    color: #ffffff;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=82");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(60, 7, 25, 0.9), rgba(60, 7, 25, 0.6) 48%, rgba(60, 7, 25, 0.18)),
        linear-gradient(0deg, rgba(60, 7, 25, 0.5), rgba(60, 7, 25, 0.12));
}

.hero-content {
    position: relative;
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--sun);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--burgundy);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

p {
    color: var(--muted);
    line-height: 1.75;
}

.hero p:not(.eyebrow),
.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.metrics-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}

.marketing-banner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding: clamp(46px, 7vw, 84px) clamp(20px, 7vw, 92px);
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 216, 106, 0.38), transparent 28%),
        linear-gradient(135deg, var(--burgundy-dark), var(--burgundy) 48%, var(--clay));
}

.marketing-banner.compact {
    margin: 0;
}

.marketing-banner::after {
    content: "";
    position: absolute;
    inset: auto -10% -28% 42%;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 216, 106, 0.12);
}

.banner-copy,
.invoice-graphic {
    position: relative;
    z-index: 1;
}

.banner-copy h2 {
    max-width: 760px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(36px, 6vw, 72px);
}

.banner-copy p:not(.eyebrow) {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.invoice-graphic {
    min-height: 360px;
}

.sun-disc {
    position: absolute;
    top: 4px;
    right: 36px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, #fff9be 0 18%, transparent 19%),
        radial-gradient(circle, var(--sun), #f4a72e 66%, rgba(244, 167, 46, 0.18) 68%);
    box-shadow: 0 0 0 18px rgba(255, 216, 106, 0.12), 0 0 70px rgba(255, 216, 106, 0.6);
}

.invoice-card {
    position: absolute;
    top: 88px;
    left: 8%;
    width: min(340px, 78%);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
    transform: rotate(-3deg);
}

.invoice-card span {
    display: block;
    color: #687280;
    font-weight: 900;
}

.invoice-card strong {
    display: block;
    margin: 8px 0 22px;
    color: var(--burgundy);
    font-size: 34px;
}

.invoice-line {
    height: 12px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(122, 18, 54, 0.14);
}

.invoice-line.short {
    width: 62%;
}

.saving-stamp {
    display: inline-flex;
    margin-top: 16px;
    padding: 8px 12px;
    border: 2px solid var(--clay);
    border-radius: 8px;
    color: var(--clay);
    font-weight: 900;
    transform: rotate(-4deg);
}

.solar-strip {
    position: absolute;
    right: 8%;
    bottom: 18px;
    display: grid;
    grid-template-columns: repeat(4, 54px);
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    transform: rotate(5deg);
}

.solar-strip span {
    height: 96px;
    border-radius: 6px;
    background:
        linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.34) 49% 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.34) 49% 51%, transparent 52%),
        #214c72;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.metrics-band div {
    padding: 28px clamp(18px, 4vw, 52px);
    background: #ffffff;
}

.metrics-band strong {
    display: block;
    color: var(--burgundy);
    font-size: 34px;
}

.metrics-band span {
    color: var(--muted);
    font-weight: 700;
}

.section {
    padding: clamp(64px, 9vw, 110px) clamp(20px, 7vw, 92px);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 42px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(32px, 6vw, 76px);
    align-items: center;
}

.split.reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.feature-grid,
.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-grid article,
.values-list article,
.cards-three article,
.contact-card,
.contact-form {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(60, 7, 25, 0.08);
}

.core-team {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 8%, rgba(122, 18, 54, 0.08) 0 1px, transparent 2px) 0 0 / 18px 18px,
        linear-gradient(180deg, #ffffff, #fffdf8);
}

.core-team::before {
    content: "";
    position: absolute;
    left: 0;
    top: clamp(64px, 9vw, 110px);
    width: 8px;
    height: 116px;
    background: var(--burgundy);
}

.team-heading {
    max-width: 900px;
    margin-bottom: 34px;
    padding-left: 30px;
}

.team-heading h2 {
    color: #102332;
    font-size: clamp(38px, 6vw, 72px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    overflow: hidden;
    border: 1px solid rgba(16, 35, 50, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(16, 35, 50, 0.08);
}

.team-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.08 / 1;
    object-fit: cover;
    background: #555555;
}

.team-card div {
    padding: 24px 24px 28px;
}

.team-card h3 {
    margin-bottom: 8px;
    color: #102332;
    font-size: clamp(24px, 2.4vw, 34px);
}

.team-card strong {
    display: block;
    margin-bottom: 16px;
    color: var(--burgundy);
    font-size: 17px;
}

.team-card p {
    margin: 0;
    color: #4e5660;
    font-size: 16px;
    line-height: 1.7;
}

body.rtl .core-team::before {
    left: auto;
    right: 0;
}

body.rtl .team-heading {
    padding-right: 30px;
    padding-left: 0;
}

.feature-grid .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--burgundy);
    background: var(--cream);
    font-weight: 900;
}

.text-link {
    color: var(--burgundy);
    font-weight: 900;
    border-bottom: 2px solid var(--gold);
}

.visual-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(32px, 6vw, 70px);
    align-items: center;
    background: linear-gradient(180deg, #fff8e7, #ffffff);
}

.service-process {
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 216, 106, 0.32), transparent 34%),
        linear-gradient(180deg, #ffffff, #fff8e7);
}

.process-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(145px, 1fr));
    gap: 16px;
}

.process-map::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    top: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--clay));
    border-radius: 999px;
}

.process-map article {
    position: relative;
    min-height: 240px;
    padding: 86px 18px 22px;
    border: 1px solid rgba(122, 18, 54, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(60, 7, 25, 0.1);
}

.process-map article::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 44px;
    width: 18px;
    height: 18px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(122, 18, 54, 0.16);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.process-map span {
    position: absolute;
    top: 18px;
    left: 18px;
    color: var(--burgundy);
    font-size: 13px;
    font-weight: 900;
}

.process-map h3 {
    font-size: 19px;
}

.process-map p {
    font-size: 14px;
    line-height: 1.62;
}

.process-map.large {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-map.large::before {
    display: none;
}

.process-map.large article {
    min-height: 250px;
    padding-top: 84px;
    background:
        linear-gradient(180deg, rgba(255, 248, 231, 0.92), rgba(255, 255, 255, 0.96));
}

.process-map.large article::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 7px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
}

.service-cta-row {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

.services-hero {
    background:
        linear-gradient(110deg, rgba(60, 7, 25, 0.93), rgba(174, 83, 48, 0.66)),
        url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.service-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: start;
}

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

.deliverable-grid article {
    display: grid;
    gap: 10px;
    min-height: 140px;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(60, 7, 25, 0.08);
}

.deliverable-grid strong {
    color: var(--burgundy);
    font-size: 20px;
}

.deliverable-grid span {
    color: var(--muted);
    line-height: 1.6;
}

.map-preview {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, transparent 0 31%, rgba(255, 255, 255, 0.92) 31% 34%, transparent 34%),
        linear-gradient(0deg, transparent 0 42%, rgba(255, 255, 255, 0.92) 42% 45%, transparent 45%),
        #dfe7e3;
    box-shadow: var(--shadow);
}

.map-toolbar {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.map-toolbar span {
    width: 52px;
    height: 34px;
    border-radius: 8px;
    background: #ffffff;
}

.map-toolbar span:first-child {
    background: var(--burgundy);
}

.roof-shape,
.heat-roof {
    position: absolute;
    border: 2px solid var(--burgundy);
    background: rgba(255, 216, 106, 0.42);
}

.roof-one {
    width: 170px;
    height: 90px;
    top: 95px;
    left: 70px;
}

.roof-two {
    width: 130px;
    height: 190px;
    right: 68px;
    top: 82px;
}

.roof-three {
    width: 210px;
    height: 95px;
    left: 110px;
    bottom: 58px;
}

.heat-roof {
    width: 210px;
    height: 170px;
    right: 155px;
    bottom: 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
}

.heat-roof span:nth-child(1) { background: #ffe983; }
.heat-roof span:nth-child(2) { background: #f3a121; }
.heat-roof span:nth-child(3) { background: #fff1a5; }
.heat-roof span:nth-child(4) { background: #b24c36; }

.cards-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin: 0 clamp(20px, 7vw, 92px) clamp(64px, 8vw, 100px);
    padding: clamp(32px, 5vw, 56px);
    border-radius: 8px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(122, 18, 54, 0.96), rgba(174, 83, 48, 0.96)),
        url("https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.cta-band h2 {
    margin-bottom: 0;
}

.page-hero {
    padding: clamp(90px, 12vw, 150px) clamp(20px, 7vw, 92px) clamp(58px, 8vw, 86px);
    color: #ffffff;
    background:
        linear-gradient(110deg, rgba(60, 7, 25, 0.94), rgba(122, 18, 54, 0.76)),
        url("https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.planet-hero {
    background:
        linear-gradient(110deg, rgba(60, 7, 25, 0.92), rgba(122, 18, 54, 0.62)),
        url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.timeline article {
    padding: 26px;
    border-left: 4px solid var(--gold);
    background: #ffffff;
}

.timeline span {
    color: var(--burgundy);
    font-size: 34px;
    font-weight: 900;
}

.tech-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--cream);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    padding: 16px 18px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--line);
    font-weight: 800;
}

.solar-photo {
    min-height: 420px;
    border-radius: 8px;
    background: url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1400&q=82") center/cover;
    box-shadow: var(--shadow);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 24px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    color: #596271;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(122, 18, 54, 0.2);
    border-radius: 8px;
    padding: 14px 15px;
    color: var(--ink);
    font: inherit;
    background: #ffffff;
}

textarea {
    resize: vertical;
}

.contact-form.submitted {
    border-color: rgba(34, 139, 86, 0.42);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px clamp(20px, 7vw, 92px);
    color: #ffffff;
    background: var(--burgundy-dark);
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.site-footer a {
    color: var(--sun);
    font-weight: 900;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
    }

    .menu-toggle {
        display: inline-flex;
        order: 3;
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        order: 4;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .site-nav.open {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .language-toggle {
        justify-self: end;
        order: 2;
    }

    .metrics-band,
    .marketing-banner,
    .split,
    .split.reverse,
    .visual-section,
    .timeline,
    .tech-panel,
    .contact-layout,
    .service-dashboard {
        grid-template-columns: 1fr;
    }

    .cards-three,
    .feature-grid,
    .values-list,
    .team-grid,
    .process-map,
    .process-map.large,
    .deliverable-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-map::before {
        display: none;
    }

    .invoice-graphic {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 82vh;
    }

    .hero-actions,
    .banner-actions,
    .cta-band,
    .site-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .metrics-band,
    .cards-three,
    .feature-grid,
    .values-list,
    .team-grid,
    .process-map,
    .process-map.large,
    .deliverable-grid {
        grid-template-columns: 1fr;
    }

    .process-map article {
        min-height: auto;
    }

    .service-cta-row {
        align-items: stretch;
        flex-direction: column;
    }

    .marketing-banner {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .invoice-graphic {
        min-height: 300px;
    }

    .sun-disc {
        right: 12px;
        width: 118px;
        height: 118px;
    }

    .invoice-card {
        left: 0;
        width: 82%;
    }

    .solar-strip {
        right: 0;
        grid-template-columns: repeat(4, 40px);
    }

    .solar-strip span {
        height: 78px;
    }

    h1 {
        font-size: 40px;
    }
}
