/* =========================================================
   SHREE SHIVSAMARTHA POWER SOLUTIONS
   MAIN WEBSITE STYLESHEET
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --navy: #073653;
    --navy-dark: #04283f;

    --blue: #168bd0;
    --blue-dark: #0877b9;

    --green: #8bd12b;
    --green-dark: #62a81c;

    --orange: #ff9817;
    --orange-dark: #ed8200;

    --white: #ffffff;
    --off-white: #f6fafc;

    --text: #163b55;
    --muted: #668096;

    --border: #dce8ef;

    --shadow:
        0 15px 45px rgba(7, 54, 83, 0.09);

    --radius: 18px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   COMMON
========================================================= */

.container {
    width: min(1180px, 90%);
    margin: auto;
}

.section-padding {
    padding: 100px 0;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;

    margin-bottom: 18px;
}

.eyebrow span {
    display: block;

    width: 20px;
    height: 3px;

    background: var(--green);

    border-radius: 10px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;

    text-align: center;
}

.section-heading h2 {

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;

    color: var(--navy);

    margin-bottom: 20px;
}

.section-heading h2 span {
    color: var(--blue);
}

.section-heading p {

    color: var(--muted);

    font-size: 16px;

    max-width: 650px;

    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 18px 0;

    transition: 0.3s;
}

.site-header.scrolled {

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(15px);

    box-shadow:
        0 5px 30px rgba(0, 0, 0, 0.08);

    padding: 12px 0;
}

.nav-container {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* BRAND */

.brand {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.brand-mark {

    position: relative;

    width: 46px;
    height: 46px;
}

.sun {

    position: absolute;

    width: 25px;
    height: 25px;

    border: 4px solid var(--orange);

    border-radius: 50%;

    top: 1px;
    left: 4px;
}

.panel {

    position: absolute;

    width: 18px;
    height: 8px;

    transform: skew(-25deg);

    border-radius: 2px;
}

.panel-one {

    background: var(--blue);

    top: 23px;
    left: 11px;
}

.panel-two {

    background: var(--green);

    top: 29px;
    left: 20px;
}

.panel-three {

    background: var(--blue);

    top: 35px;
    left: 11px;
}

.brand-text strong {

    display: block;

    color: var(--white);

    font-size: 16px;

    line-height: 1.1;
}

.brand-text small {

    display: block;

    color: var(--green);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-top: 3px;
}

.site-header.scrolled .brand-text strong {
    color: var(--navy);
}


/* NAVIGATION */

.main-nav {

    display: flex;

    align-items: center;

    gap: 30px;
}

.main-nav a {

    position: relative;

    color: rgba(255,255,255,0.9);

    font-size: 14px;

    font-weight: 600;

    padding: 8px 0;
}

.site-header.scrolled .main-nav a {
    color: var(--navy);
}

.main-nav a::after {

    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {

    width: 100%;
}


/* NAV BUTTON */

.nav-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: var(--orange);

    color: white;

    padding: 13px 22px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s;
}

.nav-button:hover {

    background: var(--orange-dark);

    transform: translateY(-2px);
}


/* MENU */

.menu-toggle {

    display: none;

    background: none;

    border: 0;

    color: white;

    font-size: 28px;

    cursor: pointer;
}

.site-header.scrolled .menu-toggle {
    color: var(--navy);
}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            var(--navy-dark),
            var(--navy),
            #12677e
        );

    color: white;
}

.hero-pattern {

    position: absolute;

    inset: 0;

    opacity: 0.07;

    background-image:
        linear-gradient(
            135deg,
            transparent 25%,
            white 25%,
            white 50%,
            transparent 50%
        );

    background-size: 70px 70px;
}

.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;

    padding-top: 80px;
}

.hero-content {
    max-width: 650px;
}

.hero-eyebrow {

    color: white;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.2);

    padding: 10px 16px;

    width: fit-content;

    border-radius: 30px;
}

.hero-eyebrow span {
    background: var(--green);
}

.hero h1 {

    font-size: clamp(55px, 7vw, 88px);

    line-height: 0.98;

    letter-spacing: -4px;

    margin: 25px 0;
}

.hero h1 span {
    display: block;
    color: var(--green);
}

.hero-description {

    max-width: 620px;

    font-size: 18px;

    color: rgba(255,255,255,0.8);

    margin-bottom: 35px;
}

.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s;
}

.btn-primary {

    background: var(--blue);

    color: white;
}

.btn-primary:hover {

    background: var(--blue-dark);

    transform: translateY(-3px);
}

.btn-outline {

    border: 2px solid rgba(255,255,255,0.5);

    color: white;
}

.btn-outline:hover {

    background: white;

    color: var(--navy);
}

.hero-points {

    display: flex;

    gap: 25px;

    margin-top: 45px;

    flex-wrap: wrap;
}

.hero-points div {

    display: flex;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,0.8);

    font-size: 12px;

    font-weight: 600;
}

.hero-points span {

    color: var(--green);

    font-size: 16px;
}


/* HERO VISUAL */

.hero-visual {

    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.solar-orbit {

    position: absolute;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 50%;
}

.orbit-one {

    width: 470px;
    height: 470px;
}

.orbit-two {

    width: 600px;
    height: 600px;
}

.solar-house {

    position: relative;

    width: 330px;

    z-index: 2;
}

.house-roof {

    width: 330px;
    height: 150px;

    background:
        linear-gradient(
            145deg,
            #254b60,
            #0d344a
        );

    clip-path:
        polygon(
            0 100%,
            50% 0,
            100% 100%
        );

    position: relative;

    z-index: 2;
}

.solar-panel-large {

    position: absolute;

    top: 50px;
    left: 50px;

    width: 230px;
    height: 85px;

    transform:
        rotate(-10deg)
        skewX(-15deg);

    background:
        repeating-linear-gradient(
            90deg,
            #0a75ae 0,
            #0a75ae 21px,
            #12618c 22px,
            #12618c 23px
        );

    border: 3px solid #75c9ec;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.25);

    z-index: 3;
}

.solar-panel-large::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 27px,
            rgba(255,255,255,0.25) 28px
        );
}

.house-body {

    position: relative;

    width: 290px;
    height: 190px;

    margin: -5px auto 0;

    background: #eef7fa;

    border-radius: 5px;
}

.window {

    position: absolute;

    width: 55px;
    height: 55px;

    background: #2b9dcc;

    border: 6px solid white;
}

.window-one {

    left: 35px;
    top: 35px;
}

.window-two {

    right: 35px;
    top: 35px;
}

.door {

    position: absolute;

    width: 55px;
    height: 105px;

    bottom: 0;
    left: calc(50% - 27px);

    background: var(--orange);

    border-radius: 5px 5px 0 0;
}


/* FLOATING CARDS */

.floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: rgba(255,255,255,0.12);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 14px;

    min-width: 180px;
}

.floating-card strong {

    display: block;

    font-size: 13px;
}

.floating-card small {

    display: block;

    color: rgba(255,255,255,0.65);

    font-size: 10px;
}

.card-icon {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: white;

    color: var(--orange);

    font-size: 20px;
}

.card-solar {

    top: 90px;
    right: 20px;
}

.card-pump {

    bottom: 105px;
    right: 20px;
}

.card-electrical {

    left: 0;
    bottom: 190px;
}


/* SCROLL */

.scroll-indicator {

    position: absolute;

    bottom: 25px;
    right: 5%;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 4px;

    color: rgba(255,255,255,0.5);

    font-size: 9px;

    letter-spacing: 1px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: white;
}

.section-grid {

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 80px;

    align-items: center;
}

.about-content h2 {

    color: var(--navy);

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--blue);
}

.about-content p {

    color: var(--muted);

    margin-bottom: 18px;

    font-size: 16px;
}

.text-link {

    display: inline-block;

    color: var(--blue);

    font-weight: 700;

    font-size: 14px;

    margin-top: 15px;
}

.text-link:hover {
    color: var(--orange);
}


/* ABOUT CARD */

.about-card {

    position: relative;

    padding: 55px 45px;

    background:
        linear-gradient(
            145deg,
            #f2f9fc,
            #ffffff
        );

    border: 1px solid var(--border);

    border-radius: 25px;

    box-shadow: var(--shadow);

    text-align: center;

    overflow: hidden;
}

.about-card-glow {

    position: absolute;

    width: 220px;
    height: 220px;

    background: var(--green);

    opacity: 0.12;

    border-radius: 50%;

    top: -100px;
    right: -80px;
}

.about-icon {

    width: 85px;
    height: 85px;

    display: grid;

    place-items: center;

    margin: auto auto 25px;

    border-radius: 20px;

    background: #e7f4fa;

    color: var(--orange);

    font-size: 38px;
}

.about-card h3 {

    font-size: 27px;

    color: var(--navy);

    line-height: 1.2;

    margin-bottom: 10px;
}

.about-card h3 span {

    display: block;

    color: var(--blue);
}

.about-card p {

    color: var(--muted);

    font-size: 14px;
}

.about-divider {

    height: 1px;

    background: var(--border);

    margin: 30px 0;
}

.about-stat {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;
}

.about-stat strong {

    font-size: 30px;

    color: var(--green-dark);
}

.about-stat span {

    color: var(--muted);

    font-size: 12px;

    text-align: left;
}

.about-stat b {
    color: var(--navy);
}


/* =========================================================
   SOLUTIONS
========================================================= */

.solutions {

    background: var(--off-white);
}

.solutions-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.solution-card {

    position: relative;

    padding: 35px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    display: flex;

    gap: 25px;

    overflow: hidden;

    transition: 0.35s;
}

.solution-card:hover {

    transform: translateY(-6px);

    border-color: var(--blue);

    box-shadow: var(--shadow);
}

.solution-number {

    position: absolute;

    top: 15px;
    right: 25px;

    color: #edf3f6;

    font-size: 55px;

    font-weight: 800;
}

.solution-icon {

    flex-shrink: 0;

    width: 65px;
    height: 65px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background: #e9f5fb;

    color: var(--blue);

    font-size: 27px;

    position: relative;

    z-index: 2;
}

.solution-label {

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;

    margin-bottom: 8px;
}

.solution-content h3 {

    font-size: 23px;

    color: var(--navy);

    margin-bottom: 10px;
}

.solution-content p {

    color: var(--muted);

    font-size: 13px;

    margin-bottom: 17px;
}

.solution-content ul {

    list-style: none;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 7px;

    color: var(--text);

    font-size: 11px;
}

.solution-content li::before {

    content: "✓";

    color: var(--green-dark);

    margin-right: 7px;

    font-weight: 800;
}


/* =========================================================
   WHY US
========================================================= */

.why-us {
    background: white;
}

.why-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.why-card {

    padding: 35px 25px;

    border: 1px solid var(--border);

    border-radius: 16px;

    transition: 0.3s;
}

.why-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.why-icon {

    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    background: #eff8df;

    color: var(--green-dark);

    border-radius: 13px;

    font-size: 23px;

    margin-bottom: 20px;
}

.why-card h3 {

    color: var(--navy);

    font-size: 18px;

    margin-bottom: 10px;
}

.why-card p {

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects {

    background: var(--off-white);
}

.project-placeholder {

    max-width: 800px;

    margin: auto;

    padding: 70px 30px;

    text-align: center;

    background: white;

    border: 1px dashed #cbdde7;

    border-radius: 20px;
}

.project-placeholder-icon {

    width: 80px;
    height: 80px;

    margin: 0 auto 20px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #eaf5fa;

    color: var(--orange);

    font-size: 35px;
}

.project-placeholder h3 {

    color: var(--navy);

    font-size: 25px;

    margin-bottom: 10px;
}

.project-placeholder p {

    max-width: 550px;

    margin: auto;

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   GROUP INTRO
========================================================= */

.group-intro {

    background: white;
}

.group-intro-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.group-content h2 {

    font-size: clamp(40px, 5vw, 62px);

    color: var(--navy);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.group-content h2 span {
    color: var(--blue);
}

.group-content p {

    color: var(--muted);

    font-size: 15px;

    margin-bottom: 17px;
}


/* GROUP VISUAL */

.group-visual {

    display: flex;

    align-items: center;

    justify-content: center;
}

.group-circle {

    position: relative;

    width: 390px;
    height: 390px;

    border: 1px dashed #cbdde7;

    border-radius: 50%;
}

.group-circle::before {

    content: "";

    position: absolute;

    inset: 65px;

    border: 1px solid #dce8ef;

    border-radius: 50%;
}

.group-center {

    position: absolute;

    width: 130px;
    height: 130px;

    left: calc(50% - 65px);
    top: calc(50% - 65px);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    box-shadow: 0 20px 40px rgba(22,139,208,0.25);
}

.group-center strong {

    font-size: 38px;

    color: var(--green);
}

.group-center small {

    font-size: 10px;

    letter-spacing: 2px;
}

.group-dot {

    position: absolute;

    width: 82px;
    height: 82px;

    display: grid;

    place-items: center;

    text-align: center;

    background: white;

    border: 1px solid var(--border);

    border-radius: 50%;

    box-shadow: var(--shadow);

    color: var(--navy);

    font-size: 10px;

    font-weight: 700;
}

.dot-one {
    top: 0;
    left: calc(50% - 41px);
}

.dot-two {
    top: 95px;
    right: -20px;
}

.dot-three {
    bottom: 30px;
    right: 25px;
}

.dot-four {
    bottom: 30px;
    left: 25px;
}

.dot-five {
    top: 95px;
    left: -20px;
}


/* =========================================================
   BUSINESSES
========================================================= */

.businesses {

    background: var(--off-white);
}

.business-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.business-card {

    position: relative;

    padding: 35px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    transition: 0.35s;
}

.business-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

    border-color: var(--blue);
}

.business-card.featured {

    grid-column: span 2;

    border-top: 3px solid var(--blue);
}

.business-number {

    position: absolute;

    top: 15px;
    right: 25px;

    font-size: 52px;

    font-weight: 800;

    color: #edf3f6;
}

.business-icon {

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    background: #edf7fb;

    border-radius: 14px;

    color: var(--blue);

    font-size: 24px;

    margin-bottom: 22px;
}

.business-label {

    color: var(--blue);

    font-size: 10px;

    letter-spacing: 1.4px;

    font-weight: 800;

    margin-bottom: 8px;
}

.business-card h3 {

    color: var(--navy);

    font-size: 24px;

    line-height: 1.15;

    margin-bottom: 13px;
}

.business-card h3 span {

    color: var(--blue);
}

.business-card p {

    color: var(--muted);

    font-size: 13px;

    max-width: 650px;

    margin-bottom: 20px;
}

.business-link {

    color: var(--blue);

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   CTA
========================================================= */

.cta {

    padding: 70px 0;

    background:
        linear-gradient(
            120deg,
            var(--navy-dark),
            var(--navy),
            #126b82
        );
}

.cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.cta-content {

    max-width: 650px;
}

.cta .eyebrow {
    color: white;
}

.cta h2 {

    color: white;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1;

    margin-bottom: 20px;
}

.cta h2 span {
    color: var(--green);
}

.cta p {

    color: rgba(255,255,255,0.7);

    font-size: 15px;
}

.cta-buttons {

    display: flex;

    gap: 12px;

    flex-shrink: 0;
}

.btn-white {

    background: white;

    color: var(--navy);
}

.btn-white:hover {

    background: var(--green);

    color: var(--navy);
}

.btn-whatsapp {

    background: #25d366;

    color: white;
}

.btn-whatsapp:hover {

    background: #1db954;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: #031f32;

    color: white;

    padding: 70px 0 25px;
}

.footer-grid {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

    gap: 50px;

    padding-bottom: 50px;

    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {

    color: rgba(255,255,255,0.55);

    font-size: 13px;

    max-width: 300px;

    margin-top: 20px;
}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {

    color: white;

    font-size: 14px;

    margin-bottom: 10px;
}

.footer-column a,
.footer-column span {

    color: rgba(255,255,255,0.55);

    font-size: 12px;

    transition: 0.2s;
}

.footer-column a:hover {
    color: var(--green);
}

.footer-bottom {

    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255,255,255,0.4);

    font-size: 11px;
}

.footer-bottom strong {
    color: rgba(255,255,255,0.65);
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #25d366;

    color: white;

    font-size: 28px;

    box-shadow:
        0 10px 30px rgba(37,211,102,0.35);

    z-index: 900;

    transition: 0.3s;
}

.whatsapp-button:hover {

    transform: scale(1.08);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .main-nav {
        gap: 18px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-visual {
        min-height: 450px;
    }

    .section-grid,
    .group-intro-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 760px) {

    .section-padding {
        padding: 75px 0;
    }


    /* HEADER */

    .main-nav {

        position: fixed;

        top: 70px;
        left: 5%;
        right: 5%;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        padding: 20px;

        background: white;

        border-radius: 12px;

        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {

        width: 100%;

        color: var(--navy) !important;

        padding: 12px 5px;
    }

    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding-bottom: 70px;
    }

    .hero h1 {

        font-size: 55px;

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-visual {
        min-height: 400px;

        transform: scale(0.8);
    }

    .orbit-two {
        width: 450px;
        height: 450px;
    }


    /* SOLUTIONS */

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        flex-direction: column;
    }

    .solution-content ul {
        grid-template-columns: 1fr;
    }


    /* BUSINESS */

    .business-grid {
        grid-template-columns: 1fr;
    }

    .business-card.featured {
        grid-column: span 1;
    }


    /* GROUP */

    .group-circle {

        width: 320px;
        height: 320px;
    }


    /* CTA */

    .cta-box {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

}


@media (max-width: 480px) {

    .hero h1 {
        font-size: 47px;
    }

    .hero-points {
        flex-direction: column;
        gap: 8px;
    }

    .hero-visual {
        transform: scale(0.65);

        margin-left: -50px;
        margin-right: -50px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .about-card {
        padding: 40px 25px;
    }

    .group-circle {
        transform: scale(0.8);
    }

    .cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

}