:root {
    --navy: #111b2a;
    --navy-secondary: #172435;
    --navy-deep: #0c1522;
    --green: #5ba66c;
    --green-bright: #73c27e;
    --green-dark: #458c57;
    --white: #ffffff;
    --gray: #d7dce2;
    --gray-muted: #aeb7c2;
    --border-green: rgba(91, 166, 108, 0.8);
    --font-body: "Montserrat", sans-serif;
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --container-width: 1240px;
    --header-height: 96px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    font-family: var(--font-body);
    color: var(--white);
    background: var(--white);
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

button,
input {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container-width));
    margin-inline: auto;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 820px;
    overflow: hidden;
    background: radial-gradient(circle at 70% 45%, rgba(91, 166, 108, 0.19) 0%, rgba(91, 166, 108, 0.09) 20%, transparent 50%), radial-gradient(circle at 14% 28%, rgba(115, 194, 126, 0.08) 0%, transparent 31%), linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 46%, var(--navy-secondary) 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -4;
    content: "";
    pointer-events: none;
    opacity: 0.13;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero::after {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -5;
    width: 900px;
    height: 900px;
    content: "";
    pointer-events: none;
    border-radius: 50%;
    background: rgba(91, 166, 108, 0.06);
    filter: blur(100px);
    transform: translate(-10%, -36%);
}

.site-header {
    position: relative;
    z-index: 20;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(12, 21, 34, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px;
}

.brand__logo {
    display: block;
    width: clamp(175px, 17vw, 230px);
    height: auto;
    max-height: 76px;
    object-fit: contain;
    object-position: left center;
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.brand:hover .brand__logo {
    transform: translateY(-2px);
}

.brand:focus-visible {
    outline: 3px solid rgba(115, 194, 126, 0.65);
    outline-offset: 5px;
}

@media (max-width: 1080px) {
    .brand__logo {
        width: clamp(165px, 20vw, 205px);
        max-height: 66px;
    }
}

@media (max-width: 720px) {
    .brand__logo {
        width: clamp(155px, 47vw, 190px);
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .brand__logo {
        width: clamp(145px, 48vw, 175px);
        max-height: 54px;
    }
}

.nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.nav-toggle-label {
    display: none;
    width: 48px;
    height: 44px;
    cursor: pointer;
    place-items: center;
    border: 1px solid rgba(115, 194, 126, 0.4);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.nav-toggle-label span,
.nav-toggle-label::before,
.nav-toggle-label::after {
    display: block;
    width: 22px;
    height: 2px;
    content: "";
    border-radius: 999px;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-label::before {
    transform: translateY(-6px);
}

.nav-toggle-label::after {
    transform: translateY(6px);
}



.hero__content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
    align-items: center;
    gap: clamp(54px, 7vw, 105px);
    min-height: 650px;
    padding-top: 54px;
    padding-bottom: 155px;
}

.hero__copy {
    max-width: 690px;
    padding-bottom: 20px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: var(--green-bright);
    font-size: clamp(0.68rem, 1vw, 0.78rem);
    font-weight: 800;
    letter-spacing: 0.19em;
    line-height: 1.5;
    text-transform: uppercase;
}

.hero__eyebrow::before {
    width: 42px;
    height: 2px;
    flex-shrink: 0;
    content: "";
    border-radius: 999px;
    background: var(--green-bright);
    box-shadow: 0 0 12px rgba(115, 194, 126, 0.65);
}

.hero__title {
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 6.5vw, 4.9rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.82;
    text-wrap: balance;
}

.hero__title-line {
    display: block;
}

.hero__title-line--green {
    position: relative;
    display: inline-block;
    color: var(--green-bright);
    text-shadow: 0 8px 34px rgba(115, 194, 126, 0.12);
   
}

.hero__title-line--green::after {
    position: absolute;
    right: 1%;
    bottom: -10px;
    left: 1%;
    height: 3px;
    content: "";
    border-radius: 50%;
    background: linear-gradient(90deg, transparent, rgba(115, 194, 126, 0.95) 10%, var(--green-bright) 50%, rgba(115, 194, 126, 0.95) 90%, transparent);
    transform: rotate(-1deg);
    box-shadow: 0 3px 15px rgba(115, 194, 126, 0.25);
}

.hero__title-line--white {
    margin-top: 21px;
    color: var(--white);
}

.hero__description {
    max-width: 650px;
    margin: 35px 0 0;
    color: var(--gray);
    font-size: clamp(0.92rem, 1.4vw, 1.03rem);
    font-weight: 500;
    letter-spacing: 0.005em;
    line-height: 1.9;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 34px;
}

.hero-button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 15px 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    transition: color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.hero-button svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.hero-button--primary {
    color: var(--white);
    border-color: var(--green);
    background: linear-gradient(135deg, var(--green-bright), var(--green));
    box-shadow: 0 14px 35px rgba(40, 110, 58, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-button--primary:hover {
    border-color: var(--green-bright);
    background: linear-gradient(135deg, #83cf8c, var(--green-dark));
    box-shadow: 0 18px 42px rgba(40, 110, 58, 0.38), 0 0 0 5px rgba(115, 194, 126, 0.08);
    transform: translateY(-3px);
}

.hero-button--secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.43);
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-button--secondary:hover {
    color: var(--navy);
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
    transform: translateY(-3px);
}

.hero__visual {
    position: relative;
    width: 100%;
    max-width: 535px;
    justify-self: end;
}

.hero__visual::before {
    position: absolute;
    top: -9%;
    right: -10%;
    width: 54%;
    aspect-ratio: 1;
    content: "";
    pointer-events: none;
    border-radius: 50%;
    background: rgba(115, 194, 126, 0.13);
    filter: blur(52px);
}

.hero__visual::after {
    position: absolute;
    right: 9%;
    bottom: -9%;
    z-index: -1;
    width: 74%;
    height: 45%;
    content: "";
    pointer-events: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.42);
    filter: blur(35px);
}

.hero__image-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 0.93;
    overflow: hidden;
    padding: 7px;
    border: 2px solid var(--border-green);
    border-radius: 37px;
    background: linear-gradient(145deg, rgba(115, 194, 126, 0.32), rgba(91, 166, 108, 0.06));
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38), 0 0 28px rgba(91, 166, 108, 0.27), inset 0 0 15px rgba(115, 194, 126, 0.15);
    animation: borderPulse 4.5s ease-in-out infinite;
}

.hero__image-shell {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 29px;
    background: var(--navy-secondary);
}

.hero__image-shell::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    pointer-events: none;
    background: linear-gradient(to top, rgba(10, 20, 31, 0.28), transparent 44%), linear-gradient(135deg, rgba(115, 194, 126, 0.06), transparent 43%);
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    animation: imageZoom 16s ease-in-out infinite alternate;
}

.hero__image-badge {
    position: absolute;
    right: -16px;
    bottom: 42px;
    z-index: 4;
    display: flex;
    width: min(230px, 52%);
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border: 1px solid rgba(115, 194, 126, 0.28);
    border-radius: 16px;
    background: rgba(17, 27, 42, 0.9);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero__image-badge-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 12px;
    color: var(--navy);
    background: var(--green-bright);
    box-shadow: 0 8px 20px rgba(115, 194, 126, 0.2);
}

.hero__image-badge-icon svg {
    width: 22px;
    height: 22px;
}

.hero__image-badge-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero__image-badge-text strong {
    color: var(--white);
    font-size: 0.79rem;
    line-height: 1.25;
}

.hero__image-badge-text span {
    color: var(--green-bright);
    font-size: 0.67rem;
    font-weight: 700;
    line-height: 1.35;
}

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

.decoration {
    position: absolute;
    color: var(--green-bright);
    opacity: 0.095;
    filter: drop-shadow(0 0 10px rgba(115, 194, 126, 0.35));
    animation: floatDecoration 8s ease-in-out infinite;
}

.decoration svg {
    width: 100%;
    height: 100%;
}

.decoration--drop-1 {
    top: 22%;
    left: 4%;
    width: 45px;
    height: 45px;
    animation-delay: -1s;
}

.decoration--drop-2 {
    top: 53%;
    left: 47%;
    width: 31px;
    height: 31px;
    animation-delay: -4s;
}

.decoration--wrench {
    top: 19%;
    right: 2.5%;
    width: 84px;
    height: 84px;
    transform: rotate(-22deg);
    animation-delay: -2.5s;
}

.decoration--screwdriver {
    right: 43%;
    bottom: 23%;
    width: 72px;
    height: 72px;
    transform: rotate(21deg);
    animation-delay: -5s;
}

.decoration--gear-1 {
    top: 43%;
    left: 1.5%;
    width: 82px;
    height: 82px;
    animation: rotateGear 22s linear infinite;
}

.decoration--gear-2 {
    top: 30%;
    right: 45%;
    width: 48px;
    height: 48px;
    opacity: 0.07;
    animation: rotateGearReverse 18s linear infinite;
}

.decoration--pipe {
    right: 1%;
    bottom: 16%;
    width: 102px;
    height: 102px;
    animation-delay: -6s;
}

.decoration--energy-1 {
    top: 16%;
    left: 44%;
    width: 40px;
    height: 40px;
    opacity: 0.18;
    animation: energyPulse 3.2s ease-in-out infinite;
}

.decoration--energy-2 {
    right: 34%;
    bottom: 16%;
    width: 29px;
    height: 29px;
    opacity: 0.13;
    animation: energyPulse 3.2s ease-in-out -1.5s infinite;
}

.hero-wave {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 10;
    width: 100%;
    height: clamp(78px, 10vw, 145px);
    overflow: hidden;
    pointer-events: none;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.hero-wave path {
    fill: var(--white);
}

@keyframes imageZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.11);
    }
}

@keyframes borderPulse {

    0%,
    100% {
        box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38), 0 0 22px rgba(91, 166, 108, 0.2), inset 0 0 15px rgba(115, 194, 126, 0.12);
    }

    50% {
        box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38), 0 0 40px rgba(115, 194, 126, 0.38), inset 0 0 20px rgba(115, 194, 126, 0.2);
    }
}

@keyframes floatDecoration {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -17px;
    }
}

@keyframes rotateGear {
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateGearReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes energyPulse {

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

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

@media (max-width: 1080px) {
    :root {
        --header-height: 84px;
    }

    .container {
        width: min(calc(100% - 34px), var(--container-width));
    }

    .brand__tagline {
        display: none;
    }

    .nav-menu {
        gap: 17px;
    }

    .nav-link {
        font-size: 0.77rem;
    }

    .hero__content {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.9fr);
        gap: 48px;
        min-height: 620px;
        padding-top: 42px;
        padding-bottom: 130px;
    }

    .hero__title {
        font-size: clamp(3.8rem, 7.4vw, 5.5rem);
    }

    .hero__visual {
        max-width: 460px;
    }

    .hero__image-badge {
        right: -5px;
    }
}

@media (max-width: 900px) {
    .site-header {
        background: rgba(12, 21, 34, 0.82);
    }

    .nav-toggle-label {
        position: relative;
        z-index: 30;
        display: grid;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% - 1px);
        right: 17px;
        left: 17px;
        display: grid;
        max-height: 0;
        justify-content: stretch;
        gap: 0;
        overflow: hidden;
        visibility: hidden;
        border: 1px solid transparent;
        border-radius: 0 0 18px 18px;
        opacity: 0;
        background: rgba(12, 21, 34, 0.98);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.3);
        transform: translateY(-8px);
        transition: max-height 0.4s ease, visibility 0.4s ease, opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    }

    .nav-menu li:last-child {
        border-bottom: 0;
    }

    .nav-link {
        width: 100%;
        min-height: 53px;
        justify-content: center;
        padding: 8px 18px;
        font-size: 0.84rem;
    }

    .nav-link::after {
        bottom: 8px;
        max-width: 42px;
    }

    .nav-toggle:checked~.nav-menu {
        max-height: 500px;
        visibility: visible;
        border-color: rgba(115, 194, 126, 0.17);
        opacity: 1;
        transform: translateY(0);
    }

    .nav-toggle:checked+.nav-toggle-label span {
        opacity: 0;
    }

    .nav-toggle:checked+.nav-toggle-label::before {
        transform: translateY(2px) rotate(45deg);
    }

    .nav-toggle:checked+.nav-toggle-label::after {
        transform: translateY(-2px) rotate(-45deg);
    }

    .hero {
        min-height: 740px;
    }

    .hero__content {
        grid-template-columns: minmax(0, 1fr) minmax(310px, 0.8fr);
        gap: 38px;
        min-height: 620px;
        padding-top: 52px;
        padding-bottom: 125px;
    }

    .hero__eyebrow {
        margin-bottom: 18px;
    }

    .hero__title {
        font-size: clamp(3.45rem, 7.5vw, 4.65rem);
    }

    .hero__description {
        margin-top: 29px;
        font-size: 0.89rem;
        line-height: 1.75;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 310px;
        margin-top: 27px;
    }

    .hero-button {
        width: 100%;
        min-height: 54px;
    }

    .hero__visual {
        max-width: 390px;
    }

    .hero__image-frame {
        border-radius: 30px;
    }

    .hero__image-shell {
        border-radius: 22px;
    }

    .hero__image-badge {
        right: -6px;
        bottom: 25px;
        width: 75%;
        padding: 12px;
    }

    .decoration--wrench,
    .decoration--pipe,
    .decoration--gear-2 {
        display: none;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 78px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container-width));
    }

    .hero {
        min-height: 1100px;
    }

    .brand__icon {
        width: 46px;
        height: 46px;
        border-radius: 13px;
    }

    .brand__icon svg {
        width: 27px;
        height: 27px;
    }

    .brand__name {
        font-size: 0.94rem;
    }

    .hero__content {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 53px;
        padding-top: 59px;
        padding-bottom: 145px;
    }

    .hero__copy {
        max-width: 620px;
        justify-self: center;
        padding-bottom: 0;
        text-align: center;
    }

    .hero__eyebrow {
        justify-content: center;
    }

    .hero__eyebrow::before {
        width: 30px;
    }

    .hero__title {
        font-size: clamp(3.9rem, 15.2vw, 5.6rem);
        line-height: 0.87;
    }

    .hero__title-line--green::after {
        bottom: -7px;
    }

    .hero__title-line--white {
        margin-top: 17px;
    }

    .hero__description {
        max-width: 540px;
        margin-right: auto;
        margin-left: auto;
        font-size: 0.9rem;
        line-height: 1.85;
    }

    .hero__actions {
        width: 100%;
        max-width: 480px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero__visual {
        width: min(100%, 470px);
        max-width: none;
        justify-self: center;
    }

    .hero__image-frame {
        aspect-ratio: 0.97;
    }

    .hero__image-badge {
        right: 14px;
        bottom: 20px;
        width: min(225px, 66%);
    }

    .decoration--drop-1,
    .decoration--screwdriver,
    .decoration--gear-1,
    .decoration--energy-2 {
        display: none;
    }

    .decoration--drop-2 {
        top: 12%;
        left: 85%;
    }

    .decoration--energy-1 {
        top: 49%;
        left: 7%;
    }

    .hero-wave {
        height: 95px;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(calc(100% - 22px), var(--container-width));
    }

    .hero {
        min-height: 1010px;
    }

    .brand {
        gap: 9px;
    }

    .brand__icon {
        width: 43px;
        height: 43px;
    }

    .brand__name {
        max-width: 165px;
        font-size: 0.84rem;
        line-height: 1.18;
    }

    .nav-toggle-label {
        width: 44px;
        height: 42px;
    }

    .nav-menu {
        right: 11px;
        left: 11px;
    }

    .hero__content {
        gap: 44px;
        padding-top: 48px;
        padding-bottom: 125px;
    }

    .hero__eyebrow {
        gap: 8px;
        font-size: 0.61rem;
        letter-spacing: 0.13em;
    }

    .hero__eyebrow::before {
        width: 22px;
    }

    .hero__title {
        font-size: clamp(3.25rem, 16.7vw, 4.4rem);
    }

    .hero__description {
        margin-top: 27px;
        font-size: 0.8rem;
        line-height: 1.75;
    }

    .hero__actions {
        margin-top: 25px;
    }

    .hero-button {
        min-height: 56px;
        padding-inline: 17px;
        font-size: 0.82rem;
    }

    .hero__image-frame {
        padding: 5px;
        border-radius: 27px;
    }

    .hero__image-shell {
        border-radius: 21px;
    }

    .hero__image-badge {
        right: 9px;
        bottom: 13px;
        width: min(218px, 72%);
        gap: 9px;
        padding: 10px 11px;
        border-radius: 13px;
    }

    .hero__image-badge-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .hero__image-badge-icon svg {
        width: 19px;
        height: 19px;
    }

    .hero__image-badge-text strong {
        font-size: 0.69rem;
    }

    .hero__image-badge-text span {
        font-size: 0.59rem;
    }

    .hero-wave {
        height: 73px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ==================================================
MAIN NAVIGATION
================================================== */

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2vw, 31px);
}

.nav>a,
.nav-dropdown-toggle {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    white-space: nowrap;
    transition:
        color var(--transition),
        transform var(--transition);
}

.nav>a::after,
.nav-dropdown-toggle::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    margin-inline: auto;
    content: "";
    border-radius: 999px;
    background: var(--green-bright);
    box-shadow: 0 0 10px rgba(115, 194, 126, 0.55);
    transition: width var(--transition);
}

.nav>a:hover,
.nav>a:focus-visible,
.nav>a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
    color: var(--white);
}

.nav>a:hover,
.nav-dropdown-toggle:hover {
    transform: translateY(-2px);
}

.nav>a:hover::after,
.nav>a:focus-visible::after,
.nav>a.active::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after {
    width: 72%;
}

.nav>a:focus-visible,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown-menu a:focus-visible {
    outline: 3px solid rgba(115, 194, 126, 0.65);
    outline-offset: 3px;
}

/* ==================================================
SERVICES DROPDOWN
================================================== */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle i {
    font-size: 0.68rem;
    transition: transform var(--transition);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 13px);
    left: 50%;
    z-index: 100;
    width: 285px;
    padding: 10px;
    visibility: hidden;
    border: 1px solid rgba(115, 194, 126, 0.2);
    border-radius: 16px;
    opacity: 0;
    background: rgba(12, 21, 34, 0.98);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translate(-50%, 12px);
    transition:
        visibility 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.nav-dropdown-menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 16px;
    content: "";
}

.nav-dropdown-menu a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.4;
    transition:
        color var(--transition),
        background-color var(--transition),
        padding-left var(--transition);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    padding-left: 19px;
    color: var(--white);
    background: rgba(115, 194, 126, 0.13);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

/* ==================================================
TABLET
================================================== */

@media (max-width: 1080px) {
    .nav {
        gap: 17px;
    }

    .nav>a,
    .nav-dropdown-toggle {
        font-size: 0.77rem;
    }
}

/* ==================================================
MOBILE NAVIGATION
================================================== */

@media (max-width: 900px) {
    .nav {
        position: absolute;
        top: calc(100% - 1px);
        right: 17px;
        left: 17px;
        display: flex;
        max-height: 0;
        align-items: stretch;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        visibility: hidden;
        border: 1px solid transparent;
        border-radius: 0 0 18px 18px;
        opacity: 0;
        background: rgba(12, 21, 34, 0.99);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
        transform: translateY(-8px);
        transition:
            max-height 0.5s ease,
            visibility 0.4s ease,
            opacity 0.3s ease,
            transform 0.3s ease,
            border-color 0.3s ease;
    }

    .nav-toggle:checked~.nav {
        max-height: calc(100vh - var(--header-height) - 20px);
        visibility: visible;
        border-color: rgba(115, 194, 126, 0.18);
        opacity: 1;
        transform: translateY(0);
    }

    .nav>a,
    .nav-dropdown-toggle {
        width: 100%;
        min-height: 54px;
        justify-content: center;
        padding: 9px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 0.84rem;
    }

    .nav>a::after,
    .nav-dropdown-toggle::after {
        bottom: 7px;
        max-width: 42px;
    }

    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 12px;
        overflow: hidden;
        visibility: hidden;
        border: 0;
        border-radius: 0;
        opacity: 1;
        background: rgba(255, 255, 255, 0.025);
        box-shadow: none;
        transform: none;
        transition:
            max-height 0.4s ease,
            visibility 0.4s ease,
            padding 0.4s ease;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        max-height: 450px;
        padding-top: 8px;
        padding-bottom: 10px;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown-menu a {
        min-height: 43px;
        justify-content: center;
        padding: 9px 12px;
        text-align: center;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:focus-visible {
        padding-left: 12px;
    }
}

@media (max-width: 480px) {
    .nav {
        right: 11px;
        left: 11px;
    }
}

.hero__visual {
    position: relative;
    width: 100%;
    max-width: 535px;
    justify-self: end;
    animation: heroVisualFloat 6s ease-in-out infinite;
}

.hero__visual::before {
    position: absolute;
    top: -10%;
    right: -11%;
    width: 58%;
    aspect-ratio: 1;
    content: "";
    pointer-events: none;
    border-radius: 50%;
    background: rgba(115, 194, 126, 0.2);
    filter: blur(58px);
    animation: imageGlowMove 5s ease-in-out infinite;
}

.hero__visual::after {
    position: absolute;
    right: 8%;
    bottom: -10%;
    z-index: -1;
    width: 76%;
    height: 46%;
    content: "";
    pointer-events: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.48);
    filter: blur(38px);
    animation: imageShadowPulse 6s ease-in-out infinite;
}

.hero__image-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 0.93;
    overflow: hidden;
    padding: 7px;
    border: 2px solid rgba(115, 194, 126, 0.88);
    border-radius: 37px;
    background:
        linear-gradient(145deg,
            rgba(115, 194, 126, 0.42),
            rgba(91, 166, 108, 0.08));
    box-shadow:
        0 34px 70px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(91, 166, 108, 0.3),
        inset 0 0 18px rgba(115, 194, 126, 0.16);
    animation:
        borderPulse 3.2s ease-in-out infinite,
        frameTilt 7s ease-in-out infinite;
    transform-origin: center;
}

.hero__image-frame::before {
    position: absolute;
    top: -45%;
    left: -90%;
    z-index: 5;
    width: 55%;
    height: 190%;
    content: "";
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.22),
            transparent);
    transform: rotate(17deg);
    animation: imageShine 5.5s ease-in-out infinite;
}

.hero__image-shell {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 29px;
    background: var(--navy-secondary);
}

.hero__image-shell::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(to top,
            rgba(10, 20, 31, 0.34),
            transparent 46%),
        linear-gradient(135deg,
            rgba(115, 194, 126, 0.09),
            transparent 45%);
}

.hero__image-shell::after {
    position: absolute;
    inset: 0;
    z-index: 3;
    content: "";
    pointer-events: none;
    opacity: 0.25;
    background:
        radial-gradient(circle at 70% 25%,
            rgba(255, 255, 255, 0.2),
            transparent 32%);
    animation: imageOverlayPulse 4.5s ease-in-out infinite;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    animation: imageKenBurns 14s ease-in-out infinite alternate;
}

.hero__image-badge {
    position: absolute;
    right: -16px;
    bottom: 42px;
    z-index: 6;
    display: flex;
    width: min(230px, 52%);
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border: 1px solid rgba(115, 194, 126, 0.36);
    border-radius: 16px;
    background: rgba(17, 27, 42, 0.92);
    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.3),
        0 0 22px rgba(115, 194, 126, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: badgeFloat 4s ease-in-out infinite;
}

/* ==================================================
   MORE VISIBLE DECORATIVE ICONS
================================================== */

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

.decoration {
    position: absolute;
    color: var(--green-bright);
    opacity: 0.16;
    filter:
        drop-shadow(0 0 9px rgba(115, 194, 126, 0.55)) drop-shadow(0 0 20px rgba(115, 194, 126, 0.2));
    will-change: transform, opacity;
}

.decoration svg {
    width: 100%;
    height: 100%;
}

/* ==================================================
   OBVIOUS WATER DROP ANIMATION
================================================== */

.decoration--drop-1 {
    top: -70px;
    left: 5%;
    width: 58px;
    height: 58px;
    opacity: 0;
    animation: waterDropFallOne 5.2s linear infinite;
}

.decoration--drop-2 {
    top: -55px;
    left: 45%;
    width: 43px;
    height: 43px;
    opacity: 0;
    animation: waterDropFallTwo 6.4s linear 1.8s infinite;
}

.decoration--drop-1 svg,
.decoration--drop-2 svg {
    fill: rgba(115, 194, 126, 0.11);
    stroke: var(--green-bright);
}

.decoration--drop-1::after,
.decoration--drop-2::after {
    position: absolute;
    top: 105%;
    left: 50%;
    width: 12px;
    height: 34px;
    content: "";
    border-radius: 50%;
    opacity: 0.45;
    background:
        linear-gradient(to bottom,
            rgba(115, 194, 126, 0.7),
            transparent);
    filter: blur(5px);
    transform: translateX(-50%);
}

/* Tools remain gently floating */

.decoration--wrench {
    top: 19%;
    right: 2.5%;
    width: 84px;
    height: 84px;
    opacity: 0.14;
    animation: toolFloatLeft 8s ease-in-out infinite;
}

.decoration--screwdriver {
    right: 43%;
    bottom: 23%;
    width: 72px;
    height: 72px;
    opacity: 0.13;
    animation: toolFloatRight 7s ease-in-out infinite;
}

.decoration--gear-1 {
    top: 43%;
    left: 1.5%;
    width: 82px;
    height: 82px;
    opacity: 0.13;
    animation: rotateGear 20s linear infinite;
}

.decoration--gear-2 {
    top: 30%;
    right: 45%;
    width: 48px;
    height: 48px;
    opacity: 0.1;
    animation: rotateGearReverse 16s linear infinite;
}

.decoration--pipe {
    right: 1%;
    bottom: 16%;
    width: 102px;
    height: 102px;
    opacity: 0.12;
    animation: pipeFloat 9s ease-in-out infinite;
}

.decoration--energy-1 {
    top: 16%;
    left: 44%;
    width: 40px;
    height: 40px;
    opacity: 0.2;
    animation: energyPulse 2.5s ease-in-out infinite;
}

.decoration--energy-2 {
    right: 34%;
    bottom: 16%;
    width: 29px;
    height: 29px;
    opacity: 0.17;
    animation: energyPulse 2.8s ease-in-out 1s infinite;
}

/* ==================================================
   ANIMATION KEYFRAMES
================================================== */

@keyframes waterDropFallOne {
    0% {
        top: -70px;
        opacity: 0;
        transform: translateX(0) scale(0.65) rotate(-8deg);
    }

    10% {
        opacity: 0.7;
    }

    45% {
        opacity: 0.52;
        transform: translateX(20px) scale(1) rotate(5deg);
    }

    85% {
        opacity: 0.28;
    }

    100% {
        top: 88%;
        opacity: 0;
        transform: translateX(-12px) scale(0.8) rotate(-5deg);
    }
}

@keyframes waterDropFallTwo {
    0% {
        top: -55px;
        opacity: 0;
        transform: translateX(0) scale(0.55) rotate(5deg);
    }

    12% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.46;
        transform: translateX(-30px) scale(1.05) rotate(-5deg);
    }

    88% {
        opacity: 0.24;
    }

    100% {
        top: 90%;
        opacity: 0;
        transform: translateX(18px) scale(0.72) rotate(5deg);
    }
}

@keyframes heroVisualFloat {

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

    50% {
        transform: translateY(-12px);
    }
}

@keyframes imageKenBurns {
    0% {
        transform: scale(1.04) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.1) translate3d(-1.5%, -1%, 0);
    }

    100% {
        transform: scale(1.15) translate3d(1%, -2%, 0);
    }
}

@keyframes frameTilt {

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

    50% {
        transform: rotate(0.7deg) translateY(-4px);
    }
}

@keyframes borderPulse {

    0%,
    100% {
        border-color: rgba(91, 166, 108, 0.74);
        box-shadow:
            0 34px 70px rgba(0, 0, 0, 0.4),
            0 0 22px rgba(91, 166, 108, 0.24),
            inset 0 0 14px rgba(115, 194, 126, 0.12);
    }

    50% {
        border-color: rgba(115, 194, 126, 1);
        box-shadow:
            0 40px 82px rgba(0, 0, 0, 0.45),
            0 0 50px rgba(115, 194, 126, 0.48),
            0 0 90px rgba(115, 194, 126, 0.13),
            inset 0 0 22px rgba(115, 194, 126, 0.24);
    }
}

@keyframes imageShine {

    0%,
    25% {
        left: -90%;
        opacity: 0;
    }

    35% {
        opacity: 0.5;
    }

    60% {
        left: 145%;
        opacity: 0;
    }

    100% {
        left: 145%;
        opacity: 0;
    }
}

@keyframes imageGlowMove {

    0%,
    100% {
        transform: translate(0, 0) scale(0.9);
        opacity: 0.55;
    }

    50% {
        transform: translate(-25px, 22px) scale(1.15);
        opacity: 1;
    }
}

@keyframes imageShadowPulse {

    0%,
    100% {
        transform: scaleX(0.94);
        opacity: 0.7;
    }

    50% {
        transform: scaleX(1.06);
        opacity: 1;
    }
}

@keyframes imageOverlayPulse {

    0%,
    100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.38;
    }
}

@keyframes badgeFloat {

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

    50% {
        transform: translateY(-8px);
    }
}

@keyframes toolFloatLeft {

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

    50% {
        transform: translateY(-18px) rotate(-15deg);
    }
}

@keyframes toolFloatRight {

    0%,
    100% {
        transform: translateY(0) rotate(21deg);
    }

    50% {
        transform: translateY(-16px) rotate(28deg);
    }
}

@keyframes pipeFloat {

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

    50% {
        transform: translateY(-14px) rotate(3deg);
    }
}

@keyframes rotateGear {
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateGearReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes energyPulse {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.78);
        filter: drop-shadow(0 0 5px rgba(115, 194, 126, 0.3));
    }

    50% {
        opacity: 0.5;
        transform: scale(1.25);
        filter:
            drop-shadow(0 0 12px rgba(115, 194, 126, 0.8)) drop-shadow(0 0 25px rgba(115, 194, 126, 0.45));
    }
}

/* ==================================================
   MOBILE ANIMATION ADJUSTMENTS
================================================== */

@media (max-width: 900px) {
    .hero__visual {
        animation-duration: 7s;
    }

    .decoration--drop-1 {
        left: 7%;
        width: 46px;
        height: 46px;
    }

    .decoration--drop-2 {
        left: 82%;
        width: 36px;
        height: 36px;
    }

    .decoration--wrench,
    .decoration--pipe,
    .decoration--gear-2 {
        display: none;
    }
}

@media (max-width: 720px) {
    .decoration--drop-1 {
        display: block;
        left: 4%;
        animation-duration: 6s;
    }

    .decoration--drop-2 {
        display: block;
        left: 87%;
        animation-duration: 7s;
    }

    .hero__image-frame {
        animation:
            borderPulse 3.5s ease-in-out infinite,
            frameTilt 8s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .decoration--drop-1 {
        width: 35px;
        height: 35px;
    }

    .decoration--drop-2 {
        width: 28px;
        height: 28px;
    }

    .hero__visual {
        animation-name: heroVisualFloatMobile;
    }
}

@keyframes heroVisualFloatMobile {

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

    50% {
        transform: translateY(-7px);
    }
}

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

    .hero__visual,
    .hero__image-frame,
    .hero__image,
    .hero__image-badge,
    .decoration,
    .hero__visual::before,
    .hero__visual::after,
    .hero__image-frame::before,
    .hero__image-shell::after {
        animation: none !important;
        transform: none !important;
    }
}

.decoration--drop-1,
.decoration--screwdriver,
.decoration--gear-1,
.decoration--energy-2 {
    display: none;
}

/* ==================================================================================== */



/* start services section */

/* =====================================================
   HORIZONTAL SERVICE PROCESS
===================================================== */

.service-process {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 105px 0;
    background:
        linear-gradient(180deg,
            var(--white) 0%,
            var(--off-white) 100%);
}

.service-process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1200px, calc(100% - 40px));
    height: 1px;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(38, 54, 79, 0.18),
            transparent);
    transform: translateX(-50%);
}

.process-bg-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.process-bg-shape--left {
    top: -180px;
    left: -180px;
    width: 430px;
    height: 430px;
    background:
        radial-gradient(circle,
            rgba(85, 202, 122, 0.13),
            transparent 70%);
}

.process-bg-shape--right {
    right: -220px;
    bottom: -240px;
    width: 520px;
    height: 520px;
    background:
        radial-gradient(circle,
            rgba(38, 54, 79, 0.12),
            transparent 70%);
}

/* Header */

.process-header {
    max-width: 760px;
    margin: 0 auto 75px;
}

.process-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--green-hover);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.process-header h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.process-header h2 span {
    position: relative;
    display: inline-block;
}

.process-header h2 span::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    z-index: -1;
    height: 10px;
    border-radius: 999px;
    background: var(--green);
}

.process-header p {
    max-width: 660px;
    margin: 22px auto 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
}

/* Timeline */

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 55px);
}

.process-connector {
    position: absolute;
    top: 47px;
    right: 8%;
    left: 8%;
    z-index: 0;
    height: 2px;
    overflow: hidden;
    background:
        repeating-linear-gradient(90deg,
            rgba(38, 54, 79, 0.17) 0,
            rgba(38, 54, 79, 0.17) 8px,
            transparent 8px,
            transparent 16px);
}

.process-connector-progress {
    display: block;
    width: 0;
    height: 100%;
    background:
        linear-gradient(90deg,
            var(--green),
            var(--green-hover));
    transition: width 1.5s cubic-bezier(.22, 1, .36, 1);
}

.service-process.process-active .process-connector-progress {
    width: 100%;
}

/* Process item */

.process-item {
    position: relative;
    z-index: 2;
    min-width: 0;
    text-align: center;
}

.process-icon-wrap {
    position: relative;
    display: inline-flex;
    justify-content: center;
    margin-bottom: 28px;
}

.process-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    border: 8px solid var(--off-white);
    border-radius: 50%;
    background:
        linear-gradient(145deg,
            var(--navy),
            #081527);
    color: var(--green);
    font-size: 32px;
    box-shadow:
        0 15px 40px rgba(8, 21, 39, 0.22),
        0 0 0 1px rgba(85, 202, 122, 0.22);
    transition:
        color 0.4s ease,
        background-color 0.4s ease,
        transform 0.45s cubic-bezier(.22, 1, .36, 1),
        box-shadow 0.45s ease;
}

.process-icon::before {
    content: "";
    position: absolute;
    inset: -14px;
    z-index: -1;
    border: 1px solid rgba(85, 202, 122, 0.2);
    border-radius: 50%;
    transition: transform 0.45s ease;
}

.process-item:hover .process-icon {
    background:
        linear-gradient(145deg,
            var(--green),
            var(--green-hover));
    color: var(--navy-dark);
    transform: translateY(-8px) rotate(-5deg);
    box-shadow:
        0 22px 44px rgba(66, 185, 104, 0.25);
}

.process-item:hover .process-icon::before {
    transform: scale(1.13);
}

.process-number {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 8px;
    border: 4px solid var(--off-white);
    border-radius: 50%;
    background: var(--green);
    color: var(--navy-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 22px rgba(85, 202, 122, 0.26);
}

.process-content {
    max-width: 265px;
    margin: 0 auto;
}

.process-label {
    display: block;
    margin-bottom: 9px;
    color: var(--green-hover);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.process-content h3 {
    margin: 0 0 13px;
    color: var(--navy);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.035em;
}

.process-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
}

/* Bottom CTA */

.process-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 65px;
    padding-top: 30px;
    border-top: 1px solid rgba(38, 54, 79, 0.12);
}

.process-footer-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.process-footer-text>i {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(85, 202, 122, 0.13);
    color: var(--green-hover);
    font-size: 20px;
}

.process-footer-text strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
}

.process-footer-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.process-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 14px 30px rgba(38, 54, 79, 0.2);
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.process-button:hover {
    background: var(--green);
    color: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(85, 202, 122, 0.28);
}

.process-button i {
    transition: transform 0.35s ease;
}

.process-button:hover i {
    transform: translateX(5px);
}

/* Reveal animation */

.process-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

.process-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.process-timeline .process-item:nth-child(3) {
    transition-delay: 0.12s;
}

.process-timeline .process-item:nth-child(4) {
    transition-delay: 0.24s;
}

.process-timeline .process-item:nth-child(5) {
    transition-delay: 0.36s;
}

/* Tablet */

@media (max-width: 991.98px) {
    .service-process {
        padding: 85px 0;
    }

    .process-header {
        margin-bottom: 55px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 65px;
    }

    .process-connector {
        display: none;
    }

    .process-item {
        padding: 0 20px;
    }

    .process-content {
        max-width: 310px;
    }
}

/* Mobile */

@media (max-width: 575.98px) {
    .service-process {
        padding: 65px 0;
    }

    .process-header {
        margin-bottom: 45px;
    }

    .process-header h2 {
        font-size: 38px;
    }

    .process-header h2 span {
        display: block;
        width: fit-content;
        margin: 5px auto 0;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .process-item {
        display: grid;
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 20px;
        align-items: start;
        padding: 0;
        text-align: left;
    }

    .process-icon-wrap {
        margin: 0;
    }

    .process-icon {
        width: 76px;
        height: 76px;
        border-width: 6px;
        font-size: 26px;
    }

    .process-number {
        top: -13px;
        right: -9px;
        min-width: 32px;
        height: 32px;
        border-width: 3px;
        font-size: 9px;
    }

    .process-content {
        max-width: none;
        margin: 0;
    }

    .process-content h3 {
        font-size: 21px;
    }

    .process-content p {
        font-size: 13px;
    }

    .process-footer {
        flex-direction: column;
        align-items: stretch;
        margin-top: 48px;
    }

    .process-footer-text {
        align-items: flex-start;
    }

    .process-button {
        width: 100%;
    }
}

/* Reduced motion */

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

    .process-reveal,
    .process-icon,
    .process-button,
    .process-connector-progress {
        transition: none !important;
    }

    .process-reveal {
        opacity: 1;
        transform: none;
    }

    .process-connector-progress {
        width: 100%;
    }
}

/* end services section */
/* ==================================================================================== */

/* start first section */



/* ==========================================================================
   NEW PATIENT FEATURE SECTION
   ========================================================================== */
/* =====================================================
   PATIENT FEATURE / SERVICE OFFER SECTION
===================================================== */

.patient-feature {
    --patient-navy: #111b2a;
    --patient-navy-soft: #1a2a3e;
    --patient-green: #5ba66c;
    --patient-green-light: #73c27e;
    --patient-green-dark: #437d50;
    --patient-white: #ffffff;
    --patient-surface: #f7f8f7;
    --patient-surface-soft: #eef3ef;
    --patient-text: #253041;
    --patient-muted: #707b89;
    --patient-border: rgba(17, 27, 42, .1);
    --patient-shadow-sm: 0 12px 32px rgba(17, 27, 42, .08);
    --patient-shadow: 0 24px 70px rgba(17, 27, 42, .14);
    --patient-shadow-lg: 0 34px 90px rgba(17, 27, 42, .22);

    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 100px 0;
    background:
        radial-gradient(circle at 10% 15%, rgba(91, 166, 108, .11), transparent 30%),
        radial-gradient(circle at 90% 76%, rgba(67, 125, 80, .1), transparent 32%),
        linear-gradient(135deg, #f9fbf9 0%, #f1f5f2 55%, #e9f0eb 100%);
    color: var(--patient-text);
    font-family: "Montserrat", sans-serif;
}

.patient-feature__container {
    position: relative;
    z-index: 3;
}

/* =====================================================
   DECORATIVE BACKGROUND
===================================================== */

.patient-feature__decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.patient-orb,
.patient-shape,
.patient-line {
    position: absolute;
}

.patient-orb {
    border-radius: 50%;
    filter: blur(12px);
    opacity: .7;
}

.patient-orb--one {
    width: 340px;
    height: 340px;
    top: -110px;
    left: -90px;
    background: radial-gradient(circle, rgba(91, 166, 108, .2), transparent 68%);
    animation: patientOrbFloat 13s ease-in-out infinite;
}

.patient-orb--two {
    width: 440px;
    height: 440px;
    right: -160px;
    bottom: -170px;
    background: radial-gradient(circle, rgba(17, 27, 42, .12), transparent 68%);
    animation: patientOrbFloat 16s ease-in-out infinite reverse;
}

.patient-shape {
    border: 1px solid rgba(91, 166, 108, .18);
    background: rgba(255, 255, 255, .2);
    box-shadow: inset 0 0 25px rgba(91, 166, 108, .05);
    backdrop-filter: blur(5px);
}

.patient-shape--one {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 9%;
    border-radius: 34px;
    transform: rotate(18deg);
    animation: patientShapeFloatOne 12s ease-in-out infinite;
}

.patient-shape--two {
    width: 110px;
    height: 110px;
    left: 6%;
    bottom: 16%;
    border-radius: 28px;
    transform: rotate(-14deg);
    animation: patientShapeFloatTwo 14s ease-in-out infinite;
}

.patient-line {
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(91, 166, 108, .4),
            transparent);
}

.patient-line--one {
    width: 420px;
    top: 22%;
    left: -120px;
    animation: patientLineMove 10s linear infinite;
}

.patient-line--two {
    width: 500px;
    right: -160px;
    bottom: 20%;
    animation: patientLineMove 12s linear infinite reverse;
}

/* =====================================================
   VISUAL GRID
===================================================== */

.patient-feature__visual-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
    align-items: center;
    gap: 46px;
}

.patient-feature__visual {
    position: relative;
    animation: patientRevealLeft 1s ease both;
}

.patient-feature__photo-frame {
    position: relative;
    max-width: 760px;
}

.patient-feature__photo-frame::before {
    content: "";
    position: absolute;
    inset: 34px -22px -24px 34px;
    z-index: -1;
    border-radius: 42px;
    background:
        linear-gradient(145deg, rgba(91, 166, 108, .22), rgba(255, 255, 255, .42));
    border: 1px solid rgba(91, 166, 108, .22);
    box-shadow: var(--patient-shadow-sm);
    animation: patientFrameFloat 7s ease-in-out infinite;
}

.patient-feature__photo {
    position: relative;
    height: 570px;
    overflow: hidden;
    border-radius: 44px 120px 44px 44px;
    border: 1px solid rgba(255, 255, 255, .75);
    box-shadow: var(--patient-shadow-lg);
}

.patient-feature__photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(17, 27, 42, .18), transparent 45%),
        linear-gradient(140deg, rgba(255, 255, 255, .18), transparent 35%);
    pointer-events: none;
}

.patient-feature__photo::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 3;
    width: 94px;
    height: 94px;
    border-right: 2px solid var(--patient-green-light);
    border-bottom: 2px solid var(--patient-green-light);
    border-radius: 0 0 34px 0;
    opacity: .9;
}

.patient-feature__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.3s cubic-bezier(.22, 1, .36, 1);
}

.patient-feature__photo:hover img {
    transform: scale(1.055);
}

.patient-feature__photo-label {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 18px;
    background: rgba(17, 27, 42, .82);
    color: var(--patient-white);
    box-shadow: 0 18px 38px rgba(17, 27, 42, .25);
    backdrop-filter: blur(12px);
}

.patient-feature__photo-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(91, 166, 108, .18);
    color: var(--patient-green-light);
    font-size: 18px;
}

.patient-feature__photo-label span:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.patient-feature__photo-label small {
    color: rgba(255, 255, 255, .66);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.patient-feature__photo-label strong {
    font-size: 14px;
    font-weight: 700;
}

/* =====================================================
   COUPON
===================================================== */

.patient-coupon {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 40px;
    border-radius: 34px;
    color: var(--patient-white);
    background:
        radial-gradient(circle at 90% 8%, rgba(115, 194, 126, .3), transparent 30%),
        linear-gradient(145deg, #101b2b 0%, #17283d 56%, #203751 100%);
    border: 1px solid rgba(255, 255, 255, .13);
    box-shadow: var(--patient-shadow-lg);
    animation:
        patientRevealRight 1s .15s ease both,
        patientCouponFloat 6s 1.2s ease-in-out infinite;
}

.patient-coupon::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: -1;
    border: 1px solid rgba(115, 194, 126, .18);
    border-radius: 25px;
}

.patient-coupon__glow {
    position: absolute;
    width: 230px;
    height: 230px;
    right: -85px;
    top: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(115, 194, 126, .26), transparent 70%);
    filter: blur(4px);
    animation: patientGlowPulse 4s ease-in-out infinite;
}

.patient-coupon__shine {
    position: absolute;
    top: -65%;
    left: -55%;
    width: 42%;
    height: 230%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .13),
            transparent);
    transform: rotate(24deg);
    animation: patientCouponShine 6s ease-in-out infinite;
}

.patient-coupon__header,
.patient-coupon__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.patient-coupon__header {
    margin-bottom: 22px;
}

.patient-coupon__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--patient-green-light);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.patient-coupon__code {
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--patient-green-light);
    background: rgba(91, 166, 108, .1);
    border: 1px solid rgba(115, 194, 126, .3);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.patient-coupon__offer {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.patient-coupon__amount {
    font-size: clamp(80px, 8vw, 120px);
    font-weight: 900;
    line-height: .85;
    letter-spacing: -.08em;
    color: var(--patient-white);
    text-shadow: 0 18px 40px rgba(0, 0, 0, .24);
}

.patient-coupon__off {
    margin-bottom: 10px;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 900;
    line-height: 1;
    color: var(--patient-green-light);
}

.patient-coupon h2 {
    margin: 14px 0 14px;
    color: var(--patient-white);
    font-size: clamp(26px, 2.6vw, 36px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.patient-coupon p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.75;
}

.patient-coupon__divider {
    position: relative;
    height: 1px;
    margin: 28px 0 24px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, .22) 0,
            rgba(255, 255, 255, .22) 8px,
            transparent 8px,
            transparent 16px);
}

.patient-coupon__divider span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--patient-green-light);
    box-shadow:
        0 0 0 7px rgba(91, 166, 108, .1),
        0 0 24px rgba(115, 194, 126, .55);
    transform: translate(-50%, -50%);
}

.patient-coupon__note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    line-height: 1.45;
}

.patient-coupon__note i {
    color: var(--patient-green-light);
    font-size: 15px;
}

.patient-feature__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 999px;
    color: var(--patient-navy);
    background: linear-gradient(135deg,
            var(--patient-green-light),
            var(--patient-green));
    border: 1px solid var(--patient-green-light);
    box-shadow: 0 14px 30px rgba(91, 166, 108, .24);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;
    transition: .35s ease;
}

.patient-feature__button:hover {
    color: var(--patient-navy);
    background: var(--patient-white);
    border-color: var(--patient-white);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .22);
}

.patient-feature__button i {
    transition: transform .35s ease;
}

.patient-feature__button:hover i {
    transform: translate(3px, -3px);
}

/* =====================================================
   CONTENT CARD
===================================================== */

.patient-feature__content {
    margin-top: 74px;
}

.patient-feature__copy {
    position: relative;
    max-width: 1000px;
    margin-inline: auto;
    padding: clamp(36px, 5vw, 60px);
    border-radius: 36px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .88);
    box-shadow: var(--patient-shadow);
    backdrop-filter: blur(16px);
    animation: patientRevealUp 1s .3s ease both;
}

.patient-feature__copy::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 36px 0 0 36px;
    background: linear-gradient(180deg,
            var(--patient-green-light),
            var(--patient-green),
            var(--patient-green-dark));
}

.patient-feature__copy::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 20px;
    width: 92px;
    height: 92px;
    border-top: 1px solid rgba(91, 166, 108, .32);
    border-right: 1px solid rgba(91, 166, 108, .32);
    border-radius: 0 24px 0 0;
    pointer-events: none;
}

.patient-feature__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--patient-green-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.patient-feature__copy h3 {
    max-width: 760px;
    margin: 0 0 20px;
    color: var(--patient-navy);
    font-size: clamp(34px, 4.3vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.05em;
}

.patient-feature__lead {
    max-width: 850px;
    margin: 0 0 18px;
    color: var(--patient-text);
    font-size: clamp(17px, 1.6vw, 21px);
    font-weight: 500;
    line-height: 1.75;
}

.patient-feature__description {
    max-width: 840px;
    margin: 0;
    color: var(--patient-muted);
    font-size: 14.5px;
    line-height: 1.85;
}

.patient-feature__highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.patient-highlight {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 18px;
    border-radius: 18px;
    background: rgba(241, 245, 242, .78);
    border: 1px solid rgba(91, 166, 108, .14);
    transition: .35s ease;
}

.patient-highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 166, 108, .34);
    box-shadow: var(--patient-shadow-sm);
}

.patient-highlight__icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--patient-green-dark);
    background: var(--patient-white);
    border: 1px solid rgba(91, 166, 108, .22);
    box-shadow: 0 0 0 7px rgba(91, 166, 108, .06);
}

.patient-highlight>span:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.patient-highlight strong {
    color: var(--patient-navy);
    font-size: 14px;
    font-weight: 800;
}

.patient-highlight small {
    color: var(--patient-muted);
    font-size: 11px;
}

/* =====================================================
   ACTIONS
===================================================== */

.patient-feature__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
}

.patient-feature__call {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-height: 60px;
    padding: 8px 24px 8px 9px;
    border-radius: 999px;
    color: var(--patient-navy);
    background: linear-gradient(135deg,
            var(--patient-green-light),
            var(--patient-green));
    box-shadow: 0 16px 36px rgba(91, 166, 108, .28);
    text-decoration: none;
    transition: .35s ease;
}

.patient-feature__call:hover {
    color: var(--patient-navy);
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(91, 166, 108, .38);
}

.patient-feature__call-icon {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--patient-navy);
    color: var(--patient-white);
}

.patient-feature__call-icon::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(17, 27, 42, .2);
    animation: patientPhonePulse 2s ease-out infinite;
}

.patient-feature__call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.patient-feature__call-text small {
    margin-bottom: 3px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    opacity: .72;
}

.patient-feature__call-text strong {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .02em;
}

.patient-feature__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 14px 26px;
    border-radius: 999px;
    color: var(--patient-navy);
    background: transparent;
    border: 1px solid rgba(17, 27, 42, .18);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;
    transition: .35s ease;
}

.patient-feature__secondary:hover {
    color: var(--patient-white);
    background: var(--patient-navy);
    border-color: var(--patient-navy);
    transform: translateY(-3px);
}

.patient-feature__secondary i {
    transition: transform .35s ease;
}

.patient-feature__secondary:hover i {
    transform: translate(3px, -3px);
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes patientOrbFloat {

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

    50% {
        transform: translate(24px, -20px) scale(1.08);
    }
}

@keyframes patientShapeFloatOne {

    0%,
    100% {
        transform: translateY(0) rotate(18deg);
    }

    50% {
        transform: translateY(-22px) rotate(28deg);
    }
}

@keyframes patientShapeFloatTwo {

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

    50% {
        transform: translateY(20px) rotate(-4deg);
    }
}

@keyframes patientLineMove {
    from {
        transform: translateX(-60px);
        opacity: .2;
    }

    50% {
        opacity: .8;
    }

    to {
        transform: translateX(100px);
        opacity: .2;
    }
}

@keyframes patientFrameFloat {

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

    50% {
        transform: translateY(12px);
    }
}

@keyframes patientCouponFloat {

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes patientCouponShine {

    0%,
    28% {
        left: -55%;
    }

    56%,
    100% {
        left: 135%;
    }
}

@keyframes patientGlowPulse {

    0%,
    100% {
        opacity: .55;
        transform: scale(1);
    }

    50% {
        opacity: .95;
        transform: scale(1.12);
    }
}

@keyframes patientPhonePulse {
    0% {
        opacity: .6;
        transform: scale(.9);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

@keyframes patientRevealLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes patientRevealRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes patientRevealUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1199.98px) {
    .patient-feature__visual-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
        gap: 32px;
    }

    .patient-feature__photo {
        height: 520px;
        border-radius: 38px 92px 38px 38px;
    }

    .patient-coupon {
        padding: 34px 30px;
    }

    .patient-coupon__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 991.98px) {
    .patient-feature {
        padding: 78px 0;
    }

    .patient-feature__visual-grid {
        grid-template-columns: 1fr;
    }

    .patient-feature__visual,
    .patient-coupon {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .patient-coupon {
        margin-top: -58px;
        z-index: 5;
    }

    .patient-feature__photo {
        height: 500px;
    }

    .patient-coupon__footer {
        flex-direction: row;
        align-items: center;
    }

    .patient-feature__content {
        margin-top: 60px;
    }

    .patient-shape--one {
        right: -30px;
    }
}

@media (max-width: 767.98px) {
    .patient-feature {
        padding: 64px 0;
    }

    .patient-feature__photo {
        height: 420px;
        border-radius: 30px 68px 30px 30px;
    }

    .patient-feature__photo-frame::before {
        inset: 24px -12px -16px 24px;
        border-radius: 34px;
    }

    .patient-feature__photo-label {
        left: 18px;
        bottom: 18px;
    }

    .patient-feature__highlights {
        grid-template-columns: 1fr;
    }

    .patient-feature__copy {
        border-radius: 28px;
    }
}

@media (max-width: 575.98px) {
    .patient-feature {
        padding: 48px 0;
    }

    .patient-feature__visual-grid {
        gap: 0;
    }

    .patient-feature__photo {
        height: 340px;
        border-radius: 24px 54px 24px 24px;
    }

    .patient-feature__photo::after {
        right: 14px;
        bottom: 14px;
        width: 62px;
        height: 62px;
    }

    .patient-feature__photo-label {
        max-width: calc(100% - 30px);
        padding: 11px 13px;
    }

    .patient-feature__photo-icon {
        width: 36px;
        height: 36px;
    }

    .patient-coupon {
        width: calc(100% - 18px);
        margin-top: -32px;
        padding: 28px 22px;
        border-radius: 24px;
    }

    .patient-coupon__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .patient-coupon__amount {
        font-size: clamp(72px, 25vw, 94px);
    }

    .patient-coupon__off {
        font-size: 30px;
    }

    .patient-coupon__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .patient-feature__button {
        width: 100%;
    }

    .patient-feature__content {
        margin-top: 46px;
    }

    .patient-feature__copy {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .patient-feature__copy h3 {
        font-size: 32px;
    }

    .patient-feature__lead {
        font-size: 16px;
    }

    .patient-feature__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .patient-feature__call,
    .patient-feature__secondary {
        width: 100%;
    }

    .patient-feature__call {
        justify-content: center;
    }

    .patient-shape--one,
    .patient-shape--two,
    .patient-line {
        display: none;
    }
}

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

    .patient-feature *,
    .patient-feature *::before,
    .patient-feature *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* =====================================================
LUXURY PATIENT FEATURE UPGRADE
Add after the existing patient-feature CSS
===================================================== */

.patient-feature {
    background:
        radial-gradient(circle at 8% 14%,
            rgba(91, 166, 108, 0.17),
            transparent 29%),
        radial-gradient(circle at 88% 72%,
            rgba(17, 27, 42, 0.14),
            transparent 34%),
        linear-gradient(135deg,
            #fbfdfb 0%,
            #f2f7f3 46%,
            #e7f0e9 100%);
}

.patient-feature::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    opacity: 0.27;
    background-image:
        linear-gradient(rgba(17, 27, 42, 0.04) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(17, 27, 42, 0.04) 1px,
            transparent 1px);
    background-size: 62px 62px;
    mask-image:
        linear-gradient(to bottom,
            transparent,
            #000 12%,
            #000 86%,
            transparent);
}

/* =====================================================
MORE LUXURY BACKGROUND ELEMENTS
===================================================== */

.patient-orb {
    filter: blur(18px);
}

.patient-orb--one {
    width: 430px;
    height: 430px;
    background:
        radial-gradient(circle,
            rgba(91, 166, 108, 0.26),
            transparent 68%);
}

.patient-orb--two {
    width: 520px;
    height: 520px;
    background:
        radial-gradient(circle,
            rgba(17, 27, 42, 0.17),
            transparent 69%);
}

.patient-shape {
    border-color: rgba(91, 166, 108, 0.25);
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.34),
            rgba(91, 166, 108, 0.06));
    box-shadow:
        inset 0 0 28px rgba(91, 166, 108, 0.08),
        0 18px 50px rgba(17, 27, 42, 0.05);
}

/* =====================================================
FALLING WATER DROPS
===================================================== */

.patient-water-drop {
    position: absolute;
    top: -100px;
    z-index: 2;
    display: grid;
    place-items: center;
    color: var(--patient-green-light);
    opacity: 0;
    pointer-events: none;
    filter:
        drop-shadow(0 0 8px rgba(115, 194, 126, 0.75)) drop-shadow(0 0 18px rgba(91, 166, 108, 0.4));
    will-change: top, opacity, transform;
}

.patient-water-drop i {
    display: block;
}

.patient-water-drop::after {
    position: absolute;
    top: 82%;
    left: 50%;
    width: 7px;
    height: 35px;
    content: "";
    border-radius: 50%;
    opacity: 0.5;
    background:
        linear-gradient(to bottom,
            rgba(115, 194, 126, 0.72),
            transparent);
    filter: blur(4px);
    transform: translateX(-50%);
}

.patient-water-drop--one {
    left: 4%;
    font-size: 50px;
    animation: patientWaterFallOne 6.8s linear infinite;
}

.patient-water-drop--two {
    left: 31%;
    font-size: 30px;
    animation: patientWaterFallTwo 8.2s linear 1.6s infinite;
}

.patient-water-drop--three {
    left: 67%;
    font-size: 42px;
    animation: patientWaterFallThree 7.5s linear 3.1s infinite;
}

.patient-water-drop--four {
    left: 91%;
    font-size: 26px;
    animation: patientWaterFallFour 8.8s linear 4.4s infinite;
}

/* Water splash rings */

.patient-water-ripple {
    position: absolute;
    z-index: 1;
    width: 90px;
    height: 24px;
    border: 2px solid rgba(115, 194, 126, 0.35);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.25);
}

.patient-water-ripple--one {
    bottom: 12%;
    left: 7%;
    animation: patientWaterRipple 6.8s ease-out infinite;
}

.patient-water-ripple--two {
    right: 6%;
    bottom: 19%;
    animation: patientWaterRipple 8.8s ease-out 4.4s infinite;
}

/* =====================================================
LUXURY IMAGE FRAME
===================================================== */

.patient-feature__visual {
    animation:
        patientRevealLeft 1s ease both,
        patientVisualLuxuryFloat 7s 1s ease-in-out infinite;
}

.patient-feature__photo-frame {
    isolation: isolate;
}

.patient-feature__photo-frame::before {
    inset: 40px -27px -29px 40px;
    border: 1px solid rgba(115, 194, 126, 0.34);
    background:
        linear-gradient(145deg,
            rgba(115, 194, 126, 0.3),
            rgba(255, 255, 255, 0.52));
    box-shadow:
        0 26px 65px rgba(17, 27, 42, 0.11),
        0 0 45px rgba(91, 166, 108, 0.12);
    animation: patientLuxuryBackFrame 6s ease-in-out infinite;
}

.patient-feature__photo {
    border: 2px solid rgba(255, 255, 255, 0.82);
    box-shadow:
        0 42px 95px rgba(17, 27, 42, 0.27),
        0 20px 50px rgba(17, 27, 42, 0.12),
        0 0 0 9px rgba(255, 255, 255, 0.48),
        0 0 42px rgba(91, 166, 108, 0.2);
    animation: patientPhotoBorderGlow 4.5s ease-in-out infinite;
}

.patient-feature__photo::before {
    background:
        linear-gradient(to top,
            rgba(17, 27, 42, 0.4),
            transparent 51%),
        linear-gradient(130deg,
            rgba(115, 194, 126, 0.17),
            transparent 42%);
}

.patient-feature__photo::after {
    width: 115px;
    height: 115px;
    border-right: 3px solid var(--patient-green-light);
    border-bottom: 3px solid var(--patient-green-light);
    box-shadow:
        9px 9px 24px rgba(91, 166, 108, 0.2);
    animation: patientCornerGlow 3s ease-in-out infinite;
}

.patient-feature__photo img {
    will-change: transform;
    animation: patientLuxuryImageMotion 15s ease-in-out infinite alternate;
}

.patient-feature__photo:hover img {
    animation-play-state: paused;
    transform: scale(1.09);
}

/* Moving glass reflection */

.patient-feature__photo-frame::after {
    position: absolute;
    top: -28%;
    left: -70%;
    z-index: 4;
    width: 34%;
    height: 155%;
    content: "";
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.34),
            transparent);
    transform: rotate(21deg);
    animation: patientPhotoShine 6.5s ease-in-out infinite;
}

.patient-feature__photo-label {
    border-color: rgba(115, 194, 126, 0.3);
    background:
        linear-gradient(135deg,
            rgba(9, 23, 38, 0.9),
            rgba(24, 45, 67, 0.82));
    box-shadow:
        0 20px 45px rgba(17, 27, 42, 0.31),
        0 0 25px rgba(91, 166, 108, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: patientPhotoLabelFloat 4s ease-in-out infinite;
}

.patient-feature__photo-icon {
    position: relative;
    background:
        linear-gradient(145deg,
            rgba(115, 194, 126, 0.28),
            rgba(91, 166, 108, 0.13));
    box-shadow:
        inset 0 0 15px rgba(115, 194, 126, 0.15),
        0 0 20px rgba(115, 194, 126, 0.18);
}

.patient-feature__photo-icon::after {
    position: absolute;
    inset: -6px;
    content: "";
    border: 1px solid rgba(115, 194, 126, 0.38);
    border-radius: 50%;
    animation: patientLabelIconPulse 2.2s ease-out infinite;
}

.patient-feature__photo-icon i {
    animation: patientSmallDropBounce 2.5s ease-in-out infinite;
}

/* =====================================================
LUXURY COUPON
===================================================== */

/* ==========================================================================
   1. DESIGN TOKENS & PALETTE (Using Your Custom Colors)
   ========================================================================== */
:root {
    --navy: #111b2a;
    --navy-secondary: #172435;
    --navy-deep: #0c1522;
    --green: #5ba66c;
    --green-bright: #73c27e;
    --green-dark: #458c57;
    --white: #ffffff;
    --gray: #d7dce2;
    --gray-muted: #aeb7c2;
    --border-green: rgba(91, 166, 108, 0.8);

    --font-body: "Montserrat", sans-serif;
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --container-width: 1240px;
    --header-height: 96px;
    --transition: 0.3s ease;
}

/* ==========================================================================
   2. PRESENTATION WRAPPER
   ========================================================================== */
/* Global body styles removed: this component must not control the page layout. */

.coupon-wrapper {
    width: 100%;
    max-width: 440px;
    /* Marginally narrower for better vertical proportions */
}

/* ==========================================================================
   3. LUXURY COUPON BASE CONTAINER (Shortened & Compacted)
   ========================================================================== */
.luxury-coupon {
    position: relative;
    isolation: isolate;
    width: 100%;
    overflow: hidden;
    padding: 24px;
    /* Reduced padding from 40px to shrink length */
    border: 1px solid rgba(91, 166, 108, 0.25);
    border-radius: 20px;
    background:
        radial-gradient(circle at 90% 10%, rgba(91, 166, 108, 0.15), transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(23, 36, 53, 0.8), transparent 50%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.5),
        0 10px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0px rgba(255, 255, 255, 0.05);
    animation: luxuryCouponFloat 8s ease-in-out infinite;
}

/* Inner Emerald Thread Border */
.luxury-coupon::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 10px;
    pointer-events: none;
    border: 1px solid rgba(91, 166, 108, 0.15);
    border-radius: 12px;
}

/* Subtle back glow based on your green palette */
.luxury-coupon::after {
    content: "";
    position: absolute;
    z-index: -2;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(91, 166, 108, 0.12),
            transparent 70%);
    filter: blur(20px);
}

/* ==========================================================================
   4. ATMOSPHERIC BACKDROP & SHIMMER
   ========================================================================== */
.luxury-coupon__ambient {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.luxury-coupon__orb {
    position: absolute;
    border-radius: 50%;
}

.luxury-coupon__orb--one {
    top: -60px;
    right: -40px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(91, 166, 108, 0.08);
    background: rgba(91, 166, 108, 0.01);
}

/* Fine Grid Pattern */
.luxury-coupon__grid {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image:
        linear-gradient(rgba(91, 166, 108, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 166, 108, 0.5) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Elegant Sweep Animation */
.luxury-coupon__shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 50%;
    height: 300%;
    opacity: 0.1;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2) 30%,
            var(--green-bright) 50%,
            rgba(255, 255, 255, 0.2) 70%,
            transparent);
    transform: rotate(35deg);
    animation: luxuryShineSweep 7s ease-in-out infinite;
}

/* ==========================================================================
   5. COUPON HEADER
   ========================================================================== */
.luxury-coupon__header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    /* Reduced vertical gap */
}

.luxury-coupon__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.luxury-coupon__brand-icon {
    width: 36px;
    /* Scaled down slightly */
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(91, 166, 108, 0.3);
    border-radius: 8px;
    color: var(--green-bright);
    background: rgba(91, 166, 108, 0.05);
}

.luxury-coupon__brand-icon svg {
    width: 16px;
    height: 16px;
}

.luxury-coupon__brand-text {
    display: flex;
    flex-direction: column;
}

.luxury-coupon__brand-text small {
    color: var(--green-bright);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.luxury-coupon__brand-text strong {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
}

.luxury-coupon__badge {
    padding: 4px 10px;
    border: 1px solid rgba(91, 166, 108, 0.3);
    border-radius: 4px;
    color: var(--green-bright);
    background: rgba(91, 166, 108, 0.05);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ==========================================================================
   6. CENTRAL OFFER & VALUE BLOCK
   ========================================================================== */
.luxury-coupon__content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 16px;
    /* Compressed spacing */
}

.luxury-coupon__offer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    /* Margins shortened vertically */
    border: 1px solid rgba(91, 166, 108, 0.2);
    border-radius: 12px;
    background: rgba(23, 36, 53, 0.4);
}

.luxury-coupon__discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.luxury-coupon__save {
    color: var(--green);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.luxury-coupon__price {
    display: flex;
    align-items: flex-start;
}

.luxury-coupon__currency {
    margin-top: 6px;
    color: var(--green-bright);
    font-size: 24px;
    font-family: var(--font-heading);
}

.luxury-coupon__price strong {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 72px;
    /* Smaller, more compact numerical display */
    font-weight: 500;
    line-height: 0.8;
    letter-spacing: -0.03em;
}

.luxury-coupon__off {
    display: flex;
    flex-direction: column;
}

.luxury-coupon__off strong {
    color: var(--green);
    font-size: 24px;
    font-weight: 900;
    line-height: 0.85;
}

.luxury-coupon__off small {
    color: var(--gray-muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.luxury-coupon__limited {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 4px 10px;
    border-radius: 99px;
    color: var(--gray);
    background: rgba(255, 255, 255, 0.02);
    font-size: 8px;
    font-weight: 600;
}

.luxury-coupon__limited svg {
    color: var(--green);
}

/* ==========================================================================
   7. EDITORIAL CONTENT
   ========================================================================== */
.luxury-coupon__copy {
    text-align: center;
}

.luxury-coupon__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 4px;
    color: var(--green);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.luxury-coupon__eyebrow::after,
.luxury-coupon__eyebrow::before {
    content: "";
    width: 14px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green));
}

.luxury-coupon__eyebrow::after {
    background: linear-gradient(90deg, var(--green), transparent);
}

.luxury-coupon h2 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
}

.luxury-coupon__description {
    margin: 6px 0 0;
    color: var(--gray-muted);
    font-size: 11px;
    line-height: 1.6;
}

/* ==========================================================================
   8. COMPACTED TICKET PERFORATION SPLIT
   ========================================================================== */
.luxury-coupon__perforation {
    position: relative;
    z-index: 3;
    height: 1px;
    margin: 18px -24px;
    /* Reduced vertical split margin */
    background: repeating-linear-gradient(90deg,
            rgba(91, 166, 108, 0.25) 0,
            rgba(91, 166, 108, 0.25) 6px,
            transparent 6px,
            transparent 12px);
}

.luxury-coupon__perforation::before,
.luxury-coupon__perforation::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--navy-deep);
    border: 1px solid rgba(91, 166, 108, 0.25);
    transform: translateY(-50%);
}

.luxury-coupon__perforation::before {
    left: -9px;
}

.luxury-coupon__perforation::after {
    right: -9px;
}

.luxury-coupon__perforation span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green);
    transform: translate(-50%, -50%);
}

/* ==========================================================================
   9. POLISHED DETAILS / TERMS
   ========================================================================== */
.luxury-coupon__details {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
}

.luxury-coupon__term-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-muted);
    font-size: 10px;
    line-height: 1.3;
}

.luxury-coupon__term-item svg {
    flex-shrink: 0;
    color: var(--green);
}

/* ==========================================================================
   10. SIGNATURE FOOTER & ACTION AREA
   ========================================================================== */
.luxury-coupon__footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.luxury-coupon__validity {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.luxury-coupon__validity small {
    color: var(--gray-muted);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.luxury-coupon__validity strong {
    color: var(--green-bright);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

/* Compact CTA Button */
.luxury-coupon__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    /* Slimmed padding */
    border: 1px solid var(--green);
    border-radius: 8px;
    color: var(--navy-deep);
    background: linear-gradient(135deg, var(--green-bright), var(--green));
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
}

.luxury-coupon__button svg {
    transition: transform var(--transition);
}

.luxury-coupon__button:hover {
    color: var(--white);
    background: var(--navy-secondary);
    border-color: var(--green-bright);
    transform: translateY(-1px);
}

.luxury-coupon__button:hover svg {
    transform: translate(1px, -1px);
}

/* ==========================================================================
   11. ANIMATIONS KEYFRAME SCHEMES
   ========================================================================== */
@keyframes luxuryCouponFloat {

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

    50% {
        transform: translateY(-4px);
    }
}

@keyframes luxuryShineSweep {

    0%,
    15% {
        left: -100%;
        top: -100%;
    }

    50%,
    100% {
        left: 150%;
        top: 150%;
    }
}

/* ==========================================================================
   12. MOBILE OPTIMIZATION
   ========================================================================== */
@media (max-width: 400px) {
    .luxury-coupon {
        padding: 18px 16px;
    }

    .luxury-coupon__perforation {
        margin-inline: -16px;
    }
}

/* =====================================================
GLASS CONTENT CARD
===================================================== */

.patient-feature__copy {
    border: 1px solid rgba(255, 255, 255, 0.96);
    background:
        radial-gradient(circle at 94% 5%,
            rgba(115, 194, 126, 0.1),
            transparent 28%),
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.9),
            rgba(244, 249, 245, 0.74));
    box-shadow:
        0 32px 80px rgba(17, 27, 42, 0.14),
        0 14px 34px rgba(17, 27, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.patient-feature__copy::before {
    width: 6px;
    box-shadow:
        0 0 22px rgba(91, 166, 108, 0.45);
    animation: patientContentLineGlow 3.5s ease-in-out infinite;
}

.patient-feature__eyebrow i {
    animation: patientSmallDropBounce 2.4s ease-in-out infinite;
}

.patient-feature__copy h3 {
    text-wrap: balance;
}

.patient-highlight {
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.84),
            rgba(235, 243, 237, 0.73));
    box-shadow:
        0 13px 32px rgba(17, 27, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.patient-highlight__icon {
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.patient-highlight:hover .patient-highlight__icon {
    color: var(--patient-white);
    background: var(--patient-green);
    box-shadow:
        0 0 0 8px rgba(91, 166, 108, 0.09),
        0 12px 25px rgba(91, 166, 108, 0.22);
    transform: rotate(-7deg) scale(1.08);
}

/* =====================================================
NEW ANIMATIONS
===================================================== */

@keyframes patientWaterFallOne {
    0% {
        top: -100px;
        opacity: 0;
        transform: translateX(0) scale(0.55) rotate(-8deg);
    }

    10% {
        opacity: 0.72;
    }

    48% {
        opacity: 0.5;
        transform: translateX(34px) scale(1) rotate(5deg);
    }

    88% {
        opacity: 0.25;
    }

    100% {
        top: 91%;
        opacity: 0;
        transform: translateX(-14px) scale(0.72) rotate(-4deg);
    }


}

@keyframes patientWaterFallTwo {
    0% {
        top: -90px;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }

    12% {
        opacity: 0.55;
    }

    52% {
        opacity: 0.4;
        transform: translateX(-24px) scale(1);
    }

    100% {
        top: 94%;
        opacity: 0;
        transform: translateX(19px) scale(0.65);
    }


}

@keyframes patientWaterFallThree {
    0% {
        top: -100px;
        opacity: 0;
        transform: translateX(0) scale(0.6) rotate(6deg);
    }

    11% {
        opacity: 0.65;
    }

    50% {
        opacity: 0.48;
        transform: translateX(30px) scale(1.04) rotate(-5deg);
    }

    100% {
        top: 92%;
        opacity: 0;
        transform: translateX(-20px) scale(0.7) rotate(4deg);
    }


}

@keyframes patientWaterFallFour {
    0% {
        top: -85px;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }

    14% {
        opacity: 0.5;
    }

    55% {
        opacity: 0.38;
        transform: translateX(-22px) scale(0.95);
    }

    100% {
        top: 90%;
        opacity: 0;
        transform: translateX(15px) scale(0.65);
    }


}

@keyframes patientWaterRipple {

    0%,
    82% {
        opacity: 0;
        transform: scale(0.2);
    }

    87% {
        opacity: 0.45;
    }

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


}

@keyframes patientVisualLuxuryFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -10px;
    }


}

@keyframes patientLuxuryBackFrame {

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

    50% {
        transform: translateY(13px) rotate(0.7deg);
    }


}

@keyframes patientPhotoBorderGlow {

    0%,
    100% {
        box-shadow:
            0 42px 95px rgba(17, 27, 42, 0.27),
            0 20px 50px rgba(17, 27, 42, 0.12),
            0 0 0 9px rgba(255, 255, 255, 0.48),
            0 0 25px rgba(91, 166, 108, 0.12);
    }

    50% {
        box-shadow:
            0 48px 108px rgba(17, 27, 42, 0.31),
            0 23px 58px rgba(17, 27, 42, 0.15),
            0 0 0 9px rgba(255, 255, 255, 0.6),
            0 0 55px rgba(91, 166, 108, 0.3);
    }


}

@keyframes patientLuxuryImageMotion {
    0% {
        transform: scale(1.035) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.09) translate3d(-1.4%, -0.8%, 0);
    }

    100% {
        transform: scale(1.14) translate3d(1%, -1.8%, 0);
    }

}

@keyframes patientPhotoShine {

    0%,
    25% {
        left: -70%;
        opacity: 0;
    }

    36% {
        opacity: 0.55;
    }

    60% {
        left: 140%;
        opacity: 0;
    }

    100% {
        left: 140%;
        opacity: 0;
    }

}

@keyframes patientCornerGlow {

    0%,
    100% {
        opacity: 0.55;
        filter: drop-shadow(0 0 4px rgba(115, 194, 126, 0.2));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 13px rgba(115, 194, 126, 0.75));
    }

}

@keyframes patientPhotoLabelFloat {

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

    50% {
        transform: translateY(-8px);
    }


}

@keyframes patientLabelIconPulse {
    0% {
        opacity: 0.65;
        transform: scale(0.85);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.5);
    }


}

@keyframes patientSmallDropBounce {

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

    50% {
        transform: translateY(-5px) scale(1.08);
    }

}

@keyframes patientCouponRingRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes patientCouponStar {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(0.9) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(12deg);
    }


}

@keyframes patientCouponDotGlow {

    0%,
    100% {
        box-shadow:
            0 0 0 6px rgba(91, 166, 108, 0.08),
            0 0 16px rgba(115, 194, 126, 0.35);
    }

    50% {
        box-shadow:
            0 0 0 11px rgba(91, 166, 108, 0.035),
            0 0 34px rgba(115, 194, 126, 0.8);
    }

}

@keyframes patientContentLineGlow {

    0%,
    100% {
        opacity: 0.65;
        box-shadow: 0 0 13px rgba(91, 166, 108, 0.26);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(91, 166, 108, 0.62);
    }

}

/* =====================================================
RESPONSIVE WATER DROPS
===================================================== */

@media (max-width: 991.98px) {
    .patient-water-drop--two {
        left: 40%;
    }

    .patient-water-drop--three {
        left: 78%;
    }

    .patient-water-drop--four {
        display: none;
    }

    .patient-water-ripple--two {
        display: none;
    }


}

@media (max-width: 575.98px) {
    .patient-water-drop--one {
        left: 3%;
        font-size: 32px;
        animation-duration: 7.5s;
    }

    .patient-water-drop--two {
        left: 50%;
        font-size: 23px;
        animation-duration: 8.7s;
    }

    .patient-water-drop--three {
        left: 89%;
        font-size: 28px;
        animation-duration: 8s;
    }

    .patient-feature__photo-frame::after {
        width: 45%;
    }

    .patient-feature__photo::after {
        width: 72px;
        height: 72px;
    }


}

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

    .patient-water-drop,
    .patient-water-ripple,
    .patient-feature__visual,
    .patient-feature__photo-frame::before,
    .patient-feature__photo-frame::after,
    .patient-feature__photo,
    .patient-feature__photo img,
    .patient-feature__photo-label,
    .patient-feature__photo-icon::after,
    .patient-coupon::after {
        animation: none !important;
        translate: none !important;
        transform: none !important;
    }
}


/* =====================================================
   RESPONSIVE FIXES — DESIGN PRESERVED
   These overrides only correct sizing, stacking and overflow.
===================================================== */

.patient-feature,
.patient-feature * {
    min-width: 0;
}

.patient-feature__container,
.patient-feature__visual-grid,
.patient-feature__visual,
.patient-feature__photo-frame,
.coupon-wrapper,
.luxury-coupon,
.patient-feature__content,
.patient-feature__copy {
    max-width: 100%;
}

.coupon-wrapper {
    justify-self: center;
}

.luxury-coupon {
    box-sizing: border-box;
}

.luxury-coupon__header,
.luxury-coupon__footer,
.luxury-coupon__discount {
    min-width: 0;
}

.luxury-coupon__brand,
.luxury-coupon__brand-text,
.luxury-coupon__copy,
.luxury-coupon__validity {
    min-width: 0;
}

.luxury-coupon__brand-text strong,
.luxury-coupon__description,
.luxury-coupon__term-item,
.patient-feature__lead,
.patient-feature__description {
    overflow-wrap: anywhere;
}

@media (max-width: 1199.98px) {
    .patient-feature__visual-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
        gap: 28px;
    }

    .coupon-wrapper {
        width: 100%;
        max-width: 420px;
    }

    .luxury-coupon {
        padding: 22px;
    }

    .luxury-coupon__price strong {
        font-size: clamp(60px, 6.5vw, 72px);
    }

    .patient-feature__photo-frame::before {
        right: -12px;
    }
}

@media (max-width: 991.98px) {
    .patient-feature__visual-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .patient-feature__visual {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .patient-feature__photo-frame {
        width: calc(100% - 18px);
        margin-inline: auto;
    }

    .coupon-wrapper {
        position: relative;
        z-index: 8;
        width: min(calc(100% - 36px), 620px);
        max-width: none;
        margin: -54px auto 0;
    }

    .luxury-coupon {
        width: 100%;
        animation-name: luxuryCouponFloat;
    }

    .patient-feature__content {
        margin-top: 58px;
    }
}

@media (max-width: 767.98px) {
    .patient-feature {
        padding: 62px 0;
    }

    .patient-feature__photo-frame {
        width: calc(100% - 12px);
    }

    .patient-feature__photo {
        height: clamp(360px, 66vw, 440px);
    }

    .patient-feature__photo-frame::before {
        inset: 24px -8px -16px 22px;
    }

    .coupon-wrapper {
        width: min(calc(100% - 26px), 600px);
        margin-top: -42px;
    }

    .luxury-coupon__header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .luxury-coupon__badge {
        flex: 0 0 auto;
    }

    .luxury-coupon__footer {
        align-items: center;
        flex-wrap: wrap;
    }

    .luxury-coupon__button {
        min-height: 44px;
    }

    .patient-feature__copy {
        padding: 34px 28px;
    }
}

@media (max-width: 575.98px) {
    .patient-feature {
        padding: 48px 0;
    }

    .patient-feature__photo-frame {
        width: 100%;
    }

    .patient-feature__photo {
        height: clamp(300px, 88vw, 360px);
        border-radius: 24px 52px 24px 24px;
    }

    .patient-feature__photo-frame::before {
        inset: 18px 0 -12px 16px;
        border-radius: 28px;
    }

    .patient-feature__photo-label {
        right: 14px;
        bottom: 14px;
        left: 14px;
        width: auto;
        max-width: none;
    }

    .coupon-wrapper {
        width: calc(100% - 12px);
        margin-top: -24px;
    }

    .luxury-coupon {
        padding: 20px 17px;
        border-radius: 18px;
    }

    .luxury-coupon::before {
        inset: 8px;
        border-radius: 11px;
    }

    .luxury-coupon__header {
        gap: 10px;
        margin-bottom: 16px;
    }

    .luxury-coupon__brand {
        width: 100%;
    }

    .luxury-coupon__badge {
        margin-left: 46px;
    }

    .luxury-coupon__content {
        gap: 13px;
    }

    .luxury-coupon__offer {
        padding: 14px 8px;
    }

    .luxury-coupon__discount {
        gap: 5px;
    }

    .luxury-coupon__price strong {
        font-size: clamp(58px, 20vw, 72px);
    }

    .luxury-coupon__currency {
        font-size: 20px;
    }

    .luxury-coupon__off strong {
        font-size: 21px;
    }

    .luxury-coupon h2 {
        font-size: clamp(20px, 6vw, 24px);
    }

    .luxury-coupon__description {
        font-size: 10.5px;
    }

    .luxury-coupon__perforation {
        margin: 16px -17px;
    }

    .luxury-coupon__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .luxury-coupon__validity {
        align-items: center;
        text-align: center;
    }

    .luxury-coupon__button {
        width: 100%;
    }

    .patient-feature__content {
        margin-top: 42px;
    }

    .patient-feature__copy {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .patient-feature__copy::after {
        width: 62px;
        height: 62px;
    }

    .patient-feature__copy h3 {
        font-size: clamp(29px, 9vw, 36px);
    }

    .patient-feature__eyebrow {
        align-items: flex-start;
        line-height: 1.5;
    }

    .patient-feature__highlights {
        gap: 12px;
    }

    .patient-highlight {
        padding: 15px;
    }

    .patient-feature__call,
    .patient-feature__secondary {
        min-width: 0;
        padding-right: 18px;
        padding-left: 9px;
    }

    .patient-feature__secondary {
        padding-inline: 18px;
    }
}

@media (max-width: 380px) {
    .patient-feature__photo {
        height: 285px;
    }

    .patient-feature__photo-label {
        gap: 9px;
        padding: 10px 11px;
    }

    .patient-feature__photo-label strong {
        font-size: 12px;
    }

    .patient-feature__photo-label small {
        font-size: 8px;
    }

    .luxury-coupon__brand-text strong {
        font-size: 11px;
    }

    .luxury-coupon__badge {
        margin-left: 0;
    }

    .luxury-coupon__limited {
        text-align: center;
    }

    .patient-feature__call-text strong {
        font-size: 15px;
    }
}

/* end first section */
/* ==================================================================================== */

/* start second section */

/* =========================================================
   SERVICES TABS SECTION
========================================================= */

.services-tabs-section {
    --services-navy: #26364f;
    --services-navy-dark: #1e2b42;
    --services-green: #55ca7a;
    --services-green-hover: #42b968;
    --services-white: #ffffff;
    --services-off-white: #fafafa;
    --services-text: #1f2937;
    --services-muted: #717b8a;
    --services-border: #e4e8ed;

    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: var(--services-text);
    background: var(--services-off-white);
}

.services-tabs-section__shape {
    position: absolute;
    top: -300px;
    right: -240px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: rgba(85, 202, 122, 0.08);
    pointer-events: none;
}

.services-tabs-section__container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

/* Section heading */

.services-tabs-section__heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.services-tabs-section__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--services-green-hover);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.services-tabs-section__heading h2 {
    margin: 0;
    color: var(--services-navy-dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.services-tabs-section__heading h2 span {
    display: block;
    color: var(--services-green-hover);
}

.services-tabs-section__heading p {
    max-width: 680px;
    margin: 20px 0 0;
    color: var(--services-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* Main card */

.services-tabs-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.45fr);
    min-height: 570px;
    overflow: hidden;
    border: 1px solid var(--services-border);
    border-radius: 24px;
    background: var(--services-white);
    box-shadow: 0 24px 70px rgba(30, 43, 66, 0.12);
}

/* Vertical tabs */

.services-tabs-nav {
    display: flex;
    flex-direction: column;
    padding: 18px;
    background: var(--services-navy-dark);
}

.services-tab {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 26px;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 74px;
    padding: 13px 16px;
    color: rgba(255, 255, 255, 0.72);
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    cursor: pointer;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.services-tab:last-child {
    border-bottom: 0;
}

.services-tab:hover {
    color: var(--services-white);
    background: rgba(255, 255, 255, 0.06);
}

.services-tab.is-active {
    color: var(--services-navy-dark);
    background: var(--services-white);
    border-radius: 14px;
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(7, 17, 31, 0.22);
}

.services-tab__number {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--services-green);
    border: 1px solid rgba(85, 202, 122, 0.5);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
}

.services-tab.is-active .services-tab__number {
    color: var(--services-white);
    background: var(--services-green);
    border-color: var(--services-green);
}

.services-tab__content {
    min-width: 0;
}

.services-tab__content strong,
.services-tab__content small {
    display: block;
}

.services-tab__content strong {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.services-tab__content small {
    margin-top: 3px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.services-tab.is-active .services-tab__content small {
    color: var(--services-muted);
}

.services-tab__arrow {
    color: var(--services-green);
    font-size: 19px;
    transition: transform 0.25s ease;
}

.services-tab:hover .services-tab__arrow,
.services-tab.is-active .services-tab__arrow {
    transform: translateX(4px);
}

/* Tab panels */

.services-tabs-panels {
    position: relative;
    min-width: 0;
    background: var(--services-white);
}

.service-panel {
    min-height: 100%;
    animation: servicesPanelFade 0.4s ease;
}

.service-panel[hidden] {
    display: none;
}

.service-panel__image {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.service-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.service-panel:hover .service-panel__image img {
    transform: scale(1.035);
}

.service-panel__content {
    position: relative;
    padding: 38px 46px 44px;
}

.service-panel__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 46px;
    width: 66px;
    height: 4px;
    border-radius: 999px;
    background: var(--services-green);
}

.service-panel__label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--services-green-hover);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.service-panel h3 {
    margin: 0;
    color: var(--services-navy-dark);
    font-size: clamp(25px, 2.5vw, 36px);
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.service-panel p {
    max-width: 680px;
    margin: 17px 0 20px;
    color: var(--services-muted);
    font-size: 13px;
    line-height: 1.75;
}

.service-panel__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.service-panel__features li {
    position: relative;
    padding: 12px 12px 12px 34px;
    color: var(--services-navy);
    background: var(--services-off-white);
    border: 1px solid var(--services-border);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
}

.service-panel__features li::before {
    content: "✓";
    position: absolute;
    top: 11px;
    left: 12px;
    display: grid;
    place-items: center;
    width: 15px;
    height: 15px;
    color: var(--services-white);
    background: var(--services-green);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 900;
}

.service-panel__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 46px;
    padding: 12px 22px;
    color: var(--services-white);
    background: var(--services-navy);
    border: 1px solid var(--services-navy);
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.service-panel__button span {
    color: var(--services-green);
    font-size: 17px;
    transition: transform 0.25s ease;
}

.service-panel__button:hover {
    color: var(--services-navy-dark);
    background: var(--services-green);
    border-color: var(--services-green);
    transform: translateY(-2px);
}

.service-panel__button:hover span {
    color: var(--services-navy-dark);
    transform: translateX(4px);
}

@keyframes servicesPanelFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */

@media (max-width: 960px) {
    .services-tabs-section {
        padding: 80px 0;
    }

    .services-tabs-card {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .services-tab {
        grid-template-columns: 32px minmax(0, 1fr) 20px;
        min-height: 68px;
        padding-inline: 12px;
    }

    .services-tab__number {
        width: 30px;
        height: 30px;
    }

    .services-tab__content strong {
        font-size: 12px;
    }

    .service-panel__content {
        padding: 34px 30px 38px;
    }

    .service-panel__content::before {
        left: 30px;
    }

    .service-panel__features {
        grid-template-columns: 1fr;
    }
}

/* Mobile */

@media (max-width: 760px) {
    .services-tabs-section {
        padding: 65px 0;
    }

    .services-tabs-section__container {
        width: calc(100% - 28px);
    }

    .services-tabs-card {
        display: block;
        overflow: visible;
        border-radius: 18px;
    }

    .services-tabs-nav {
        display: flex;
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        padding: 12px;
        border-radius: 18px 18px 0 0;
        scrollbar-width: thin;
    }

    .services-tab {
        flex: 0 0 220px;
        min-height: 68px;
        border: 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
    }

    .services-tab.is-active {
        transform: none;
    }

    .services-tab__content small {
        display: none;
    }

    .service-panel__image {
        height: 300px;
    }

    .service-panel__content {
        padding: 32px 24px 36px;
    }

    .service-panel__content::before {
        left: 24px;
    }
}

@media (max-width: 480px) {
    .services-tabs-section__heading h2 {
        font-size: 33px;
    }

    .services-tabs-section__heading p {
        font-size: 13px;
    }

    .services-tab {
        flex-basis: 205px;
    }

    .service-panel__image {
        height: 200px;
    }

    .service-panel h3 {
        font-size: 26px;
    }

    .service-panel__content {
        padding: 30px 20px 34px;
    }

    .service-panel__content::before {
        left: 20px;
    }

    .service-panel__button {
        width: 100%;
        padding-inline: 16px;
        text-align: center;
    }
}

/* end second section */
/* ==================================================================================== */
/* start third section */


:root {
    --navy: #26364f;
    --navy-dark: #1e2b42;
    --hero-dark: #081527;
    --green: #55ca7a;
    --green-hover: #42b968;
    --white: #ffffff;
    --off-white: #fafafa;
    --text-dark: #1f2937;
    --text-muted: #717b8a;
}

/* =====================================================
   DIAGNOSTIC SECTION
===================================================== */

.diagnostic-section {
    position: relative;
    isolation: isolate;
    width: calc(100% - 40px);
    max-width: 1500px;
    min-height: 820px;
    margin: 40px auto 0;
    padding: 100px 0 180px;
    overflow: hidden;
    border-radius: 90px 90px 0 0;
    background:
        radial-gradient(circle at 82% 18%,
            rgba(85, 202, 122, 0.12),
            transparent 30%),
        radial-gradient(circle at 15% 75%,
            rgba(38, 54, 79, 0.75),
            transparent 40%),
        linear-gradient(135deg,
            #081527 0%,
            #0b1b30 52%,
            #102640 100%);
    color: var(--white);
    box-shadow:
        0 -18px 55px rgba(8, 21, 39, 0.12);
}

.diagnostic-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.035;
    background-image:
        linear-gradient(to right,
            rgba(255, 255, 255, 0.45) 1px,
            transparent 1px),
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.45) 1px,
            transparent 1px);
    background-size: 44px 44px;
}

.diagnostic-section__glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
}

.diagnostic-section__glow--one {
    top: -180px;
    right: -140px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle,
            rgba(85, 202, 122, 0.13),
            transparent 70%);
}

.diagnostic-section__glow--two {
    bottom: 30px;
    left: -210px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle,
            rgba(47, 82, 124, 0.28),
            transparent 70%);
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.diagnostic-section__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    align-items: center;
    gap: clamp(55px, 7vw, 110px);
}

.diagnostic-section__copy {
    max-width: 650px;
}

.diagnostic-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.diagnostic-section__eyebrow i {
    font-size: 14px;
}

.diagnostic-section h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(42px, 5vw, 30px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.diagnostic-section h2 span {
    position: relative;
    display: block;
    width: fit-content;
    color: var(--green);
}

.diagnostic-section h2 span::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    z-index: -1;
    height: 8px;
    border-radius: 999px;
    background: rgba(85, 202, 122, 0.16);
}

.diagnostic-section__business {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    font-weight: 700;
}

.diagnostic-section__description {
    max-width: 640px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.85;
}

/* =====================================================
   BUTTONS
===================================================== */

.diagnostic-section__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.diagnostic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.diagnostic-btn--primary {
    gap: 10px;
    min-height: 54px;
    padding: 14px 27px;
    border: 1px solid var(--green);
    border-radius: 999px;
    background: var(--green);
    color: var(--hero-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow:
        0 15px 34px rgba(85, 202, 122, 0.24);
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.diagnostic-btn--primary:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--hero-dark);
    transform: translateY(-3px);
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.24);
}

.diagnostic-btn--primary i {
    transition: transform 0.35s ease;
}

.diagnostic-btn--primary:hover i {
    transform: translate(3px, -3px);
}

.diagnostic-btn--call {
    gap: 12px;
    min-height: 54px;
    padding: 7px 20px 7px 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition:
        border-color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease;
}

.diagnostic-btn--call:hover {
    border-color: var(--green);
    background: rgba(85, 202, 122, 0.1);
    color: var(--white);
    transform: translateY(-3px);
}

.diagnostic-btn__phone {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    color: var(--hero-dark);
    font-size: 15px;
}

.diagnostic-btn__phone::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(85, 202, 122, 0.35);
    border-radius: 50%;
    animation: diagnosticPhonePulse 2s ease-out infinite;
}

.diagnostic-btn--call>span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.diagnostic-btn--call small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.diagnostic-btn--call strong {
    font-size: 15px;
    font-weight: 800;
}

/* =====================================================
   IMAGE
===================================================== */

.diagnostic-section__visual {
    position: relative;
}

.diagnostic-section__image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-top: 7px solid var(--green);
    border-left: 7px solid var(--green);
    border-radius: 0 95px 95px 95px;
    background: #0b151f;
    box-shadow:
        0 35px 75px rgba(0, 0, 0, 0.38),
        0 0 35px rgba(85, 202, 122, 0.12);
}

.diagnostic-section__image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            transparent 45%,
            rgba(8, 21, 39, 0.24) 100%);
    pointer-events: none;
}

.diagnostic-section__image::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    width: 90px;
    height: 90px;
    border-right: 2px solid rgba(85, 202, 122, 0.8);
    border-bottom: 2px solid rgba(85, 202, 122, 0.8);
    border-radius: 0 0 34px 0;
}

.diagnostic-section__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.diagnostic-section__visual:hover img {
    transform: scale(1.055);
}

.diagnostic-section__status {
    position: absolute;
    right: -30px;
    bottom: 35px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 260px;
    padding: 16px 19px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(8, 21, 39, 0.9);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(14px);
    animation: diagnosticStatusFloat 4.8s ease-in-out infinite;
}

.diagnostic-section__status-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: rgba(85, 202, 122, 0.13);
    color: var(--green);
    font-size: 19px;
}

.diagnostic-section__status div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.diagnostic-section__status strong {
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.diagnostic-section__status div span {
    color: rgba(255, 255, 255, 0.57);
    font-size: 10px;
}

/* =====================================================
   HORIZONTAL FEATURES
===================================================== */

.diagnostic-section__features {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.diagnostic-feature {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 32px 30px;
}

.diagnostic-feature:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.diagnostic-feature__number {
    position: absolute;
    top: 12px;
    right: 18px;
    color: rgba(255, 255, 255, 0.055);
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
}

.diagnostic-feature__icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(85, 202, 122, 0.25);
    border-radius: 16px;
    background: rgba(85, 202, 122, 0.09);
    color: var(--green);
    font-size: 22px;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.diagnostic-feature:hover .diagnostic-feature__icon {
    background: var(--green);
    color: var(--hero-dark);
    transform: translateY(-5px) rotate(-4deg);
}

.diagnostic-feature__content {
    position: relative;
    z-index: 2;
}

.diagnostic-feature h3 {
    margin: 0 0 9px;
    color: var(--white);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.diagnostic-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.7;
}

/* =====================================================
   SERVICE NOTE
===================================================== */

.diagnostic-section__service-note {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 36px;
}

.diagnostic-section__service-note-copy {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.diagnostic-section__service-note-copy>i {
    margin-top: 3px;
    color: var(--green);
    font-size: 21px;
}

.diagnostic-section__service-note-copy strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
    font-size: 14px;
}

.diagnostic-section__service-note-copy p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.57);
    font-size: 12px;
    line-height: 1.65;
}

.diagnostic-section__availability {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border: 1px solid rgba(85, 202, 122, 0.23);
    border-radius: 999px;
    background: rgba(85, 202, 122, 0.08);
    color: var(--green);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =====================================================
   BOTTOM CURVE
===================================================== */

.diagnostic-section__curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 5;
    display: block;
    width: 100%;
    height: 125px;
    pointer-events: none;
}

.diagnostic-section__curve path {
    fill: var(--white);
}

/* =====================================================
   REVEAL ANIMATION
===================================================== */

.diagnostic-reveal {
    opacity: 0;
    transform: translateY(38px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.diagnostic-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.diagnostic-section__visual.diagnostic-reveal {
    transform: translateX(55px);
}

.diagnostic-section__visual.diagnostic-reveal.is-visible {
    transform: translateX(0);
}

.diagnostic-section__features .diagnostic-feature:nth-child(2) {
    transition-delay: 0.12s;
}

.diagnostic-section__features .diagnostic-feature:nth-child(3) {
    transition-delay: 0.24s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes diagnosticPhonePulse {
    0% {
        opacity: 0.65;
        transform: scale(0.9);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes diagnosticStatusFloat {

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

    50% {
        transform: translateY(-8px);
    }
}

/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1199.98px) {
    .diagnostic-section {
        width: calc(100% - 28px);
        border-radius: 70px 70px 0 0;
    }

    .diagnostic-section__inner {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.85fr);
        gap: 50px;
    }

    .diagnostic-section__image {
        height: 455px;
    }

    .diagnostic-section__status {
        right: -10px;
    }

    .diagnostic-feature {
        padding: 28px 22px;
    }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {
    .diagnostic-section {
        width: calc(100% - 20px);
        margin-top: 20px;
        padding: 80px 0 165px;
        border-radius: 55px 55px 0 0;
    }

    .diagnostic-section__inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .diagnostic-section__copy {
        max-width: 760px;
    }

    .diagnostic-section__visual {
        width: min(100%, 690px);
        margin: 0 auto;
    }

    .diagnostic-section__image {
        height: 470px;
    }

    .diagnostic-section__features {
        grid-template-columns: 1fr;
        margin-top: 65px;
    }

    .diagnostic-feature {
        padding: 25px 8px;
    }

    .diagnostic-feature:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .diagnostic-section__service-note {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {
    .diagnostic-section {
        width: calc(100% - 12px);
        padding: 62px 0 145px;
        border-radius: 38px 38px 0 0;
    }

    .diagnostic-section__inner {
        gap: 42px;
    }

    .diagnostic-section h2 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .diagnostic-section__business {
        font-size: 15px;
    }

    .diagnostic-section__description {
        font-size: 13px;
        line-height: 1.75;
    }

    .diagnostic-section__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .diagnostic-btn--primary,
    .diagnostic-btn--call {
        width: 100%;
    }

    .diagnostic-btn--call {
        justify-content: center;
    }

    .diagnostic-section__image {
        height: 340px;
        border-width: 5px;
        border-radius: 0 58px 58px 58px;
    }

    .diagnostic-section__image::after {
        right: 16px;
        bottom: 16px;
        width: 60px;
        height: 60px;
    }

    .diagnostic-section__status {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 20px);
        min-width: 0;
        margin: -30px auto 0;
    }

    .diagnostic-section__features {
        margin-top: 48px;
    }

    .diagnostic-feature {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 15px;
    }

    .diagnostic-feature__icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 19px;
    }

    .diagnostic-feature h3 {
        font-size: 16px;
    }

    .diagnostic-section__availability {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .diagnostic-section__curve {
        height: 95px;
    }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .diagnostic-reveal {
        opacity: 1;
        transform: none !important;
        transition: none;
    }

    .diagnostic-section__status,
    .diagnostic-btn__phone::after {
        animation: none;
    }

    .diagnostic-section__image img,
    .diagnostic-btn,
    .diagnostic-feature__icon {
        transition: none;
    }
}

/* end third section */
/* ==================================================================================== */

/* start forth section */
:root {
    --navy: #0b1728;
    --navy-soft: #10223a;
    --green: #13e978;
    --green-dark: #08c864;
    --white: #ffffff;
    --text: #101722;
    --muted: #68707c;
    --soft: #f4f5f6;
}

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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #ffffff;
    color: var(--text);
}

img,
svg {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.benefits-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(to bottom,
            #ffffff 0,
            #ffffff 520px,
            var(--navy) 520px,
            var(--navy) 100%);
}

/*
  This is the visible white curved block.
  The large bottom-left radius creates the curve from the screenshot.
*/
.benefits-content-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 560px;
    background: #ffffff;
    border-bottom-left-radius: 190px;
    overflow: hidden;
}

.benefits-content-panel::before {
    content: "";
    position: absolute;
    left: -13%;
    bottom: -8%;
    width: 58%;
    height: 74%;
    border-radius: 50%;
    background: var(--soft);
    transform: rotate(-9deg);
}

.benefits-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(44px, 7vw, 100px);
    min-height: 560px;
    padding: 46px 0 88px;
}

.benefits-image-wrap {
    position: relative;
    width: min(100%, 395px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-top: 7px solid var(--green);
    border-left: 7px solid var(--green);
    border-radius: 0 72px 72px 72px;
    box-shadow: 0 18px 45px rgba(15, 25, 40, .13);
}

.benefits-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-content {
    max-width: 640px;
}

.benefits-content h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 30px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.benefits-content h2 span {
    text-decoration: underline;
    text-decoration-color: var(--green);
    text-decoration-thickness: 7px;
    text-underline-offset: -1px;
    text-decoration-skip-ink: none;
}

.benefits-intro {
    max-width: 540px;
    margin: 18px 0 30px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 34px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
}

.benefit-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(19, 233, 120, .65);
    border-radius: 8px;
    color: var(--green);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-item h3 {
    margin: 1px 0 7px;
    font-size: 15px;
}

.benefit-item p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

/*
  Dark statistics bar sits underneath the curved white panel.
  Negative margin makes the curve visibly overlap the dark section.
*/
.benefits-stats {
    position: relative;
    z-index: 1;
    margin-top: -179px;
    padding-top: 179px;
    background: radial-gradient(circle at 22% 25%, rgba(19, 233, 120, .05), transparent 25%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
}

.benefits-stats__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 34px;
    min-height: 145px;
    padding-block: 28px;
    color: #fff;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    margin-bottom: 9px;
    font-size: clamp(27px, 2.7vw, 39px);
    line-height: 1;
}

.stat-item span {
    display: block;
    max-width: 220px;
    margin-inline: auto;
    color: rgba(255, 255, 255, .82);
    font-size: 11px;
    line-height: 1.45;
}

.stat-divider {
    width: 1px;
    height: 54px;
    background: rgba(255, 255, 255, .38);
}

@media (max-width: 900px) {
    .benefits-content-panel {
        border-bottom-left-radius: 130px;
    }

    .benefits-main {
        grid-template-columns: 1fr;
        gap: 44px;
        padding-bottom: 110px;
    }

    .benefits-image-wrap {
        width: min(100%, 520px);
        margin-inline: auto;
    }

    .benefits-content {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .benefits-stats__inner {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-block: 34px;
    }

    .stat-divider {
        width: min(220px, 70%);
        height: 1px;
        margin-inline: auto;
    }
}

@media (max-width: 620px) {
    .container {
        width: calc(100% - 28px);
    }

    .benefits-content-panel {
        border-bottom-left-radius: 86px;
    }

    .benefits-main {
        padding-top: 28px;
    }

    .benefits-image-wrap {
        border-width: 6px;
        border-radius: 0 48px 48px 48px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .benefits-content h2 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .benefits-stats {
        margin-top: -52px;
        padding-top: 52px;
    }
}

.benefits-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(19, 233, 120, .65);
    border-radius: 8px;
    color: var(--green);
    font-size: 22px;
    transition: .35s;
}

.benefit-item:hover .benefit-icon {
    background: var(--green);
    color: #fff;
    transform: translateY(-4px);
}

.benefit-icon svg {
    display: none;
}

/* =====================================================
   UPDATED BENEFITS CONTENT
===================================================== */

.benefits-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.benefits-eyebrow i {
    font-size: 15px;
}

.benefits-content h2 {
    color: var(--text);
    line-height: 1.04;
}

.benefits-content h2 span {
    display: block;
    width: fit-content;
}

.benefits-script {
    max-width: 640px;
    margin-top: 24px;
}

.benefits-script p {
    position: relative;
    margin: 0 0 13px;
    padding-left: 19px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.benefits-script p::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(19, 233, 120, 0.1);
}

.benefits-script p:last-child {
    margin-bottom: 0;
}

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

.benefits-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 23px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.benefits-btn--primary {
    border: 1px solid var(--green);
    background: var(--green);
    color: var(--navy);
    box-shadow: 0 13px 30px rgba(19, 233, 120, 0.22);
}

.benefits-btn--primary:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}

.benefits-btn--call {
    border: 1px solid rgba(11, 23, 40, 0.18);
    background: var(--white);
    color: var(--navy);
}

.benefits-btn--call:hover {
    border-color: var(--green-dark);
    color: var(--green-dark);
    transform: translateY(-3px);
}

/* =====================================================
   ICON STATS
===================================================== */

.benefits-stats__inner {
    grid-template-columns: 1fr auto 1fr auto 1fr;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    text-align: left;
}

.stat-icon {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(19, 233, 120, 0.3);
    border-radius: 18px;
    background:
        linear-gradient(145deg,
            rgba(19, 233, 120, 0.16),
            rgba(19, 233, 120, 0.05));
    color: var(--green);
    font-size: 27px;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.stat-icon::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(19, 233, 120, 0.12);
    border-radius: 23px;
    transition: transform 0.35s ease;
}

.stat-item:hover .stat-icon {
    background: var(--green);
    color: var(--navy);
    transform: translateY(-5px) rotate(-4deg);
    box-shadow: 0 18px 38px rgba(19, 233, 120, 0.24);
}

.stat-item:hover .stat-icon::after {
    transform: scale(1.08);
}

.stat-content {
    max-width: 220px;
}

.stat-content strong {
    display: block;
    margin-bottom: 7px;
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.stat-content span {
    display: block;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    line-height: 1.55;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
    .stat-item {
        width: min(100%, 430px);
        margin-inline: auto;
        justify-content: flex-start;
    }

    .stat-content {
        max-width: none;
    }
}

@media (max-width: 620px) {
    .benefits-content h2 span {
        width: auto;
    }

    .benefits-script p {
        font-size: 12.5px;
    }

    .benefits-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .benefits-btn {
        width: 100%;
    }

    .stat-item {
        align-items: flex-start;
    }

    .stat-icon {
        width: 54px;
        height: 54px;
        border-radius: 15px;
        font-size: 23px;
    }

    .stat-content strong {
        font-size: 16px;
    }
}

/* ===== Force Benefits Text Colors ===== */

.benefits-content {
    color: var(--text-dark);
}

.benefits-content h2 {
    color: var(--navy);
}

.benefits-content h2 span {
    color: var(--navy);
}

.benefits-eyebrow {
    color: var(--green);
}

.benefits-script p {
    color: var(--text-muted);
}

.benefits-script p::before {
    background: var(--green);
}

.benefits-btn--call {
    color: var(--navy);
}

.benefits-btn--call:hover {
    color: var(--green);
}

/* end forth section */
/* ==================================================================================== */

/* start fifth section */
:root {
    --testimonial-navy: #26364f;
    --testimonial-navy-dark: #1e2b42;
    --testimonial-green: #20df68;
    --testimonial-green-dark: #13bd56;
    --testimonial-gold: #ffc83d;
    --testimonial-white: #ffffff;
    --testimonial-text: #172033;
    --testimonial-muted: #687386;
    --testimonial-background: #d8d4d4;
    --testimonial-card-background: rgba(255, 255, 255, 0.96);
    --testimonial-border: rgba(38, 54, 79, 0.11);
}

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

.testimonial-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%,
            rgba(32, 223, 104, 0.14),
            transparent 28%),
        linear-gradient(180deg,
            #dedada 0%,
            #d4d0d0 100%);
}

.testimonial-section__inner {
    position: relative;
    z-index: 5;
    width: min(100%, 1600px);
    margin-inline: auto;
    padding: 80px 0 210px;
}

.testimonial-section__glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(5px);
    pointer-events: none;
}

.testimonial-section__glow--one {
    top: 90px;
    left: -180px;
    width: 430px;
    height: 430px;
    background: rgba(32, 223, 104, 0.11);
}

.testimonial-section__glow--two {
    right: -190px;
    bottom: 170px;
    width: 480px;
    height: 480px;
    background: rgba(38, 54, 79, 0.1);
}

.testimonial-section__heading {
    width: min(760px, calc(100% - 40px));
    margin: 0 auto 45px;
    text-align: center;
}

.testimonial-section__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 16px;
    padding: 9px 16px;
    border: 1px solid rgba(38, 54, 79, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--testimonial-navy);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(8px);
}

.testimonial-section__eyebrow i {
    color: var(--testimonial-green-dark);
    font-size: 14px;
}

.testimonial-section__heading h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: -0.045em;
}

.testimonial-section__heading h2 span {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.testimonial-section__heading h2 span::after {
    content: "";
    position: absolute;
    left: 1%;
    right: 1%;
    bottom: 2px;
    z-index: -1;
    height: 8px;
    border-radius: 999px;
    background: var(--testimonial-green);
    transform: rotate(-1deg);
}

.testimonial-section__heading>p {
    max-width: 660px;
    margin: 18px auto 0;
    color: #515151;
    font-size: 15px;
    line-height: 1.75;
}

.testimonial-marquee {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
    width: clamp(35px, 8vw, 145px);
    pointer-events: none;
}

.testimonial-marquee::before {
    left: 0;
    background: linear-gradient(90deg,
            #d8d4d4 5%,
            rgba(216, 212, 212, 0));
}

.testimonial-marquee::after {
    right: 0;
    background: linear-gradient(270deg,
            #d8d4d4 5%,
            rgba(216, 212, 212, 0));
}

.testimonial-marquee__row {
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    gap: 24px;
    padding: 7px 0;
    will-change: transform;
}

.testimonial-track--left {
    animation: testimonial-scroll-left 50s linear infinite;
}

.testimonial-track--right {
    transform: translateX(-50%);
    animation: testimonial-scroll-right 54s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    position: relative;
    display: flex;
    flex: 0 0 390px;
    flex-direction: column;
    min-height: 310px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--testimonial-border);
    border-radius: 18px;
    background: var(--testimonial-card-background);
    box-shadow:
        0 18px 45px rgba(14, 26, 43, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg,
            var(--testimonial-green),
            var(--testimonial-green-dark));
    transform: scaleX(0.34);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(32, 223, 104, 0.08);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    z-index: 2;
    transform: translateY(-8px);
    border-color: rgba(32, 223, 104, 0.5);
    box-shadow:
        0 25px 55px rgba(14, 26, 43, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover::after {
    transform: scale(1.25);
}

.testimonial-card__header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.testimonial-customer {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 13px;
}

.testimonial-customer__image {
    position: relative;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(145deg,
            var(--testimonial-green),
            var(--testimonial-navy));
    box-shadow: 0 8px 20px rgba(14, 26, 43, 0.16);
}

.testimonial-customer__image img {
    width: 100%;
    height: 100%;
    border: 3px solid #ffffff;
    border-radius: inherit;
    object-fit: cover;
}

.testimonial-customer__info {
    min-width: 0;
}

.testimonial-customer__info h3 {
    margin: 0 0 4px;
    overflow: hidden;
    color: var(--testimonial-text);
    font-size: 15px;
    font-weight: 850;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.testimonial-customer__info p {
    margin: 0;
    overflow: hidden;
    color: var(--testimonial-muted);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.testimonial-card__quote {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: rgba(32, 223, 104, 0.11);
    color: var(--testimonial-green-dark);
    font-size: 23px;
}

.testimonial-card__rating {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 14px;
}

.testimonial-card__rating span {
    color: var(--testimonial-gold);
    font-size: 16px;
    line-height: 1;
    letter-spacing: 2px;
    text-shadow: 0 2px 7px rgba(255, 200, 61, 0.24);
}

.testimonial-card__rating small {
    color: var(--testimonial-navy);
    font-size: 11px;
    font-weight: 800;
}

.testimonial-card__review {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    margin: 0;
    color: #394355;
    font-size: 12px;
    line-height: 1.75;
}

.testimonial-card__footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid rgba(38, 54, 79, 0.09);
}

.testimonial-service,
.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.045em;
}

.testimonial-service {
    color: var(--testimonial-navy);
}

.testimonial-service i {
    color: var(--testimonial-green-dark);
    font-size: 12px;
}

.testimonial-verified {
    flex-shrink: 0;
    color: #687386;
}

.testimonial-verified i {
    color: var(--testimonial-green-dark);
    font-size: 12px;
}

.testimonial-summary {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(940px, calc(100% - 40px));
    margin: 50px auto 0;
    padding: 18px 20px 18px 25px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 45px rgba(14, 26, 43, 0.09);
    backdrop-filter: blur(14px);
}

.testimonial-summary__rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-summary__rating strong {
    color: var(--testimonial-navy);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
}

.testimonial-summary__rating span {
    display: block;
    margin-bottom: 5px;
    color: var(--testimonial-gold);
    font-size: 16px;
    line-height: 1;
    letter-spacing: 2px;
}

.testimonial-summary__rating p {
    margin: 0;
    color: var(--testimonial-muted);
    font-size: 11px;
    font-weight: 600;
}

.testimonial-summary__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 23px;
    gap: 10px;
    border: 2px solid var(--testimonial-green);
    border-radius: 9px;
    background: var(--testimonial-green);
    color: #092615;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.testimonial-summary__button i {
    transition: transform 0.3s ease;
}

.testimonial-summary__button:hover {
    border-color: var(--testimonial-navy);
    background: var(--testimonial-navy);
    color: #ffffff;
    transform: translateY(-2px);
}

.testimonial-summary__button:hover i {
    transform: translateX(4px);
}

.testimonial-section__curve {
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 3;
    width: 100%;
    height: 180px;
    pointer-events: none;
}

.testimonial-section__curve path {
    fill: #ffffff;
}

@keyframes testimonial-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

@keyframes testimonial-scroll-right {
    from {
        transform: translateX(calc(-50% - 12px));
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 991.98px) {
    .testimonial-section__inner {
        padding-top: 65px;
        padding-bottom: 175px;
    }

    .testimonial-card {
        flex-basis: 350px;
        min-height: 320px;
    }

    .testimonial-section__curve {
        height: 145px;
    }

    .testimonial-summary {
        width: calc(100% - 36px);
    }
}

@media (max-width: 767.98px) {
    .testimonial-section__inner {
        padding-top: 55px;
        padding-bottom: 145px;
    }

    .testimonial-section__heading {
        margin-bottom: 35px;
    }

    .testimonial-section__heading h2 {
        font-size: clamp(30px, 9vw, 43px);
    }

    .testimonial-section__heading>p {
        font-size: 14px;
    }

    .testimonial-marquee {
        gap: 18px;
    }

    .testimonial-track {
        gap: 16px;
    }

    .testimonial-card {
        flex-basis: 320px;
        min-height: 325px;
        padding: 21px;
        border-radius: 15px;
    }

    .testimonial-customer__image {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
    }

    .testimonial-summary {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        text-align: center;
    }

    .testimonial-summary__rating {
        justify-content: center;
    }

    .testimonial-summary__button {
        width: 100%;
    }

    .testimonial-section__curve {
        height: 110px;
    }
}

@media (max-width: 480px) {
    .testimonial-section__inner {
        padding-top: 48px;
        padding-bottom: 125px;
    }

    .testimonial-section__heading {
        width: calc(100% - 28px);
    }

    .testimonial-section__eyebrow {
        padding: 8px 13px;
        font-size: 10px;
    }

    .testimonial-card {
        flex-basis: calc(100vw - 42px);
        min-height: 335px;
        padding: 19px;
    }

    .testimonial-card__header {
        gap: 10px;
    }

    .testimonial-card__quote {
        flex-basis: 37px;
        width: 37px;
        height: 37px;
        border-radius: 10px;
        font-size: 20px;
    }

    .testimonial-customer {
        gap: 10px;
    }

    .testimonial-customer__image {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .testimonial-customer__info h3 {
        font-size: 13px;
    }

    .testimonial-customer__info p {
        font-size: 9px;
    }

    .testimonial-card__review {
        font-size: 11px;
        line-height: 1.72;
    }

    .testimonial-card__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .testimonial-summary {
        width: calc(100% - 28px);
        margin-top: 35px;
        padding: 18px;
    }

    .testimonial-summary__rating strong {
        font-size: 33px;
    }

    .testimonial-section__curve {
        height: 85px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-track {
        animation: none;
        transform: none;
    }

    .testimonial-marquee__row {
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .testimonial-card,
    .testimonial-card::before,
    .testimonial-card::after,
    .testimonial-summary__button,
    .testimonial-summary__button i {
        transition: none;
    }
}


/* end fifth section */
/* ==================================================================================== */

/* start sixth section */
/* =====================================================
   PREVENTATIVE MAINTENANCE SECTION
===================================================== */

.maintenance-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(circle at 7% 15%,
            rgba(85, 202, 122, 0.11),
            transparent 25%),
        radial-gradient(circle at 94% 85%,
            rgba(38, 54, 79, 0.09),
            transparent 28%),
        linear-gradient(180deg,
            #ffffff 0%,
            #f8faf9 100%);
}

.maintenance-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(38, 54, 79, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(38, 54, 79, 0.035) 1px,
            transparent 1px);
    background-size: 48px 48px;
}

.maintenance-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.maintenance-shape--one {
    top: -220px;
    left: -190px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle,
            rgba(85, 202, 122, 0.13),
            transparent 70%);
}

.maintenance-shape--two {
    right: -220px;
    bottom: -250px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle,
            rgba(38, 54, 79, 0.11),
            transparent 70%);
}

.maintenance-section__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(55px, 7vw, 105px);
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

/* =====================================================
   IMAGE AREA
===================================================== */

.maintenance-visual {
    position: relative;
}

.maintenance-image-wrap {
    position: relative;
    height: 610px;
    overflow: hidden;
    border-top: 8px solid var(--green);
    border-left: 8px solid var(--green);
    border-radius: 0 100px 100px 100px;
    background: var(--navy-dark);
    box-shadow:
        0 32px 78px rgba(8, 21, 39, 0.2),
        0 12px 28px rgba(38, 54, 79, 0.12);
}

.maintenance-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.maintenance-image-wrap:hover .maintenance-image {
    transform: scale(1.055);
}

.maintenance-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            transparent 45%,
            rgba(8, 21, 39, 0.58) 100%);
    pointer-events: none;
}

.maintenance-image-wrap::after {
    content: "";
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 95px;
    height: 95px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    border-radius: 0 0 38px 0;
    opacity: 0.8;
    pointer-events: none;
}

.maintenance-image-badge {
    position: absolute;
    right: -28px;
    bottom: 42px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 290px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(8, 21, 39, 0.92);
    box-shadow: 0 18px 42px rgba(8, 21, 39, 0.28);
    backdrop-filter: blur(14px);
    animation: maintenanceBadgeFloat 5s ease-in-out infinite;
}

.maintenance-image-badge__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(85, 202, 122, 0.14);
    color: var(--green);
    font-size: 21px;
}

.maintenance-image-badge div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.maintenance-image-badge strong {
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.maintenance-image-badge span:last-child {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
}

/* Quick information */

.maintenance-quick-info {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;
    margin-top: 28px;
    padding: 21px 24px;
    border: 1px solid rgba(38, 54, 79, 0.09);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(38, 54, 79, 0.07);
    backdrop-filter: blur(12px);
}

.maintenance-quick-info__item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.maintenance-quick-info__item>i {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: rgba(85, 202, 122, 0.12);
    color: var(--green-hover);
    font-size: 18px;
}

.maintenance-quick-info__item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
}

.maintenance-quick-info__item span {
    display: block;
    color: var(--text-muted);
    font-size: 10px;
    line-height: 1.4;
}

.maintenance-quick-info__divider {
    width: 1px;
    height: 44px;
    background: rgba(38, 54, 79, 0.12);
}

/* =====================================================
   CONTENT
===================================================== */

.maintenance-content {
    max-width: 690px;
}

.maintenance-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    color: var(--green-hover);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.maintenance-eyebrow i {
    font-size: 15px;
}

.maintenance-content h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(40px, 5vw, 36px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.maintenance-content h2 span {
    position: relative;
    display: block;
    width: fit-content;
    color: var(--navy);
}

.maintenance-content h2 span::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    z-index: -1;
    height: 9px;
    border-radius: 999px;
    background: var(--green);
    opacity: 0.86;
}

.maintenance-lead {
    margin: 25px 0 15px;
    color: var(--text-dark);
    font-size: clamp(17px, 1.45vw, 20px);
    font-weight: 500;
    line-height: 1.72;
}

.maintenance-description {
    margin: 0 0 13px;
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.82;
}

/* =====================================================
   FEATURES
===================================================== */

.maintenance-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 21px 25px;
    margin-top: 31px;
}

.maintenance-feature {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.maintenance-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(85, 202, 122, 0.25);
    border-radius: 16px;
    background: rgba(85, 202, 122, 0.1);
    color: var(--green-hover);
    font-size: 21px;
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.maintenance-feature:hover .maintenance-feature__icon {
    background: var(--green);
    color: var(--navy-dark);
    transform: translateY(-5px) rotate(-4deg);
    box-shadow: 0 14px 28px rgba(85, 202, 122, 0.23);
}

.maintenance-feature h3 {
    margin: 2px 0 6px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.maintenance-feature p {
    margin: 0;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.6;
}

/* =====================================================
   ACTIONS
===================================================== */

.maintenance-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

.maintenance-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.maintenance-button--primary {
    gap: 10px;
    min-height: 56px;
    padding: 15px 27px;
    border: 1px solid var(--navy);
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 15px 34px rgba(38, 54, 79, 0.2);
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.maintenance-button--primary:hover {
    border-color: var(--green);
    background: var(--green);
    color: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(85, 202, 122, 0.26);
}

.maintenance-button--primary i {
    transition: transform 0.35s ease;
}

.maintenance-button--primary:hover i {
    transform: translate(3px, -3px);
}

.maintenance-button--call {
    gap: 12px;
    min-height: 56px;
    padding: 7px 20px 7px 8px;
    border: 1px solid rgba(38, 54, 79, 0.15);
    border-radius: 999px;
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 12px 30px rgba(38, 54, 79, 0.08);
    transition:
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.maintenance-button--call:hover {
    border-color: var(--green);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(85, 202, 122, 0.16);
}

.maintenance-call-icon {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green);
    color: var(--navy-dark);
    font-size: 16px;
}

.maintenance-call-icon::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(85, 202, 122, 0.35);
    border-radius: 50%;
    animation: maintenancePhonePulse 2s ease-out infinite;
}

.maintenance-call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.13;
}

.maintenance-call-text small {
    margin-bottom: 4px;
    color: var(--text-muted);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.maintenance-call-text strong {
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
}

/* Service note */

.maintenance-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.5;
}

.maintenance-note i {
    color: var(--green-hover);
    font-size: 15px;
}

/* =====================================================
   REVEAL ANIMATION
===================================================== */

.maintenance-reveal {
    opacity: 0;
    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(.22, 1, .36, 1);
}

.maintenance-reveal--left {
    transform: translateX(-55px);
}

.maintenance-reveal--right {
    transform: translateX(55px);
}

.maintenance-reveal.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes maintenanceBadgeFloat {

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

    50% {
        transform: translateY(-9px);
    }
}

@keyframes maintenancePhonePulse {
    0% {
        opacity: 0.65;
        transform: scale(0.9);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {
    .maintenance-section {
        padding: 85px 0;
    }

    .maintenance-section__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .maintenance-visual {
        width: min(100%, 720px);
        margin-inline: auto;
    }

    .maintenance-image-wrap {
        height: 520px;
    }

    .maintenance-image-badge {
        right: 20px;
    }

    .maintenance-content {
        max-width: 760px;
        margin-inline: auto;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 620px) {
    .maintenance-section {
        padding: 65px 0;
    }

    .maintenance-section__inner {
        width: calc(100% - 28px);
        gap: 45px;
    }

    .maintenance-image-wrap {
        height: 390px;
        border-width: 6px;
        border-radius: 0 62px 62px 62px;
    }

    .maintenance-image-wrap::after {
        right: 16px;
        bottom: 16px;
        width: 65px;
        height: 65px;
    }

    .maintenance-image-badge {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 20px);
        min-width: 0;
        margin: -34px auto 0;
    }

    .maintenance-quick-info {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px;
    }

    .maintenance-quick-info__divider {
        width: 100%;
        height: 1px;
    }

    .maintenance-content h2 {
        font-size: clamp(37px, 11vw, 49px);
    }

    .maintenance-features {
        grid-template-columns: 1fr;
    }

    .maintenance-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .maintenance-button--primary,
    .maintenance-button--call {
        width: 100%;
    }

    .maintenance-button--call {
        justify-content: center;
    }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .maintenance-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .maintenance-image-badge,
    .maintenance-call-icon::after {
        animation: none;
    }

    .maintenance-image,
    .maintenance-feature__icon,
    .maintenance-button {
        transition: none;
    }
}

/* end sixth section */
/* ============================================================ */





/* start seventh section */
/* =====================================================
   LUXURY FAQ SECTION
===================================================== */

.faq-section {
    position: relative;
    isolation: isolate;
    width: min(100% - 40px, 1180px);
    margin: 55px auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 92px 0 92px 0;
    background:
        radial-gradient(circle at 12% 12%,
            rgba(85, 202, 122, 0.12),
            transparent 26%),
        radial-gradient(circle at 90% 82%,
            rgba(50, 83, 138, 0.22),
            transparent 30%),
        linear-gradient(135deg,
            #071321 0%,
            #0c1930 58%,
            #0b1728 100%);
    box-shadow:
        0 30px 75px rgba(10, 22, 39, 0.18);
}

.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.6;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.faq-section__glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.16;
    pointer-events: none;
}

.faq-section__glow--one {
    top: -70px;
    left: 7%;
    width: 260px;
    height: 260px;
    background: var(--green);
}

.faq-section__glow--two {
    right: 5%;
    bottom: -90px;
    width: 320px;
    height: 320px;
    background: #294bff;
}

.faq-section__inner {
    position: relative;
    z-index: 2;
    width: min(940px, calc(100% - 48px));
    margin-inline: auto;
    padding: 64px 0 58px;
}

/* =====================================================
   HEADING
===================================================== */

.faq-heading {
    max-width: 730px;
    margin: 0 auto 38px;
    text-align: center;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.faq-heading h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 850;
    line-height: 1.04;
    text-transform: uppercase;
    letter-spacing: -0.045em;
}

.faq-heading h2 span {
    position: relative;
    display: block;
    width: fit-content;
    margin: 5px auto 0;
    color: var(--white);
}

.faq-heading h2 span::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    z-index: -1;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
}

.faq-heading__description {
    max-width: 630px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.75;
}

/* =====================================================
   FAQ ITEMS
===================================================== */

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018));
    backdrop-filter: blur(10px);
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-item::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: var(--green);
    opacity: 0;
    transform: scaleY(0.3);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.faq-item:hover,
.faq-item.is-open {
    border-color: rgba(85, 202, 122, 0.48);
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.075),
            rgba(85, 202, 122, 0.025));
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.faq-item.is-open::after {
    opacity: 1;
    transform: scaleY(1);
}

/* Question */

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: 100%;
    min-height: 64px;
    padding: 17px 19px;
    border: 0;
    background: transparent;
    color: var(--white);
    text-align: left;
    cursor: pointer;
}

.faq-question__content {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.faq-question__number {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(85, 202, 122, 0.25);
    border-radius: 12px;
    background: rgba(85, 202, 122, 0.08);
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.faq-icon {
    display: grid;
    flex: 0 0 34px;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    font-size: 15px;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
    border-color: var(--green);
    background: var(--green);
    color: #081527;
    transform: rotate(180deg);
}

/* Answer */

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s cubic-bezier(.22, 1, .36, 1);
}

.faq-answer>div {
    overflow: hidden;
}

.faq-answer p {
    margin: 0;
    padding: 0 72px 21px 72px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.75;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

/* =====================================================
   BOTTOM ACTION
===================================================== */

.faq-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-action__text {
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-action__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(85, 202, 122, 0.11);
    color: var(--green);
    font-size: 20px;
}

.faq-action strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.faq-action p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.5;
}

.faq-action>a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 21px;
    border-radius: 999px;
    background: var(--green);
    color: #081527;
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 12px 28px rgba(85, 202, 122, 0.22);
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-action>a:hover {
    background: var(--white);
    color: #081527;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

/* =====================================================
   REVEAL ANIMATION
===================================================== */

.faq-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

.faq-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-list .faq-item:nth-child(2) {
    transition-delay: 0.08s;
}

.faq-list .faq-item:nth-child(3) {
    transition-delay: 0.16s;
}

.faq-list .faq-item:nth-child(4) {
    transition-delay: 0.24s;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 720px) {
    .faq-section {
        width: calc(100% - 24px);
        border-radius: 56px 0 56px 0;
    }

    .faq-section__inner {
        width: calc(100% - 28px);
        padding: 48px 0 44px;
    }

    .faq-question {
        min-height: 60px;
        padding: 15px;
    }

    .faq-question__content {
        gap: 12px;
        font-size: 12px;
    }

    .faq-answer p {
        padding: 0 58px 19px 65px;
    }

    .faq-action {
        align-items: stretch;
        flex-direction: column;
    }

    .faq-action>a {
        width: 100%;
    }
}

@media (max-width: 460px) {
    .faq-section {
        width: 100%;
        margin: 0;
        border-radius: 38px 0 38px 0;
    }

    .faq-heading h2 {
        font-size: 31px;
    }

    .faq-heading__description {
        font-size: 12px;
    }

    .faq-question {
        align-items: flex-start;
    }

    .faq-question__number {
        width: 34px;
        height: 34px;
    }

    .faq-icon {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
    }

    .faq-answer p {
        padding: 0 18px 18px 61px;
        font-size: 11.5px;
    }

    .faq-action__text {
        align-items: flex-start;
    }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .faq-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .faq-answer,
    .faq-icon,
    .faq-item,
    .faq-action>a {
        transition: none;
    }
}






/* end seventh section */
/* ==================================================================================== */

/* start contact section */


:root {
    --navy: #26364f;
    --navy-dark: #1e2b42;
    --green: #55ca7a;
    --green-hover: #42b968;
    --white: #ffffff;
    --off-white: #fafafa;
    --text-dark: #1f2937;
    --text-muted: #717b8a;
    --border: #dbe2ea;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--white);
    color: var(--text-dark);
}

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

button,
input,
textarea {
    font: inherit;
}

/* =========================
   Contact Section
========================= */

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 150px;
    background: var(--white);
}

.contact-section::before {
    content: "";
    position: absolute;
    left: -12%;
    bottom: 18%;
    width: 55%;
    height: 62%;
    border-radius: 50%;
    background: var(--off-white);
    transform: rotate(-10deg);
    pointer-events: none;
}

.contact-inner {
    position: relative;
    z-index: 2;
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(50px, 7vw, 100px);
    align-items: start;
}

/* =========================
   Contact Information
========================= */

.contact-info {
    min-width: 0;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--green-hover);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.contact-info h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -.045em;
    max-width: 500px;
    font-weight: 700;
}

.contact-info h2 span {
    position: relative;
    z-index: 1;
    display: block;
    width: max-content;
}

.contact-info h2 span::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    z-index: -1;
    height: 8px;
    border-radius: 10px;
    background: var(--green);
}

.contact-map {
    width: 100%;
    max-width: 420px;
    height: 180px;
    margin: 24px 0 30px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(38, 54, 79, .12);
    box-shadow: 0 18px 40px rgba(38, 54, 79, .12);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

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

.contact-list li {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.55;
}

.contact-list b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(85, 202, 122, 0.22);
    border-radius: 50%;
    background: rgba(85, 202, 122, 0.12);
    color: var(--green-hover);
    font-size: 19px;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.contact-list li:hover b {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-list a {
    display: inline-block;
    max-width: 100%;
    color: var(--text-dark);
    overflow-wrap: anywhere;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--green);
}

.contact-list span {
    display: block;
    overflow-wrap: anywhere;
    color: var(--text-dark);
}

/* =========================
   Contact Form
========================= */

.contact-form {
    display: grid;
    gap: 20px;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 22px 60px rgba(38, 54, 79, 0.1);
}

.contact-form label {
    display: grid;
    gap: 9px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.contact-form input {
    min-height: 50px;
    padding: 13px 16px;
}

.contact-form textarea {
    min-height: 145px;
    padding: 15px 16px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9aa3b1;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: #c7d0dc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(85, 202, 122, 0.16);
}

.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-width: 180px;
    min-height: 52px;
    padding: 14px 30px;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    color: var(--navy-dark);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(85, 202, 122, 0.25);
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-form button:hover {
    background: var(--green-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(66, 185, 104, 0.3);
}

.contact-form button:focus-visible,
.contact-list a:focus-visible {
    outline: 3px solid rgba(85, 202, 122, 0.4);
    outline-offset: 4px;
}

.contact-form select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 12px 14px;
    min-height: 48px;
    outline: none;
    background: #fff;
    color: var(--text-dark);
}

.contact-form select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(85, 202, 122, .12);
}

/* =========================
   Spring Water Heater Form
========================= */

.CUS {
    width: 100%;
    margin: 0;
}

.CUS fieldset {
    margin: 0;
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid rgba(38, 54, 79, 0.12);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 24px 60px rgba(38, 54, 79, 0.12);
}

.CUS legend {
    width: auto;
    margin: 0 0 24px;
    padding: 0 10px;
    color: var(--navy);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.CUS .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
}

.CUS .field,
.CUS .full {
    min-width: 0;
}

.CUS .full {
    grid-column: 1 / -1;
}

.CUS label {
    display: block;
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.CUS input,
.CUS textarea,
.CUS select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.CUS input,
.CUS select {
    min-height: 52px;
    padding: 13px 16px;
}

.CUS textarea {
    min-height: 145px;
    padding: 15px 16px;
    resize: vertical;
}

.CUS input::placeholder,
.CUS textarea::placeholder {
    color: #97a1af;
}

.CUS input:hover,
.CUS textarea:hover,
.CUS select:hover {
    border-color: rgba(38, 54, 79, 0.28);
}

.CUS input:focus,
.CUS textarea:focus,
.CUS select:focus {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(85, 202, 122, 0.16);
}

.CUS select {
    appearance: none;
    cursor: pointer;
    padding-right: 44px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--green-hover) 50%),
        linear-gradient(135deg, var(--green-hover) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 13px) 50%;
    background-size:
        5px 5px,
        5px 5px;
    background-repeat: no-repeat;
}

.CUS .service-date {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.8fr;
    gap: 14px;
}

.CUS input[type="number"] {
    appearance: textfield;
}

.CUS input[type="number"]::-webkit-inner-spin-button,
.CUS input[type="number"]::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.CUS input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-width: 220px;
    min-height: 54px;
    padding: 15px 32px;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    color: var(--navy-dark);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(85, 202, 122, 0.28);
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.CUS input[type="submit"]:hover {
    background: var(--green-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(66, 185, 104, 0.32);
}

.CUS input[type="submit"]:active {
    transform: translateY(0);
}

.CUS input[type="submit"]:focus-visible {
    outline: 3px solid rgba(85, 202, 122, 0.42);
    outline-offset: 4px;
}

.CUS .subject {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}



/* =========================
   Responsive
========================= */
@media (max-width:767px) {

    .contact-map {
        max-width: 100%;
        height: 220px;
    }

}

@media (max-width: 767.98px) {
    .CUS fieldset {
        padding: 26px 22px;
        border-radius: 14px;
    }

    .CUS .row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .CUS .field,
    .CUS .full {
        grid-column: 1;
    }

    .CUS .service-date {
        grid-template-columns: 1fr;
    }

    .CUS input[type="submit"] {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 575.98px) {
    .CUS fieldset {
        padding: 22px 16px;
    }

    .CUS legend {
        margin-bottom: 20px;
        font-size: 21px;
    }

    .CUS input,
    .CUS select {
        min-height: 50px;
    }

    .CUS textarea {
        min-height: 130px;
    }
}

/* =========================
   Bottom Curve
========================= */

.contact-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 135px;
    pointer-events: none;
}

.contact-curve path {
    fill: var(--navy);
}

/* =========================
   Responsive
========================= */

@media (max-width: 991.98px) {
    .contact-section {
        padding: 70px 0 140px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        max-width: 680px;
    }

    .intro {
        max-width: 600px;
    }

    .contact-section::before {
        left: -25%;
        bottom: 35%;
        width: 90%;
        height: 42%;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 60px 0 125px;
    }

    .contact-inner {
        width: min(100% - 30px, 1140px);
        gap: 40px;
    }

    .contact-info h2 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 26px 22px;
        border-radius: 12px;
    }

    .contact-curve {
        height: 105px;
    }
}

@media (max-width: 575.98px) {
    .contact-section {
        padding: 52px 0 110px;
    }

    .contact-inner {
        width: min(100% - 24px, 1140px);
    }

    .contact-info h2 {
        font-size: 36px;
        line-height: 1.05;
    }

    .contact-info h2 span {
        width: fit-content;
    }

    .intro {
        margin: 18px 0 26px;
        font-size: 14px;
    }

    .contact-list {
        gap: 14px;
    }

    .contact-list li {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        font-size: 13px;
    }

    .contact-list b {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .contact-form {
        gap: 18px;
        padding: 22px 18px;
    }

    .contact-form button {
        width: 100%;
        min-width: 0;
    }

    .contact-curve {
        height: 85px;
    }
}

/* end contact section */
/* ======================================== */


/* start footer section */

.site-footer {
    position: relative;
    margin-top: -1px;
    padding: 54px 0 20px;
    overflow: hidden;
    color: #ffffff;
    background: var(--navy);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    width: 460px;
    height: 260px;
    border-radius: 50%;
    background: rgba(85, 202, 122, 0.06);
    filter: blur(40px);
    pointer-events: none;
    transform: translateX(-50%);
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1140px, calc(100% - 40px));
    margin-inline: auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: min(820px, 100%);
    gap: 22px;
}

.footer-logo {
    display: inline-block;
    margin: 0;
}

.footer-logo img {
    display: block;
    width: 230px;
    max-width: 100%;
    height: auto;
    margin-inline: auto;
}

.footer-service-area {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.85;
    text-align: center;
}

.footer-service-area strong {
    color: rgba(255, 255, 255, 0.94);
    font-weight: 700;
}

.socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 16px;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

.socials a:hover {
    border-color: var(--green);
    background: var(--green);
    color: var(--navy-dark);
    box-shadow: 0 10px 24px rgba(85, 202, 122, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1140px, calc(100% - 40px));
    margin: 38px auto 0;
    padding-top: 18px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    width: min(1140px, calc(100% - 40px));
    margin: 38px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: 0.03em;
}

@media (max-width: 900px) {

    .footer-grid,
    .footer-bottom {
        width: calc(100% - 32px);
    }

    .footer-service-area {
        max-width: 700px;
    }
}

@media (max-width: 620px) {
    .site-footer {
        padding: 44px 0 18px;
    }

    .footer-grid,
    .footer-bottom {
        width: calc(100% - 28px);
    }

    .footer-brand {
        gap: 20px;
    }

    .footer-logo img {
        width: 210px;
    }

    .footer-service-area {
        font-size: 11px;
        line-height: 1.75;
    }

    .footer-bottom {
        align-items: center;
        flex-direction: column;
        margin-top: 30px;
        text-align: center;
    }

    .footer-bottom div {
        justify-content: center;
    }

    .footer-bottom {
        width: calc(100% - 28px);
        margin-top: 30px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 10px;
    }

}

@media (max-width: 400px) {
    .site-footer {
        padding-top: 38px;
    }

    .footer-logo img {
        width: 185px;
    }

    .footer-service-area {
        font-size: 10px;
        line-height: 1.7;
    }

    .socials {
        gap: 8px;
    }

    .socials a {
        width: 37px;
        height: 37px;
        font-size: 14px;
    }

    .footer-bottom p,
    .footer-bottom a,
    .footer-bottom span {
        font-size: 9px;
    }
}

/* end footer section */
/* ======================================================== */
/* start eighth section */
:root {
    --repair-benefits-navy: #111c30;
    --repair-benefits-navy-light: #1d2d48;
    --repair-benefits-green: #18df70;
    --repair-benefits-green-dark: #0fc45f;
    --repair-benefits-white: #ffffff;
    --repair-benefits-text: #111827;
    --repair-benefits-muted: #626b78;
    --repair-benefits-border: rgba(17, 28, 48, 0.1);
}

/* ===================================
   Repair Benefits Section
=================================== */

.repair-benefits-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 100px 0 190px;
    background:
        radial-gradient(circle at 8% 12%,
            rgba(24, 223, 112, 0.13),
            transparent 28%),
        radial-gradient(circle at 92% 70%,
            rgba(17, 28, 48, 0.11),
            transparent 31%),
        linear-gradient(135deg,
            #ffffff 0%,
            #f7faf8 48%,
            #eff4f1 100%);
}

.repair-benefits-section__inner {
    position: relative;
    z-index: 4;
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

/* ===================================
   Background Decorations
=================================== */


.repair-benefits-section__pattern {
    position: absolute;
    top: 90px;
    right: 4%;
    z-index: -1;
    width: 170px;
    height: 170px;
    opacity: 0.3;
    background-image:
        radial-gradient(rgba(15, 196, 95, 0.6) 1.5px,
            transparent 1.5px);
    background-size: 15px 15px;
    animation: repairBenefitsPattern 12s linear infinite;
}

/* ===================================
   Heading
=================================== */

.repair-benefits-heading {
    width: min(850px, 100%);
    margin: 0 auto 50px;
    text-align: center;
}

.repair-benefits-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    padding: 9px 15px;
    gap: 8px;
    border: 1px solid rgba(24, 223, 112, 0.28);
    border-radius: 999px;
    background: rgba(24, 223, 112, 0.08);
    color: var(--repair-benefits-green-dark);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.repair-benefits-heading__eyebrow i {
    font-size: 13px;
}

.repair-benefits-heading h2 {
    margin: 0;
    color: var(--repair-benefits-navy);
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.052em;
}

.repair-benefits-heading h2 span {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--repair-benefits-green-dark);
}

.repair-benefits-heading h2 span::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: 3px;
    left: 8%;
    z-index: -1;
    height: 9px;
    border-radius: 999px;
    background: rgba(24, 223, 112, 0.18);
    transform: rotate(-0.5deg);
}

.repair-benefits-heading>p {
    max-width: 670px;
    margin: 20px auto 0;
    color: var(--repair-benefits-muted);
    font-size: 14px;
    line-height: 1.75;
}

/* ===================================
   Cards Grid
=================================== */

.repair-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
}

/* ===================================
   Benefit Card
=================================== */

.repair-benefit-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 480px;
    flex-direction: column;
    padding: 30px 27px 26px;
    overflow: hidden;
    border: 1px solid var(--repair-benefits-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 20px 50px rgba(17, 28, 48, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    transition:
        transform 0.4s cubic-bezier(0.2, 0.75, 0.25, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.repair-benefit-card::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -85px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(24, 223, 112, 0.09);
    transition: transform 0.5s ease;
}

.repair-benefit-card::after {
    content: "";
    position: absolute;
    right: 26px;
    bottom: 0;
    left: 26px;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background:
        linear-gradient(90deg,
            var(--repair-benefits-green),
            var(--repair-benefits-green-dark));
    transform: scaleX(0.28);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.repair-benefit-card:hover {
    z-index: 3;
    border-color: rgba(24, 223, 112, 0.5);
    box-shadow:
        0 30px 65px rgba(17, 28, 48, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateY(-12px);
}

.repair-benefit-card:hover::before {
    transform: scale(1.25);
}

.repair-benefit-card:hover::after {
    transform: scaleX(1);
}

/* ===================================
   Featured Card
=================================== */

.repair-benefit-card--featured {
    border-color: rgba(24, 223, 112, 0.38);
    background:
        radial-gradient(circle at 100% 0%,
            rgba(24, 223, 112, 0.17),
            transparent 30%),
        var(--repair-benefits-navy);
    color: var(--repair-benefits-white);
    box-shadow:
        0 28px 65px rgba(17, 28, 48, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
    transform: translateY(-12px);
}

.repair-benefit-card--featured:hover {
    transform: translateY(-22px);
}

.repair-benefit-card--featured::before {
    background: rgba(24, 223, 112, 0.11);
}

.repair-benefit-card__featured-label {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 5;
    padding: 7px 15px;
    border-radius: 0 0 9px 9px;
    background: var(--repair-benefits-green);
    color: #052213;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transform: translateX(-50%);
}

/* ===================================
   Card Number and Top Area
=================================== */

.repair-benefit-card__number {
    position: absolute;
    top: 18px;
    right: 21px;
    color: rgba(17, 28, 48, 0.055);
    font-size: 62px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.repair-benefit-card--featured .repair-benefit-card__number {
    color: rgba(255, 255, 255, 0.055);
}

.repair-benefit-card__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
    gap: 12px;
}

/* ===================================
   Card Icon
=================================== */

.repair-benefit-card__icon {
    position: relative;
    display: grid;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    place-items: center;
    overflow: hidden;
    border-radius: 15px;
    background: var(--repair-benefits-navy);
    color: var(--repair-benefits-green);
    font-size: 24px;
    box-shadow: 0 12px 25px rgba(17, 28, 48, 0.15);
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}

.repair-benefit-card__icon::after {
    content: "";
    position: absolute;
    inset: -25%;
    background:
        linear-gradient(120deg,
            transparent 35%,
            rgba(255, 255, 255, 0.24),
            transparent 65%);
    transform: translateX(-130%) rotate(15deg);
    transition: transform 0.7s ease;
}

.repair-benefit-card:hover .repair-benefit-card__icon {
    background: var(--repair-benefits-green);
    color: var(--repair-benefits-navy);
    transform: rotate(-6deg) scale(1.07);
}

.repair-benefit-card:hover .repair-benefit-card__icon::after {
    transform: translateX(130%) rotate(15deg);
}

.repair-benefit-card--featured .repair-benefit-card__icon {
    background: var(--repair-benefits-green);
    color: var(--repair-benefits-navy);
}

/* ===================================
   Card Tag
=================================== */

.repair-benefit-card__tag {
    padding: 8px 11px;
    border: 1px solid rgba(17, 28, 48, 0.09);
    border-radius: 999px;
    background: rgba(17, 28, 48, 0.04);
    color: var(--repair-benefits-muted);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    white-space: nowrap;
}

.repair-benefit-card--featured .repair-benefit-card__tag {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.73);
}

/* ===================================
   Card Text
=================================== */

.repair-benefit-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 15px;
    color: var(--repair-benefits-navy);
    font-size: 21px;
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.repair-benefit-card--featured h3 {
    color: var(--repair-benefits-white);
}

.repair-benefit-card>p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--repair-benefits-muted);
    font-size: 12px;
    line-height: 1.8;
}

.repair-benefit-card--featured>p {
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Highlight Box
=================================== */

.repair-benefit-card__highlight {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    margin-top: 23px;
    padding: 15px;
    gap: 12px;
    border: 1px solid rgba(17, 28, 48, 0.08);
    border-radius: 13px;
    background: rgba(17, 28, 48, 0.035);
}

.repair-benefit-card--featured .repair-benefit-card__highlight {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
}

.repair-benefit-card__highlight-icon {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 10px;
    background: rgba(24, 223, 112, 0.12);
    color: var(--repair-benefits-green-dark);
    font-size: 16px;
}

.repair-benefit-card--featured .repair-benefit-card__highlight-icon {
    background: var(--repair-benefits-green);
    color: var(--repair-benefits-navy);
}

.repair-benefit-card__highlight strong {
    display: block;
    margin-bottom: 4px;
    color: var(--repair-benefits-navy);
    font-size: 11px;
    font-weight: 850;
}

.repair-benefit-card--featured .repair-benefit-card__highlight strong {
    color: var(--repair-benefits-white);
}

.repair-benefit-card__highlight small {
    display: block;
    color: var(--repair-benefits-muted);
    font-size: 9px;
    line-height: 1.55;
}

.repair-benefit-card--featured .repair-benefit-card__highlight small {
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Progress Area
=================================== */

.repair-benefit-card__progress {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 24px;
}

.repair-benefit-card__progress-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 9px;
    gap: 10px;
    color: var(--repair-benefits-muted);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.repair-benefit-card__progress-header strong {
    color: var(--repair-benefits-green-dark);
    font-size: 8px;
}

.repair-benefit-card--featured .repair-benefit-card__progress-header {
    color: rgba(255, 255, 255, 0.58);
}

.repair-benefit-card--featured .repair-benefit-card__progress-header strong {
    color: var(--repair-benefits-green);
}

.repair-benefit-card__progress-bar {
    position: relative;
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(17, 28, 48, 0.09);
}

.repair-benefit-card--featured .repair-benefit-card__progress-bar {
    background: rgba(255, 255, 255, 0.1);
}

.repair-benefit-card__progress-bar span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(90deg,
            var(--repair-benefits-green-dark),
            var(--repair-benefits-green));
    box-shadow: 0 0 14px rgba(24, 223, 112, 0.48);
    transition:
        width 1.5s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.repair-benefit-card.is-visible .repair-benefit-card__progress-bar span {
    width: var(--repair-benefit-progress);
}

/* ===================================
   Footer CTA
=================================== */

.repair-benefits-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 43px;
    padding: 22px 24px;
    gap: 25px;
    border: 1px solid rgba(17, 28, 48, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 45px rgba(17, 28, 48, 0.075);
    backdrop-filter: blur(14px);
}

.repair-benefits-footer__content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.repair-benefits-footer__icon {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 13px;
    background: var(--repair-benefits-navy);
    color: var(--repair-benefits-green);
    font-size: 19px;
}

.repair-benefits-footer strong {
    display: block;
    margin-bottom: 5px;
    color: var(--repair-benefits-navy);
    font-size: 13px;
    font-weight: 850;
}

.repair-benefits-footer p {
    margin: 0;
    color: var(--repair-benefits-muted);
    font-size: 10px;
    line-height: 1.6;
}

.repair-benefits-footer__button {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    min-height: 49px;
    padding: 13px 21px;
    gap: 9px;
    border: 2px solid var(--repair-benefits-green);
    border-radius: 9px;
    background: var(--repair-benefits-green);
    color: #062414;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    box-shadow: 0 12px 26px rgba(24, 223, 112, 0.24);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.repair-benefits-footer__button:hover {
    border-color: var(--repair-benefits-green-dark);
    background: var(--repair-benefits-green-dark);
    box-shadow: 0 17px 32px rgba(15, 196, 95, 0.3);
    transform: translateY(-3px);
}

/* ===================================
   Bottom Curve
=================================== */

.repair-benefits-section__curve {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 145px;
    pointer-events: none;
}

.repair-benefits-section__curve path {
    fill: #ffffff;
}

/* ===================================
   Reveal Animation
=================================== */

.repair-benefits-reveal {
    opacity: 0;
    transform: translateY(42px);
    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.repair-benefits-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.repair-benefit-card:nth-child(2) {
    transition-delay: 0.13s;
}

.repair-benefit-card:nth-child(3) {
    transition-delay: 0.26s;
}

.repair-benefits-footer {
    transition-delay: 0.18s;
}

/* ===================================
   Keyframes
=================================== */



@keyframes repairBenefitsPattern {
    from {
        transform: rotate(0deg) translateY(0);
    }

    to {
        transform: rotate(360deg) translateY(-12px);
    }
}

/* ===================================
   Large Tablet
=================================== */

@media (max-width: 1100px) {
    .repair-benefit-card {
        padding-right: 23px;
        padding-left: 23px;
    }

    .repair-benefit-card h3 {
        font-size: 19px;
    }
}

/* ===================================
   Tablet
=================================== */

@media (max-width: 991.98px) {
    .repair-benefits-section {
        padding-top: 80px;
        padding-bottom: 165px;
    }

    .repair-benefits-grid {
        grid-template-columns: 1fr;
        width: min(650px, 100%);
        margin-inline: auto;
        gap: 24px;
    }

    .repair-benefit-card {
        min-height: 430px;
    }

    .repair-benefit-card--featured {
        transform: none;
    }

    .repair-benefit-card--featured:hover {
        transform: translateY(-12px);
    }

    .repair-benefits-footer {
        width: min(650px, 100%);
        margin-inline: auto;
        margin-top: 34px;
    }

    .repair-benefits-section__curve {
        height: 120px;
    }
}

/* ===================================
   Mobile
=================================== */

@media (max-width: 767.98px) {
    .repair-benefits-section {
        padding-top: 65px;
        padding-bottom: 140px;
    }

    .repair-benefits-section__inner {
        width: calc(100% - 30px);
    }

    .repair-benefits-heading {
        margin-bottom: 36px;
    }

    .repair-benefits-heading h2 {
        font-size: clamp(34px, 9vw, 48px);
    }

    .repair-benefits-heading h2 span::after {
        right: 1%;
        left: 1%;
    }

    .repair-benefits-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .repair-benefits-footer__button {
        width: 100%;
    }

    .repair-benefits-section__curve {
        height: 95px;
    }
}

/* ===================================
   Small Mobile
=================================== */

@media (max-width: 480px) {
    .repair-benefits-section {
        padding-top: 52px;
        padding-bottom: 115px;
    }

    .repair-benefits-section__inner {
        width: calc(100% - 24px);
    }

    .repair-benefits-heading__eyebrow {
        padding: 8px 12px;
        font-size: 8px;
    }

    .repair-benefits-heading>p {
        font-size: 12px;
    }

    .repair-benefit-card {
        min-height: 440px;
        padding: 25px 21px 23px;
        border-radius: 16px;
    }

    .repair-benefit-card__number {
        font-size: 52px;
    }

    .repair-benefit-card h3 {
        font-size: 19px;
    }

    .repair-benefit-card>p {
        font-size: 11px;
    }

    .repair-benefit-card__top {
        margin-bottom: 22px;
    }

    .repair-benefit-card__icon {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
        font-size: 21px;
    }

    .repair-benefit-card__tag {
        padding: 7px 9px;
        font-size: 7px;
    }

    .repair-benefits-footer {
        padding: 18px;
    }

    .repair-benefits-footer__content {
        align-items: flex-start;
    }

    .repair-benefits-section__curve {
        height: 75px;
    }
}

/* ===================================
   Extra Small Mobile
=================================== */

@media (max-width: 380px) {
    .repair-benefit-card__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .repair-benefit-card__tag {
        white-space: normal;
    }

    .repair-benefits-footer__content {
        flex-direction: column;
    }
}

/* ===================================
   Reduced Motion
=================================== */

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

    .repair-benefits-section__pattern {
        animation: none;
    }

    .repair-benefits-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .repair-benefit-card,
    .repair-benefit-card__icon,
    .repair-benefit-card__icon::after,
    .repair-benefits-footer__button,
    .repair-benefit-card__progress-bar span {
        transition: none;
    }

    .repair-benefit-card__progress-bar span {
        width: var(--repair-benefit-progress);
    }
}




/* end eighth section */
/* start locations scetion */
/* ==========================
   SERVICE LOCATIONS
========================== */

.locations-section{
    background:#fff;
}

.locations-badge{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:.55rem 1rem;
    background:rgba(85,202,122,.12);
    color:#55ca7a;
    border-radius:50px;
    font-size:.9rem;
    font-weight:700;
}

.locations-title{
    font-size:clamp(2rem,4vw,3rem);
    font-weight:800;
    color:#26364f;
    margin-bottom:1rem;
}

.locations-title span{
    color:#55ca7a;
}

.locations-description{
    max-width:760px;
    color:#717b8a;
    font-size:1.05rem;
    line-height:1.8;
}

.location-card{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.55rem;
    height:70px;
    padding:1rem;
    border:1px solid rgba(38,54,79,.12);
    border-radius:14px;
    background:#fff;
    color:#26364f;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
    box-shadow:0 10px 30px rgba(38,54,79,.05);
}

.location-card i{
    color:#55ca7a;
    font-size:1.1rem;
    transition:.3s;
}

.location-card:hover{
    background:#26364f;
    color:#fff;
    border-color:#26364f;
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(38,54,79,.18);
}

.location-card:hover i{
    color:#55ca7a;
}

.location-card span{
    text-align:center;
    line-height:1.3;
}



@media (max-width:575.98px){

    .location-card{
        height:64px;
        font-size:.9rem;
    }

    .locations-description{
        font-size:1rem;
    }

}


.locations-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:14px;
    margin-top:2rem;
}

.locations-links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:.8rem 1.4rem;
    border-radius:50px;
    background:#5FAA6F;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border:2px solid #5FAA6F;
    transition:.3s ease;
    white-space:nowrap;
    box-shadow:0 10px 25px rgba(95,170,111,.25);
}

.locations-links a:hover{
    background:#26364F;
    border-color:#26364F;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(38,54,79,.18);
}

.locations-links a:focus-visible{
    outline:3px solid rgba(95,170,111,.35);
    outline-offset:3px;
}
@media (max-width:576px){

    .locations-links{
        gap:10px;
    }

    .locations-links a{
        padding:.7rem 1rem;
        font-size:.9rem;
    }

}






/* end locations scetion */